-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathParticipantConfiguration.hpp
More file actions
446 lines (363 loc) · 13.9 KB
/
ParticipantConfiguration.hpp
File metadata and controls
446 lines (363 loc) · 13.9 KB
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
// SPDX-FileCopyrightText: 2022 Vector Informatik GmbH
//
// SPDX-License-Identifier: MIT
#pragma once
#include <array>
#include <chrono>
#include <iostream>
#include <optional>
#include <ostream>
#include <string>
#include <vector>
#include "silkit/config/IParticipantConfiguration.hpp"
#include "silkit/services/flexray/FlexrayDatatypes.hpp"
#include "silkit/services/logging/LoggingDatatypes.hpp"
#include "silkit/services/pubsub/PubSubDatatypes.hpp"
#include "silkit/services/rpc/RpcDatatypes.hpp"
#include "silkit/services/datatypes.hpp"
#include "Configuration.hpp"
namespace SilKit {
namespace Config {
inline namespace V1 {
// ================================================================================
// Internal controller service
// ================================================================================
//! \brief Generic dummy for all internal controllers - do not make available to public API!
struct InternalController
{
static constexpr auto GetNetworkType() -> NetworkType
{
return NetworkType::Undefined;
}
std::string name;
std::optional<std::string> network;
};
// ================================================================================
// CAN controller service
// ================================================================================
//! \brief CAN controller service
struct CanController
{
static constexpr auto GetNetworkType() -> NetworkType
{
return NetworkType::CAN;
}
std::string name;
std::optional<std::string> network;
std::vector<std::string> useTraceSinks;
Replay replay;
};
// ================================================================================
// LIN controller service
// ================================================================================
//! \brief LIN controller service
struct LinController
{
static constexpr auto GetNetworkType() -> NetworkType
{
return NetworkType::LIN;
}
std::string name;
std::optional<std::string> network;
std::vector<std::string> useTraceSinks;
Replay replay;
};
// ================================================================================
// Ethernet controller service
// ================================================================================
//! \brief Ethernet controller service
struct EthernetController
{
static constexpr auto GetNetworkType() -> NetworkType
{
return NetworkType::Ethernet;
}
std::string name;
std::optional<std::string> network;
std::vector<std::string> useTraceSinks;
Replay replay;
};
// ================================================================================
// FlexRay controller service
// ================================================================================
//! \brief FlexRay controller service
struct FlexrayController
{
static constexpr auto GetNetworkType() -> NetworkType
{
return NetworkType::FlexRay;
}
std::string name;
std::optional<std::string> network;
std::optional<Services::Flexray::FlexrayClusterParameters> clusterParameters;
std::optional<Services::Flexray::FlexrayNodeParameters> nodeParameters;
std::vector<Services::Flexray::FlexrayTxBufferConfig> txBufferConfigurations;
std::vector<std::string> useTraceSinks;
Replay replay;
};
// ================================================================================
// Labels for Data Publisher/Subscriber and Rpc Servcer/Client service
// ================================================================================
struct Label
{
enum struct Kind
{
Optional,
Mandatory,
};
std::string key;
std::string value;
Kind kind;
auto ToPublicApi() const -> SilKit::Services::MatchingLabel;
static auto FromPublicApi(const SilKit::Services::MatchingLabel& label) -> Label;
static auto VectorFromPublicApi(const std::vector<SilKit::Services::MatchingLabel>& labels) -> std::vector<Label>;
};
// ================================================================================
// Data Publisher/Subscriber service
// ================================================================================
//! \brief Publisher configuration for the Data communication service
struct DataPublisher
{
static constexpr auto GetNetworkType() -> NetworkType
{
return NetworkType::Data;
}
std::string name;
std::optional<std::string> topic;
std::optional<std::vector<Label>> labels;
//! \brief History length of a DataPublisher.
std::optional<size_t> history;
std::vector<std::string> useTraceSinks;
Replay replay;
};
//! \brief Subscriber configuration for the Data communication service
struct DataSubscriber
{
static constexpr auto GetNetworkType() -> NetworkType
{
return NetworkType::Data;
}
std::string name;
std::optional<std::string> topic;
std::optional<std::vector<Label>> labels;
std::vector<std::string> useTraceSinks;
Replay replay;
};
// ================================================================================
// RPC Client/Server service
// ================================================================================
//! \brief Server configuration for the RPC communication service
struct RpcServer
{
static constexpr auto GetNetworkType() -> NetworkType
{
return NetworkType::RPC;
}
std::string name;
std::optional<std::string> functionName;
std::optional<std::vector<Label>> labels;
std::vector<std::string> useTraceSinks;
Replay replay;
};
//! \brief Client configuration for the RPC communication service
struct RpcClient
{
static constexpr auto GetNetworkType() -> NetworkType
{
return NetworkType::RPC;
}
std::string name;
std::optional<std::string> functionName;
std::optional<std::vector<Label>> labels;
std::vector<std::string> useTraceSinks;
Replay replay;
};
// ================================================================================
// Health checking service
// ================================================================================
//! \brief Health checking service
struct HealthCheck
{
std::optional<std::chrono::milliseconds> softResponseTimeout;
std::optional<std::chrono::milliseconds> hardResponseTimeout;
};
// ================================================================================
// Tracing service
// ================================================================================
//! \brief Structure that contains a participant's setup of the tracing service
struct Tracing
{
std::vector<TraceSink> traceSinks;
std::vector<TraceSource> traceSources;
};
// ================================================================================
// Metrics service
// ================================================================================
struct MetricsSink
{
enum class Type
{
Undefined,
JsonFile,
Remote,
};
Type type{Type::Undefined};
std::string name;
};
//! \brief Metrics configuration
struct Metrics
{
std::vector<MetricsSink> sinks;
std::optional<bool> collectFromRemote;
std::chrono::seconds updateInterval{1};
};
// ================================================================================
// Extensions
// ================================================================================
//! \brief Structure that contains extension settings
struct Extensions
{
//! \brief Additional search path hints for extensions
std::vector<std::string> searchPathHints;
};
// ================================================================================
// VAsio Middleware
// ================================================================================
struct Middleware
{
std::string registryUri{}; //!< Registry URI to connect to (configuration has priority)
int connectAttempts{1}; //!< Number of connection attempts to the registry a participant should perform.
int tcpReceiveBufferSize{-1};
int tcpSendBufferSize{-1};
bool tcpNoDelay{
true}; //!< Setting this option to true disables Nagle's algorithm on all TCP/IP sockets. Defaults to true for performance reasons.
bool tcpQuickAck{false}; //!< Setting this Linux specific flag disables delayed TCP/IP acknowledgements.
bool enableDomainSockets{true}; //!< By default local domain socket is preferred to TCP/IP sockets.
std::vector<std::string>
acceptorUris{}; //!< Explicit list of endpoints this participant will accept connections on.
//! By default, communication with other participants using the registry as a proxy is enabled.
bool registryAsFallbackProxy{true};
//! By default, requesting connection of other participants, and honoring these requests by other participants is enabled.
bool experimentalRemoteParticipantConnection{true};
//! Timeout for individual connection attempts (TCP, Local-Domain) and handshakes.
double connectTimeoutSeconds{5.0};
};
// ================================================================================
// TimeSynchronization
// ================================================================================
//! \brief Structure that contains experimental TimeSynchronization settings
struct TimeSynchronization
{
double animationFactor{0.0};
Aggregation enableMessageAggregation{Aggregation::Off};
};
// ================================================================================
// Experimental
// ================================================================================
//! \brief Structure that contains experimental settings
struct Experimental
{
TimeSynchronization timeSynchronization;
Metrics metrics;
};
// ================================================================================
// Includes
// ================================================================================
//! \brief Structure that contains experimental settings
struct Includes
{
std::vector<std::string> searchPathHints;
std::vector<std::string> files;
};
// ================================================================================
// Root
// ================================================================================
//! \brief Current Schema version for ParticipantConfigurations
constexpr inline auto GetSchemaVersion() -> const char*
{
return "1";
}
//! \brief ParticipantConfiguration is the main configuration data object for a SIL Kit participant.
struct ParticipantConfiguration : public IParticipantConfiguration
{
ParticipantConfiguration() = default;
//virtual auto ToYamlString() -> std::string override;
//virtual auto ToJsonString() -> std::string override;
//! \brief Version of the JSON/YAML schema. Currently is at 1
std::string schemaVersion{""};
//! \brief An optional user description for documentation purposes. Currently unused.
std::string description;
//! \brief An optional file path.
std::string configurationFilePath;
//! \brief The participant name (configuration has priority)
std::string participantName;
std::vector<CanController> canControllers;
std::vector<LinController> linControllers;
std::vector<EthernetController> ethernetControllers;
std::vector<FlexrayController> flexrayControllers;
std::vector<DataPublisher> dataPublishers;
std::vector<DataSubscriber> dataSubscribers;
std::vector<RpcServer> rpcServers;
std::vector<RpcClient> rpcClients;
Logging logging;
HealthCheck healthCheck;
Tracing tracing;
Extensions extensions;
Includes includes;
Middleware middleware;
Experimental experimental;
// experimental synchronization points
bool enableSynchronizationPoints{false};
};
bool operator==(const CanController& lhs, const CanController& rhs);
bool operator==(const LinController& lhs, const LinController& rhs);
bool operator==(const EthernetController& lhs, const EthernetController& rhs);
bool operator==(const FlexrayController& lhs, const FlexrayController& rhs);
bool operator==(const DataPublisher& lhs, const DataPublisher& rhs);
bool operator==(const DataSubscriber& lhs, const DataSubscriber& rhs);
bool operator==(const RpcServer& lhs, const RpcServer& rhs);
bool operator==(const RpcClient& lhs, const RpcClient& rhs);
bool operator==(const HealthCheck& lhs, const HealthCheck& rhs);
bool operator==(const Tracing& lhs, const Tracing& rhs);
bool operator==(const MetricsSink& lhs, const MetricsSink& rhs);
bool operator==(const Metrics& lhs, const Metrics& rhs);
bool operator==(const Extensions& lhs, const Extensions& rhs);
bool operator==(const Middleware& lhs, const Middleware& rhs);
bool operator==(const Includes& lhs, const Includes& rhs);
bool operator==(const ParticipantConfiguration& lhs, const ParticipantConfiguration& rhs);
bool operator==(const TimeSynchronization& lhs, const TimeSynchronization& rhs);
bool operator==(const Experimental& lhs, const Experimental& rhs);
bool operator==(const Label& lhs, const Label& rhs);
bool operator==(const SimulatedNetwork& lhs, const SimulatedNetwork& rhs);
auto operator<<(std::ostream& out, const Label::Kind& kind) -> std::ostream&;
auto operator<<(std::ostream& out, const Label& label) -> std::ostream&;
bool operator<(const MetricsSink& lhs, const MetricsSink& rhs);
bool operator>(const MetricsSink& lhs, const MetricsSink& rhs);
} // namespace V1
} // namespace Config
} // namespace SilKit
namespace SilKitRegistry {
namespace Config {
namespace V1 {
constexpr inline auto GetSchemaVersion() -> const char*
{
return "1";
}
struct Experimental
{
SilKit::Config::V1::Metrics metrics;
};
struct RegistryConfiguration
{
std::string description{""};
std::string schemaVersion{""};
std::optional<std::string> listenUri;
std::optional<bool> enableDomainSockets;
std::optional<std::string> dashboardUri;
SilKit::Config::Logging logging{};
Experimental experimental{};
};
bool operator==(const Experimental& lhs, const Experimental& rhs);
} // namespace V1
} // namespace Config
} // namespace SilKitRegistry