cleanup UNAdressing
[senf.git] / Socket / Protocols / UN / UNAddressing.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     David Wagner <dw6@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 UNAddressing non-inline non-template implementation */
25
26 #include "UNAddressing.hh"
27 //#include "UNAddressing.ih"
28
29 // Custom includes
30
31
32 #define prefix_
33 ///////////////////////////////cc.p////////////////////////////////////////
34
35 prefix_ senf::UNSocketAddress::UNSocketAddress()
36 {}
37
38 prefix_ senf::UNSocketAddress::UNSocketAddress(std::string const & path)
39 {
40     clear();
41     ::strncpy(addr_.sun_path, path.c_str(), sizeof(addr_.sun_path));
42     addr_.sun_path[sizeof(addr_.sun_path)-1] = 0;
43 }
44
45 prefix_ bool senf::UNSocketAddress::operator==(UNSocketAddress const & other)
46     const
47 {
48     return path() == other.path();
49 }
50
51 prefix_ std::string senf::UNSocketAddress::path()
52     const
53 {
54     return std::string(addr_.sun_path);
55 }
56
57 prefix_ bool senf::UNSocketAddress::boolean_test()
58     const
59 {
60     return addr_.sun_path[0] != 0;
61 }
62
63 prefix_ void senf::UNSocketAddress::clear()
64 {
65     ::memset(&addr_, 0, sizeof(addr_));
66     addr_.sun_family = AF_UNIX;
67 }
68
69 prefix_ sockaddr * senf::UNSocketAddress::sockaddr_p()
70 {
71     return reinterpret_cast <struct sockaddr  *> (&addr_); 
72 }
73
74 prefix_ sockaddr const * senf::UNSocketAddress::sockaddr_p()
75     const
76 {
77     return reinterpret_cast <struct sockaddr const  *> (&addr_); 
78 }
79
80 prefix_ unsigned senf::UNSocketAddress::sockaddr_len()
81     const
82 {
83     return sizeof(addr_);
84 }
85
86 prefix_ std::ostream & operator<<(std::ostream & os,
87                                   senf::UNSocketAddress::UNSocketAddress const & addr)
88 {
89     os << addr.path();
90     return os;
91 }
92
93 ///////////////////////////////cc.e////////////////////////////////////////
94 #undef prefix_
95 //#include "UNAddressing.mpp"
96
97 \f
98 // Local Variables:
99 // mode: c++
100 // fill-column: 100
101 // comment-column: 40
102 // c-file-style: "senf"
103 // indent-tabs-mode: nil
104 // ispell-local-dictionary: "american"
105 // compile-command: "scons -u test"
106 // End: