-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow post event from any thread to CHIP main event loop. (#7195)
* Make access to CHIP Message Queue thread safe * Use RAII style of locking * Add support for thread-safe event queue in platform layer * Refactor Front() and Pop() to PopFront()
- Loading branch information
1 parent
8cfdf0a
commit 0322eb1
Showing
6 changed files
with
133 additions
and
8 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
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
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,55 @@ | ||
/* | ||
* | ||
* Copyright (c) 2021 Project CHIP Authors | ||
* All rights reserved. | ||
* | ||
* 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. | ||
*/ | ||
|
||
/** | ||
* @file | ||
* This file defines the CHIP device event queue which operates in a FIFO context (first-in first-out), | ||
* and provides a specific set of member functions to access its elements wth thread safety. | ||
*/ | ||
|
||
#include <platform/DeviceSafeQueue.h> | ||
|
||
namespace chip { | ||
namespace DeviceLayer { | ||
namespace Internal { | ||
|
||
void DeviceSafeQueue::Push(const ChipDeviceEvent & event) | ||
{ | ||
std::unique_lock<std::mutex> lock(mEventQueueLock); | ||
mEventQueue.push(event); | ||
} | ||
|
||
bool DeviceSafeQueue::Empty() | ||
{ | ||
std::unique_lock<std::mutex> lock(mEventQueueLock); | ||
return mEventQueue.empty(); | ||
} | ||
|
||
const ChipDeviceEvent DeviceSafeQueue::PopFront() | ||
{ | ||
std::unique_lock<std::mutex> lock(mEventQueueLock); | ||
|
||
const ChipDeviceEvent event = mEventQueue.front(); | ||
mEventQueue.pop(); | ||
|
||
return event; | ||
} | ||
|
||
} // namespace Internal | ||
} // namespace DeviceLayer | ||
} // namespace chip |
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,67 @@ | ||
/* | ||
* | ||
* Copyright (c) 2021 Project CHIP Authors | ||
* All rights reserved. | ||
* | ||
* 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. | ||
*/ | ||
|
||
/** | ||
* @file | ||
* This file declares the CHIP device event queue which operates in a FIFO context (first-in first-out), | ||
* and provides a specific set of member functions to access its elements wth thread safety. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <mutex> | ||
#include <queue> | ||
|
||
#include <core/CHIPCore.h> | ||
#include <platform/CHIPDeviceConfig.h> | ||
#include <platform/CHIPDeviceEvent.h> | ||
|
||
namespace chip { | ||
namespace DeviceLayer { | ||
namespace Internal { | ||
|
||
/** | ||
* @class DeviceSafeQueue | ||
* | ||
* @brief | ||
* This class represents a thread-safe message queue implemented with C++ Standard Library, the message queue | ||
* is used by the CHIP event loop to hold incoming messages. Each message is sequentially dequeued, decoded, | ||
* and then an action is performed. | ||
* | ||
*/ | ||
class DeviceSafeQueue | ||
{ | ||
public: | ||
DeviceSafeQueue() = default; | ||
~DeviceSafeQueue() = default; | ||
|
||
void Push(const ChipDeviceEvent & event); | ||
bool Empty(); | ||
const ChipDeviceEvent PopFront(); | ||
|
||
private: | ||
std::queue<ChipDeviceEvent> mEventQueue; | ||
std::mutex mEventQueueLock; | ||
|
||
DeviceSafeQueue(const DeviceSafeQueue &) = delete; | ||
DeviceSafeQueue & operator=(const DeviceSafeQueue &) = delete; | ||
}; | ||
|
||
} // namespace Internal | ||
} // namespace DeviceLayer | ||
} // namespace chip |
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