Fixed whitespace in all files (no tabs)
[senf.git] / Socket / LLAddressing.ct
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 LLSocketAddress and LLAddressingPolicy non-inline template implementation
25  */
26
27 #include "LLAddressing.ih"
28
29 // Custom includes
30 #include <sstream>
31 #include <iomanip>
32 #include <string.h>
33
34 #define prefix_
35 ///////////////////////////////ct.p////////////////////////////////////////
36
37 template <class ForwardRange>
38 prefix_ void senf::LLSocketAddress::address(ForwardRange const & address)
39 {
40     if (boost::size(address) > sizeof(addr_.sll_addr))
41         throw InvalidLLSocketAddressException();
42     typename boost::range_const_iterator<ForwardRange>::type i (boost::begin(address));
43     ::memset(&addr_.sll_addr[0],sizeof(addr_.sll_addr),0);
44     addr_.sll_halen = 0;
45     for (; i != boost::end(address) && addr_.sll_halen<8; ++i, ++addr_.sll_halen)
46         addr_.sll_addr[addr_.sll_halen] = *i;
47     if (i != boost::end(address))
48         throw InvalidLLSocketAddressException();
49 }
50
51 template <class ForwardRange>
52 prefix_ std::string
53 senf::llAddress(ForwardRange const & address,
54                        typename boost::enable_if< boost::is_class<ForwardRange> >::type *)
55 {
56     if (boost::empty(address))
57         return std::string();
58     std::stringstream s;
59     typename boost::range_const_iterator< ForwardRange >::type i (boost::begin(address));
60     while (1) {
61         s << std::hex << std::setw(2) << std::setfill('0') << unsigned(*i);
62         ++ i;
63         if (i == boost::end(address))
64             break;
65         s << '-';
66     }
67     return s.str();
68 }
69
70 template <class ForwardRange>
71 prefix_ unsigned char senf::detail::HexConverter::operator()(ForwardRange const & v)
72     const
73 {
74     if (boost::size(v) != 2)
75         throw InvalidLLSocketAddressException();
76     typename boost::range_iterator< ForwardRange >::type i (boost::begin(v));
77     unsigned char n1 = hexnibble(*i) << 4;
78     return n1 + hexnibble(*(++i));
79 }
80
81 ///////////////////////////////ct.e////////////////////////////////////////
82 #undef prefix_
83
84 \f
85 // Local Variables:
86 // mode: c++
87 // fill-column: 100
88 // c-file-style: "senf"
89 // indent-tabs-mode: nil
90 // ispell-local-dictionary: "american"
91 // End: