-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Link event damping] Add generic concurrent queue for link event damp…
…ing. - This queue will be used to enqueue the port state change events by NotificationHandler and dequeued by syncd main thread and processed in link event damping logic. HLD: sonic-net/SONiC#1071
- Loading branch information
Ashish Singh
committed
Oct 11, 2023
1 parent
c22b76b
commit 8436ac9
Showing
3 changed files
with
213 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
// Copyright 2021 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#pragma once | ||
|
||
#include <mutex> | ||
#include <queue> | ||
|
||
#include "swss/logger.h" | ||
#include "swss/sal.h" | ||
|
||
namespace syncd | ||
{ | ||
template <class T> | ||
class ConcurrentQueue | ||
{ | ||
public: | ||
|
||
explicit ConcurrentQueue( | ||
_In_ size_t queueSizeLimit = UNLIMITED); | ||
|
||
virtual ~ConcurrentQueue() = default; | ||
|
||
bool enqueue( | ||
_In_ const T& val); | ||
|
||
bool dequeue( | ||
_Out_ T* valOut); | ||
|
||
size_t size(); | ||
|
||
bool empty(); | ||
|
||
private: | ||
|
||
// Queue size = 0 means there is no limit on queue size. | ||
static constexpr size_t UNLIMITED = 0; | ||
|
||
std::mutex m_mutex; | ||
std::queue<T> m_queue; | ||
size_t m_queueSizeLimit; | ||
|
||
ConcurrentQueue<T>(const ConcurrentQueue<T>&) = delete; | ||
ConcurrentQueue<T>& operator=(const ConcurrentQueue<T>&) = delete; | ||
}; | ||
|
||
template <class T> | ||
ConcurrentQueue<T>::ConcurrentQueue( | ||
_In_ size_t queueSizeLimit) | ||
: m_queueSizeLimit(queueSizeLimit) | ||
{ | ||
SWSS_LOG_ENTER(); | ||
} | ||
|
||
template <class T> | ||
bool ConcurrentQueue<T>::enqueue( | ||
_In_ const T& val) | ||
{ | ||
SWSS_LOG_ENTER(); | ||
|
||
std::lock_guard<std::mutex> mutex_lock(m_mutex); | ||
|
||
// If the queue exceeds the limit, return false. | ||
if ((m_queueSizeLimit == UNLIMITED) || (m_queue.size() < m_queueSizeLimit)) | ||
{ | ||
m_queue.push(val); | ||
return true; | ||
} | ||
|
||
return false; | ||
} | ||
|
||
template <class T> | ||
bool ConcurrentQueue<T>::dequeue( | ||
_Out_ T* valOut) | ||
{ | ||
SWSS_LOG_ENTER(); | ||
|
||
std::lock_guard<std::mutex> mutex_lock(m_mutex); | ||
if (m_queue.empty()) | ||
{ | ||
return false; | ||
} | ||
|
||
*valOut = m_queue.front(); | ||
m_queue.pop(); | ||
|
||
return true; | ||
} | ||
|
||
template <class T> | ||
size_t ConcurrentQueue<T>::size() | ||
{ | ||
SWSS_LOG_ENTER(); | ||
|
||
std::lock_guard<std::mutex> mutex_lock(m_mutex); | ||
|
||
return m_queue.size(); | ||
} | ||
|
||
template <class T> | ||
bool ConcurrentQueue<T>::empty() | ||
{ | ||
SWSS_LOG_ENTER(); | ||
|
||
std::lock_guard<std::mutex> mutex_lock(m_mutex); | ||
|
||
return m_queue.empty(); | ||
} | ||
} // namespace syncd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
// Copyright 2021 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#include <gtest/gtest.h> | ||
|
||
#include "ConcurrentQueue.h" | ||
|
||
using namespace syncd; | ||
|
||
class ConcurrentQueueTest : public ::testing::Test | ||
{}; | ||
|
||
TEST_F(ConcurrentQueueTest, QueueIsEmpty) | ||
{ | ||
constexpr size_t queueSize = 5; | ||
ConcurrentQueue<int> testQueue(queueSize); | ||
|
||
EXPECT_TRUE(testQueue.empty()); | ||
EXPECT_EQ(testQueue.size(), 0); | ||
} | ||
|
||
TEST_F(ConcurrentQueueTest, EnqueueSucceeds) | ||
{ | ||
constexpr size_t queueSize = 5; | ||
ConcurrentQueue<int> testQueue(queueSize); | ||
|
||
EXPECT_TRUE(testQueue.empty()); | ||
|
||
EXPECT_TRUE(testQueue.enqueue(1)); | ||
EXPECT_FALSE(testQueue.empty()); | ||
EXPECT_EQ(testQueue.size(), 1); | ||
} | ||
|
||
TEST_F(ConcurrentQueueTest, EnqueueFailsIfQueueSizeLimitIsReached) | ||
{ | ||
constexpr size_t queueSize = 5; | ||
ConcurrentQueue<int> testQueue(queueSize); | ||
|
||
EXPECT_TRUE(testQueue.empty()); | ||
|
||
int data = 1; | ||
for (size_t idx = 0; idx < queueSize; ++idx) | ||
{ | ||
SCOPED_TRACE(::testing::Message() << "Inserting data at index: " << idx); | ||
EXPECT_TRUE(testQueue.enqueue(data++)); | ||
EXPECT_EQ(testQueue.size(), idx + 1); | ||
} | ||
|
||
EXPECT_EQ(testQueue.size(), queueSize); | ||
|
||
// Once queue is at maximum capacity, en-queuing next element will fail. | ||
EXPECT_FALSE(testQueue.enqueue(data)); | ||
EXPECT_EQ(testQueue.size(), queueSize); | ||
} | ||
|
||
TEST_F(ConcurrentQueueTest, DequeueFailsIfQueueIsEmpty) | ||
{ | ||
constexpr size_t queueSize = 5; | ||
ConcurrentQueue<int> testQueue(queueSize); | ||
|
||
EXPECT_TRUE(testQueue.empty()); | ||
|
||
int val; | ||
EXPECT_FALSE(testQueue.dequeue(&val)); | ||
} | ||
|
||
TEST_F(ConcurrentQueueTest, DequeueSucceeds) | ||
{ | ||
ConcurrentQueue<int> testQueue; | ||
EXPECT_TRUE(testQueue.empty()); | ||
|
||
constexpr int testValue = 56; | ||
EXPECT_TRUE(testQueue.enqueue(testValue)); | ||
EXPECT_EQ(testQueue.size(), 1); | ||
|
||
int val; | ||
EXPECT_TRUE(testQueue.dequeue(&val)); | ||
EXPECT_EQ(val, testValue); | ||
EXPECT_TRUE(testQueue.empty()); | ||
} |