|
| 1 | +#include "mac.h" |
| 2 | + |
| 3 | +Mac::Mac(const std::string& r) { |
| 4 | + std::string s; |
| 5 | + for(char ch: r) { |
| 6 | + if ((ch >= '0' && ch <= '9') || (ch >= 'A' && ch <= 'F') || (ch >= 'a' && ch <= 'f')) |
| 7 | + s += ch; |
| 8 | + } |
| 9 | + int res = sscanf(s.c_str(), "%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx", &mac_[0], &mac_[1], &mac_[2], &mac_[3], &mac_[4], &mac_[5]); |
| 10 | + if (res != SIZE) { |
| 11 | + fprintf(stderr, "Mac::Mac sscanf return %d r=%s\n", res, r.c_str()); |
| 12 | + return; |
| 13 | + } |
| 14 | +} |
| 15 | + |
| 16 | +Mac::operator std::string() const { |
| 17 | + char buf[20]; // enough size |
| 18 | + sprintf(buf, "%02x:%02X:%02X:%02X:%02X:%02X", mac_[0], mac_[1], mac_[2], mac_[3], mac_[4], mac_[5]); |
| 19 | + return std::string(buf); |
| 20 | +} |
| 21 | + |
| 22 | +Mac Mac::randomMac() { |
| 23 | + Mac res; |
| 24 | + for (int i = 0; i < SIZE; i++) |
| 25 | + res.mac_[i] = uint8_t(rand() % 256); |
| 26 | + res.mac_[0] &= 0x7F; |
| 27 | + return res; |
| 28 | +} |
| 29 | + |
| 30 | +Mac& Mac::nullMac() { |
| 31 | + static uint8_t _value[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; |
| 32 | + static Mac res(_value); |
| 33 | + return res; |
| 34 | +} |
| 35 | + |
| 36 | +Mac& Mac::broadcastMac() { |
| 37 | + static uint8_t _value[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; |
| 38 | + static Mac res(_value); |
| 39 | + return res; |
| 40 | +} |
| 41 | + |
| 42 | +// ---------------------------------------------------------------------------- |
| 43 | +// GTEST |
| 44 | +// ---------------------------------------------------------------------------- |
| 45 | +#ifdef GTEST |
| 46 | +#include <gtest/gtest.h> |
| 47 | + |
| 48 | +static constexpr uint8_t _temp[] = {0x00, 0x11, 0x22, 0x33, 0x44, 0x55}; |
| 49 | + |
| 50 | +TEST(Mac, ctorTest) { |
| 51 | + Mac mac1; // () |
| 52 | + |
| 53 | + Mac mac2{mac1}; // (const Mac& r) |
| 54 | + |
| 55 | + Mac mac3(_temp); // (const uint8_t* r) |
| 56 | + |
| 57 | + Mac mac4(std::string("001122-334455")); // (const std::string& r) |
| 58 | + EXPECT_EQ(mac3, mac4); |
| 59 | + |
| 60 | + Mac mac5("001122-334455"); // (const std::string& r) |
| 61 | + EXPECT_EQ(mac3, mac5); |
| 62 | +} |
| 63 | + |
| 64 | +TEST(Mac, castingTest) { |
| 65 | + Mac mac("001122-334455"); |
| 66 | + |
| 67 | + const uint8_t* uc = (uint8_t*)mac; // operator uint8_t*() |
| 68 | + uint8_t temp[Mac::SIZE]; |
| 69 | + for (int i = 0; i < Mac::SIZE; i++) |
| 70 | + temp[i] = *uc++; |
| 71 | + EXPECT_TRUE(memcmp(&mac, temp, 6) == 0); |
| 72 | + |
| 73 | + std::string s2 = std::string(mac); // operator std::string() |
| 74 | + EXPECT_EQ(s2, "00:11:22:33:44:55"); |
| 75 | +} |
| 76 | + |
| 77 | +TEST(Mac, funcTest) { |
| 78 | + Mac mac; |
| 79 | + |
| 80 | + mac.clear(); |
| 81 | + EXPECT_TRUE(mac.isNull()); |
| 82 | + |
| 83 | + mac = std::string("FF:FF:FF:FF:FF:FF"); |
| 84 | + EXPECT_TRUE(mac.isBroadcast()); |
| 85 | + |
| 86 | + mac = std::string("01:00:5E:00:11:22"); |
| 87 | + EXPECT_TRUE(mac.isMulticast()); |
| 88 | +} |
| 89 | + |
| 90 | +#include <map> |
| 91 | +TEST(Mac, mapTest) { |
| 92 | + typedef std::map<Mac, int> MacMap; |
| 93 | + MacMap m; |
| 94 | + m.insert(std::make_pair(Mac("001122-334455"), 1)); |
| 95 | + m.insert(std::make_pair(Mac("001122-334456"), 2)); |
| 96 | + m.insert(std::make_pair(Mac("001122-334457"), 3)); |
| 97 | + EXPECT_EQ(m.size(), 3); |
| 98 | + MacMap::iterator it = m.begin(); |
| 99 | + EXPECT_EQ(it->second, 1); it++; |
| 100 | + EXPECT_EQ(it->second, 2); it++; |
| 101 | + EXPECT_EQ(it->second, 3); |
| 102 | +} |
| 103 | + |
| 104 | +#include <unordered_map> |
| 105 | +TEST(Mac, unordered_mapTest) { |
| 106 | + typedef std::unordered_map<Mac, int> MacUnorderedMap; |
| 107 | + MacUnorderedMap m; |
| 108 | + m.insert(std::make_pair(Mac("001122-334455"), 1)); |
| 109 | + m.insert(std::make_pair(Mac("001122-334456"), 2)); |
| 110 | + m.insert(std::make_pair(Mac("001122-334457"), 3)); |
| 111 | + //EXPECT_EQ(m.size(), 3); |
| 112 | +} |
| 113 | + |
| 114 | +#endif // GTEST |
0 commit comments