517ee9eceb26367929ba5835992a56ee17ffe8ef
[senf.git] / senf / Socket / SocketHandle.cc
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 SocketHandle non-inline non-template implementation
25  */
26
27 #include "SocketHandle.hh"
28 #include "SocketHandle.ih"
29
30 // Custom includes
31 #include <sstream>
32 #include <sys/socket.h>
33 #include <senf/Utils/TypeInfo.hh>
34
35 //#include "SocketHandle.mpp"
36 #define prefix_
37 ///////////////////////////////cc.p////////////////////////////////////////
38
39 ///////////////////////////////////////////////////////////////////////////
40 // senf::SocketBody
41
42 prefix_ void senf::SocketBody::state(SocketStateMap & map, unsigned lod)
43 {
44     map["file.handle"]     << fd();
45     map["file.refcount"]   << refcount();
46     map["socket.server"]   << isServer();
47     map["socket.protocol"] << v_protocolName();
48     map["socket.protocol.policy"]   << prettyName(typeid(protocol().policy()));
49     protocol().state(map,lod);
50 }
51
52 prefix_ void senf::SocketBody::v_close()
53 {
54     protocol().close();
55 }
56
57 prefix_ void senf::SocketBody::v_terminate()
58 {
59     protocol().terminate();
60 }
61
62 prefix_ bool senf::SocketBody::v_eof()
63     const
64 {
65     return protocol().eof();
66 }
67
68 ///////////////////////////////////////////////////////////////////////////
69 // senf::detail::StateMapOrdering
70
71 namespace {
72     bool contains(std::string::const_iterator b, std::string::const_iterator e, char c)
73     {
74         for (; b != e; ++b)
75             if (*b == c)
76                 return true;
77         return false;
78     }
79 }
80
81 prefix_ std::string senf::detail::dumpState(SocketStateMap const & map)
82 {
83     std::stringstream s;
84     SocketStateMap::const_iterator i (map.begin());
85     SocketStateMap::const_iterator i_end (map.end());
86     for (; i != i_end; ++i)
87         s << i->first << ": " << i->second << "\n";
88     return s.str();
89 }
90
91 ///////////////////////////////cc.e////////////////////////////////////////
92 #undef prefix_
93 //#include "SocketHandle.mpp"
94
95 \f
96 // Local Variables:
97 // mode: c++
98 // fill-column: 100
99 // c-file-style: "senf"
100 // indent-tabs-mode: nil
101 // ispell-local-dictionary: "american"
102 // compile-command: "scons -u test"
103 // comment-column: 40
104 // End: