NEW FILE HEADER / COPYRIGHT FORMAT
[senf.git] / Utils / Daemon / Daemon.ih
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 // Fraunhofer Institute for Open Communication Systems (FOKUS) 
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY 
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 <list>
32 #include <boost/utility.hpp>
33 #include <boost/function.hpp>
34 #include "../../Scheduler/Scheduler.hh"
35
36 ///////////////////////////////ih.p////////////////////////////////////////
37
38 namespace senf {
39 namespace detail {
40
41     /** \brief Internal: Watch daemon process for successful startup */
42     class DaemonWatcher
43         : boost::noncopyable
44     {
45     public:
46
47         DaemonWatcher(int pid, int coutpipe, int cerrpipe, int stdout, int stderr);
48
49         void run();
50
51     private:
52
53         class Forwarder 
54         {
55         public:
56             typedef boost::function<void ()> Callback;
57
58             Forwarder(int src, Callback cb);
59             ~Forwarder();
60
61             void addTarget(int fd);
62
63         private:
64
65             typedef std::deque<char> Buffer;
66             struct Target
67             {
68                 int fd;
69                 Buffer::size_type offset;
70             };
71             typedef std::list<Target> Targets;
72
73             void readData(Scheduler::EventId event);
74             void writeData(Scheduler::EventId event, Targets::iterator target);
75
76             Buffer buffer_;
77             int src_;
78
79             Targets targets_;
80
81             Callback cb_;
82         };
83         
84         void pipeClosed(int id);
85         void sigChld();
86         void childDied();
87         void childOk();
88
89         int childPid_;
90         int coutpipe_;
91         int cerrpipe_;
92         int stdout_;
93         int stderr_;
94         bool sigChld_;
95
96         Forwarder coutForwarder_;
97         Forwarder cerrForwarder_;
98     };
99
100 }}
101
102 ///////////////////////////////ih.e////////////////////////////////////////
103 #endif
104
105 \f
106 // Local Variables:
107 // mode: c++
108 // fill-column: 100
109 // comment-column: 40
110 // c-file-style: "senf"
111 // indent-tabs-mode: nil
112 // ispell-local-dictionary: "american"
113 // compile-command: "scons -u test"
114 // End: