Skip to content

Commit

Permalink
Revert "[counter] Clear counter table when init (#45)"
Browse files Browse the repository at this point in the history
This reverts commit 5ae186f.
  • Loading branch information
kellyyeh committed Mar 6, 2024
1 parent 363fa06 commit 19d4e7a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 40 deletions.
20 changes: 1 addition & 19 deletions src/relay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ void initialize_counter(std::shared_ptr<swss::DBConnector> state_db, std::string
std::string table_name = counter_table + ifname;

auto init_value = gen_counter_json_str(DHCPv6_MESSAGE_TYPE_UNKNOWN, 0);
state_db->del(table_name);
state_db->hset(table_name, "RX", init_value);
state_db->hset(table_name, "TX", init_value);
}
Expand Down Expand Up @@ -1483,23 +1484,6 @@ void prepare_socket_callback(event_base *base, int socket, void (*cb)(evutil_soc
event_add(event, NULL);
}

/**
* @code clear_counter(std::shared_ptr<swss::DBConnector> state_db);
*
* @brief Clear all counter
*
* @param state_db state_db connector pointer
*
*/
void clear_counter(std::shared_ptr<swss::DBConnector> state_db) {
std::string match_pattern = counter_table + std::string("*");
auto keys = state_db->keys(match_pattern);

for (auto &itr : keys) {
state_db->del(itr);
}
}

/**
* @code loop_relay(std::unordered_map<relay_config> &vlans);
*
Expand Down Expand Up @@ -1529,8 +1513,6 @@ void loop_relay(std::unordered_map<std::string, relay_config> &vlans) {
prepare_socket_callback(base, out_filter, outbound_callback, reinterpret_cast<void *>(state_db.get()));
sockets.push_back(out_filter);

clear_counter(state_db);

int lo_sock = -1;
if (dual_tor_sock) {
std::string lo_string(loopback);
Expand Down
10 changes: 0 additions & 10 deletions src/relay.h
Original file line number Diff line number Diff line change
Expand Up @@ -559,13 +559,3 @@ void packet_counting_handler(uint8_t *buffer, ssize_t length, std::string &ifnam
*
*/
void prepare_socket_callback(event_base *base, int socket, void (*cb)(evutil_socket_t, short, void *), void *arg);

/**
* @code clear_counter(std::shared_ptr<swss::DBConnector> state_db);
*
* @brief Clear all counter
*
* @param state_db state_db connector pointer
*
*/
void clear_counter(std::shared_ptr<swss::DBConnector> state_db);
11 changes: 0 additions & 11 deletions test/mock_relay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -325,17 +325,6 @@ TEST(counter, initialize_counter)
EXPECT_TRUE(state_db->hexists("DHCPv6_COUNTER_TABLE|Vlan1000", "TX"));
}

TEST(counter, clear_counter)
{
std::shared_ptr<swss::DBConnector> state_db = std::make_shared<swss::DBConnector> ("STATE_DB", 0);
std::string ifname = "Vlan1000";
initialize_counter(state_db, ifname);
EXPECT_TRUE(state_db->hexists("DHCPv6_COUNTER_TABLE|Vlan1000", "RX"));
EXPECT_TRUE(state_db->hexists("DHCPv6_COUNTER_TABLE|Vlan1000", "TX"));
clear_counter(state_db);
EXPECT_FALSE(state_db->exists("DHCPv6_COUNTER_TABLE|Vlan1000"));
}

TEST(counter, increase_counter)
{
std::shared_ptr<swss::DBConnector> state_db = std::make_shared<swss::DBConnector> ("STATE_DB", 0);
Expand Down

0 comments on commit 19d4e7a

Please sign in to comment.