Socket: Renamed all protocol classes and files to end in SocketProtocol
[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_MACAddress_
27 #define HH_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     /** \brief Ethernet MAC address
45         
46         The Ethernet MAC is modelled as a fixed-size container/sequence of 6 bytes.
47
48         \implementation We awkwardly need to use static named constructors (<tt>from_</tt> members)
49             instead of ordinarily overloaded constructors for one simple reason: <tt>char *</tt>
50             doubles as string literal and as arbitrary data iterator. The iterator constructor can
51             therefore not be distinguished from initialization with a string literal. Therefore we
52             need to disambiguate using the named constructors.
53
54         \ingroup addr_group
55      */
56     struct MACAddress
57         : public boost::array<boost::uint8_t,6>, 
58           public comparable_safe_bool<MACAddress>
59     {
60         static MACAddress const Broadcast; ///< The broadcast address
61         static MACAddress const None;   ///< The empty (0) address
62
63         MACAddress();                   ///< Construct zero-initialized address
64         MACAddress(senf::NoInit_t);     ///< Construct uninitialized (!) address
65         explicit MACAddress(boost::uint64_t v); ///< Construct MACAddress constants
66
67         static MACAddress from_string(std::string const & s);
68                                         ///< Construct address from string representation
69                                         /**< The string representation must exactly match the form
70                                              <tt>dd:dd:dd:dd:dd:dd</tt> where <tt>d</tt> is any
71                                              hexadecimal digit. In place of ':', '-' is also
72                                              accepted as a delimiter.
73                                              \throws AddressSyntaxException */
74
75         template <class InputIterator> 
76         static MACAddress from_data(InputIterator i);
77                                         ///< Construct address from raw data
78                                         /**< Copies the data from \a i into the MAC address.
79                                              \pre The input range at \a i must have a size of at
80                                                  least 6 elements. */
81
82         static MACAddress from_eui64(boost::uint64_t v);
83                                         ///< Construct address from EUI-64
84                                         /**< This constructor takes an EUI-64 value and converts it
85                                              to a MAC address. This conversion is only possible, if
86                                              the EUI-64 is MAC compatible: the 4th/5th byte (in
87                                              transmission order) must be 0xFFFE.
88                                              \throws AddressSyntaxException if \a v is not a MAC
89                                                  compatible EUI-64. */
90
91         bool local() const;             ///< \c true, if address is locally administered
92         bool multicast() const;             ///< \c true, if address is a group/multicast address
93         bool broadcast() const;         ///< \c true, if address is the broadcast address
94         bool boolean_test() const;      ///< \c true, if address is the zero address
95
96         boost::uint32_t oui() const;    ///< Return first 3 bytes of the address
97         boost::uint32_t nic() const;    ///< Return last 3 bytes of the address
98         
99         boost::uint64_t eui64() const;  ///< Build EUI-64 from the MAC address
100
101     };
102
103     /** \brief Write MAC address
104         \related MACAddress
105      */
106     std::ostream & operator<<(std::ostream & os, MACAddress const & mac);
107
108 }
109
110 ///////////////////////////////hh.e////////////////////////////////////////
111 #include "MACAddress.cci"
112 #include "MACAddress.ct"
113 //#include "MACAddress.cti"
114 #endif
115
116 \f
117 // Local Variables:
118 // mode: c++
119 // fill-column: 100
120 // comment-column: 40
121 // c-file-style: "senf"
122 // indent-tabs-mode: nil
123 // ispell-local-dictionary: "american"
124 // compile-command: "scons -u test"
125 // End: