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