-
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.
Fix hidden overloaded virtual methods (#4516)
* Refs #20592: Fix for test Signed-off-by: EduPonz <[email protected]> * Refs #20592: Fix for examples Signed-off-by: EduPonz <[email protected]> * Refs #20592: Add more warning flags to Ubuntu CI Signed-off-by: EduPonz <[email protected]> * Refs #20592: Remove default values on overloaded PDPClient::announceParticipantState Signed-off-by: EduPonz <[email protected]> --------- Signed-off-by: EduPonz <[email protected]> (cherry picked from commit 63cc242) # Conflicts: # .github/workflows/reusable-ubuntu-ci.yml # examples/C++/RTPSTest_persistent/TestReaderPersistent.h # examples/C++/RTPSTest_persistent/TestWriterPersistent.h # examples/C++/RTPSTest_registered/TestReaderRegistered.h # examples/C++/RTPSTest_registered/TestWriterRegistered.h # examples/cpp/dds/DiscoveryServerExample/DiscoveryServerServer.h # src/cpp/rtps/builtin/discovery/participant/timedevent/DSClientEvent.cpp # test/blackbox/common/DDSBlackboxTestsBasic.cpp # test/blackbox/common/DDSBlackboxTestsDataRepresentationQos.cpp # test/blackbox/common/DDSBlackboxTestsDiscovery.cpp # test/blackbox/common/DDSBlackboxTestsFindTopic.cpp # test/dds/communication/SubscriberDynamic.cpp # test/dds/communication/security/PublisherModule.hpp # test/dds/communication/security/SubscriberModule.hpp # test/unittest/dds/participant/ParticipantTests.cpp # test/unittest/dds/subscriber/DataReaderHistoryTests.cpp # test/unittest/statistics/dds/StatisticsDomainParticipantStatusQueryableTests.cpp
- Loading branch information
1 parent
d4f57b0
commit 5156cac
Showing
41 changed files
with
3,400 additions
and
2 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
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
106 changes: 106 additions & 0 deletions
106
examples/cpp/dds/DiscoveryServerExample/DiscoveryServerServer.h
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,106 @@ | ||
// 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 DiscoveryServerServer.h | ||
* | ||
*/ | ||
|
||
#ifndef _EPROSIMA_FASTDDS_EXAMPLES_CPP_DDS_DISCOVERYSERVEREXAMPLE_DISCOVERYSERVERSERVER_H_ | ||
#define _EPROSIMA_FASTDDS_EXAMPLES_CPP_DDS_DISCOVERYSERVEREXAMPLE_DISCOVERYSERVERSERVER_H_ | ||
|
||
#include <atomic> | ||
#include <condition_variable> | ||
#include <mutex> | ||
|
||
#include <fastdds/dds/domain/DomainParticipant.hpp> | ||
#include <fastdds/dds/domain/DomainParticipantListener.hpp> | ||
|
||
#include "common.h" | ||
|
||
/** | ||
* Class with a partipant configured to function as server in the Discovery Server mechanism | ||
*/ | ||
class DiscoveryServer | ||
{ | ||
public: | ||
|
||
DiscoveryServer(); | ||
|
||
virtual ~DiscoveryServer(); | ||
|
||
//! Initialize the server | ||
bool init( | ||
const std::string& server_address, | ||
unsigned short server_port, | ||
unsigned short server_id, | ||
TransportKind transport, | ||
bool has_connection_server, | ||
const std::string& connection_server_address, | ||
unsigned short connection_server_port, | ||
unsigned short connection_server_id); | ||
|
||
//! Run | ||
void run( | ||
unsigned int timeout); | ||
|
||
//! Return the current state of execution | ||
static bool is_stopped(); | ||
|
||
//! Trigger the end of execution | ||
static void stop(); | ||
|
||
private: | ||
|
||
eprosima::fastdds::dds::DomainParticipant* participant_; | ||
|
||
/** | ||
* Class handling discovery events | ||
*/ | ||
class ServerListener : public eprosima::fastdds::dds::DomainParticipantListener | ||
{ | ||
public: | ||
|
||
ServerListener() | ||
{ | ||
} | ||
|
||
~ServerListener() override | ||
{ | ||
} | ||
|
||
//! Callback executed when a DomainParticipant is discovered, dropped or removed | ||
void on_participant_discovery( | ||
eprosima::fastdds::dds::DomainParticipant* /*participant*/, | ||
eprosima::fastrtps::rtps::ParticipantDiscoveryInfo&& info) override; | ||
|
||
private: | ||
|
||
using eprosima::fastdds::dds::DomainParticipantListener::on_participant_discovery; | ||
} | ||
listener_; | ||
|
||
//! Member used for control flow purposes | ||
static std::atomic<bool> stop_; | ||
|
||
//! Protects terminate condition variable | ||
static std::mutex terminate_cv_mtx_; | ||
|
||
//! Waits during execution until SIGINT or max_messages_ samples are received | ||
static std::condition_variable terminate_cv_; | ||
}; | ||
|
||
|
||
|
||
#endif /* _EPROSIMA_FASTDDS_EXAMPLES_CPP_DDS_DISCOVERYSERVEREXAMPLE_DISCOVERYSERVERSERVER_H_ */ |
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
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.