-
Notifications
You must be signed in to change notification settings - Fork 791
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Keep changes inside instances sorted by source timestamp (#2182)
* Refs 12419. Regression test. Signed-off-by: Miguel Company <MiguelCompany@eprosima.com> * Refs 12419. Added sorted_vector_insert utility method. Signed-off-by: Miguel Company <MiguelCompany@eprosima.com> * Refs 12419. ReaderHistory uses sorted_vector_insert. Signed-off-by: Miguel Company <MiguelCompany@eprosima.com> * Refs 12419. SubscriberHistory uses sorted_vector_insert. Signed-off-by: Miguel Company <MiguelCompany@eprosima.com> * Refs 12421. Uncrustify. Signed-off-by: Miguel Company <MiguelCompany@eprosima.com> * Refs 12421. Apply suggestions Signed-off-by: Miguel Company <MiguelCompany@eprosima.com> * Refs 12421. Moved new template method to correct namespace. Signed-off-by: Miguel Company <MiguelCompany@eprosima.com> (cherry picked from commit 38e8d0f) # Conflicts: # include/fastdds/rtps/history/ReaderHistory.h # src/cpp/fastrtps_deprecated/subscriber/SubscriberHistory.cpp # src/cpp/rtps/history/ReaderHistory.cpp # test/mock/rtps/ReaderHistory/fastdds/rtps/history/ReaderHistory.h
- Loading branch information
1 parent
2cbde93
commit e86155b
Showing
6 changed files
with
167 additions
and
7 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
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,64 @@ | ||
// Copyright 2021 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 sorted_vector_insert.hpp | ||
*/ | ||
|
||
#ifndef SRC_CPP_UTILS_COLLECTIONS_SORTED_VECTOR_INSERT_HPP_ | ||
#define SRC_CPP_UTILS_COLLECTIONS_SORTED_VECTOR_INSERT_HPP_ | ||
|
||
#include <algorithm> | ||
#include <functional> | ||
|
||
namespace eprosima { | ||
namespace utilities { | ||
namespace collections { | ||
|
||
/** | ||
* @brief Insert item into sorted vector-like collection | ||
* | ||
* @tparam CollectionType Type of the collection to be modified. | ||
* @tparam ValueType Type of the item to insert. The collection should support to insert a value of this type. | ||
* @tparam LessThanPredicate Predicate that performs ValueType < CollectionType::value_type comparison. | ||
* | ||
* @param[in,out] collection The collection to be modified. | ||
* @param[in] item The item to be inserted. | ||
* @param[in] pred The predicate to use for comparisons. | ||
*/ | ||
template< | ||
typename CollectionType, | ||
typename ValueType, | ||
typename LessThanPredicate = std::less<ValueType>> | ||
void sorted_vector_insert( | ||
CollectionType& collection, | ||
const ValueType& item, | ||
const LessThanPredicate& pred = LessThanPredicate()) | ||
{ | ||
// Insert at the end by default | ||
auto it = collection.end(); | ||
|
||
// Find insertion position when item is less than last element in collection | ||
if (!collection.empty() && pred(item, *collection.rbegin())) | ||
{ | ||
it = std::lower_bound(collection.begin(), collection.end(), item, pred); | ||
} | ||
collection.insert(it, item); | ||
} | ||
|
||
} // namespace collections | ||
} // namespace utilities | ||
} // namespace eprosima | ||
|
||
#endif // SRC_CPP_UTILS_COLLECTIONS_SORTED_VECTOR_INSERT_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