Fix SCons 1.2.0 build failure
[senf.git] / senf / 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 &
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 &>(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     if (this->valid()) {
95         map["valid"] << "true";
96         this->body().state(map,lod);
97     } else
98         map["valid"] << "false";
99 }
100
101 template <class SocketProtocol>
102 prefix_ std::string
103 senf::ProtocolServerSocketHandle<SocketProtocol>::dumpState(unsigned lod)
104 {
105     SocketStateMap map;
106     state(map,lod);
107     return detail::dumpState(map);
108 }
109
110 template <class SocketProtocol>
111 prefix_ senf::ProtocolServerSocketHandle<SocketProtocol>::
112 ProtocolServerSocketHandle(FileHandle other, bool isChecked)
113     : ServerSocketHandle<typename SocketProtocol::Policy>(other,isChecked)
114 {}
115
116 ///////////////////////////////cti.e///////////////////////////////////////
117 #undef prefix_
118
119 \f
120 // Local Variables:
121 // mode: c++
122 // fill-column: 100
123 // c-file-style: "senf"
124 // indent-tabs-mode: nil
125 // ispell-local-dictionary: "american"
126 // compile-command: "scons -u test"
127 // comment-column: 40
128 // End: