Scheduler: Daemon class: pidfile creation
[senf.git] / Scheduler / Daemon.ih
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer NETwork research (NET)
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief Daemon internal header */
25
26 #ifndef IH_Daemon_
27 #define IH_Daemon_ 1
28
29 // Custom includes
30 #include <deque>
31 #include <boost/utility.hpp>
32 #include <boost/function.hpp>
33 #include "../Scheduler/Scheduler.hh"
34
35 ///////////////////////////////ih.p////////////////////////////////////////
36
37 namespace senf {
38 namespace detail {
39
40     /** \brief Internal: Watch daemon process for successful startup */
41     class DaemonWatcher
42         : boost::noncopyable
43     {
44     public:
45
46         DaemonWatcher(int pid, int coutpipe, int cerrpipe);
47
48         void run();
49
50     private:
51
52         class Forwarder 
53         {
54         public:
55             typedef boost::function<void ()> Callback;
56
57             Forwarder(int src, int dst, Callback cb);
58             ~Forwarder();
59
60         private:
61
62             void readData(Scheduler::EventId event);
63             void writeData(Scheduler::EventId event);
64
65             typedef std::deque<char> Buffer;
66             Buffer buffer_;
67             int src_;
68             int dst_;
69             Callback cb_;
70         };
71         
72         void pipeClosed(int id);
73         void sigChld();
74         void childDied();
75         void childOk();
76
77         int childPid_;
78         int coutpipe_;
79         int cerrpipe_;
80         bool sigChld_;
81
82         Forwarder coutForwarder_;
83         Forwarder cerrForwarder_;
84     };
85
86 }}
87
88 ///////////////////////////////ih.e////////////////////////////////////////
89 #endif
90
91 \f
92 // Local Variables:
93 // mode: c++
94 // fill-column: 100
95 // comment-column: 40
96 // c-file-style: "senf"
97 // indent-tabs-mode: nil
98 // ispell-local-dictionary: "american"
99 // compile-command: "scons -u test"
100 // End: