-
Notifications
You must be signed in to change notification settings - Fork 800
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refs #22506. Filter interested readers on PDP writer
Signed-off-by: Eugenio Collado <[email protected]>
- Loading branch information
1 parent
88a860d
commit ef3c345
Showing
11 changed files
with
375 additions
and
34 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
179 changes: 179 additions & 0 deletions
179
src/cpp/rtps/builtin/discovery/participant/simple/PDPStatelessWriter.cpp
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,179 @@ | ||
// Copyright 2025 Proyectos y Sistemas de Mantenimiento SL (eProsima). | ||
// | ||
// 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 PDPStatelessWriter.cpp | ||
*/ | ||
|
||
#include <rtps/builtin/discovery/participant/simple/PDPStatelessWriter.hpp> | ||
|
||
#include <algorithm> | ||
#include <cassert> | ||
#include <chrono> | ||
#include <cstdint> | ||
#include <mutex> | ||
#include <set> | ||
#include <vector> | ||
|
||
#include <fastrtps/rtps/history/WriterHistory.h> | ||
#include <rtps/participant/RTPSParticipantImpl.h> | ||
|
||
namespace eprosima { | ||
namespace fastrtps { | ||
namespace rtps { | ||
|
||
PDPStatelessWriter::PDPStatelessWriter( | ||
RTPSParticipantImpl* participant, | ||
const GUID_t& guid, | ||
const WriterAttributes& attributes, | ||
fastdds::rtps::FlowController* flow_controller, | ||
WriterHistory* history, | ||
WriterListener* listener) | ||
: StatelessWriter(participant, guid, attributes, flow_controller, history, listener) | ||
, interested_readers_(participant->getRTPSParticipantAttributes().allocation.participants) | ||
{ | ||
} | ||
|
||
bool PDPStatelessWriter::matched_reader_add( | ||
const ReaderProxyData& data) | ||
{ | ||
bool ret = StatelessWriter::matched_reader_add(data); | ||
if (ret) | ||
{ | ||
// Mark new reader as interested | ||
add_interested_reader(data.guid()); | ||
// Send announcement to new reader | ||
reschedule_all_samples(); | ||
} | ||
return ret; | ||
} | ||
|
||
bool PDPStatelessWriter::matched_reader_remove( | ||
const GUID_t& reader_guid) | ||
{ | ||
bool ret = StatelessWriter::matched_reader_remove(reader_guid); | ||
if (ret) | ||
{ | ||
// Mark reader as not interested | ||
remove_interested_reader(reader_guid); | ||
} | ||
return ret; | ||
} | ||
|
||
void PDPStatelessWriter::unsent_change_added_to_history( | ||
CacheChange_t* change, | ||
const std::chrono::time_point<std::chrono::steady_clock>& max_blocking_time) | ||
{ | ||
mark_all_readers_interested(); | ||
StatelessWriter::unsent_change_added_to_history(change, max_blocking_time); | ||
} | ||
|
||
void PDPStatelessWriter::set_initial_peers( | ||
const fastdds::rtps::LocatorList& locator_list) | ||
{ | ||
std::lock_guard<RecursiveTimedMutex> guard(mp_mutex); | ||
|
||
initial_peers_.push_back(locator_list); | ||
mp_RTPSParticipant->createSenderResources(initial_peers_); | ||
} | ||
|
||
void PDPStatelessWriter::send_periodic_announcement() | ||
{ | ||
mark_all_readers_interested(); | ||
reschedule_all_samples(); | ||
} | ||
|
||
bool PDPStatelessWriter::send_to_fixed_locators( | ||
CDRMessage_t* message, | ||
std::chrono::steady_clock::time_point& max_blocking_time_point) const | ||
{ | ||
bool ret = true; | ||
|
||
if (should_reach_all_destinations_) | ||
{ | ||
ret = initial_peers_.empty() || | ||
mp_RTPSParticipant->sendSync(message, m_guid, | ||
Locators(initial_peers_.begin()), Locators(initial_peers_.end()), | ||
max_blocking_time_point); | ||
|
||
if (ret) | ||
{ | ||
fixed_locators_.clear(); | ||
should_reach_all_destinations_ = false; | ||
} | ||
} | ||
else | ||
{ | ||
interested_readers_.clear(); | ||
} | ||
|
||
return ret; | ||
} | ||
|
||
bool PDPStatelessWriter::is_relevant( | ||
const CacheChange_t& /* change */, | ||
const GUID_t& reader_guid) const | ||
{ | ||
return interested_readers_.end() != | ||
std::find(interested_readers_.begin(), interested_readers_.end(), reader_guid); | ||
} | ||
|
||
void PDPStatelessWriter::mark_all_readers_interested() | ||
{ | ||
std::lock_guard<RecursiveTimedMutex> guard(mp_mutex); | ||
should_reach_all_destinations_ = true; | ||
interested_readers_.clear(); | ||
fixed_locators_.clear(); | ||
fixed_locators_.push_back(initial_peers_); | ||
reader_data_filter(nullptr); | ||
} | ||
|
||
void PDPStatelessWriter::add_interested_reader( | ||
const GUID_t& reader_guid) | ||
{ | ||
std::lock_guard<RecursiveTimedMutex> guard(mp_mutex); | ||
if (!should_reach_all_destinations_) | ||
{ | ||
auto it = std::find(interested_readers_.begin(), interested_readers_.end(), reader_guid); | ||
if (it == interested_readers_.end()) | ||
{ | ||
interested_readers_.emplace_back(reader_guid); | ||
reader_data_filter(this); | ||
} | ||
} | ||
} | ||
|
||
void PDPStatelessWriter::remove_interested_reader( | ||
const GUID_t& reader_guid) | ||
{ | ||
std::lock_guard<RecursiveTimedMutex> guard(mp_mutex); | ||
interested_readers_.remove(reader_guid); | ||
} | ||
|
||
void PDPStatelessWriter::reschedule_all_samples() | ||
{ | ||
std::lock_guard<RecursiveTimedMutex> guard(mp_mutex); | ||
size_t n_samples = mp_history->getHistorySize(); | ||
if (0 < n_samples) | ||
{ | ||
assert(1 == n_samples); | ||
auto it = mp_history->changesBegin(); | ||
CacheChange_t* change = *it; | ||
flow_controller_->add_new_sample(this, change, std::chrono::steady_clock::now() + std::chrono::hours(24)); | ||
} | ||
} | ||
|
||
} // namespace rtps | ||
} // namespace fastdds | ||
} // namespace eprosima |
Oops, something went wrong.