Fix SCons 1.2.0 build failure
[senf.git] / Socket / Protocols / Raw / MACAddress.hh
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 public header */
25
26 #ifndef HH_SENF_Socket_Protocols_Raw_MACAddress_
27 #define HH_SENF_Socket_Protocols_Raw_MACAddress_ 1
28
29 // Custom includes
30 #include <iostream>
31 #include <boost/cstdint.hpp>
32 #include <boost/array.hpp>
33 #include <boost/utility.hpp>
34 #include <boost/type_traits.hpp>
35 #include "../../../Utils/safe_bool.hh"
36 #include "../../../Utils/Tags.hh"
37 #include "../AddressExceptions.hh"
38
39 //#include "MACAddress.mpp"
40 ///////////////////////////////hh.p////////////////////////////////////////
41
42 namespace senf {
43
44     class EUI64;
45
46     /** \brief Ethernet MAC address
47
48         The Ethernet MAC is modelled as a fixed-size container/sequence of 6 bytes. A MACAddress can
49         be converted from/to the following representations
50
51         <table class="senf">
52         <tr><td><tt>boost::uint64_t</tt></td>
53                 <td><tt>senf::MACAddress(0x112233445566ull)</tt><br/>
54                     <i>mac</i><tt>.uint64()</tt></td></tr>
55         <tr><td><tt>std::string</tt></td>
56                 <td><tt>senf::MACAddress::from_string("11:22:33:44:55:66")</tt><br/>
57                     <tt>senf::str(</tt><i>mac</i><tt>)</tt></td></tr>
58         <tr><td><i>raw data</i><br/>&nbsp;&nbsp;&nbsp;&nbsp;(6 bytes)</td>
59                 <td><tt>senf::MACAddress::from_data(</tt><i>iterator</i><tt>)</tt><br/>
60                     <i>mac</i><tt>.begin()</tt></td></tr>
61         <tr><td>senf::EUI64</td>
62                 <td><tt>senf::MACAddress::from_eui64(</tt><i>eui64</i><tt>)</tt><br/>
63                     <tt>senf::EUI64::from_mac(</tt><i>mac</i><tt>)</tt></td></tr>
64         </table>
65
66         Since MACAddress is based on \c boost::array, you can access the raw data bytes of the
67         address using \c begin(), \c end() or \c operator[]:
68         \code
69         senf::MACAddress mac (...);
70         std::vector<char> data;
71         data.resize(6);
72         std::copy(mac.begin(), mac.end(), data.begin()); // Copy 6 bytes
73         \endcode
74
75         \implementation We awkwardly need to use static named constructors (<tt>from_</tt> members)
76             instead of ordinarily overloaded constructors for one simple reason: <tt>char *</tt>
77             doubles as string literal and as arbitrary data iterator. The iterator constructor can
78             therefore not be distinguished from initialization with a string literal. Therefore we
79             need to disambiguate using the named constructors.
80
81         \ingroup addr_group
82      */
83     struct MACAddress
84         : public boost::array<boost::uint8_t,6>,
85           public comparable_safe_bool<MACAddress>
86     {
87         static MACAddress const Broadcast; ///< The broadcast address
88         static MACAddress const None;   ///< The empty (0) address
89
90         MACAddress();                   ///< Construct zero-initialized address
91         MACAddress(senf::NoInit_t);     ///< Construct uninitialized (!) address
92         explicit MACAddress(boost::uint64_t v); ///< Construct MACAddress constants
93
94         static MACAddress from_string(std::string const & s);
95                                         ///< Construct address from string representation
96                                         /**< The string representation must exactly match the form
97                                              <tt>dd:dd:dd:dd:dd:dd</tt> where <tt>d</tt> is any
98                                              hexadecimal digit. In place of ':', '-' is also
99                                              accepted as a delimiter.
100                                              \throws AddressSyntaxException */
101
102         template <class InputIterator>
103         static MACAddress from_data(InputIterator i);
104                                         ///< Construct address from raw data
105                                         /**< Copies the data from \a i into the MAC address.
106                                              \pre The input range at \a i must have a size of at
107                                                  least 6 elements. */
108
109         static MACAddress from_eui64(senf::EUI64 const & eui);
110                                         ///< Construct address from EUI-64
111                                         /**< This constructor takes an EUI-64 value and converts it
112                                              to a MAC address. This conversion is only possible, if
113                                              the EUI-64 is MAC compatible: the 4th/5th byte (in
114                                              transmission order) must be 0xFFFE.
115                                              \throws AddressSyntaxException if \a v is not a MAC
116                                                  compatible EUI-64. */
117
118         bool local() const;             ///< \c true, if address is locally administered
119         bool multicast() const;         ///< \c true, if address is a group/multicast address
120         bool broadcast() const;         ///< \c true, if address is the broadcast address
121         bool boolean_test() const;      ///< \c true, if address is not the zero address
122
123         boost::uint32_t oui() const;    ///< Return first 3 bytes of the address
124         boost::uint32_t nic() const;    ///< Return last 3 bytes of the address
125
126         boost::uint64_t eui64() const;  ///< Build EUI-64 from the MAC address
127         boost::uint64_t uint64() const; ///< Return MAC address as uint64 value
128     };
129
130     /** \brief Output MAC instance as it's string representation
131         \related MACAddress
132      */
133     std::ostream & operator<<(std::ostream & os, MACAddress const & mac);
134     /** \brief Try to initialize MACAddress instance from a string representation
135         sets std::ios::failbit on the stream if an error occurred
136         \see MACAddress from_string()
137         \related MACAddress
138      */
139     std::istream & operator>>(std::istream & os, MACAddress & mac);
140
141 }
142
143 ///////////////////////////////hh.e////////////////////////////////////////
144 #include "MACAddress.cci"
145 #include "MACAddress.ct"
146 //#include "MACAddress.cti"
147 #endif
148
149
150 // Local Variables:
151 // mode: c++
152 // fill-column: 100
153 // comment-column: 40
154 // c-file-style: "senf"
155 // indent-tabs-mode: nil
156 // ispell-local-dictionary: "american"
157 // compile-command: "scons -u test"
158 // End: