abc540097eca5acf2bbd6e000c089ad3efbabb14
[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 <senf/Utils/senfassert.hh>
33 #include "ProtocolClientSocketHandle.hh"
34
35 #define prefix_ inline
36 //-/////////////////////////////////////////////////////////////////////////////////////////////////
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 \
50     (4, (1, 9, SENF_ABSOLUTE_INCLUDE_PATH(Socket/ProtocolServerSocketHandle.mpp), 2))
51 #include BOOST_PP_ITERATE()
52
53 template <class SocketProtocol>
54 prefix_ SocketProtocol &
55 senf::ProtocolServerSocketHandle<SocketProtocol>::protocol()
56 {
57     SENF_ASSERT( dynamic_cast<SocketProtocol const *>(&this->body().protocol()),
58                  "Internal failure: Incompatible protocol class fount it's way into this handle");
59     // Need dynamic_cast here, since senf::SocketProtocol is a
60     // virtual base
61     return dynamic_cast<SocketProtocol &>(this->body().protocol());
62 }
63
64 template <class SocketProtocol>
65 prefix_ senf::ProtocolClientSocketHandle<SocketProtocol>
66 senf::ProtocolServerSocketHandle<SocketProtocol>::accept()
67 {
68     return ProtocolClientSocketHandle<SocketProtocol>(
69         FileHandle(this->ServerSocketHandle<typename SocketProtocol::Policy>::accept()),true);
70 }
71
72 template <class SocketProtocol>
73 prefix_ senf::ProtocolServerSocketHandle<SocketProtocol>
74 senf::ProtocolServerSocketHandle<SocketProtocol>::cast_static(FileHandle handle)
75 {
76     return ProtocolServerSocketHandle(handle,true);
77 }
78
79 template <class SocketProtocol>
80 prefix_ senf::ProtocolServerSocketHandle<SocketProtocol>
81 senf::ProtocolServerSocketHandle<SocketProtocol>::cast_dynamic(FileHandle handle)
82 {
83     ServerSocketHandle<typename SocketProtocol::Policy> h(
84         ServerSocketHandle<typename SocketProtocol::Policy>::cast_dynamic(handle));
85     // throw std::bad_cast if the protocol is invalid
86     dynamic_cast<SocketProtocol const &>(static_cast<SocketBody&>(FileHandle::body(h)).protocol());
87     return cast_static(handle);
88 }
89
90 template <class SocketProtocol>
91 prefix_ void
92 senf::ProtocolServerSocketHandle<SocketProtocol>::state(SocketStateMap & map,
93                                                                unsigned lod)
94 {
95     map["handle"] = prettyName(typeid(*this));
96     if (this->valid()) {
97         map["valid"] << "true";
98         this->body().state(map,lod);
99     } else
100         map["valid"] << "false";
101 }
102
103 template <class SocketProtocol>
104 prefix_ std::string
105 senf::ProtocolServerSocketHandle<SocketProtocol>::dumpState(unsigned lod)
106 {
107     SocketStateMap map;
108     state(map,lod);
109     return detail::dumpState(map);
110 }
111
112 template <class SocketProtocol>
113 prefix_ senf::ProtocolServerSocketHandle<SocketProtocol>::
114 ProtocolServerSocketHandle(FileHandle other, bool isChecked)
115     : ServerSocketHandle<typename SocketProtocol::Policy>(other,isChecked)
116 {}
117
118 //-/////////////////////////////////////////////////////////////////////////////////////////////////
119 #undef prefix_
120
121 \f
122 // Local Variables:
123 // mode: c++
124 // fill-column: 100
125 // c-file-style: "senf"
126 // indent-tabs-mode: nil
127 // ispell-local-dictionary: "american"
128 // compile-command: "scons -u test"
129 // comment-column: 40
130 // End: