| #include "helper/handler.h" |
| #include "helper/utils.h" |
| #include <rawrtc.h> |
| #include <rawrtcc.h> |
| #include <rawrtcdc.h> |
| #include <re.h> |
| #include <stdlib.h> // exit |
| #include <unistd.h> // STDIN_FILENO |
| |
| #define DEBUG_MODULE "peer-connection-app" |
| #define DEBUG_LEVEL 7 |
| #include <re_dbg.h> |
| |
| enum { |
| TRANSPORT_BUFFER_LENGTH = 1048576, // 1 MiB |
| }; |
| |
| // Note: Shadows struct client |
| struct peer_connection_client { |
| char* name; |
| char** ice_candidate_types; |
| size_t n_ice_candidate_types; |
| bool offering; |
| struct rawrtc_peer_connection_configuration* configuration; |
| struct rawrtc_peer_connection* connection; |
| struct data_channel_helper* data_channel_negotiated; |
| struct data_channel_helper* data_channel; |
| }; |
| |
| static void print_local_description(struct peer_connection_client* const client); |
| |
| static struct tmr timer = {0}; |
| |
| static void timer_handler(void* arg) { |
| struct data_channel_helper* const channel = arg; |
| struct peer_connection_client* const client = (struct peer_connection_client*) channel->client; |
| struct mbuf* buffer; |
| enum rawrtc_code error; |
| |
| // Compose message (16 KiB) |
| buffer = mbuf_alloc(1 << 14); |
| EOE(buffer ? RAWRTC_CODE_SUCCESS : RAWRTC_CODE_NO_MEMORY); |
| EOR(mbuf_fill(buffer, 'M', mbuf_get_space(buffer))); |
| mbuf_set_pos(buffer, 0); |
| |
| // Send message |
| DEBUG_PRINTF("(%s) Sending %zu bytes\n", client->name, mbuf_get_left(buffer)); |
| error = rawrtc_data_channel_send(channel->channel, buffer, true); |
| if (error) { |
| DEBUG_WARNING("Could not send, reason: %s\n", rawrtc_code_to_str(error)); |
| } |
| mem_deref(buffer); |
| |
| // Close if offering |
| if (client->offering) { |
| // Close bear-noises |
| DEBUG_PRINTF("(%s) Closing channel\n", client->name, channel->label); |
| EOR(rawrtc_data_channel_close(client->data_channel->channel)); |
| } |
| } |
| |
| static void data_channel_open_handler(void* const arg) { |
| struct data_channel_helper* const channel = arg; |
| struct peer_connection_client* const client = (struct peer_connection_client*) channel->client; |
| struct mbuf* buffer; |
| enum rawrtc_code error; |
| |
| // Print open event |
| default_data_channel_open_handler(arg); |
| |
| // Send data delayed on bear-noises |
| if (str_cmp(channel->label, "bear-noises") == 0) { |
| tmr_start(&timer, 30000, timer_handler, channel); |
| return; |
| } |
| |
| // Compose message (8 KiB) |
| buffer = mbuf_alloc(1 << 13); |
| EOE(buffer ? RAWRTC_CODE_SUCCESS : RAWRTC_CODE_NO_MEMORY); |
| EOR(mbuf_fill(buffer, 'M', mbuf_get_space(buffer))); |
| mbuf_set_pos(buffer, 0); |
| |
| // Send message |
| DEBUG_PRINTF("(%s) Sending %zu bytes\n", client->name, mbuf_get_left(buffer)); |
| error = rawrtc_data_channel_send(channel->channel, buffer, true); |
| if (error) { |
| DEBUG_WARNING("Could not send, reason: %s\n", rawrtc_code_to_str(error)); |
| } |
| mem_deref(buffer); |
| } |
| |
| static void negotiation_needed_handler(void* const arg) { |
| struct peer_connection_client* const client = arg; |
| |
| // Print negotiation needed |
| default_negotiation_needed_handler(arg); |
| |
| // Offering: Create and set local description |
| if (client->offering) { |
| struct rawrtc_peer_connection_description* description; |
| EOE(rawrtc_peer_connection_create_offer(&description, client->connection, false)); |
| EOE(rawrtc_peer_connection_set_local_description(client->connection, description)); |
| mem_deref(description); |
| } |
| } |
| |
| static void connection_state_change_handler( |
| enum rawrtc_peer_connection_state const state, // read-only |
| void* const arg) { |
| struct peer_connection_client* const client = arg; |
| |
| // Print state |
| default_peer_connection_state_change_handler(state, arg); |
| |
| // Open? Create new channel |
| // Note: Since this state can switch from 'connected' to 'disconnected' and back again, we |
| // need to make sure we don't re-create data channels unintended. |
| // TODO: Move this once we can create data channels earlier |
| if (!client->data_channel && state == RAWRTC_PEER_CONNECTION_STATE_CONNECTED) { |
| struct rawrtc_data_channel_parameters* channel_parameters; |
| char* const label = client->offering ? "bear-noises" : "lion-noises"; |
| |
| // Create data channel helper for in-band negotiated data channel |
| data_channel_helper_create(&client->data_channel, (struct client*) client, label); |
| |
| // Create data channel parameters |
| EOE(rawrtc_data_channel_parameters_create( |
| &channel_parameters, client->data_channel->label, |
| RAWRTC_DATA_CHANNEL_TYPE_RELIABLE_UNORDERED, 0, NULL, false, 0)); |
| |
| // Create data channel |
| EOE(rawrtc_peer_connection_create_data_channel( |
| &client->data_channel->channel, client->connection, channel_parameters, |
| data_channel_open_handler, default_data_channel_buffered_amount_low_handler, |
| default_data_channel_error_handler, default_data_channel_close_handler, |
| default_data_channel_message_handler, client->data_channel)); |
| |
| // Un-reference data channel parameters |
| mem_deref(channel_parameters); |
| } |
| } |
| |
| static void local_candidate_handler( |
| struct rawrtc_peer_connection_ice_candidate* const candidate, |
| char const* const url, // read-only |
| void* const arg) { |
| struct peer_connection_client* const client = arg; |
| |
| // Print local candidate |
| default_peer_connection_local_candidate_handler(candidate, url, arg); |
| |
| // Print local description (if last candidate) |
| if (!candidate) { |
| print_local_description(client); |
| } |
| } |
| |
| static void client_init(struct peer_connection_client* const client) { |
| struct rawrtc_data_channel_parameters* channel_parameters; |
| |
| // Create peer connection |
| EOE(rawrtc_peer_connection_create( |
| &client->connection, client->configuration, negotiation_needed_handler, |
| local_candidate_handler, default_peer_connection_local_candidate_error_handler, |
| default_signaling_state_change_handler, default_ice_transport_state_change_handler, |
| default_ice_gatherer_state_change_handler, connection_state_change_handler, |
| default_data_channel_handler, client)); |
| |
| // Create data channel helper for pre-negotiated data channel |
| data_channel_helper_create( |
| &client->data_channel_negotiated, (struct client*) client, "cat-noises"); |
| |
| // Create data channel parameters |
| EOE(rawrtc_data_channel_parameters_create( |
| &channel_parameters, client->data_channel_negotiated->label, |
| RAWRTC_DATA_CHANNEL_TYPE_RELIABLE_ORDERED, 0, NULL, true, 0)); |
| |
| // Create pre-negotiated data channel |
| EOE(rawrtc_peer_connection_create_data_channel( |
| &client->data_channel_negotiated->channel, client->connection, channel_parameters, |
| data_channel_open_handler, default_data_channel_buffered_amount_low_handler, |
| default_data_channel_error_handler, default_data_channel_close_handler, |
| default_data_channel_message_handler, client->data_channel_negotiated)); |
| |
| // TODO: Create in-band negotiated data channel |
| // TODO: Return some kind of promise that resolves once the data channel can be created |
| |
| // Un-reference data channel parameters |
| mem_deref(channel_parameters); |
| } |
| |
| static void client_stop(struct peer_connection_client* const client) { |
| EOE(rawrtc_peer_connection_close(client->connection)); |
| |
| // Un-reference & close |
| client->data_channel = mem_deref(client->data_channel); |
| client->data_channel_negotiated = mem_deref(client->data_channel_negotiated); |
| client->connection = mem_deref(client->connection); |
| client->configuration = mem_deref(client->configuration); |
| |
| // Stop listening on STDIN |
| fd_close(STDIN_FILENO); |
| } |
| |
| static void parse_remote_description(int flags, void* arg) { |
| struct peer_connection_client* const client = arg; |
| enum rawrtc_code error; |
| bool do_exit = false; |
| struct odict* dict = NULL; |
| char* type_str; |
| char* sdp; |
| enum rawrtc_sdp_type type; |
| struct rawrtc_peer_connection_description* remote_description = NULL; |
| (void) flags; |
| |
| // Get dict from JSON |
| error = get_json_stdin(&dict); |
| if (error) { |
| do_exit = error == RAWRTC_CODE_NO_VALUE; |
| goto out; |
| } |
| |
| // Decode JSON |
| error |= dict_get_entry(&type_str, dict, "type", ODICT_STRING, true); |
| error |= dict_get_entry(&sdp, dict, "sdp", ODICT_STRING, true); |
| if (error) { |
| DEBUG_WARNING("Invalid remote description\n"); |
| goto out; |
| } |
| |
| // Convert to description |
| error = rawrtc_str_to_sdp_type(&type, type_str); |
| if (error) { |
| DEBUG_WARNING("Invalid SDP type in remote description: '%s'\n", type_str); |
| goto out; |
| } |
| error = rawrtc_peer_connection_description_create(&remote_description, type, sdp); |
| if (error) { |
| DEBUG_WARNING("Cannot parse remote description: %s\n", rawrtc_code_to_str(error)); |
| goto out; |
| } |
| |
| // Set remote description |
| DEBUG_INFO("Applying remote description\n"); |
| EOE(rawrtc_peer_connection_set_remote_description(client->connection, remote_description)); |
| |
| // Answering: Create and set local description |
| if (!client->offering) { |
| struct rawrtc_peer_connection_description* local_description; |
| EOE(rawrtc_peer_connection_create_answer(&local_description, client->connection)); |
| EOE(rawrtc_peer_connection_set_local_description(client->connection, local_description)); |
| mem_deref(local_description); |
| } |
| |
| out: |
| // Un-reference |
| mem_deref(remote_description); |
| mem_deref(dict); |
| |
| // Exit? |
| if (do_exit) { |
| DEBUG_NOTICE("Exiting\n"); |
| |
| // Stop client & bye |
| tmr_cancel(&timer); |
| re_cancel(); |
| } |
| } |
| |
| static void print_local_description(struct peer_connection_client* const client) { |
| struct rawrtc_peer_connection_description* description; |
| enum rawrtc_sdp_type type; |
| char* sdp; |
| struct odict* dict; |
| |
| // Get description |
| EOE(rawrtc_peer_connection_get_local_description(&description, client->connection)); |
| |
| // Get SDP type & the SDP itself |
| EOE(rawrtc_peer_connection_description_get_sdp_type(&type, description)); |
| EOE(rawrtc_peer_connection_description_get_sdp(&sdp, description)); |
| |
| // Create dict & add entries |
| EOR(odict_alloc(&dict, 16)); |
| EOR(odict_entry_add(dict, "type", ODICT_STRING, rawrtc_sdp_type_to_str(type))); |
| EOR(odict_entry_add(dict, "sdp", ODICT_STRING, sdp)); |
| |
| // Print local description as JSON |
| DEBUG_INFO("Local Description:\n%H\n", json_encode_odict, dict); |
| |
| // Un-reference |
| mem_deref(dict); |
| mem_deref(sdp); |
| mem_deref(description); |
| } |
| |
| static void exit_with_usage(char* program) { |
| DEBUG_WARNING("Usage: %s <0|1 (offering)> [<ice-candidate-type> ...]", program); |
| exit(1); |
| } |
| |
| int main(int argc, char* argv[argc + 1]) { |
| char** ice_candidate_types = NULL; |
| size_t n_ice_candidate_types = 0; |
| enum rawrtc_ice_role role; |
| struct rawrtc_peer_connection_configuration* configuration; |
| char* const turn_zwuenf_org_urls[] = {"stun:turn.zwuenf.org"}; |
| struct peer_connection_client client = {0}; |
| (void) client.ice_candidate_types; |
| (void) client.n_ice_candidate_types; |
| |
| // Debug |
| dbg_init(DBG_DEBUG, DBG_ALL); |
| DEBUG_PRINTF("Init\n"); |
| |
| // Initialise |
| EOE(rawrtc_init(true)); |
| |
| // Check arguments length |
| if (argc < 2) { |
| exit_with_usage(argv[0]); |
| } |
| |
| // Get role |
| // Note: We handle it as an ICE role (because that is pretty close) |
| if (get_ice_role(&role, argv[1])) { |
| exit_with_usage(argv[0]); |
| } |
| |
| // Get enabled ICE candidate types to be added (optional) |
| if (argc >= 3) { |
| ice_candidate_types = &argv[2]; |
| n_ice_candidate_types = (size_t) argc - 2; |
| } |
| |
| // Create peer connection configuration |
| EOE(rawrtc_peer_connection_configuration_create(&configuration, RAWRTC_ICE_GATHER_POLICY_ALL)); |
| |
| // Add ICE servers to configuration |
| EOE(rawrtc_peer_connection_configuration_add_ice_server( |
| configuration, turn_zwuenf_org_urls, ARRAY_SIZE(turn_zwuenf_org_urls), NULL, NULL, |
| RAWRTC_ICE_CREDENTIAL_TYPE_NONE)); |
| |
| // Set the SCTP transport's buffer length |
| EOE(rawrtc_peer_connection_configuration_set_sctp_buffer_length( |
| configuration, TRANSPORT_BUFFER_LENGTH, TRANSPORT_BUFFER_LENGTH)); |
| |
| // Set client fields |
| client.name = "A"; |
| client.ice_candidate_types = ice_candidate_types; |
| client.n_ice_candidate_types = n_ice_candidate_types; |
| client.configuration = configuration; |
| client.offering = role == RAWRTC_ICE_ROLE_CONTROLLING ? true : false; |
| |
| // Setup client |
| client_init(&client); |
| |
| // Listen on stdin |
| EOR(fd_listen(STDIN_FILENO, FD_READ, parse_remote_description, &client)); |
| |
| // Start main loop |
| EOR(re_main(default_signal_handler)); |
| |
| // Stop client & bye |
| client_stop(&client); |
| before_exit(); |
| return 0; |
| } |