Skip to content
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

Fix heartbeat and ACKs issues [11003] #1862

Merged
merged 6 commits into from
Mar 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct SharedMemTransportDescriptor : public TransportDescriptorInterface
//! Minimum size of the send buffer
uint32_t min_send_buffer_size() const override
{
return 0;
return segment_size_;
}

//! Constructor
Expand Down
58 changes: 37 additions & 21 deletions src/cpp/rtps/network/ReceiverResource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,25 @@
#include <cassert>
#include <fastdds/dds/log/Log.hpp>

#define IDSTRING "(ID:" << std::this_thread::get_id() <<") "<<
#define IDSTRING "(ID:" << std::this_thread::get_id() << ") " <<

using namespace std;
using namespace eprosima::fastdds::rtps;

namespace eprosima{
namespace fastrtps{
namespace rtps{
namespace eprosima {
namespace fastrtps {
namespace rtps {

ReceiverResource::ReceiverResource(
TransportInterface& transport,
const Locator_t& locator,
uint32_t max_recv_buffer_size)
: Cleanup(nullptr)
, LocatorMapsToManagedChannel(nullptr)
, mValid(false)
, mtx()
, receiver(nullptr)
, max_message_size_(max_recv_buffer_size)
TransportInterface& transport,
const Locator_t& locator,
uint32_t max_recv_buffer_size)
: Cleanup(nullptr)
, LocatorMapsToManagedChannel(nullptr)
, mValid(false)
, mtx()
, receiver(nullptr)
, max_message_size_(max_recv_buffer_size)
{
// Internal channel is opened and assigned to this resource.
mValid = transport.OpenInputChannel(locator, this, max_message_size_);
Expand All @@ -45,12 +45,18 @@ ReceiverResource::ReceiverResource(
}

// Implementation functions are bound to the right transport parameters
Cleanup = [&transport, locator]() { transport.CloseInputChannel(locator); };
Cleanup = [&transport, locator]()
{
transport.CloseInputChannel(locator);
};
LocatorMapsToManagedChannel = [&transport, locator](const Locator_t& locatorToCheck) -> bool
{ return transport.DoInputLocatorsMatch(locator, locatorToCheck); };
{
return locator.kind == locatorToCheck.kind && transport.DoInputLocatorsMatch(locator, locatorToCheck);
MiguelCompany marked this conversation as resolved.
Show resolved Hide resolved
};
}

ReceiverResource::ReceiverResource(ReceiverResource&& rValueResource)
ReceiverResource::ReceiverResource(
ReceiverResource&& rValueResource)
{
Cleanup.swap(rValueResource.Cleanup);
LocatorMapsToManagedChannel.swap(rValueResource.LocatorMapsToManagedChannel);
Expand All @@ -61,7 +67,8 @@ ReceiverResource::ReceiverResource(ReceiverResource&& rValueResource)
max_message_size_ = rValueResource.max_message_size_;
}

bool ReceiverResource::SupportsLocator(const Locator_t& localLocator)
bool ReceiverResource::SupportsLocator(
const Locator_t& localLocator)
{
if (LocatorMapsToManagedChannel)
{
Expand All @@ -70,22 +77,31 @@ bool ReceiverResource::SupportsLocator(const Locator_t& localLocator)
return false;
}

void ReceiverResource::RegisterReceiver(MessageReceiver* rcv)
void ReceiverResource::RegisterReceiver(
MessageReceiver* rcv)
{
std::unique_lock<std::mutex> lock(mtx);
if (receiver == nullptr)
{
receiver = rcv;
}
}

void ReceiverResource::UnregisterReceiver(MessageReceiver* rcv)
void ReceiverResource::UnregisterReceiver(
MessageReceiver* rcv)
{
std::unique_lock<std::mutex> lock(mtx);
if (receiver == rcv)
{
receiver = nullptr;
}
}

void ReceiverResource::OnDataReceived(const octet * data, const uint32_t size,
const Locator_t & localLocator, const Locator_t & remoteLocator)
void ReceiverResource::OnDataReceived(
const octet* data,
const uint32_t size,
const Locator_t& localLocator,
const Locator_t& remoteLocator)
{
(void)localLocator;

Expand Down
1 change: 0 additions & 1 deletion src/cpp/rtps/participant/RTPSParticipantImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1196,7 +1196,6 @@ bool RTPSParticipantImpl::assignEndpoint2LocatorList(
one of the supported Locators is needed to make the match, and the case of new ListenResources being created has been removed
since its the NetworkFactory the one that takes care of Resource creation.
*/
LocatorList_t finalList;
for (auto lit = list.begin(); lit != list.end(); ++lit)
{
//Iteration of all Locators within the Locator list passed down as argument
Expand Down
12 changes: 6 additions & 6 deletions src/cpp/rtps/reader/StatefulReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,12 @@ bool StatefulReader::matched_writer_add(
matched_writers_pool_.pop_back();
}

SequenceNumber_t initial_sequence;
add_persistence_guid(wdata.guid(), wdata.persistence_guid());
initial_sequence = get_last_notified(wdata.guid());

wp->start(wdata, initial_sequence);

if (!is_same_process)
{
for (const Locator_t& locator : wp->remote_locators_shrinked())
Expand All @@ -227,12 +233,6 @@ bool StatefulReader::matched_writer_add(
}
}

SequenceNumber_t initial_sequence;
add_persistence_guid(wdata.guid(), wdata.persistence_guid());
initial_sequence = get_last_notified(wdata.guid());

wp->start(wdata, initial_sequence);

if (is_datasharing)
{
if (datasharing_listener_->add_datasharing_writer(wdata.guid(),
Expand Down
2 changes: 2 additions & 0 deletions test/blackbox/common/BlackboxTestsPubSubBasic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@ TEST_P(PubSubBasic, PubSubMoreThan256Unacknowledged)

reader.startReception(expected_data);
reader.block_for_all();
EXPECT_TRUE(writer.waitForAllAcked(std::chrono::seconds(10)));
}

TEST_P(PubSubBasic, PubSubAsReliableHelloworldMulticastDisabled)
Expand Down Expand Up @@ -309,6 +310,7 @@ TEST_P(PubSubBasic, PubSubAsReliableHelloworldMulticastDisabled)
ASSERT_TRUE(data.empty());
// Block reader until reception finished or timeout.
reader.block_for_all();
EXPECT_TRUE(writer.waitForAllAcked(std::chrono::seconds(10)));
}

TEST_P(PubSubBasic, ReceivedDynamicDataWithNoSizeLimit)
Expand Down