more usable unix sockets classes
[senf.git] / Socket / Protocols / UN / UNAddressing.cc
1 // Copyright (C) 2007 
2 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
3 // Kompetenzzentrum NETwork research (NET)
4 //     David Wagner <david.wagner@fokus.fraunhofer.de>
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the
18 // Free Software Foundation, Inc.,
19 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
21 /** \file
22     \brief UNAddressing non-inline non-template implementation */
23
24 #include "UNAddressing.hh"
25 //#include "UNAddressing.ih"
26
27 // Custom includes
28 #include <stdio.h>
29 #include <boost/operators.hpp>
30 #include <boost/filesystem/path.hpp>
31
32 #define prefix_
33 ///////////////////////////////cc.p////////////////////////////////////////
34 prefix_ senf::UNSocketAddress::UNSocketAddress(boost::filesystem::path p)
35 {
36         sockAddr.sun_family = AF_UNIX;
37         strcpy(sockAddr.sun_path, p.string().c_str());
38 }
39
40 prefix_ senf::UNSocketAddress fromString(std::string s) {
41     return senf::UNSocketAddress::UNSocketAddress(boost::filesystem::path(s));
42 }
43
44 prefix_ senf::UNSocketAddress fromPath(boost::filesystem::path p)
45 {
46     return senf::UNSocketAddress::UNSocketAddress(p);
47 }
48
49 prefix_ std::string senf::UNSocketAddress::path()
50         const
51 {
52     return std::string(sockAddr.sun_path);
53 }
54
55 prefix_ sockaddr_un senf::UNSocketAddress::sockaddr()
56 {
57     struct sockaddr_un out; 
58     out.sun_family = sockAddr.sun_family;
59     strncpy(out.sun_path, sockAddr.sun_path, sizeof( out.sun_path));
60     return out; 
61 }
62
63 prefix_ sockaddr * senf::UNSocketAddress::sockaddr_p()
64 {
65     return reinterpret_cast <struct sockaddr  *> (&sockAddr); 
66 }
67
68
69 prefix_ sockaddr const  * senf::UNSocketAddress::sockaddr_p()
70     const
71 {
72     return reinterpret_cast <struct sockaddr const  *> (&sockAddr); 
73 }
74
75 prefix_ unsigned senf::UNSocketAddress::sockaddr_len()
76         const
77 {
78     return sizeof(sockAddr);
79 }
80
81 prefix_ std::ostream & operator<<(std::ostream & os, senf::UNSocketAddress::UNSocketAddress const & addr){
82     os << addr.path();
83     return os;
84 }
85
86
87 ///////////////////////////////cc.e////////////////////////////////////////
88 #undef prefix_
89 //#include "UNAddressing.mpp"
90
91 \f
92 // Local Variables:
93 // mode: c++
94 // fill-column: 100
95 // comment-column: 40
96 // c-file-style: "senf"
97 // indent-tabs-mode: nil
98 // ispell-local-dictionary: "american"
99 // compile-command: "scons -u test"
100 // End: