-
Notifications
You must be signed in to change notification settings - Fork 177
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
feature/chained pubsub #1798
Open
rex-schilasky
wants to merge
1
commit into
master
Choose a base branch
from
feature/chained-pubsub
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
feature/chained pubsub #1798
Changes from all commits
Commits
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
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -232,3 +232,69 @@ TEST(core_cpp_pubsub, TestPublisherIsSubscribedTiming) | |||||
// finalize eCAL API | ||||||
eCAL::Finalize(); | ||||||
} | ||||||
|
||||||
TEST(core_cpp_pubsub, TestChainedPublisherSubscriberCallback) | ||||||
{ | ||||||
// initialize eCAL API | ||||||
EXPECT_EQ(0, eCAL::Initialize(0, nullptr, "chained_publisher_subscriber")); | ||||||
|
||||||
// enable data loopback | ||||||
eCAL::Util::EnableLoopback(true); | ||||||
|
||||||
// Set up counters for sent and received messages | ||||||
const int message_count = 10; | ||||||
std::atomic<int> publisher1_sent_count(0); | ||||||
std::atomic<int> subscriber2_received_count(0); | ||||||
|
||||||
// Publisher1 in thread 1 | ||||||
auto publisher1_thread = [&]() { | ||||||
eCAL::CPublisher pub1("topic1"); | ||||||
while (!pub1.IsSubscribed()) | ||||||
{ | ||||||
std::this_thread::sleep_for(std::chrono::milliseconds(10)); | ||||||
} | ||||||
for (int i = 0; i < message_count; ++i) | ||||||
{ | ||||||
pub1.Send(std::to_string(i)); | ||||||
publisher1_sent_count++; | ||||||
std::this_thread::sleep_for(std::chrono::milliseconds(10)); | ||||||
} | ||||||
}; | ||||||
|
||||||
// Publisher2 | ||||||
eCAL::CPublisher pub2("topic2"); | ||||||
|
||||||
// Subscriber1 with callback that triggers Publisher2 | ||||||
eCAL::CSubscriber sub1("topic1"); | ||||||
auto subscriber1_callback = [&](const char* /*topic_name*/, const eCAL::SReceiveCallbackData* data) { | ||||||
// On receiving data from Publisher1, Publisher2 sends the same data | ||||||
std::string received_data(static_cast<const char*>(data->buf), data->size); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: variable 'received_data' of type 'std::string' (aka 'basic_string') can be declared 'const' [misc-const-correctness]
Suggested change
|
||||||
pub2.Send(received_data); | ||||||
}; | ||||||
sub1.AddReceiveCallback(subscriber1_callback); | ||||||
|
||||||
// Subscriber2 that receives data from Publisher2 | ||||||
eCAL::CSubscriber sub2("topic2"); | ||||||
auto subscriber2_callback = [&](const char* /*topic_name*/, const eCAL::SReceiveCallbackData* data) { | ||||||
// Count each received message from Publisher2 | ||||||
subscriber2_received_count++; | ||||||
std::cout << "Subscriber2 Receiving " << std::string(static_cast<const char*>(data->buf), data->size) << std::endl; | ||||||
}; | ||||||
sub2.AddReceiveCallback(subscriber2_callback); | ||||||
|
||||||
// Start publisher1 thread | ||||||
std::thread pub1_thread(publisher1_thread); | ||||||
|
||||||
// Wait until Publisher1 has sent all messages and Subscriber2 has received them | ||||||
pub1_thread.join(); | ||||||
while (subscriber2_received_count < message_count) | ||||||
{ | ||||||
std::this_thread::sleep_for(std::chrono::milliseconds(10)); | ||||||
} | ||||||
|
||||||
// Validate that Subscriber2 received all messages sent by Publisher1 | ||||||
EXPECT_EQ(publisher1_sent_count, subscriber2_received_count); | ||||||
|
||||||
// finalize eCAL API | ||||||
eCAL::Finalize(); | ||||||
} |
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.
warning: all parameters should be named in a function [readability-named-parameter]