OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
configuration.hpp
1#pragma once
2#include <cstdint>
3#include <optional>
4#include <string>
5
6namespace ossia::net
7{
8enum class framing
9{
10 none,
11 size_prefix,
12 slip,
13 line_delimiter
14};
15
16struct fd_configuration
17{
18 std::string fd;
19};
20
21struct send_fd_configuration : fd_configuration
22{
23};
24struct receive_fd_configuration : fd_configuration
25{
26};
27
28struct outbound_socket_configuration
29{
30 std::string host;
31 uint16_t port{};
32 bool broadcast{};
33};
34struct inbound_socket_configuration
35{
36 std::string bind;
37 uint16_t port{};
38};
39
40struct double_fd_configuration
41{
42 std::optional<receive_fd_configuration> local;
43 std::optional<send_fd_configuration> remote;
44};
45
46struct double_socket_configuration
47{
48 std::optional<inbound_socket_configuration> local;
49 std::optional<outbound_socket_configuration> remote;
50};
51
52struct serial_configuration
53{
54 // the serial device name ("COM1", "/dev/ttyUSB1"...)
55 std::string port;
56
57 int baud_rate{19200};
58 int character_size{8};
59 enum
60 {
61 no_flow_control,
62 software,
63 hardware
64 } flow_control{no_flow_control};
65 enum
66 {
67 no_parity,
68 odd,
69 even
70 } parity{no_parity};
71 enum
72 {
73 one,
74 onepointfive,
75 two
76 } stop_bits{one};
77};
78
79struct ws_client_configuration
80{
81 std::string url;
82};
83
84struct ws_server_configuration
85{
86 int port{};
87};
88
89// first / second: the unix sockets name.
90// Must be reverted between host and mirror as they are symmetrical.
91struct unix_dgram_configuration : double_fd_configuration
92{
93};
94
95struct unix_stream_configuration : fd_configuration
96{
97};
98
99struct udp_configuration : double_socket_configuration
100{
101};
102
103struct tcp_client_configuration : outbound_socket_configuration
104{
105};
106
107struct udp_server_configuration : inbound_socket_configuration
108{
109};
110struct tcp_server_configuration : inbound_socket_configuration
111{
112};
113struct unix_dgram_server_configuration : receive_fd_configuration
114{
115};
116struct unix_stream_server_configuration : receive_fd_configuration
117{
118};
119}