/* WebRTC signaling client. * * Author: Steffen Vogel * Author: Philipp Jungkamp * SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University * SPDX-FileCopyrightText: 2023 OPAL-RT Germany GmbH * SPDX-License-Identifier: Apache-2.0 */ #pragma once #include #include #include #include #include #include #include #include namespace villas { namespace node { // Forward declarations class Web; namespace webrtc { class SignalingClient { protected: struct sul_offsetof_helper { lws_sorted_usec_list_t sul; // Schedule connection retry SignalingClient *self; } sul_helper; uint16_t retry_count; // Count of consecutive retries struct lws *wsi; struct lws_client_connect_info info; // The retry and backoff policy we want to use for our client connections static constexpr uint32_t backoff_ms[] = {1 << 4, 1 << 6, 1 << 8, 1 << 10, 1 << 12, 1 << 14, 1 << 16}; static constexpr lws_retry_bo_t retry = { .retry_ms_table = backoff_ms, .retry_ms_table_count = LWS_ARRAY_SIZE(backoff_ms), .conceal_count = LWS_ARRAY_SIZE(backoff_ms) + 1, .secs_since_valid_ping = 3, // force PINGs after secs idle .secs_since_valid_hangup = 10, // hangup after secs idle .jitter_percent = 20, }; std::function cbMessage; std::function cbConnected; std::function cbDisconnected; std::function cbError; Queue outgoingMessages; Web *web; char *uri; char *path; std::atomic running; Buffer buffer; // A buffer for received fragments before JSON decoding. Logger logger; int protocolCallback(struct lws *wsi, enum lws_callback_reasons reason, void *in, size_t len); static void connectStatic(struct lws_sorted_usec_list *sul); int writable(); public: SignalingClient(const std::string &server, const std::string &session, const std::string &peer, Web *w); ~SignalingClient(); static int protocolCallbackStatic(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len); void connect(); void disconnect(); void sendMessage(SignalingMessage); void onMessage(std::function callback) { cbMessage = callback; } void onConnected(std::function callback) { cbConnected = callback; } void onDisconnected(std::function callback) { cbDisconnected = callback; } void onError(std::function callback) { cbError = callback; } }; } // namespace webrtc } // namespace node } // namespace villas