-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* [20815] Only apply content filter to ALIVE changes (#4876) * Refs #20815: Add regression test Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Only apply filter to ALIVE changes Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Rename change_is_relevant_for_filter argument Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Refactor test Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Cast loop index to uint16_t for assigning it to the key field Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Refactor test so PubSubWriter can be used directly Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Fix memory leak Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Apply Mario's suggestions Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Add type traits to PubSubWriterReader and PubSubParticipant Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Default move ctor and assignment in DynamicLoanableSequence Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Add doxygen in DynamicLoanableSequence Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Delete copy semantic from DynamicLoanableSequence Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Use alias for TypeTraits::DataListType in PubSub* classes Signed-off-by: eduponz <eduardoponz@eprosima.com> --------- Signed-off-by: eduponz <eduardoponz@eprosima.com> (cherry picked from commit 9a64956) # Conflicts: # src/cpp/rtps/reader/StatefulReader.cpp # src/cpp/rtps/reader/StatelessReader.cpp # test/unittest/statistics/dds/CMakeLists.txt Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Avoid doxygen warning about undocumented param in deleted functions Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #20815: Rename some targets to be able to compile with thirdparty Signed-off-by: eduponz <eduardoponz@eprosima.com> --------- Signed-off-by: eduponz <eduardoponz@eprosima.com> Co-authored-by: Eduardo Ponz Segrelles <eduardoponz@eprosima.com>
- Loading branch information
1 parent
de8aeb5
commit 0fcad67
Showing
18 changed files
with
1,041 additions
and
131 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
// Copyright 2024 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. | ||
|
||
#ifndef _TYPES_DYNAMIC_LOANABLE_SEQUENCE_HPP_ | ||
#define _TYPES_DYNAMIC_LOANABLE_SEQUENCE_HPP_ | ||
|
||
#include <cassert> | ||
#include <memory> | ||
|
||
#include <fastdds/dds/core/LoanableSequence.hpp> | ||
#include <fastdds/dds/log/Log.hpp> | ||
#include <fastrtps/types/DynamicData.h> | ||
#include <fastrtps/types/DynamicPubSubType.h> | ||
#include <fastrtps/types/DynamicTypePtr.h> | ||
|
||
namespace eprosima { | ||
namespace fastdds { | ||
namespace dds { | ||
|
||
/** | ||
* @brief LoanableSequence specialization for DynamicData. | ||
* | ||
* This class provides a sequence container for handling loanable collections | ||
* of DynamicData. | ||
* | ||
* @tparam _NonConstEnabler to enable data access through [] operator on non-const sequences. | ||
*/ | ||
template<typename _NonConstEnabler> | ||
class LoanableSequence<fastrtps::types::DynamicData, _NonConstEnabler> | ||
: public LoanableTypedCollection<fastrtps::types::DynamicData, _NonConstEnabler> | ||
{ | ||
public: | ||
|
||
/// Type for the size of the sequence. | ||
using size_type = LoanableCollection::size_type; | ||
|
||
/// Type for the elements in the sequence. | ||
using element_type = LoanableCollection::element_type; | ||
|
||
/** | ||
* @brief Construct a LoanableSequence with a specified dynamic type. | ||
* | ||
* @param[in] dyn_type Pointer to the DynamicType. | ||
*/ | ||
LoanableSequence( | ||
fastrtps::types::DynamicType_ptr dyn_type) | ||
: dynamic_type_support_(new fastrtps::types::DynamicPubSubType(dyn_type)) | ||
{ | ||
} | ||
|
||
/** | ||
* @brief Construct a LoanableSequence with a specified maximum size. | ||
* | ||
* @param[in] max Maximum size of the sequence. | ||
*/ | ||
LoanableSequence( | ||
size_type max) | ||
{ | ||
if (max <= 0) | ||
{ | ||
return; | ||
} | ||
|
||
resize(max); | ||
} | ||
|
||
/** | ||
* @brief Destructor for LoanableSequence. | ||
*/ | ||
~LoanableSequence() | ||
{ | ||
if (elements_ && !has_ownership_) | ||
{ | ||
EPROSIMA_LOG_WARNING(SUBSCRIBER, "Sequence destroyed with active loan"); | ||
return; | ||
} | ||
|
||
release(); | ||
} | ||
|
||
/// Deleted copy constructor for LoanableSequence. | ||
LoanableSequence( | ||
const LoanableSequence&) = delete; | ||
|
||
/// Deleted copy assignment operator for LoanableSequence. | ||
LoanableSequence& operator =( | ||
const LoanableSequence&) = delete; | ||
|
||
/// Move constructor for LoanableSequence. | ||
LoanableSequence( | ||
LoanableSequence&&) = default; | ||
|
||
/** | ||
* @brief Move assignment operator for LoanableSequence. | ||
* | ||
* @param[in] other The other LoanableSequence to move from. | ||
* | ||
* @return A reference to this LoanableSequence. | ||
*/ | ||
LoanableSequence& operator =( | ||
LoanableSequence&&) = default; | ||
|
||
protected: | ||
|
||
using LoanableCollection::maximum_; | ||
using LoanableCollection::length_; | ||
using LoanableCollection::elements_; | ||
using LoanableCollection::has_ownership_; | ||
|
||
private: | ||
|
||
/** | ||
* @brief Resize the sequence to a new maximum size. | ||
* | ||
* @param[in] maximum The new maximum size. | ||
*/ | ||
void resize( | ||
size_type maximum) override | ||
{ | ||
assert(has_ownership_); | ||
|
||
// Resize collection and get new pointer | ||
data_.reserve(maximum); | ||
data_.resize(maximum); | ||
elements_ = reinterpret_cast<element_type*>(data_.data()); | ||
|
||
// Allocate individual elements | ||
while (maximum_ < maximum) | ||
{ | ||
data_[maximum_++] = static_cast<fastrtps::types::DynamicData*>(dynamic_type_support_->createData()); | ||
} | ||
} | ||
|
||
/** | ||
* @brief Release all elements and clear the sequence. | ||
*/ | ||
void release() | ||
{ | ||
if (has_ownership_ && elements_) | ||
{ | ||
for (size_type n = 0; n < maximum_; ++n) | ||
{ | ||
fastrtps::types::DynamicData* elem = data_[n]; | ||
dynamic_type_support_->deleteData(elem); | ||
} | ||
std::vector<fastrtps::types::DynamicData*>().swap(data_); | ||
} | ||
|
||
maximum_ = 0u; | ||
length_ = 0u; | ||
elements_ = nullptr; | ||
has_ownership_ = true; | ||
} | ||
|
||
/// Container for holding the DynamicData elements. | ||
std::vector<fastrtps::types::DynamicData*> data_; | ||
|
||
/// Pointer to the DynamicPubSubType type support. | ||
std::unique_ptr<fastrtps::types::DynamicPubSubType> dynamic_type_support_; | ||
}; | ||
|
||
/// Alias for LoanableSequence with DynamicData and true_type. | ||
using DynamicLoanableSequence = LoanableSequence<fastrtps::types::DynamicData, std::true_type>; | ||
|
||
} // namespace dds | ||
} // namespace fastdds | ||
} // namespace eprosima | ||
|
||
#endif // _TYPES_DYNAMIC_LOANABLE_SEQUENCE_HPP_ |
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
Oops, something went wrong.