Scheduler: Fix ReadHelper to conform to new Scheduler API
[senf.git] / Console / Server.ih
1 // $Id$
2 //
3 // Copyright (C) 2008 
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 Server internal header */
25
26 #ifndef IH_Server_
27 #define IH_Server_ 1
28
29 // Custom includes
30 #include <set>
31 #include <boost/utility.hpp>
32 #include <boost/scoped_ptr.hpp>
33 #include <boost/shared_ptr.hpp>
34 #include "../Utils/intrusive_refcount.hh"
35 #include "../Socket/Protocols/INet/TCPSocketHandle.hh"
36 #include "../Socket/ServerSocketHandle.hh"
37 #include "../Scheduler/Scheduler.hh"
38 #include "../Scheduler/ReadHelper.hh"
39
40 ///////////////////////////////ih.p////////////////////////////////////////
41
42 namespace senf {
43 namespace console {
44 namespace detail {
45
46     class Client;
47
48     /** \brief
49       */
50     class Server
51         : boost::noncopyable
52     {
53         SENF_LOG_CLASS_AREA();
54         SENF_LOG_DEFAULT_LEVEL( senf::log::NOTICE );
55     public:
56         ///////////////////////////////////////////////////////////////////////////
57         // Types
58
59         typedef senf::ServerSocketHandle<
60             senf::MakeSocketPolicy< senf::TCPv4SocketProtocol::Policy, 
61                                     senf::UnspecifiedAddressingPolicy>::policy > ServerHandle;
62
63         ~Server();
64
65         static void start(ServerHandle handle);
66
67     protected:
68
69     private:
70         Server(ServerHandle handle);
71
72         void newClient(Scheduler::EventId event);
73         void removeClient(Client & client);
74         
75         ServerHandle handle_;
76         
77         typedef std::set< boost::intrusive_ptr<Client> > Clients;
78         Clients clients_;
79         
80         static boost::scoped_ptr<Server> instance_;
81         
82         friend class Client;
83     };
84     
85     /** \brief
86      */
87     class Client
88         : public senf::intrusive_refcount
89     {
90         SENF_LOG_CLASS_AREA();
91         SENF_LOG_DEFAULT_LEVEL( senf::log::NOTICE );
92     public:
93         typedef Server::ServerHandle::ClientSocketHandle ClientHandle;
94
95         ~Client();
96
97         void stopClient();
98
99     protected:
100         
101     private:
102         Client(ClientHandle handle);
103
104         void clientData(ReadHelper<ClientHandle>::ptr helper);
105         
106         ClientHandle handle_;
107         std::string tail_;
108
109         friend class Server;
110     };
111
112 }}}
113
114 ///////////////////////////////ih.e////////////////////////////////////////
115 #endif
116
117 \f
118 // Local Variables:
119 // mode: c++
120 // fill-column: 100
121 // comment-column: 40
122 // c-file-style: "senf"
123 // indent-tabs-mode: nil
124 // ispell-local-dictionary: "american"
125 // compile-command: "scons -u test"
126 // End: