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