switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Socket / ReadWritePolicy.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 ReadPolicy and WritePolicy inline template implementation
30  */
31
32 //#include "ReadWritePolicy.ih"
33
34 // Custom includes
35
36 #define prefix_ inline
37 //-/////////////////////////////////////////////////////////////////////////////////////////////////
38
39 #ifndef DOXYGEN
40 template <class SPolicy>
41 prefix_ unsigned senf::ReadablePolicy::
42 readfrom(ClientSocketHandle<SPolicy> & handle, char * buffer, unsigned size,
43          typename SPolicy::AddressingPolicy::Address & address,
44          typename IfCommunicationPolicyIs<SPolicy,UnconnectedCommunicationPolicy>::type *)
45 {
46     return do_readfrom(handle, buffer, size, address.sockaddr_p(), address.socklen_p());
47 }
48 #else
49 template <class SPolicy>
50 prefix_ unsigned senf::ReadablePolicy::
51 readfrom(ClientSocketHandle<SPolicy> & handle, char * buffer, unsigned size,
52          typename Policy::AddressingPolicy::Address & address)
53 {}
54 #endif
55
56 #ifndef DOXYGEN
57 template <class SPolicy>
58 prefix_ unsigned senf::WriteablePolicy::
59 write(ClientSocketHandle<SPolicy> & handle, char const * buffer, unsigned size,
60       typename IfCommunicationPolicyIs<SPolicy,ConnectedCommunicationPolicy>::type *)
61 {
62     return do_write(handle,buffer,size);
63 }
64 #else
65 template <class SPolicy>
66 prefix_ unsigned senf::WriteablePolicy::
67 write(ClientSocketHandle<SPolicy> & handle, char const * buffer, unsigned size)
68 {}
69 #endif
70
71 #ifndef DOXYGEN
72 template <class SPolicy>
73 prefix_ unsigned senf::WriteablePolicy::
74 writeto(ClientSocketHandle<SPolicy> & handle,
75         typename boost::call_traits<typename SPolicy::AddressingPolicy::Address>::param_type addr,
76         char const * buffer, unsigned size,
77         typename IfCommunicationPolicyIs<SPolicy,UnconnectedCommunicationPolicy>::type *)
78 {
79     return do_writeto(handle, buffer, size, addr.sockaddr_p(), addr.socklen());
80 }
81 #else
82 template <class SPolicy>
83 prefix_ unsigned senf::WriteablePolicy::
84 writeto(ClientSocketHandle<SPolicy> & handle,
85         typename Policy::AddressingPolicy::Address const & addr,
86         char const * buffer, unsigned size)
87 {}
88 #endif
89
90 //-/////////////////////////////////////////////////////////////////////////////////////////////////
91 #undef prefix_
92
93 \f
94 // Local Variables:
95 // mode: c++
96 // fill-column: 100
97 // c-file-style: "senf"
98 // indent-tabs-mode: nil
99 // ispell-local-dictionary: "american"
100 // compile-command: "scons -u test"
101 // comment-column: 40
102 // End: