28 singular_db<l2_list::key_t, l2_list> l2_list::m_db;
33 std::map<handle_t, std::weak_ptr<l2_list>> l2_list::m_hdl_db;
68 m_db.release(m_key,
this);
71 std::shared_ptr<l2_list>
74 return find_or_add(*
this);
93 s <<
"acl-list:[" << m_key <<
" " << m_hdl.
to_string() <<
" rules:[";
95 for (
auto rule : m_rules) {
96 s << rule.to_string() <<
" ";
107 m_rules.insert(rule);
122 std::shared_ptr<l2_list>
125 return (m_hdl_db[handle].lock());
128 std::shared_ptr<l2_list>
131 return (m_db.find(key));
134 std::shared_ptr<l2_list>
135 l2_list::find_or_add(
const l2_list& temp)
137 return (m_db.find_or_add(temp.
key(), temp));
141 l2_list::handle_i()
const 143 return (m_hdl.
data());
149 std::shared_ptr<l2_list> sp =
find(key);
152 m_hdl_db[item.
data()] = sp;
159 m_hdl_db.erase(item.
data());
186 std::shared_ptr<list_cmds::l2_dump_cmd>
cmd =
187 std::make_shared<list_cmds::l2_dump_cmd>();
192 for (
auto& record : *cmd) {
193 auto& payload = record.get_payload();
195 const handle_t hdl(payload.acl_index);
198 for (
unsigned int ii = 0; ii < payload.count; ii++) {
203 { payload.r[ii].src_mac },
204 { payload.r[ii].src_mac_mask });
226 l2_list::event_handler::order()
const 232 l2_list::event_handler::handle_replay()
238 l2_list::update(
const l2_list& obj)
243 if (
rc_t::OK != m_hdl.
rc() || obj.m_rules != m_rules) {
251 m_rules = obj.m_rules;
264 l2_list::replay(
void)
const rules_t & rules() const
static const action_t & from_int(uint8_t i)
Get the enum type from a VPP integer value.
std::string key_t
The KEY can be used to uniquely identify the ACL.
void db_dump(const DB &db, std::ostream &os)
Print each of the objects in the DB into the stream provided.
An L2 ACL list comprises a set of match actions rules to be applied to packets.
const std::string key_t
In the opflex world each entity is known by a URI which can be converted into a string.
void remove(const l2_rule &rule)
Remove a rule from the list.
static void register_handler(const std::vector< std::string > &cmds, const std::string &help, command_handler *ch)
Register a command handler for inspection.
static rc_t write()
Write/Execute all commands hitherto enqueued.
rc_t rc() const
Get the HW return code.
bool operator==(const l2_list &l) const
Comparison operator - for UT.
static const log_level_t DEBUG
std::string to_string() const
convert to string format for debug purposes
T & data()
Return the data read/written.
std::string to_string() const
convert to string format for debug purposes
An ACL rule is the building block of an ACL.
static void dump(std::ostream &os)
Dump all ACLs into the stream provided.
A command class that Create the list.
static void add(const key_t &key, const HW::item< handle_t > &item)
std::multiset< l2_rule > rules_t
The rule container type.
l2_list(const key_t &key)
Construct a new object matching the desried state.
A cmd class that Deletes an ACL.
static std::shared_ptr< l2_list > find(const handle_t &handle)
A type declaration of an interface handle in VPP.
static rc_t commit(const client_db::key_t &key, const OBJ &obj)
Make the State in VPP reflect the expressed desired state.
void event_handler(void *tls_async)
dependency_t
There needs to be a strict order in which object types are read from VPP (at boot time) and replayed ...
static const rc_t OK
The HW write was successfull.
static void enqueue(cmd *f)
Enqueue A command for execution.
void insert(const l2_rule &rule)
Insert priority sorted a rule into the list.
const handle_t & handle() const
Return the VPP assign handle.
The VPP Object Model (VOM) library.
const neighbour::flags_t from_api(vapi_enum_ip_neighbor_flags f)
A representation of a method call to VPP.
void reset()
reset the value of the handle to ~0
const key_t & key() const
static bool register_listener(listener *listener)
Register a listener of events.
std::shared_ptr< l2_list > singular() const
Return the 'sigular instance' of the ACL that matches this object.