OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
esi.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #ifndef SRC_NET_ESI_H_
6 #define SRC_NET_ESI_H_
7 
8 #include <boost/system/error_code.hpp>
9 #include <string>
10 
11 #include "base/util.h"
12 
14 public:
15  static const int kSize = 10;
17  static const EthernetSegmentId kMaxEsi;
18 
19  enum EsiType {
22  STP_BASED = 2,
23  MAC_BASED = 3,
24  IP_BASED = 4,
26  };
27 
29  EthernetSegmentId(const uint8_t *data);
31  memcpy(data_, rhs.data_, kSize);
32  }
33 
34  std::string ToString() const;
35  static EthernetSegmentId FromString(const std::string &str,
36  boost::system::error_code *errorp = NULL);
37 
39  memcpy(data_, rhs.data_, kSize);
40  return *this;
41  }
42 
43  bool IsZero() const { return CompareTo(EthernetSegmentId::kZeroEsi) == 0; }
44  uint8_t Type() const { return data_[0]; }
45 
46  int CompareTo(const EthernetSegmentId &rhs) const;
47  bool operator==(const EthernetSegmentId &rhs) const {
48  return CompareTo(rhs) == 0;
49  }
50  bool operator!=(const EthernetSegmentId &rhs) const {
51  return CompareTo(rhs) != 0;
52  }
53  bool operator<(const EthernetSegmentId &rhs) const {
54  return CompareTo(rhs) < 0;
55  }
56  bool operator>(const EthernetSegmentId &rhs) const {
57  return CompareTo(rhs) > 0;
58  }
59 
60  const uint8_t *GetData() const { return data_; }
61 
62 private:
63  uint8_t data_[kSize];
64 };
65 
66 #endif // SRC_NET_ESI_H_
EthernetSegmentId()
Definition: esi.cc:21
EthernetSegmentId & operator=(const EthernetSegmentId &rhs)
Definition: esi.h:38
static EthernetSegmentId FromString(const std::string &str, boost::system::error_code *errorp=NULL)
Definition: esi.cc:29
uint8_t Type() const
Definition: esi.h:44
EthernetSegmentId(const EthernetSegmentId &rhs)
Definition: esi.h:30
bool operator<(const EthernetSegmentId &rhs) const
Definition: esi.h:53
bool operator!=(const EthernetSegmentId &rhs) const
Definition: esi.h:50
static const int kSize
Definition: esi.h:15
static const EthernetSegmentId kZeroEsi
Definition: esi.h:16
std::string ToString() const
Definition: esi.cc:120
bool operator>(const EthernetSegmentId &rhs) const
Definition: esi.h:56
bool IsZero() const
Definition: esi.h:43
int CompareTo(const EthernetSegmentId &rhs) const
Definition: esi.cc:156
static const EthernetSegmentId kMaxEsi
Definition: esi.h:17
const uint8_t * GetData() const
Definition: esi.h:60
uint8_t data_[kSize]
Definition: esi.h:63
bool operator==(const EthernetSegmentId &rhs) const
Definition: esi.h:47