Further documentation (mainly SocketPolicy)
[senf.git] / Socket / ProtocolServerSocketHandle.hh
1 // $Id$
2 //
3 // Copyright (C) 2006 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.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 #ifndef HH_ProtocolServerSocketHandle_
24 #define HH_ProtocolServerSocketHandle_ 1
25
26 // Custom includes
27 #include "ServerSocketHandle.hh"
28
29 #include "ProtocolServerSocketHandle.mpp"
30 ///////////////////////////////hh.p////////////////////////////////////////
31
32 namespace senf {
33  
34     /// \addtogroup handle_group
35     /// @{
36    
37     template <class Protocol> class ProtocolClientSocketHandle;
38
39     /** \brief
40       */
41     template <class SocketProtocol>
42     class ProtocolServerSocketHandle
43         : public ServerSocketHandle<typename SocketProtocol::Policy>
44     {
45     public:
46         ///////////////////////////////////////////////////////////////////////////
47         // Types
48
49         typedef SocketProtocol Protocol;
50
51         ///////////////////////////////////////////////////////////////////////////
52         ///\name Structors and default members
53         ///@{
54
55         ProtocolServerSocketHandle();
56
57 #       define BOOST_PP_ITERATION_PARAMS_1 (4, (1, 9, "Socket/ProtocolServerSocketHandle.mpp", 1))
58 #       include BOOST_PP_ITERATE()
59
60         ///@}
61         ///////////////////////////////////////////////////////////////////////////
62
63         Protocol const & protocol();
64
65         ProtocolClientSocketHandle<SocketProtocol> accept();
66
67         static ProtocolServerSocketHandle cast_static(FileHandle handle);
68         static ProtocolServerSocketHandle cast_dynamic(FileHandle handle);
69
70         void state(SocketStateMap & map, unsigned lod=0);
71         std::string dumpState(unsigned lod=0);
72
73     protected:
74         ProtocolServerSocketHandle(FileHandle other, bool isChecked);
75
76     private:
77
78     };
79
80     /// @}
81 }
82
83 ///////////////////////////////hh.e////////////////////////////////////////
84 //#include "ProtocolServerSocketHandle.cci"
85 //#include "ProtocolServerSocketHandle.ct"
86 #include "ProtocolServerSocketHandle.cti"
87 #endif
88
89 \f
90 // Local Variables:
91 // mode: c++
92 // c-file-style: "senf"
93 // End: