Move include files in debian packge into 'senf' subdirectory
[senf.git] / Socket / SocketHandle.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.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 "../Utils/TypeInfo.hh"
34
35 //#include "SocketHandle.mpp"
36 #define prefix_
37 ///////////////////////////////cc.p////////////////////////////////////////
38
39 prefix_ void senf::SocketBody::v_close()
40 {
41     if (::shutdown(fd(),SHUT_RDWR) < 0)
42         throw SystemException(errno);
43     if (::close(fd()) < 0)
44         throw SystemException(errno);
45 }
46
47 prefix_ void senf::SocketBody::v_terminate()
48 {
49     struct linger ling;
50     ling.l_onoff = 0;
51     ling.l_linger = 0;
52
53     // We purposely IGNORE any errors: this method is used to try and
54     // terminate the connection ignoring any possible problems
55
56     ::setsockopt(fd(),SOL_SOCKET,SO_LINGER,&ling,sizeof(ling));
57     ::shutdown(fd(),SHUT_RDWR);
58     ::close(fd());
59 }
60
61 prefix_ bool senf::SocketBody::v_eof()
62     const
63 {
64     return protocol().eof();
65 }
66
67 prefix_ void senf::SocketBody::state(SocketStateMap & map, unsigned lod)
68 {
69     map["file.handle"] = fd();
70     map["file.refcount"] = refcount();
71     map["socket.server"] = isServer();
72     map["socket.protocol"] = prettyName(typeid(protocol()));
73     map["socket.policy"] = prettyName(typeid(protocol().policy()));
74     protocol().state(map,lod);
75 }
76
77 ///////////////////////////////////////////////////////////////////////////
78 // senf::detail::StateMapOrdering
79
80 namespace {
81     bool contains(std::string::const_iterator b, std::string::const_iterator e, char c)
82     {
83         for (; b != e; ++b)
84             if (*b == c)
85                 return true;
86         return false;
87     }
88 }
89
90 prefix_ std::string senf::detail::dumpState(SocketStateMap const & map)
91 {
92     std::stringstream s;
93     SocketStateMap::const_iterator i (map.begin());
94     SocketStateMap::const_iterator i_end (map.end());
95     for (; i != i_end; ++i)
96         s << i->first << ": " << i->second << "\n";
97     return s.str();
98 }
99
100 template <class Policy>
101 prefix_ std::ostream & senf::operator<<(std::ostream & os, SocketHandle<Policy> handle)
102 {
103     os << handle.dumpState();
104     return os;
105 }
106
107 ///////////////////////////////cc.e////////////////////////////////////////
108 #undef prefix_
109 //#include "SocketHandle.mpp"
110
111 \f
112 // Local Variables:
113 // mode: c++
114 // fill-column: 100
115 // c-file-style: "senf"
116 // indent-tabs-mode: nil
117 // ispell-local-dictionary: "american"
118 // compile-command: "scons -u test"
119 // comment-column: 40
120 // End: