git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@129 270642c3-0616-0410...
[senf.git] / Socket / ProtocolClientSocketHandle.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_ProtocolClientSocketHandle_
24 #define HH_ProtocolClientSocketHandle_ 1
25
26 // Custom includes
27 #include "ClientSocketHandle.hh"
28
29 #include "ProtocolClientSocketHandle.mpp"
30 ///////////////////////////////hh.p////////////////////////////////////////
31
32 namespace satcom {
33 namespace lib {
34
35     template <class Protocol> class ProtocolServerSocketHandle;
36
37     /** \brief
38       */
39     template <class SocketProtocol>
40     class ProtocolClientSocketHandle
41         : public ClientSocketHandle<typename SocketProtocol::Policy>
42     {
43     public:
44         ///////////////////////////////////////////////////////////////////////////
45         // Types
46
47         typedef SocketProtocol Protocol;
48
49         ///////////////////////////////////////////////////////////////////////////
50         ///\name Structors and default members
51         ///@{
52
53         ProtocolClientSocketHandle();
54
55 #       define BOOST_PP_ITERATION_PARAMS_1 (4, (1, 9, "Socket/ProtocolClientSocketHandle.mpp", 1))
56 #       include BOOST_PP_ITERATE()
57         
58         ///@}
59         ///////////////////////////////////////////////////////////////////////////
60
61         Protocol const & protocol();
62
63         static ProtocolClientSocketHandle cast_static(FileHandle handle);
64         static ProtocolClientSocketHandle cast_dynamic(FileHandle handle);
65
66         void state(SocketStateMap & map, unsigned lod=0);
67         std::string dumpState(unsigned lod=0);
68
69     protected:
70         ProtocolClientSocketHandle(FileHandle other, bool isChecked);
71
72     private:
73         friend class ProtocolServerSocketHandle<Protocol>;
74     };
75
76 }}
77
78 ///////////////////////////////hh.e////////////////////////////////////////
79 //#include "ProtocolClientSocketHandle.cci"
80 //#include "ProtocolClientSocketHandle.ct"
81 #include "ProtocolClientSocketHandle.cti"
82 #include "ProtocolClientSocketHandle.mpp"
83 #endif
84
85 \f
86 // Local Variables:
87 // mode: c++
88 // c-file-style: "satcom"
89 // End: