OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
esi_label.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #ifndef SRC_BGP_EXTENDED_COMMUNITY_ESI_LABEL_H_
6 #define SRC_BGP_EXTENDED_COMMUNITY_ESI_LABEL_H_
7 
8 #include <boost/array.hpp>
9 #include <stdint.h>
10 
11 #include <string>
12 
13 #include "base/parse_object.h"
15 
16 class EsiLabel {
17 public:
18  static const int kSize = 8;
19  typedef boost::array<uint8_t, kSize> bytes_type;
20 
21  explicit EsiLabel(const bytes_type &data);
22  explicit EsiLabel(bool single_active);
23  std::string ToString() const;
24  bool single_active() const { return (data_[2] & 0x01); }
25 
26  const bytes_type &GetExtCommunity() const {
27  return data_;
28  }
29  const uint64_t GetExtCommunityValue() const {
30  return get_value(data_.begin(), 8);
31  }
32 
33 private:
34  std::string flags() const;
35  int label() const;
36 
38 };
39 
40 #endif // SRC_BGP_EXTENDED_COMMUNITY_ESI_LABEL_H_
const bytes_type & GetExtCommunity() const
Definition: esi_label.h:26
std::string flags() const
Definition: esi_label.cc:31
bytes_type data_
Definition: esi_label.h:37
static uint64_t get_value(const uint8_t *data, int size)
Definition: parse_object.h:39
int label() const
Definition: esi_label.cc:35
boost::array< uint8_t, kSize > bytes_type
Definition: esi_label.h:19
const uint64_t GetExtCommunityValue() const
Definition: esi_label.h:29
bool single_active() const
Definition: esi_label.h:24
static const int kSize
Definition: esi_label.h:18
std::string ToString() const
Definition: esi_label.cc:44
EsiLabel(const bytes_type &data)
Definition: esi_label.cc:18