OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
etree.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 Juniper Networks, Inc. All rights reserved.
3  */
4 
6 
7 #include <stdio.h>
8 
9 #include <algorithm>
10 #include <string>
11 
12 
13 using std::copy;
14 using std::string;
15 
16 ETree::ETree(bool leaf, int label) {
19  data_[2] = leaf ? 0x01 : 0x0; // Leaf Indication
20  data_[3] = 0x00; // Reserved
21  data_[4] = 0x00; // Reserved
22  put_value(&data_[5], 3, (label<<4)); // leaf label
23 }
24 
25 ETree::ETree(const bytes_type &data) {
26  copy(data.begin(), data.end(), data_.begin());
27 }
28 
29 bool ETree::leaf() const {
30  return (data_[2] & 0x1);
31 }
32 
33 int ETree::label() const {
34  uint8_t data[ETree::kSize];
35  copy(data_.begin(), data_.end(), &data[0]);
36  if (data[0] == BgpExtendedCommunityType::Evpn &&
38  uint32_t value = get_value(data + 5, 3);
39  return value >> 4;
40  }
41  return false;
42 }
43 
44 std::string ETree::ToString() {
45  char temp[50];
46  snprintf(temp, sizeof(temp), "etree:%s:%d",
47  (leaf() ? "leaf":"root"), label());
48  return string(temp);
49 }
int label() const
Definition: etree.cc:33
ETree(bool leaf, int label=0)
Definition: etree.cc:16
static uint64_t get_value(const uint8_t *data, int size)
Definition: parse_object.h:39
static const int kSize
Definition: etree.h:18
bytes_type data_
Definition: etree.h:38
bool leaf() const
Definition: etree.cc:29
boost::array< uint8_t, kSize > bytes_type
Definition: etree.h:19
std::string ToString()
Definition: etree.cc:44
static void put_value(uint8_t *data, int size, uint64_t value)
Definition: parse_object.h:55