removed some useless spaces; not very important, I know :)
[senf.git] / Socket / ProtocolServerSocketHandle.cti
1 // $Id$
2 //
3 // Copyright (C) 2006
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 ProtocolServerSocketHandle inline template implementation
25  */
26
27 // Definition of inline template functions
28
29 //#include "ProtocolServerSocketHandle.ih"
30
31 // Custom includes
32 #include "../Utils/senfassert.hh"
33 #include "ProtocolClientSocketHandle.hh"
34
35 #define prefix_ inline
36 ///////////////////////////////cti.p///////////////////////////////////////
37
38 template <class SocketProtocol>
39 prefix_ senf::ProtocolServerSocketHandle<SocketProtocol>::
40 ProtocolServerSocketHandle(senf::NoInit_t)
41 {}
42
43 template <class SocketProtocol>
44 prefix_ senf::ProtocolServerSocketHandle<SocketProtocol>::ProtocolServerSocketHandle()
45     : ServerSocketHandle<typename SocketProtocol::Policy>(
46         std::auto_ptr<senf::SocketBody>(new ProtocolSocketBody<SocketProtocol>(true)))
47 {}
48
49 #define BOOST_PP_ITERATION_PARAMS_1 (4, (1, 9, SENF_ABSOLUTE_INCLUDE_PATH(Socket/ProtocolServerSocketHandle.mpp), 2))
50 #include BOOST_PP_ITERATE()
51
52 template <class SocketProtocol>
53 prefix_ SocketProtocol const &
54 senf::ProtocolServerSocketHandle<SocketProtocol>::protocol()
55 {
56     SENF_ASSERT( dynamic_cast<SocketProtocol const *>(&this->body().protocol()) );
57     // Need dynamic_cast here, since senf::SocketProtocol is a
58     // virtual base
59     return dynamic_cast<SocketProtocol const &>(this->body().protocol());
60 }
61
62 template <class SocketProtocol>
63 prefix_ senf::ProtocolClientSocketHandle<SocketProtocol>
64 senf::ProtocolServerSocketHandle<SocketProtocol>::accept()
65 {
66     return ProtocolClientSocketHandle<SocketProtocol>(
67         FileHandle(this->ServerSocketHandle<typename SocketProtocol::Policy>::accept()),true);
68 }
69
70 template <class SocketProtocol>
71 prefix_ senf::ProtocolServerSocketHandle<SocketProtocol>
72 senf::ProtocolServerSocketHandle<SocketProtocol>::cast_static(FileHandle handle)
73 {
74     return ProtocolServerSocketHandle(handle,true);
75 }
76
77 template <class SocketProtocol>
78 prefix_ senf::ProtocolServerSocketHandle<SocketProtocol>
79 senf::ProtocolServerSocketHandle<SocketProtocol>::cast_dynamic(FileHandle handle)
80 {
81     ServerSocketHandle<typename SocketProtocol::Policy> h(
82         ServerSocketHandle<typename SocketProtocol::Policy>::cast_dynamic(handle));
83     // throw std::bad_cast if the protocol is invalid
84     dynamic_cast<SocketProtocol const &>(static_cast<SocketBody&>(FileHandle::body(h)).protocol());
85     return cast_static(handle);
86 }
87
88 template <class SocketProtocol>
89 prefix_ void
90 senf::ProtocolServerSocketHandle<SocketProtocol>::state(SocketStateMap & map,
91                                                                unsigned lod)
92 {
93     map["handle"] = prettyName(typeid(*this));
94     this->body().state(map,lod);
95 }
96
97 template <class SocketProtocol>
98 prefix_ std::string
99 senf::ProtocolServerSocketHandle<SocketProtocol>::dumpState(unsigned lod)
100 {
101     SocketStateMap map;
102     state(map,lod);
103     return detail::dumpState(map);
104 }
105
106 template <class SocketProtocol>
107 prefix_ senf::ProtocolServerSocketHandle<SocketProtocol>::
108 ProtocolServerSocketHandle(FileHandle other, bool isChecked)
109     : ServerSocketHandle<typename SocketProtocol::Policy>(other,isChecked)
110 {}
111
112 ///////////////////////////////cti.e///////////////////////////////////////
113 #undef prefix_
114
115 \f
116 // Local Variables:
117 // mode: c++
118 // fill-column: 100
119 // c-file-style: "senf"
120 // indent-tabs-mode: nil
121 // ispell-local-dictionary: "american"
122 // compile-command: "scons -u test"
123 // comment-column: 40
124 // End: