switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Socket / SocketProtocol.cti
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief SocketProtocol and ConcreteSocketProtocol inline template implementation
30  */
31
32 //#include "SocketProtocol.ih"
33
34 // Custom includes
35 #include "SocketHandle.hh"
36
37 #define prefix_ inline
38 //-/////////////////////////////////////////////////////////////////////////////////////////////////
39
40 //-/////////////////////////////////////////////////////////////////////////////////////////////////
41 // senf::ConcreteSocketProtocol<SocketPolicy,Self>
42
43 template <class SocketPolicy, class Self>
44 prefix_ senf::ConcreteSocketProtocol<SocketPolicy,Self>::~ConcreteSocketProtocol()
45 {}
46
47 template <class SocketPolicy, class Self>
48 prefix_ typename senf::ConcreteSocketProtocol<SocketPolicy,Self>::Policy const &
49 senf::ConcreteSocketProtocol<SocketPolicy,Self>::policy()
50     const
51 {
52     return policy_;
53 }
54
55 template <class SocketPolicy, class Self>
56 prefix_ std::auto_ptr<senf::SocketBody>
57 senf::ConcreteSocketProtocol<SocketPolicy,Self>::clone(bool isServer)
58     const
59 {
60     return std::auto_ptr<SocketBody>(new ProtocolSocketBody<Self>(isServer));
61 }
62
63 template <class SocketPolicy, class Self>
64 prefix_ std::auto_ptr<senf::SocketBody>
65 senf::ConcreteSocketProtocol<SocketPolicy,Self>::clone(int fd, bool isServer)
66     const
67 {
68     return std::auto_ptr<SocketBody>(new ProtocolSocketBody<Self>(isServer, fd));
69 }
70
71 template <class SocketPolicy, class Self>
72 prefix_ senf::SocketBody & senf::ConcreteSocketProtocol<SocketPolicy,Self>::body()
73     const
74 {
75     return const_cast< ProtocolSocketBody<Self> &>(
76         static_cast< ProtocolSocketBody<Self> const & >(*this));
77 }
78
79 //-/////////////////////////////////////////////////////////////////////////////////////////////////
80 // protected members
81
82 template <class SocketPolicy, class Self>
83 prefix_ senf::ClientSocketHandle<SocketPolicy>
84 senf::ConcreteSocketProtocol<SocketPolicy,Self>::clientHandle()
85     const
86 {
87     return static_socket_cast< ClientSocketHandle<Policy> >(fh());
88 }
89
90 template <class SocketPolicy, class Self>
91 prefix_ senf::ServerSocketHandle<SocketPolicy>
92 senf::ConcreteSocketProtocol<SocketPolicy,Self>::serverHandle()
93     const
94 {
95     return static_socket_cast< ServerSocketHandle<Policy> >(fh());
96 }
97
98 //-/////////////////////////////////////////////////////////////////////////////////////////////////
99 #undef prefix_
100
101 \f
102 // Local Variables:
103 // mode: c++
104 // fill-column: 100
105 // c-file-style: "senf"
106 // indent-tabs-mode: nil
107 // ispell-local-dictionary: "american"
108 // compile-command: "scons -u test"
109 // comment-column: 40
110 // End: