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 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
|
/*
* FILE: main-engine.c
* PROGRAM: RAT
* AUTHOR: Colin Perkins
*
* Copyright (c) 1995-2001 University College London
* All rights reserved.
*/
#ifndef HIDE_SOURCE_STRINGS
static const char cvsid[] =
"$Id: main_engine.c,v 1.97 2001/01/08 20:30:02 ucaccsp Exp $";
#endif /* HIDE_SOURCE_STRINGS */
#include "config_unix.h"
#include "config_win32.h"
#include "debug.h"
#include "memory.h"
#include "audio_types.h"
#include "codec_types.h"
#include "codec.h"
#include "channel_types.h"
#include "session.h"
#include "audio.h"
#include "auddev.h"
#include "cushion.h"
#include "converter.h"
#include "tcltk.h"
#include "pdb.h"
#include "ui_send_rtp.h"
#include "ui_send_audio.h"
#include "ui_send_stats.h"
#include "net.h"
#include "parameters.h"
#include "transmit.h"
#include "source.h"
#include "mix.h"
#include "sndfile.h"
#include "mbus_ui.h"
#include "mbus_engine.h"
#include "crypt_random.h"
#include "net_udp.h"
#include "settings.h"
#include "rtp.h"
#include "rtp_callback.h"
#include "tonegen.h"
#include "voxlet.h"
#include "fatal_error.h"
#include "version.h"
#include "mbus_parser.h"
#include "mbus.h"
#include "util.h"
char *c_addr, *token[2], *token_e[2]; /* Could be in the session struct */
int should_exit = FALSE;
int mbus_shutdown_error = FALSE;
int num_sessions = 1;
pid_t ppid;
#ifndef WIN32
static void
signal_handler(int signal)
{
debug_msg("Caught signal %d\n", signal);
exit(-1);
}
#endif
#define MBUS_ADDR_ENGINE "(media:audio module:engine app:rat session:%d id:%lu)"
static void parse_args(int argc, char *argv[])
{
int i, tc;
if ((argc != 5) && (argc != 8)) {
printf("Usage: rat-%s-media [-T] -ctrl <addr> -token <token> [-token <token>]\n", RAT_VERSION);
exit(1);
}
tc = 0;
for (i = 1; i < argc; i++) {
if (strcmp(argv[i], "-ctrl") == 0) {
c_addr = xstrdup(argv[++i]);
} else if (strcmp(argv[i], "-token") == 0) {
token[tc] = xstrdup(argv[++i]);
token_e[tc] = mbus_encode_str(token[tc]);
debug_msg("token[%d] = %s\n", tc, token[tc]);
tc++;
} else if (strcmp(argv[i], "-T") == 0) {
/* Enable transcoder... */
debug_msg("Enabled transcoder support\n");
num_sessions = 2;
} else {
printf("Unknown argument \"%s\"\n", argv[i]);
abort();
}
}
/*
* Want app instance to be same across all processes that
* consitute this rat. Parent pid appears after last colon.
* Obviously on Un*x we could use getppid...
*/
i = strlen(c_addr) - 1;
while(i > 1 && c_addr[i - 1] != ':') {
i--;
}
ppid = (pid_t)atoi(&c_addr[i]);
}
static void
mbus_error_handler(int seqnum, int reason)
{
debug_msg("mbus message failed (%d:%d)\n", seqnum, reason);
if (should_exit == FALSE) {
char msg[64];
sprintf(msg, "MBUS message failed (%d:%d)\n", seqnum, reason);
fatal_error("RAT v" RAT_VERSION, msg);
abort();
}
mbus_shutdown_error = TRUE;
UNUSED(seqnum);
UNUSED(reason);
/* Ignore error we're closing down anyway */
}
static void rendezvous_with_controller(session_t *sp[2])
{
int i, j, done;
struct timeval timeout;
/* Signal to the controller that we are ready to go. It should be sending us an */
/* mbus.waiting(foo) where "foo" is the same as the "-token" argument we were */
/* passed on startup. We respond with mbus.go(foo) sent reliably to the controller. */
/* This gets complicated, because we may have two instances of the mbus active. */
for (i = 0; i < num_sessions; i++) {
debug_msg("Need mbus.waiting(%s) from controller...\n", token[i]);
sp[i]->mbus_waiting = TRUE;
sp[i]->mbus_waiting_token = token[i];
}
do {
done = TRUE;
for (j = 0; j < num_sessions; j++) {
timeout.tv_sec = 0;
timeout.tv_usec = 10000;
mbus_send(sp[j]->mbus_engine);
mbus_recv(sp[j]->mbus_engine, (void *) sp[j], &timeout);
mbus_heartbeat(sp[j]->mbus_engine, 1);
mbus_retransmit(sp[j]->mbus_engine);
done &= !sp[j]->mbus_waiting;
if (!sp[j]->mbus_waiting) {
debug_msg("Sending mbus.go(%s) to controller...\n", token[j]);
mbus_qmsgf(sp[j]->mbus_engine, c_addr, TRUE, "mbus.go", "%s", token_e[j]);
}
}
} while (!done);
debug_msg("Got all needed mbus.waiting() messages from controller\n");
for (i = 0; i < num_sessions; i++) {
do {
done = FALSE;
for (i = 0; i < num_sessions; i++) {
mbus_heartbeat(sp[i]->mbus_engine, 1);
mbus_retransmit(sp[i]->mbus_engine);
mbus_send(sp[i]->mbus_engine);
timeout.tv_sec = 0;
timeout.tv_usec = 10000;
mbus_recv(sp[i]->mbus_engine, (void *) sp[i], &timeout);
done |= mbus_sent_all(sp[i]->mbus_engine);
}
} while (!done);
}
debug_msg("Sent all mbus.go() messages to controller\n");
/* At this point we know the mbus address of our controller, and have conducted */
/* a successful rendezvous with it. It will now send us configuration commands. */
for (i = 0; i < num_sessions; i++) {
debug_msg("Need mbus.go(%s) from controller...\n", token_e[i]);
sp[i]->mbus_go = TRUE;
sp[i]->mbus_go_token = token[i];
}
do {
done = TRUE;
for (i = 0; i < num_sessions; i++) {
timeout.tv_sec = 0;
timeout.tv_usec = 20000;
mbus_qmsgf(sp[i]->mbus_engine, c_addr, FALSE, "mbus.waiting", "%s", token_e[i]);
mbus_send(sp[i]->mbus_engine);
mbus_recv(sp[i]->mbus_engine, (void *) sp[i], &timeout);
mbus_heartbeat(sp[i]->mbus_engine, 1);
mbus_retransmit(sp[i]->mbus_engine);
done &= !sp[i]->mbus_go;
}
} while (!done);
debug_msg("Got all needed mbus.go() messages from controller\n");
for (i = 0; i < num_sessions; i++) {
assert(sp[i]->rtp_session[0] != NULL);
}
}
int main(int argc, char *argv[])
{
uint32_t rtp_time = 0;
int seed, elapsed_time, alc = 0, scnt = 0;
session_t *sp[2];
struct timeval timeout;
uint8_t i, j;
#ifdef WIN32
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_ABOVE_NORMAL);
#else
signal(SIGINT, signal_handler);
debug_set_core_dir(argv[0]);
#endif
/* Setup things which are independent of the session. These should */
/* be create static data only, since it will be accessed by BOTH */
/* instances when running as a transcoder. */
seed = (gethostid() << 8) | (getpid() & 0xff);
srand48(seed);
lbl_srandom(seed);
parse_args(argc, argv);
converters_init();
audio_init_interfaces();
/* Initialize the session structure, and all session specific data */
for (i = 0; i < num_sessions; i++) {
sp[i] = (session_t *) xmalloc(sizeof(session_t));
session_init(sp[i], i, (num_sessions == 1)?AUDIO_TOOL:TRANSCODER);
audio_device_get_safe_config(&sp[i]->new_config);
audio_device_reconfigure(sp[i]);
assert(audio_device_is_open(sp[i]->audio_device));
/* Initialise our mbus interface... once this is done we can talk to our controller */
sp[i]->mbus_engine_addr = (char *) xmalloc(strlen(MBUS_ADDR_ENGINE) + 15);
sprintf(sp[i]->mbus_engine_addr, MBUS_ADDR_ENGINE, i, (unsigned long) ppid);
sp[i]->mbus_engine = mbus_init(mbus_engine_rx, mbus_error_handler, sp[i]->mbus_engine_addr);
if (sp[i]->mbus_engine == NULL) {
fatal_error("RAT v" RAT_VERSION, "Could not initialize Mbus: Is multicast enabled?");
return FALSE;
}
}
if (num_sessions == 2) {
sp[0]->other_session = sp[1];
sp[1]->other_session = sp[0];
}
rendezvous_with_controller(sp);
/* Load saved settings, and create the participant database... */
/* FIXME: probably needs updating for the transcoder so we can */
/* have different saved settings for each domain. */
/* FIXME: this gets the wrong device name for the transcoder. */
for (i = 0; i < num_sessions; i++) {
settings_load_early(sp[i]);
if (pdb_create(&sp[i]->pdb) == FALSE) {
debug_msg("Failed to create participant database\n");
abort();
}
pdb_item_create(sp[i]->pdb, (uint16_t)ts_get_freq(sp[i]->cur_ts), rtp_my_ssrc(sp[i]->rtp_session[0]));
settings_load_late(sp[i]);
session_validate(sp[i]);
}
xmemchk();
xdoneinit();
while (!should_exit) {
for (i = 0; i < num_sessions; i++) {
elapsed_time = 0;
alc++;
/* Process audio */
if (num_sessions == 2) {
elapsed_time = audio_rw_process(sp[i], sp[1-i], sp[i]->ms);
} else {
elapsed_time = audio_rw_process(sp[i], sp[i], sp[i]->ms);
}
if (tx_is_sending(sp[i]->tb)) {
tx_process_audio(sp[i]->tb);
tx_send(sp[i]->tb);
}
/* Process RTP/RTCP packets */
timeout.tv_sec = 0;
timeout.tv_usec = 0;
for (j = 0; j < sp[i]->rtp_session_count; j++) {
rtp_time = tx_get_rtp_time(sp[i]);
while(rtp_recv(sp[i]->rtp_session[j], &timeout, rtp_time));
rtp_send_ctrl(sp[i]->rtp_session[j], rtp_time, NULL);
rtp_update(sp[i]->rtp_session[j]);
}
/* Process mbus */
timeout.tv_sec = 0;
timeout.tv_usec = 0;
mbus_recv(sp[i]->mbus_engine, (void *) sp[i], &timeout);
mbus_heartbeat(sp[i]->mbus_engine, 1);
mbus_retransmit(sp[i]->mbus_engine);
mbus_send(sp[i]->mbus_engine);
/* Process and mix active sources */
if (sp[i]->playing_audio) {
struct s_source *s;
int sidx;
timestamp_t cush_ts;
session_validate(sp[i]);
cush_ts = ts_map32(ts_get_freq(sp[i]->cur_ts), cushion_get_size(sp[i]->cushion));
cush_ts = ts_add(sp[i]->cur_ts, cush_ts);
scnt = (int)source_list_source_count(sp[i]->active_sources);
for(sidx = 0; sidx < scnt; sidx++) {
s = source_list_get_source_no(sp[i]->active_sources, sidx);
if (source_relevant(s, sp[i]->cur_ts)) {
pdb_entry_t *e;
timestamp_t two_secs, delta;
source_check_buffering(s);
source_process(sp[i], s, sp[i]->cur_ts, cush_ts);
source_audit(s);
/* Check for UI update necessary, updating once per 2 secs */
pdb_item_get(sp[i]->pdb, source_get_ssrc(s), &e);
delta = ts_sub(sp[i]->cur_ts, e->last_ui_update);
two_secs = ts_map32(8000, 16000);
if (ts_gt(delta, two_secs)) {
ui_send_stats(sp[i], sp[i]->mbus_ui_addr, e->ssrc);
e->last_ui_update = sp[i]->cur_ts;
}
} else {
/* Remove source as stopped */
uint32_t ssrc;
ssrc = source_get_ssrc(s);
ui_send_rtp_inactive(sp[i], sp[i]->mbus_ui_addr, ssrc);
source_remove(sp[i]->active_sources, s);
sidx--;
scnt--;
}
}
/* Play local file if playing */
if (sp[i]->local_file_player) {
if (voxlet_play(sp[i]->local_file_player, sp[i]->cur_ts, cush_ts) == FALSE) {
voxlet_destroy(&sp[i]->local_file_player);
}
}
/* Play loopback tone if present */
if (sp[i]->tone_generator) {
tonegen_play(sp[i]->tone_generator, sp[i]->cur_ts, cush_ts);
}
} else {
/* Destroy localfile player if not playing audio */
if (sp[i]->local_file_player) {
voxlet_destroy(&sp[i]->local_file_player);
}
}
/* Echo Suppression - cut off transmitter when receiving */
/* audio, enable when stop receiving. */
session_validate(sp[i]);
if (sp[i]->echo_suppress) {
if (scnt > 0) {
if (tx_is_sending(sp[i]->tb)) {
tx_stop(sp[i]->tb);
sp[i]->echo_tx_active = TRUE;
debug_msg("Echo suppressor (disabling tx)\n");
}
} else if (sp[i]->echo_tx_active) {
/* Transmitter was stopped because we were */
/* playing out audio. Restart it. */
if (tx_is_sending(sp[i]->tb) == FALSE) {
tx_start(sp[i]->tb);
debug_msg("Echo suppressor (enabling tx)\n");
}
sp[i]->echo_tx_active = FALSE;
}
}
/* Lecture Mode */
if ((alc % 50) == 0) {
if (!sp[i]->lecture && tx_is_sending(sp[i]->tb) && sp[i]->auto_lecture != 0) {
struct timeval time;
gettimeofday(&time, NULL);
if (time.tv_sec - sp[i]->auto_lecture > 120) {
sp[i]->auto_lecture = 0;
debug_msg("Dummy lecture mode\n");
}
}
}
if (sp[i]->ui_on) {
/* We have a user interface... do any periodic updates needed. */
if (sp[i]->audio_device && elapsed_time != 0) {
ui_send_periodic_updates(sp[i], sp[i]->mbus_ui_addr, elapsed_time);
}
} else {
/* We don't yet have a user interface... send out a message soliciting one... */
if ((alc % 25) == 0) {
mbus_qmsgf(sp[i]->mbus_engine, "()", FALSE, "mbus.waiting", "\"rat-ui-requested\"");
}
}
if (sp[i]->new_config != NULL) {
/* wait for mbus messages - closing audio device */
/* can timeout unprocessed messages as some drivers */
/* pause to drain before closing. */
network_process_mbus(sp[i]);
if (audio_device_reconfigure(sp[i])) {
int saved_playing_audio = sp[i]->playing_audio;
/* Device reconfig takes a second or two, discard
* data that has arrived during this time
*/
sp[i]->playing_audio = 0;
timeout.tv_sec = 0;
timeout.tv_usec = 0;
for (j = 0; j < sp[i]->rtp_session_count; j++) {
while(rtp_recv(sp[i]->rtp_session[j], &timeout, rtp_time));
}
sp[i]->playing_audio = saved_playing_audio;
/* Device reconfigured so decode paths of all sources */
/* are misconfigured. Delete the source, and incoming */
/* data will drive the correct new path. */
source_list_clear(sp[i]->active_sources);
ui_send_audio_update(sp[i], sp[i]->mbus_ui_addr);
if (sp[i]->local_file_player) {
voxlet_destroy(&sp[i]->local_file_player);
}
}
}
/* Choke CPU usage */
if (!audio_is_ready(sp[i]->audio_device)) {
audio_wait_for(sp[i]->audio_device, 50);
}
/* Check controller is still alive */
if (mbus_addr_valid(sp[i]->mbus_engine, c_addr) == FALSE) {
should_exit = TRUE;
debug_msg("Controller address is no longer valid. Assuming it exited\n");
}
/* Debugging sanity checking... */
session_validate(sp[i]);
xmemchk();
}
}
for (i = 0; i < num_sessions; i++) {
settings_save(sp[i]);
tx_stop(sp[i]->tb);
for (j = 0; j < sp[i]->rtp_session_count; j++) {
rtp_send_bye(sp[i]->rtp_session[j]);
rtp_done(sp[i]->rtp_session[j]);
rtp_callback_exit(sp[i]->rtp_session[j]);
}
/* Inform other processes that we're about to quit... */
mbus_qmsgf(sp[i]->mbus_engine, "()", FALSE, "mbus.bye", "");
mbus_send(sp[i]->mbus_engine);
/* Free audio device and clean up */
audio_device_release(sp[i], sp[i]->audio_device);
audio_free_interfaces();
}
/* FIXME: This should be integrated into the previous loop, so instead of */
/* sending mbus.bye() ourselves, we just call mbus_exit(...) which */
/* sends a bye and shuts everything down cleanly for us. */
/* FIXME: Needs updating for transcoder... */
if (mbus_addr_valid(sp[0]->mbus_engine, c_addr)) {
do {
struct timeval timeout;
mbus_send(sp[0]->mbus_engine);
/* At this stage we no longer care about acks for messages */
/* mbus_retransmit(sp[0]->mbus_engine); */
timeout.tv_sec = 0;
timeout.tv_usec = 20000;
mbus_recv(sp[0]->mbus_engine, sp[0], &timeout);
} while (!mbus_sent_all(sp[0]->mbus_engine) && mbus_shutdown_error == FALSE);
}
mbus_exit(sp[0]->mbus_engine);
for (i = 0; i < num_sessions; i++) {
if (sp[i]->logger != NULL) {
fclose(sp[i]->logger);
}
session_validate(sp[i]);
session_exit(sp[i]);
xfree(token[i]);
xfree(token_e[i]);
}
converters_free();
xfree(c_addr);
xmemdmp();
debug_msg("Media engine exit\n");
return 0;
}
|