NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
strategy-choice.hpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2013-2018 Regents of the University of California.
4
*
5
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6
*
7
* ndn-cxx library is free software: you can redistribute it and/or modify it under the
8
* terms of the GNU Lesser General Public License as published by the Free Software
9
* Foundation, either version 3 of the License, or (at your option) any later version.
10
*
11
* ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14
*
15
* You should have received copies of the GNU General Public License and GNU Lesser
16
* General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17
* <http://www.gnu.org/licenses/>.
18
*
19
* See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20
*/
21
22
#ifndef NDN_MGMT_NFD_STRATEGY_CHOICE_HPP
23
#define NDN_MGMT_NFD_STRATEGY_CHOICE_HPP
24
25
#include "
ndn-cxx/encoding/block.hpp
"
26
#include "
ndn-cxx/name.hpp
"
27
28
namespace
ndn
{
29
namespace
nfd
{
30
36
class
StrategyChoice
37
{
38
public
:
39
class
Error
:
public
tlv::Error
40
{
41
public
:
42
using
tlv::Error::Error
;
43
};
44
45
StrategyChoice
();
46
47
explicit
48
StrategyChoice
(
const
Block
& payload);
49
50
template
<encoding::Tag TAG>
51
size_t
52
wireEncode
(
EncodingImpl<TAG>
& encoder)
const
;
53
54
const
Block
&
55
wireEncode
()
const
;
56
57
void
58
wireDecode
(
const
Block
& wire);
59
60
public
:
// getters & setters
61
const
Name
&
62
getName
()
const
63
{
64
return
m_name;
65
}
66
67
StrategyChoice
&
68
setName
(
const
Name
&
name
);
69
70
const
Name
&
71
getStrategy
()
const
72
{
73
return
m_strategy;
74
}
75
76
StrategyChoice
&
77
setStrategy
(
const
Name
& strategy);
78
79
private
:
80
Name
m_name;
// namespace
81
Name
m_strategy;
// strategy for the namespace
82
83
mutable
Block
m_wire;
84
};
85
86
NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS
(
StrategyChoice
);
87
88
bool
89
operator==
(
const
StrategyChoice
& a,
const
StrategyChoice
& b);
90
91
inline
bool
92
operator!=
(
const
StrategyChoice
& a,
const
StrategyChoice
& b)
93
{
94
return
!(a == b);
95
}
96
97
std::ostream&
98
operator<<
(std::ostream& os,
const
StrategyChoice
& sc);
99
100
}
// namespace nfd
101
}
// namespace ndn
102
103
#endif // NDN_MGMT_NFD_STRATEGY_CHOICE_HPP
ndn::nfd::StrategyChoice::setStrategy
StrategyChoice & setStrategy(const Name &strategy)
Definition:
strategy-choice.cpp:115
ndn::nfd::NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS
NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS(ChannelStatus)
ndn::nfd::StrategyChoice::getStrategy
const Name & getStrategy() const
Definition:
strategy-choice.hpp:71
ndn::nfd::StrategyChoice::wireEncode
const Block & wireEncode() const
Definition:
strategy-choice.cpp:57
ndn::nfd::operator<<
std::ostream & operator<<(std::ostream &os, FaceScope faceScope)
Definition:
nfd-constants.cpp:36
block.hpp
ndn::nfd::StrategyChoice::StrategyChoice
StrategyChoice()
name.hpp
ndn::nfd::StrategyChoice::setName
StrategyChoice & setName(const Name &name)
Definition:
strategy-choice.cpp:107
ndn::Name
Represents an absolute name.
Definition:
name.hpp:44
nfd
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-common.hpp:40
ndn::nfd::StrategyChoice
represents an item in NFD StrategyChoice dataset
Definition:
strategy-choice.hpp:37
ndn::encoding::EncodingImpl
Definition:
encoding-buffer-fwd.hpp:36
ndn::Block
Represents a TLV element of NDN packet format.
Definition:
block.hpp:43
ndn::name
Definition:
name-component-types.hpp:33
ndn::nfd::operator!=
bool operator!=(const ChannelStatus &a, const ChannelStatus &b)
Definition:
channel-status.hpp:81
ndn::nfd::StrategyChoice::getName
const Name & getName() const
Definition:
strategy-choice.hpp:62
ndn::nfd::operator==
bool operator==(const ChannelStatus &a, const ChannelStatus &b)
Definition:
channel-status.cpp:97
ndn::nfd::StrategyChoice::Error
Definition:
strategy-choice.hpp:40
ndn::tlv::Error
represents an error in TLV encoding or decoding
Definition:
tlv.hpp:53
ndn::tlv::Error::Error
Error(const char *expectedType, uint32_t actualType)
Definition:
tlv.cpp:27
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
nfd::strategy_choice::StrategyChoice
StrategyChoice
Definition:
strategy-choice.cpp:40
ndn::nfd::StrategyChoice::wireDecode
void wireDecode(const Block &wire)
Definition:
strategy-choice.cpp:73
ndnSIM
ndn-cxx
ndn-cxx
mgmt
nfd
strategy-choice.hpp
Generated on Mon Jun 1 2020 22:32:16 for ndnSIM by
1.8.18