75bc460bfc7d095453244a83b5b716ed25e40f93
[senf.git] / senf / Socket / Protocols / BSDAddressingPolicy.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 BSDAddressingPolicyMixin inline template implementation
25  */
26
27 //#include "BSDAddressingPolicy.ih"
28
29 // Custom includes
30
31 #define prefix_ inline
32 ///////////////////////////////cti.p///////////////////////////////////////
33
34 ///////////////////////////////////////////////////////////////////////////
35 // senf::BSDAddressingPolicyMixin<Address>
36
37 #ifndef DOXYGEN
38 template <class Address>
39 template <class SPolicy>
40 prefix_ void senf::BSDAddressingPolicyMixin<Address>::
41 peer(SocketHandle<SPolicy> const & handle, Address & addr,
42      typename IfCommunicationPolicyIs<SPolicy,ConnectedCommunicationPolicy>::type *)
43 {
44     try {
45         do_peer(handle,addr.sockaddr_p(),addr.socklen_p());
46     } catch (Exception & e) {
47         e << "; could not get peer for address \"" << addr << "\"";
48         throw;
49     }
50 }
51 #else
52 template <class Address>
53 template <class SPolicy>
54 prefix_ void senf::BSDAddressingPolicyMixin<Address>::
55 peer(SocketHandle<SPolicy> const & handle, Address & addr)
56 {}
57 #endif
58
59 #ifndef DOXYGEN
60 template <class Address>
61 template <class SPolicy>
62 prefix_ void senf::BSDAddressingPolicyMixin<Address>::
63 connect(SocketHandle<SPolicy> const & handle, Address const & addr,
64         typename IfCommunicationPolicyIs<SPolicy,ConnectedCommunicationPolicy>::type *)
65 {
66     try {
67         do_connect(handle,addr.sockaddr_p(),addr.socklen());
68     } catch (Exception & e) {
69         e << "; could not connect to address \"" << addr << "\"";
70         throw;
71     }
72 }
73 #else
74 template <class Address>
75 template <class SPolicy>
76 prefix_ void senf::BSDAddressingPolicyMixin<Address>::
77 connect(SocketHandle<SPolicy> const & handle, Address const & addr)
78 {}
79 #endif
80
81 template <class Address>
82 prefix_ void senf::BSDAddressingPolicyMixin<Address>::local(FileHandle const & handle,
83                                                            Address & addr)
84 {
85     try {
86         do_local(handle,addr.sockaddr_p(),addr.socklen_p());
87     } catch (Exception & e) {
88         // TODO: identify socket by some meaningful attribute
89         e << "; could not get name for address \"" << addr << "\"";
90         throw;
91     }
92 }
93
94 template <class Address>
95 prefix_ void senf::BSDAddressingPolicyMixin<Address>::bind(FileHandle const & handle,
96                                                                  Address const & addr)
97 {
98     try {
99         do_bind(handle,addr.sockaddr_p(),addr.socklen());
100     } catch (Exception & e) {
101         e << "; could not bind to address \"" << addr << "\"";
102         throw;
103     }
104 }
105
106 ///////////////////////////////cti.e///////////////////////////////////////
107 #undef prefix_
108
109 \f
110 // Local Variables:
111 // mode: c++
112 // fill-column: 100
113 // c-file-style: "senf"
114 // indent-tabs-mode: nil
115 // ispell-local-dictionary: "american"
116 // compile-command: "scons -u ../test"
117 // comment-column: 40
118 // End: