Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Socket / Protocols / Raw / MACAddress.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 //     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 MACAddress non-inline non-template implementation */
25
26 #include "MACAddress.hh"
27 //#include "MACAddress.ih"
28
29 // Custom includes
30 #include <iomanip>
31 #include <string>
32 #include <sstream>
33 #include <boost/io/ios_state.hpp>
34 #include <senf/Socket/Protocols/AddressExceptions.hh>
35 #include "ParseString.hh"
36 #include "EUI64.hh"
37
38 //#include "MACAddress.mpp"
39 #define prefix_
40 //-/////////////////////////////////////////////////////////////////////////////////////////////////
41
42 //-/////////////////////////////////////////////////////////////////////////////////////////////////
43 // senf::MACAddress
44
45 prefix_ senf::MACAddress::MACAddress senf::MACAddress::from_string(std::string const & s)
46 {
47     MACAddress mac (senf::noinit);
48     detail::parseHexString(s, ":-", mac.begin(), mac.end());
49     return mac;
50 }
51
52 prefix_ senf::MACAddress senf::MACAddress::from_eui64(senf::EUI64 const & eui)
53 {
54     if (eui[3] != 0xffu || eui[4] != 0xfeu)
55         throw AddressSyntaxException() << "EUI64 is not MAC compatible: " << eui;
56     MACAddress mac (senf::noinit);
57     mac[0] = eui[0];
58     mac[1] = eui[1];
59     mac[2] = eui[2];
60     mac[3] = eui[5];
61     mac[4] = eui[6];
62     mac[5] = eui[7];
63     return mac;
64 }
65
66 senf::MACAddress const senf::MACAddress::Broadcast = senf::MACAddress(0xFFFFFFFFFFFFull);
67 senf::MACAddress const senf::MACAddress::None;
68
69
70 //-/////////////////////////////////////////////////////////////////////////////////////////////////
71 // namespace members
72
73 prefix_ std::ostream & senf::operator<<(std::ostream & os, MACAddress const & mac)
74 {
75     boost::io::ios_all_saver ias (os);
76     os << std::hex << std::setfill('0');
77     for (MACAddress::const_iterator i (mac.begin()); i != mac.end(); ++i) {
78         if (i != mac.begin())
79             os << ':';
80         os << std::setw(2) << unsigned(*i);
81     }
82     return os;
83 }
84
85 prefix_ std::istream & senf::operator>>(std::istream & is, MACAddress & mac)
86 {
87     std::string s;
88     if (!(is >> s))
89         return is;
90     try {
91         mac = MACAddress::from_string(s);
92     }
93     catch (AddressException &) {
94         is.setstate(std::ios::failbit);
95     }
96     return is;
97 }
98
99 //-/////////////////////////////////////////////////////////////////////////////////////////////////
100 #undef prefix_
101 //#include "MACAddress.mpp"
102
103 \f
104 // Local Variables:
105 // mode: c++
106 // fill-column: 100
107 // comment-column: 40
108 // c-file-style: "senf"
109 // indent-tabs-mode: nil
110 // ispell-local-dictionary: "american"
111 // compile-command: "scons -u test"
112 // End: