1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
|
// 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 ClientApp.hpp
*
*/
#ifndef FASTDDS_EXAMPLES_CPP_RPC__CLIENTAPP_HPP
#define FASTDDS_EXAMPLES_CPP_RPC__CLIENTAPP_HPP
#include <atomic>
#include <memory>
#include <string>
#include <fastdds/dds/domain/DomainParticipant.hpp>
#include <fastdds/dds/rpc/interfaces/RpcClientReader.hpp>
#include <fastdds/dds/rpc/interfaces/RpcClientWriter.hpp>
#include "Application.hpp"
#include "CLIParser.hpp"
#include "types/calculator.hpp"
namespace eprosima {
namespace fastdds {
namespace examples {
namespace rpc {
enum class OperationStatus
{
PENDING,
SUCCESS,
TIMEOUT,
ERROR
};
class Operation
{
public:
virtual OperationStatus execute() = 0;
virtual ~Operation() = default;
};
class Ping : public Operation
{
public:
Ping(
std::shared_ptr<calculator_example::Calculator> client);
OperationStatus execute() override;
protected:
std::weak_ptr<calculator_example::Calculator> client_;
};
class RepresentationLimits : public Operation
{
public:
RepresentationLimits(
std::shared_ptr<calculator_example::Calculator> client);
OperationStatus execute() override;
protected:
calculator_example::detail::Calculator_representation_limits_Out representation_limits_;
std::weak_ptr<calculator_example::Calculator> client_;
};
class Addition : public Operation
{
public:
Addition(
std::shared_ptr<calculator_example::Calculator> client,
std::int32_t x,
std::int32_t y);
OperationStatus execute() override;
protected:
std::int32_t x_;
std::int32_t y_;
std::int32_t result_;
std::weak_ptr<calculator_example::Calculator> client_;
};
class Substraction : public Operation
{
public:
Substraction(
std::shared_ptr<calculator_example::Calculator> client,
std::int32_t x,
std::int32_t y);
OperationStatus execute() override;
protected:
std::int32_t x_;
std::int32_t y_;
std::int32_t result_;
std::weak_ptr<calculator_example::Calculator> client_;
};
class FibonacciSeq : public Operation
{
public:
FibonacciSeq(
std::shared_ptr<calculator_example::Calculator> client,
std::uint32_t n_results);
OperationStatus execute() override;
protected:
std::uint32_t n_results_;
std::weak_ptr<calculator_example::Calculator> client_;
std::shared_ptr<eprosima::fastdds::dds::rpc::RpcClientReader<int32_t>> reader_;
};
class SumAll : public Operation
{
public:
SumAll(
std::shared_ptr<calculator_example::Calculator> client);
OperationStatus execute() override;
protected:
std::weak_ptr<calculator_example::Calculator> client_;
std::shared_ptr<eprosima::fastdds::dds::rpc::RpcClientWriter<int32_t>> writer_;
std::int32_t result_;
bool input_feed_closed_;
};
class Accumulator : public Operation
{
public:
Accumulator(
std::shared_ptr<calculator_example::Calculator> client);
OperationStatus execute() override;
protected:
std::weak_ptr<calculator_example::Calculator> client_;
std::shared_ptr<eprosima::fastdds::dds::rpc::RpcClientWriter<int32_t>> writer_;
std::shared_ptr<eprosima::fastdds::dds::rpc::RpcClientReader<int32_t>> reader_;
bool valid_user_input_;
};
class Filter : public Operation
{
public:
Filter(
std::shared_ptr<calculator_example::Calculator> client,
std::uint8_t filter_kind);
OperationStatus execute() override;
protected:
std::weak_ptr<calculator_example::Calculator> client_;
std::shared_ptr<eprosima::fastdds::dds::rpc::RpcClientWriter<int32_t>> writer_;
std::shared_ptr<eprosima::fastdds::dds::rpc::RpcClientReader<int32_t>> reader_;
std::uint8_t filter_kind_;
bool input_feed_closed_;
};
class ClientApp : public Application
{
public:
ClientApp(
const CLIParser::config& config,
const std::string& service_name);
~ClientApp() override;
void run() override;
void stop() override;
protected:
//! Create a participant for internal RPCDDS entities
void create_participant();
//! Create a client
void create_client(
const std::string& service_name);
//! Set the operation to be executed.
void set_operation();
//! Check if the a server is reachable. If not, retry until the maximum number of attempts is reached
//! @return true if the server is reachable, false otherwise
bool ping_server(
std::size_t attempts);
bool is_stopped()
{
return stop_.load();
}
std::shared_ptr<calculator_example::Calculator> client_;
dds::DomainParticipant* participant_;
CLIParser::config config_;
std::unique_ptr<Operation> operation_;
std::atomic<bool> stop_;
};
} // namespace rpc
} // namespace examples
} // namespace fastdds
} // namespace eprosima
#endif // FASTDDS_EXAMPLES_CPP_RPC__CLIENTAPP_HPP
|