-
Notifications
You must be signed in to change notification settings - Fork 691
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rework of PfRingDevice capture thread implementation. #1668
Closed
Closed
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
1fdca49
Extracted setting core affinity to a helper function.
Dimi1010 644ef3a
Refactored PfRing capture thread function.
Dimi1010 5a57b74
Fixes.
Dimi1010 c9713fc
Lint
Dimi1010 792d689
Fixes StopToken incomplete error.
Dimi1010 0349963
Fixed stop token constructors.
Dimi1010 4b3d39e
Removed const-ness of thread reference when setting thread affinity.
Dimi1010 7ff6cba
Added documentation for StopToken and StopTokenSource.
Dimi1010 9c994c1
Lint and cppcheck fixes.
Dimi1010 223dc80
Replaced for loop with algorithm.
Dimi1010 057cda2
Reverted core config size to MAX_NUM_OF_CORES.
Dimi1010 ba9d32e
Fixed stop token source guards being inverted.
Dimi1010 f1b6b25
Merge branch 'dev' into fix/issue-1664
Dimi1010 97d9863
Added stop token tests.
Dimi1010 baeb36c
Lint
Dimi1010 b1c6da2
Merge remote-tracking branch 'upstream/dev' into fix/issue-1664
Dimi1010 61a62b6
Lint
Dimi1010 07d8a70
Incorporated signal and wait for signal code pieces into StartupBlock…
Dimi1010 379feac
Simplified mutex lock.
Dimi1010 f22a741
Merge remote-tracking branch 'upstream/dev' into fix/issue-1664
Dimi1010 7dd6016
Merge branch 'dev' into fix/issue-1664
Dimi1010 b2820ec
Merge branch 'dev' into fix/issue-1664
Dimi1010 21d47a9
Merge branch 'dev' into fix/issue-1664
seladb 5783f72
Merge branch 'dev' into fix/issue-1664
Dimi1010 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
#pragma once | ||
|
||
#include <memory> | ||
|
||
namespace pcpp | ||
{ | ||
namespace internal | ||
{ | ||
class StopToken; | ||
|
||
/// Tag type used to construct a StopTokenSource without a shared state. | ||
struct NoStopStateTag | ||
{ | ||
}; | ||
|
||
/// @class StopTokenSource | ||
/// @brief A source that can be used to request a stop operation. | ||
class StopTokenSource | ||
{ | ||
friend class StopToken; | ||
|
||
public: | ||
/// Creates a new StopTokenSource. | ||
StopTokenSource(); | ||
/// Creates a new StopTokenSource without a shared state. | ||
explicit StopTokenSource(NoStopStateTag) noexcept : m_SharedState(nullptr) | ||
{} | ||
|
||
/// Returns a StopToken that is associated with this source. | ||
/// @return A StopToken associated with this StopTokenSource. | ||
StopToken getToken() const noexcept; | ||
|
||
/// Requests a stop operation. This will notify all associated StopTokens | ||
/// that a stop has been requested. | ||
/// @return True if the stop request was successful, false otherwise. | ||
bool requestStop() noexcept; | ||
|
||
/// Checks if a stop has been requested for this StopTokenSource. | ||
/// @return True if a stop has been requested, false otherwise. | ||
bool stopRequested() const noexcept; | ||
|
||
/// Checks if a stop can be requested for this StopTokenSource. | ||
/// @return True if a stop can be requested, false otherwise. | ||
bool stopPossible() const noexcept; | ||
|
||
private: | ||
struct SharedState; | ||
|
||
std::shared_ptr<SharedState> m_SharedState; | ||
}; | ||
|
||
/// @class StopToken | ||
/// @brief A token that can be used to check if a stop has been requested. | ||
/// | ||
/// The StopToken class is used to check if a stop has been requested by a StopTokenSource. | ||
/// It holds a shared state with the StopTokenSource to determine if a stop has been requested. | ||
class StopToken | ||
{ | ||
friend class StopTokenSource; | ||
|
||
public: | ||
/// @brief Default constructor for StopToken. | ||
/// Constructs a StopToken with no associated shared state. | ||
StopToken() noexcept = default; | ||
|
||
/// @brief Checks if a stop has been requested. | ||
/// @return True if a stop has been requested, false otherwise. | ||
bool stopRequested() const noexcept; | ||
|
||
/// @brief Checks if a stop can be requested. | ||
/// @return True if a stop can be requested, false otherwise. | ||
bool stopPossible() const noexcept; | ||
|
||
private: | ||
/// @brief Constructs a StopToken with the given shared state. | ||
/// @param sharedState The shared state associated with this StopToken. | ||
explicit StopToken(std::shared_ptr<StopTokenSource::SharedState> sharedState) noexcept | ||
: m_SharedState(std::move(sharedState)) | ||
{} | ||
|
||
/// @brief The shared state associated with this StopToken. | ||
std::shared_ptr<StopTokenSource::SharedState> m_SharedState; | ||
}; | ||
|
||
inline StopToken StopTokenSource::getToken() const noexcept | ||
{ | ||
return StopToken(m_SharedState); | ||
} | ||
} // namespace internal | ||
} // namespace pcpp |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want this to be part of the
public_headers
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is used in the pfringdevice header, so don't see how we can keep it out.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW, maybe move it to
Common++
?It doesn't have logic which is specific to
Pcap++
...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I kept it in Pcap++ as it isn't used in the other parts.