From 1698328b74967bff2b86c705747b40b526275377 Mon Sep 17 00:00:00 2001 From: Riza Sulistyo Date: Tue, 23 Apr 2013 07:53:25 +0000 Subject: Re #1643: Modification to avoid namespace conflict with pjsua git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4489 74dad513-b988-da41-8d7b-12977e46ad98 --- pjsip-apps/build/Makefile | 4 +- pjsip-apps/build/pjsua.vcproj | 10 +- pjsip-apps/src/pjsua/main.c | 15 +- pjsip-apps/src/pjsua/pjsua_app.c | 38 +- pjsip-apps/src/pjsua/pjsua_app.h | 14 +- pjsip-apps/src/pjsua/pjsua_app_cli.c | 3095 +++++++++++++++++++++++++++++++ pjsip-apps/src/pjsua/pjsua_app_common.c | 355 ++++ pjsip-apps/src/pjsua/pjsua_app_common.h | 226 +++ pjsip-apps/src/pjsua/pjsua_app_config.c | 2179 ++++++++++++++++++++++ pjsip-apps/src/pjsua/pjsua_app_legacy.c | 1927 +++++++++++++++++++ pjsip-apps/src/pjsua/pjsua_cli.c | 3094 ------------------------------ pjsip-apps/src/pjsua/pjsua_common.c | 356 ---- pjsip-apps/src/pjsua/pjsua_common.h | 230 --- pjsip-apps/src/pjsua/pjsua_config.c | 2179 ---------------------- pjsip-apps/src/pjsua/pjsua_legacy.c | 1927 ------------------- 15 files changed, 7818 insertions(+), 7831 deletions(-) create mode 100644 pjsip-apps/src/pjsua/pjsua_app_cli.c create mode 100644 pjsip-apps/src/pjsua/pjsua_app_common.c create mode 100644 pjsip-apps/src/pjsua/pjsua_app_common.h create mode 100644 pjsip-apps/src/pjsua/pjsua_app_config.c create mode 100644 pjsip-apps/src/pjsua/pjsua_app_legacy.c delete mode 100644 pjsip-apps/src/pjsua/pjsua_cli.c delete mode 100644 pjsip-apps/src/pjsua/pjsua_common.c delete mode 100644 pjsip-apps/src/pjsua/pjsua_common.h delete mode 100644 pjsip-apps/src/pjsua/pjsua_config.c delete mode 100644 pjsip-apps/src/pjsua/pjsua_legacy.c (limited to 'pjsip-apps') diff --git a/pjsip-apps/build/Makefile b/pjsip-apps/build/Makefile index cb48d718..6e5f2874 100644 --- a/pjsip-apps/build/Makefile +++ b/pjsip-apps/build/Makefile @@ -33,8 +33,8 @@ export _CXXFLAGS:= $(_CFLAGS) $(CC_CXXFLAGS) $(OS_CXXFLAGS) $(M_CXXFLAGS) \ # export PJSUA_SRCDIR = ../src/pjsua export PJSUA_OBJS += $(OS_OBJS) $(M_OBJS) $(CC_OBJS) $(HOST_OBJS) \ - main.o pjsua_app.o pjsua_cli.o pjsua_common.o \ - pjsua_config.o pjsua_legacy.o + main.o pjsua_app.o pjsua_app_cli.o pjsua_app_common.o \ + pjsua_app_config.o pjsua_app_legacy.o export PJSUA_CFLAGS += $(_CFLAGS) export PJSUA_LDFLAGS += $(APP_LDFLAGS) $(APP_LDLIBS) $(LDFLAGS) export PJSUA_EXE:=../bin/pjsua-$(TARGET_NAME)$(HOST_EXE) diff --git a/pjsip-apps/build/pjsua.vcproj b/pjsip-apps/build/pjsua.vcproj index d79126a4..f50543d5 100644 --- a/pjsip-apps/build/pjsua.vcproj +++ b/pjsip-apps/build/pjsua.vcproj @@ -3708,19 +3708,19 @@ @@ -3733,7 +3733,7 @@ > diff --git a/pjsip-apps/src/pjsua/main.c b/pjsip-apps/src/pjsua/main.c index 4df0a56e..048eea8f 100644 --- a/pjsip-apps/src/pjsua/main.c +++ b/pjsip-apps/src/pjsua/main.c @@ -24,7 +24,7 @@ static pj_bool_t running = PJ_TRUE; static pj_status_t receive_end_sig; static pj_thread_t *sig_thread; -static app_cfg_t cfg; +static pjsua_app_cfg_t cfg; /* Called when CLI (re)started */ void on_app_started(pj_status_t status, const char *msg) @@ -32,13 +32,12 @@ void on_app_started(pj_status_t status, const char *msg) pj_perror(3, THIS_FILE, status, (msg)?msg:""); } -pj_bool_t on_app_stopped(pj_bool_t restart, int argc, char** argv) +void on_app_stopped(pj_bool_t restart, int argc, char** argv) { cfg.argc = argc; cfg.argv = argv; running = restart; - return PJ_TRUE; } #if defined(PJ_WIN32) && PJ_WIN32!=0 @@ -60,7 +59,7 @@ static BOOL WINAPI CtrlHandler(DWORD fdwCtrlType) pj_thread_register("ctrlhandler", handler_desc, &sig_thread); PJ_LOG(3,(THIS_FILE, "Ctrl-C detected, quitting..")); receive_end_sig = PJ_TRUE; - app_destroy(); + pjsua_app_destroy(); ExitProcess(1); PJ_UNREACHED(return TRUE;) @@ -104,19 +103,19 @@ int main(int argc, char *argv[]) setup_socket_signal(); while (running) { - status = app_init(&cfg); + status = pjsua_app_init(&cfg); if (status == PJ_SUCCESS) { - status = app_run(PJ_TRUE); + status = pjsua_app_run(PJ_TRUE); } else { pj_perror(3, THIS_FILE, status, "Failed init"); running = PJ_FALSE; } if (!receive_end_sig) { - app_destroy(); + pjsua_app_destroy(); /* This is on purpose */ - app_destroy(); + pjsua_app_destroy(); } else { pj_thread_join(sig_thread); } diff --git a/pjsip-apps/src/pjsua/pjsua_app.c b/pjsip-apps/src/pjsua/pjsua_app.c index bd9f7980..bd67255e 100644 --- a/pjsip-apps/src/pjsua/pjsua_app.c +++ b/pjsip-apps/src/pjsua/pjsua_app.c @@ -46,15 +46,13 @@ static void stereo_demo(); #endif -pj_status_t app_destroy(void); - static void ringback_start(pjsua_call_id call_id); static void ring_start(pjsua_call_id call_id); static void ring_stop(pjsua_call_id call_id); -static pj_status_t pjsua_app_init(); -static pj_status_t pjsua_app_destroy(); +static pj_status_t app_init(); +static pj_status_t app_destroy(); -static app_cfg_t app_cfg; +static pjsua_app_cfg_t app_cfg; pj_str_t uri_arg; pj_bool_t app_running = PJ_FALSE; @@ -1216,7 +1214,7 @@ static pjsip_module mod_default_handler = /** CLI callback **/ /* Called on CLI (re)started, e.g: initial start, after iOS bg */ -PJ_DEF(void) cli_on_started(pj_status_t status) +void cli_on_started(pj_status_t status) { /* Notify app */ if (app_cfg.on_started) { @@ -1235,28 +1233,22 @@ PJ_DEF(void) cli_on_started(pj_status_t status) } /* Called on CLI quit */ -PJ_DEF(pj_bool_t) cli_on_stopped(pj_bool_t restart, int argc, char* argv[]) +void cli_on_stopped(pj_bool_t restart, int argc, char* argv[]) { /* Notify app */ if (app_cfg.on_stopped) - return (*app_cfg.on_stopped)(restart, argc, argv); - - return PJ_SUCCESS; + (*app_cfg.on_stopped)(restart, argc, argv); } /* Called on pjsua legacy quit */ -PJ_DEF(pj_bool_t) legacy_on_stopped(pj_bool_t restart) +void legacy_on_stopped(pj_bool_t restart) { /* Notify app */ if (app_cfg.on_stopped) - return (*app_cfg.on_stopped)(restart, 0, NULL); - - return PJ_SUCCESS; + (*app_cfg.on_stopped)(restart, 1, NULL); } - - /***************************************************************************** * Public API */ @@ -1282,7 +1274,7 @@ int stdout_refresh_proc(void *arg) return 0; } -static pj_status_t pjsua_app_init() +static pj_status_t app_init() { pjsua_transport_id transport_id = -1; pjsua_transport_config tcp_cfg; @@ -1844,12 +1836,12 @@ on_error: return status; } -PJ_DEF(pj_status_t) app_init(const app_cfg_t *cfg) +pj_status_t pjsua_app_init(const pjsua_app_cfg_t *cfg) { pj_status_t status; pj_memcpy(&app_cfg, cfg, sizeof(app_cfg)); - status = pjsua_app_init(); + status = app_init(); if (status != PJ_SUCCESS) return status; @@ -1860,7 +1852,7 @@ PJ_DEF(pj_status_t) app_init(const app_cfg_t *cfg) return status; } -pj_status_t app_run(pj_bool_t wait_telnet_cli) +pj_status_t pjsua_app_run(pj_bool_t wait_telnet_cli) { pj_thread_t *stdout_refresh_thread = NULL; pj_status_t status; @@ -1916,7 +1908,7 @@ on_return: return status; } -static pj_status_t pjsua_app_destroy() +static pj_status_t app_destroy() { pj_status_t status = PJ_SUCCESS; unsigned i; @@ -1981,11 +1973,11 @@ static pj_status_t pjsua_app_destroy() return status; } -pj_status_t app_destroy() +pj_status_t pjsua_app_destroy() { pj_status_t status; - status = pjsua_app_destroy(); + status = app_destroy(); if (app_config.use_cli) { cli_destroy(); diff --git a/pjsip-apps/src/pjsua/pjsua_app.h b/pjsip-apps/src/pjsua/pjsua_app.h index 46dcd937..a9c627bc 100644 --- a/pjsip-apps/src/pjsua/pjsua_app.h +++ b/pjsip-apps/src/pjsua/pjsua_app.h @@ -24,14 +24,14 @@ * Interface for user application to use pjsua with CLI/menu based UI. */ -#include "pjsua_common.h" +#include "pjsua_app_common.h" PJ_BEGIN_DECL /** * This structure contains the configuration of application. */ -typedef struct app_cfg_t +typedef struct pjsua_app_cfg_t { /** * The number of runtime arguments passed to the application. @@ -55,20 +55,20 @@ typedef struct app_cfg_t * GUI app needs to use a timer mechanism to wait before invoking the * cleanup procedure. */ - pj_bool_t (*on_stopped)(pj_bool_t restart, int argc, char** argv); + void (*on_stopped)(pj_bool_t restart, int argc, char** argv); /** * This will enable application to supply customize configuration other than * the basic configuration provided by pjsua. */ void (*on_config_init)(pjsua_app_config *cfg); -} app_cfg_t; +} pjsua_app_cfg_t; /** * This will initiate the pjsua and the user interface (CLI/menu UI) based on * the provided configuration. */ -PJ_DECL(pj_status_t) app_init(const app_cfg_t *app_cfg); +pj_status_t pjsua_app_init(const pjsua_app_cfg_t *app_cfg); /** * This will run the CLI/menu based UI. @@ -76,12 +76,12 @@ PJ_DECL(pj_status_t) app_init(const app_cfg_t *app_cfg); * or wait until user invoke the "shutdown"/"restart" command. GUI based app * should define this param as PJ_FALSE. */ -PJ_DECL(pj_status_t) app_run(pj_bool_t wait_telnet_cli); +pj_status_t pjsua_app_run(pj_bool_t wait_telnet_cli); /** * This will destroy/cleanup the application library. */ -PJ_DECL(pj_status_t) app_destroy(); +pj_status_t pjsua_app_destroy(); PJ_END_DECL diff --git a/pjsip-apps/src/pjsua/pjsua_app_cli.c b/pjsip-apps/src/pjsua/pjsua_app_cli.c new file mode 100644 index 00000000..f46be780 --- /dev/null +++ b/pjsip-apps/src/pjsua/pjsua_app_cli.c @@ -0,0 +1,3095 @@ +/* $Id$ */ +/* + * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) + * Copyright (C) 2003-2008 Benny Prijono + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include "pjsua_app_common.h" + +#define THIS_FILE "pjsua_app_cli.c" + +#define CHECK_PJSUA_RUNNING() if (pjsua_get_state()!=PJSUA_STATE_RUNNING) \ + return PJ_EINVALIDOP + +/* CLI command id */ +/* level 1 command */ +#define CMD_CALL 100 +#define CMD_PRESENCE 200 +#define CMD_ACCOUNT 300 +#define CMD_MEDIA 400 +#define CMD_CONFIG 500 +#define CMD_VIDEO 600 +#define CMD_SLEEP 700 +#define CMD_ECHO 800 +#define CMD_NETWORK 900 +#define CMD_QUIT 110 +#define CMD_RESTART 120 + +/* call level 2 command */ +#define CMD_CALL_NEW ((CMD_CALL*10)+1) +#define CMD_CALL_MULTI ((CMD_CALL*10)+2) +#define CMD_CALL_ANSWER ((CMD_CALL*10)+3) +#define CMD_CALL_HANGUP ((CMD_CALL*10)+4) +#define CMD_CALL_HANGUP_ALL ((CMD_CALL*10)+5) +#define CMD_CALL_HOLD ((CMD_CALL*10)+6) +#define CMD_CALL_REINVITE ((CMD_CALL*10)+7) +#define CMD_CALL_UPDATE ((CMD_CALL*10)+8) +#define CMD_CALL_NEXT ((CMD_CALL*10)+9) +#define CMD_CALL_PREVIOUS ((CMD_CALL*10)+10) +#define CMD_CALL_TRANSFER ((CMD_CALL*10)+11) +#define CMD_CALL_TRANSFER_REPLACE ((CMD_CALL*10)+12) +#define CMD_CALL_REDIRECT ((CMD_CALL*10)+13) +#define CMD_CALL_D2833 ((CMD_CALL*10)+14) +#define CMD_CALL_INFO ((CMD_CALL*10)+15) +#define CMD_CALL_DUMP_Q ((CMD_CALL*10)+16) +#define CMD_CALL_SEND_ARB ((CMD_CALL*10)+17) +#define CMD_CALL_LIST ((CMD_CALL*10)+18) + +/* im & presence level 2 command */ +#define CMD_PRESENCE_ADD_BUDDY ((CMD_PRESENCE*10)+1) +#define CMD_PRESENCE_DEL_BUDDY ((CMD_PRESENCE*10)+2) +#define CMD_PRESENCE_SEND_IM ((CMD_PRESENCE*10)+3) +#define CMD_PRESENCE_SUB ((CMD_PRESENCE*10)+4) +#define CMD_PRESENCE_UNSUB ((CMD_PRESENCE*10)+5) +#define CMD_PRESENCE_TOG_STATE ((CMD_PRESENCE*10)+6) +#define CMD_PRESENCE_TEXT ((CMD_PRESENCE*10)+7) +#define CMD_PRESENCE_LIST ((CMD_PRESENCE*10)+8) + +/* account level 2 command */ +#define CMD_ACCOUNT_ADD ((CMD_ACCOUNT*10)+1) +#define CMD_ACCOUNT_DEL ((CMD_ACCOUNT*10)+2) +#define CMD_ACCOUNT_MOD ((CMD_ACCOUNT*10)+3) +#define CMD_ACCOUNT_REG ((CMD_ACCOUNT*10)+4) +#define CMD_ACCOUNT_UNREG ((CMD_ACCOUNT*10)+5) +#define CMD_ACCOUNT_NEXT ((CMD_ACCOUNT*10)+6) +#define CMD_ACCOUNT_PREV ((CMD_ACCOUNT*10)+7) +#define CMD_ACCOUNT_SHOW ((CMD_ACCOUNT*10)+8) + +/* conference & media level 2 command */ +#define CMD_MEDIA_LIST ((CMD_MEDIA*10)+1) +#define CMD_MEDIA_CONF_CONNECT ((CMD_MEDIA*10)+2) +#define CMD_MEDIA_CONF_DISCONNECT ((CMD_MEDIA*10)+3) +#define CMD_MEDIA_ADJUST_VOL ((CMD_MEDIA*10)+4) +#define CMD_MEDIA_CODEC_PRIO ((CMD_MEDIA*10)+5) + +/* status & config level 2 command */ +#define CMD_CONFIG_DUMP_STAT ((CMD_CONFIG*10)+1) +#define CMD_CONFIG_DUMP_DETAIL ((CMD_CONFIG*10)+2) +#define CMD_CONFIG_DUMP_CONF ((CMD_CONFIG*10)+3) +#define CMD_CONFIG_WRITE_SETTING ((CMD_CONFIG*10)+4) + +/* video level 2 command */ +#define CMD_VIDEO_ENABLE ((CMD_VIDEO*10)+1) +#define CMD_VIDEO_DISABLE ((CMD_VIDEO*10)+2) +#define CMD_VIDEO_ACC ((CMD_VIDEO*10)+3) +#define CMD_VIDEO_CALL ((CMD_VIDEO*10)+4) +#define CMD_VIDEO_DEVICE ((CMD_VIDEO*10)+5) +#define CMD_VIDEO_CODEC ((CMD_VIDEO*10)+6) +#define CMD_VIDEO_WIN ((CMD_VIDEO*10)+7) + +/* video level 3 command */ +#define CMD_VIDEO_ACC_SHOW ((CMD_VIDEO_ACC*10)+1) +#define CMD_VIDEO_ACC_AUTORX ((CMD_VIDEO_ACC*10)+2) +#define CMD_VIDEO_ACC_AUTOTX ((CMD_VIDEO_ACC*10)+3) +#define CMD_VIDEO_ACC_CAP_ID ((CMD_VIDEO_ACC*10)+4) +#define CMD_VIDEO_ACC_REN_ID ((CMD_VIDEO_ACC*10)+5) +#define CMD_VIDEO_CALL_RX ((CMD_VIDEO_CALL*10)+1) +#define CMD_VIDEO_CALL_TX ((CMD_VIDEO_CALL*10)+2) +#define CMD_VIDEO_CALL_ADD ((CMD_VIDEO_CALL*10)+3) +#define CMD_VIDEO_CALL_ENABLE ((CMD_VIDEO_CALL*10)+4) +#define CMD_VIDEO_CALL_DISABLE ((CMD_VIDEO_CALL*10)+5) +#define CMD_VIDEO_CALL_CAP ((CMD_VIDEO_CALL*10)+6) +#define CMD_VIDEO_DEVICE_LIST ((CMD_VIDEO_DEVICE*10)+1) +#define CMD_VIDEO_DEVICE_REFRESH ((CMD_VIDEO_DEVICE*10)+2) +#define CMD_VIDEO_DEVICE_PREVIEW ((CMD_VIDEO_DEVICE*10)+3) +#define CMD_VIDEO_CODEC_LIST ((CMD_VIDEO_CODEC*10)+1) +#define CMD_VIDEO_CODEC_PRIO ((CMD_VIDEO_CODEC*10)+2) +#define CMD_VIDEO_CODEC_FPS ((CMD_VIDEO_CODEC*10)+3) +#define CMD_VIDEO_CODEC_BITRATE ((CMD_VIDEO_CODEC*10)+4) +#define CMD_VIDEO_CODEC_SIZE ((CMD_VIDEO_CODEC*10)+5) +#define CMD_VIDEO_WIN_LIST ((CMD_VIDEO_WIN*10)+1) +#define CMD_VIDEO_WIN_ARRANGE ((CMD_VIDEO_WIN*10)+2) +#define CMD_VIDEO_WIN_SHOW ((CMD_VIDEO_WIN*10)+3) +#define CMD_VIDEO_WIN_HIDE ((CMD_VIDEO_WIN*10)+4) +#define CMD_VIDEO_WIN_MOVE ((CMD_VIDEO_WIN*10)+5) +#define CMD_VIDEO_WIN_RESIZE ((CMD_VIDEO_WIN*10)+6) + +/* dynamic choice argument list */ +#define DYN_CHOICE_START 9900 +#define DYN_CHOICE_BUDDY_ID (DYN_CHOICE_START)+1 +#define DYN_CHOICE_ACCOUNT_ID (DYN_CHOICE_START)+2 +#define DYN_CHOICE_MEDIA_PORT (DYN_CHOICE_START)+3 +#define DYN_CHOICE_AUDIO_CODEC_ID (DYN_CHOICE_START)+4 +#define DYN_CHOICE_CAP_DEV_ID (DYN_CHOICE_START)+5 +#define DYN_CHOICE_REN_DEV_ID (DYN_CHOICE_START)+6 +#define DYN_CHOICE_VID_DEV_ID (DYN_CHOICE_START)+7 +#define DYN_CHOICE_STREAM_ID (DYN_CHOICE_START)+8 +#define DYN_CHOICE_VIDEO_CODEC_ID (DYN_CHOICE_START)+9 +#define DYN_CHOICE_WIN_ID (DYN_CHOICE_START)+10 +#define DYN_CHOICE_CALL_ID (DYN_CHOICE_START)+11 +#define DYN_CHOICE_ADDED_BUDDY_ID (DYN_CHOICE_START)+12 + +static pj_bool_t pj_inited = PJ_FALSE; +static pj_caching_pool cli_cp; +static pj_bool_t cli_cp_inited = PJ_FALSE; +static pj_cli_t *cli = NULL; +static pj_cli_sess *cli_cons_sess = NULL; +static pj_cli_front_end *telnet_front_end = NULL; + +/** Forward declaration **/ +pj_status_t cli_setup_command(pj_cli_t *cli); +void cli_destroy(); + +PJ_DEF(void) cli_get_info(char *info, pj_size_t size) +{ + pj_cli_telnet_info telnet_info; + pj_cli_telnet_get_info(telnet_front_end, &telnet_info); + + pj_ansi_snprintf(info, size, "Telnet to %.*s:%d", + (int)telnet_info.ip_address.slen, + telnet_info.ip_address.ptr, + telnet_info.port); +} + +static void cli_log_writer(int level, const char *buffer, int len) +{ + if (cli) + pj_cli_write_log(cli, level, buffer, len); +} + +pj_status_t cli_init() +{ + pj_status_t status; + + pj_cli_cfg *cfg = &app_config.cli_cfg.cfg; + + /* Init PJLIB */ + status = pj_init(); + if (status != PJ_SUCCESS) + goto on_error; + + pj_inited = PJ_TRUE; + + /* Init PJLIB-UTIL */ + status = pjlib_util_init(); + if (status != PJ_SUCCESS) + goto on_error; + + /* Init CLI */ + pj_caching_pool_init(&cli_cp, NULL, 0); + cli_cp_inited = PJ_TRUE; + cfg->pf = &cli_cp.factory; + cfg->name = pj_str("pjsua_cli"); + cfg->title = pj_str("Pjsua CLI Application"); + status = pj_cli_create(cfg, &cli); + if (status != PJ_SUCCESS) + goto on_error; + + status = cli_setup_command(cli); + if (status != PJ_SUCCESS) + goto on_error; + + /* Init telnet frontend */ + if (app_config.cli_cfg.cli_fe & CLI_FE_TELNET) { + pj_cli_telnet_cfg *fe_cfg = &app_config.cli_cfg.telnet_cfg; + pj_pool_t *pool; + + pool = pj_pool_create(cfg->pf, "cli_cp", 128, 128, NULL); + pj_assert(pool); + + status = pj_cli_telnet_create(cli, fe_cfg, &telnet_front_end); + if (status != PJ_SUCCESS) + goto on_error; + } + + /* Init console frontend */ + if (app_config.cli_cfg.cli_fe & CLI_FE_CONSOLE) { + pj_cli_console_cfg *fe_cfg = &app_config.cli_cfg.console_cfg; + + fe_cfg->quit_command = pj_str("shutdown"); + status = pj_cli_console_create(cli, fe_cfg, + &cli_cons_sess, NULL); + if (status != PJ_SUCCESS) + goto on_error; + } + + return PJ_SUCCESS; + +on_error: + cli_destroy(); + return status; +} + +pj_status_t cli_main(pj_bool_t wait_telnet_cli) +{ + char cmdline[PJ_CLI_MAX_CMDBUF]; + + /* ReInit logging */ + app_config.log_cfg.cb = &cli_log_writer; + pjsua_reconfigure_logging(&app_config.log_cfg); + + if (app_config.cli_cfg.cli_fe & CLI_FE_CONSOLE) { + /* Main loop for CLI FE console */ + while (!pj_cli_is_quitting(cli)) { + pj_cli_console_process(cli_cons_sess, &cmdline[0], sizeof(cmdline)); + } + } else if (wait_telnet_cli) { + /* Just wait for CLI quit */ + while (!pj_cli_is_quitting(cli)) { + pj_thread_sleep(200); + } + } + + return PJ_SUCCESS; +} + +void cli_destroy() +{ + /* Destroy CLI, it will automatically destroy any FEs */ + if (cli) { + pj_cli_destroy(cli); + cli = NULL; + } + + /* Destroy CLI caching pool factory */ + if (cli_cp_inited) { + pj_caching_pool_destroy(&cli_cp); + cli_cp_inited = PJ_FALSE; + } + + /* Shutdown PJLIB */ + if (pj_inited) { + pj_shutdown(); + pj_inited = PJ_FALSE; + } +} + +/* Get input URL */ +static void get_input_url(char *buf, + int len, + pj_cli_cmd_val *cval, + struct input_result *result) +{ + static const pj_str_t err_invalid_input = {"Invalid input\n", 15}; + result->nb_result = PJSUA_APP_NO_NB; + result->uri_result = NULL; + + len = strlen(buf); + + /* Left trim */ + while (pj_isspace(*buf)) { + ++buf; + --len; + } + + /* Remove trailing newlines */ + while (len && (buf[len-1] == '\r' || buf[len-1] == '\n')) + buf[--len] = '\0'; + + if (len == 0 || buf[0]=='q') + return; + + if (pj_isdigit(*buf) || *buf=='-') { + + int i; + + if (*buf=='-') + i = 1; + else + i = 0; + + for (; isess, err_invalid_input.ptr, + err_invalid_input.slen); + return; + } + } + + result->nb_result = my_atoi(buf); + + if (result->nb_result >= 0 && + result->nb_result <= (int)pjsua_get_buddy_count()) + { + return; + } + if (result->nb_result == -1) + return; + + pj_cli_sess_write_msg(cval->sess, err_invalid_input.ptr, + err_invalid_input.slen); + result->nb_result = PJSUA_APP_NO_NB; + return; + + } else { + pj_status_t status; + + if ((status=pjsua_verify_url(buf)) != PJ_SUCCESS) { + pjsua_perror(THIS_FILE, "Invalid URL", status); + return; + } + + result->uri_result = buf; + } +} + +/* CLI dynamic choice handler */ +/* Get buddy id */ +static void get_buddy_id(pj_cli_dyn_choice_param *param) +{ + if (param->cnt < param->max_cnt) { + pjsua_buddy_id ids[64]; + int i = 0; + unsigned count = PJ_ARRAY_SIZE(ids); + char data_out[64]; + + pjsua_enum_buddies(ids, &count); + + if (count > 0) { + for (i=0; i<(int)count; ++i) { + pjsua_buddy_info info; + + if (pjsua_buddy_get_info(ids[i], &info) != PJ_SUCCESS) + continue; + + /* Fill buddy id */ + pj_ansi_snprintf(data_out, sizeof(data_out), "%d", ids[i]+1); + pj_strdup2(param->pool, ¶m->choice[i].value, data_out); + pj_bzero(data_out, PJ_ARRAY_SIZE(data_out)); + + /* Format & fill description */ + pj_ansi_snprintf(data_out, + sizeof(data_out), + "<%.*s> %.*s", + (int)info.status_text.slen, + info.status_text.ptr, + (int)info.uri.slen, + info.uri.ptr); + + pj_strdup2(param->pool, ¶m->choice[i].desc, data_out); + if (++param->cnt >= (param->max_cnt-1)) + break; + } + } + if (param->arg_id == DYN_CHOICE_BUDDY_ID) { + /* Add URL input option */ + pj_ansi_snprintf(data_out, sizeof(data_out), "URL"); + pj_strdup2(param->pool, ¶m->choice[i].value, data_out); + pj_ansi_snprintf(data_out, sizeof(data_out), "An URL"); + pj_strdup2(param->pool, ¶m->choice[i].desc, data_out); + ++param->cnt; + } + } +} + +static void get_account_id(pj_cli_dyn_choice_param *param) +{ + if (param->cnt < param->max_cnt) { + char buf[8]; + char buf_out[80]; + pjsua_acc_info info; + + pjsua_acc_id acc_ids[16]; + unsigned count = PJ_ARRAY_SIZE(acc_ids); + int i; + + pjsua_enum_accs(acc_ids, &count); + + for (i=0; i<(int)count; ++i) { + pj_bzero(&buf_out[0], PJ_ARRAY_SIZE(buf_out)); + + pjsua_acc_get_info(acc_ids[i], &info); + + pj_ansi_snprintf(buf_out, + sizeof(buf_out), + "%c%.*s", + (acc_ids[i]==current_acc?'*':' '), + (int)info.acc_uri.slen, + info.acc_uri.ptr); + + pj_bzero(buf, sizeof(buf)); + pj_ansi_snprintf(buf, sizeof(buf), "%d", acc_ids[i]); + pj_strdup2(param->pool, ¶m->choice[i].value, buf); + pj_strdup2(param->pool, ¶m->choice[i].desc, buf_out); + if (++param->cnt >= param->max_cnt) + break; + } + } +} + +static void get_media_port(pj_cli_dyn_choice_param *param) +{ + unsigned i, count; + pjsua_conf_port_id id[PJSUA_MAX_CONF_PORTS]; + + count = PJ_ARRAY_SIZE(id); + pjsua_enum_conf_ports(id, &count); + + for (i=0; ipool, ¶m->choice[i].value, slot_id); + + txlist[0] = '\0'; + for (j=0; jpool, ¶m->choice[i].desc, desc); + if (++param->cnt >= param->max_cnt) + break; + } +} + +static void get_audio_codec_id(pj_cli_dyn_choice_param *param) +{ + if (param->cnt < param->max_cnt) { + pjsua_codec_info c[32]; + unsigned i, count = PJ_ARRAY_SIZE(c); + char codec_id[64]; + char desc[128]; + + pjsua_enum_codecs(c, &count); + for (i=0; ipool, ¶m->choice[param->cnt].value, codec_id); + + pj_ansi_snprintf(desc, sizeof(desc), + "Audio, prio: %d%s%.*s", + c[i].priority, + c[i].desc.slen? " - ":"", + (int)c[i].desc.slen, + c[i].desc.ptr); + + pj_strdup2(param->pool, ¶m->choice[param->cnt].desc, desc); + if (++param->cnt >= param->max_cnt) + break; + } + } +} + +#if PJSUA_HAS_VIDEO +static void get_video_stream_id(pj_cli_dyn_choice_param *param) +{ + if (param->cnt < param->max_cnt) { + pjsua_call_info call_info; + + if (current_call != PJSUA_INVALID_ID) { + unsigned i; + pjsua_call_get_info(current_call, &call_info); + for (i=0; ipool, ¶m->choice[i].value, med_idx); + + switch (call_info.media[i].status) { + case PJSUA_CALL_MEDIA_NONE: + pj_strdup2(param->pool, ¶m->choice[i].desc, + "Status:None"); + break; + case PJSUA_CALL_MEDIA_ACTIVE: + pj_strdup2(param->pool, ¶m->choice[i].desc, + "Status:Active"); + break; + case PJSUA_CALL_MEDIA_LOCAL_HOLD: + pj_strdup2(param->pool, ¶m->choice[i].desc, + "Status:Local Hold"); + break; + case PJSUA_CALL_MEDIA_REMOTE_HOLD: + pj_strdup2(param->pool, ¶m->choice[i].desc, + "Status:Remote Hold"); + break; + case PJSUA_CALL_MEDIA_ERROR: + pj_strdup2(param->pool, ¶m->choice[i].desc, + "Status:Media Error"); + break; + } + if (++param->cnt >= param->max_cnt) + break; + } + } + } + } +} + +static void get_video_dev_hint(pj_cli_dyn_choice_param *param, + pjmedia_vid_dev_info *vdi, + unsigned vid_dev_id) +{ + char desc[128]; + char dev_id[8]; + pj_ansi_snprintf(dev_id, sizeof(dev_id), + "%d", vid_dev_id); + pj_ansi_snprintf(desc, sizeof(desc), "%s [%s]", + vdi->name, vdi->driver); + + pj_strdup2(param->pool, ¶m->choice[param->cnt].value, + dev_id); + pj_strdup2(param->pool, ¶m->choice[param->cnt].desc, + desc); +} + +static void get_video_dev_id(pj_cli_dyn_choice_param *param, + pj_bool_t all, + pj_bool_t capture) +{ + if (param->cnt < param->max_cnt) { + unsigned i, count; + pjmedia_vid_dev_info vdi; + pj_status_t status; + + count = pjsua_vid_dev_count(); + if (count == 0) { + return; + } + + for (i=0; icnt >= param->max_cnt) + break; + } + } + } + } +} + +static void get_video_codec_id(pj_cli_dyn_choice_param *param) +{ + if (param->cnt < param->max_cnt) { + pjsua_codec_info ci[32]; + unsigned i, count = PJ_ARRAY_SIZE(ci); + char codec_id[64]; + char desc[128]; + + pjsua_vid_enum_codecs(ci, &count); + for (i=0; ipool, ¶m->choice[param->cnt].value, codec_id); + + pj_ansi_snprintf(desc, sizeof(desc), + "Video, p[%d], f[%.2f], b[%d/%d], s[%dx%d]", + ci[i].priority, + (vfd->fps.num*1.0/vfd->fps.denum), + vfd->avg_bps/1000, vfd->max_bps/1000, + vfd->size.w, vfd->size.h); + + pj_strdup2(param->pool, ¶m->choice[param->cnt].desc, desc); + if (++param->cnt >= param->max_cnt) + break; + } + } +} + +static void get_video_window_id(pj_cli_dyn_choice_param *param) +{ + if (param->cnt < param->max_cnt) { + pjsua_vid_win_id wids[PJSUA_MAX_VID_WINS]; + unsigned i, cnt = PJ_ARRAY_SIZE(wids); + char win_id[64]; + char desc[128]; + + pjsua_vid_enum_wins(wids, &cnt); + + for (i = 0; i < cnt; ++i) { + pjsua_vid_win_info wi; + + pjsua_vid_win_get_info(wids[i], &wi); + pj_ansi_snprintf(win_id, sizeof(win_id), "%d", wids[i]); + pj_strdup2(param->pool, ¶m->choice[i].value, win_id); + + pj_ansi_snprintf(desc, sizeof(desc), + "Show:%c Pos(%d,%d) Size(%dx%d)", + (wi.show?'Y':'N'), wi.pos.x, wi.pos.y, + wi.size.w, wi.size.h); + + pj_strdup2(param->pool, ¶m->choice[i].desc, desc); + if (++param->cnt >= param->max_cnt) + break; + } + } +} + +static void get_call_id(pj_cli_dyn_choice_param *param) +{ + if (param->cnt < param->max_cnt) { + char call_id[64]; + char desc[128]; + unsigned i, count; + pjsua_call_id ids[PJSUA_MAX_CALLS]; + int call = current_call; + + count = PJ_ARRAY_SIZE(ids); + pjsua_enum_calls(ids, &count); + + if (count > 1) { + for (i=0; ipool, ¶m->choice[i].value, call_id); + pj_ansi_snprintf(desc, sizeof(desc), "%.*s [%.*s]", + (int)call_info.remote_info.slen, + call_info.remote_info.ptr, + (int)call_info.state_text.slen, + call_info.state_text.ptr); + pj_strdup2(param->pool, ¶m->choice[i].desc, desc); + if (++param->cnt >= param->max_cnt) + break; + + } + } + } +} + +#endif + +static void get_choice_value(pj_cli_dyn_choice_param *param) +{ + switch (param->arg_id) { + case DYN_CHOICE_BUDDY_ID: + case DYN_CHOICE_ADDED_BUDDY_ID: + get_buddy_id(param); + break; + case DYN_CHOICE_ACCOUNT_ID: + get_account_id(param); + break; + case DYN_CHOICE_MEDIA_PORT: + get_media_port(param); + break; + case DYN_CHOICE_AUDIO_CODEC_ID: + get_audio_codec_id(param); + break; +#if PJSUA_HAS_VIDEO + case DYN_CHOICE_CAP_DEV_ID: + case DYN_CHOICE_REN_DEV_ID: + case DYN_CHOICE_VID_DEV_ID: + get_video_dev_id(param, + (param->arg_id==DYN_CHOICE_VID_DEV_ID), + (param->arg_id==DYN_CHOICE_CAP_DEV_ID)); + break; + case DYN_CHOICE_STREAM_ID: + get_video_stream_id(param); + break; + case DYN_CHOICE_VIDEO_CODEC_ID: + get_video_codec_id(param); + break; + case DYN_CHOICE_WIN_ID: + get_video_window_id(param); + break; + case DYN_CHOICE_CALL_ID: + get_call_id(param); + break; +#endif + default: + param->cnt = 0; + break; + } +} + +/* + * CLI command handler + */ + +/* Add account */ +static pj_status_t cmd_add_account(pj_cli_cmd_val *cval) +{ + pjsua_acc_config acc_cfg; + pj_status_t status; + + pjsua_acc_config_default(&acc_cfg); + acc_cfg.id = cval->argv[1]; + acc_cfg.reg_uri = cval->argv[2]; + acc_cfg.cred_count = 1; + acc_cfg.cred_info[0].scheme = pj_str("Digest"); + acc_cfg.cred_info[0].realm = cval->argv[3]; + acc_cfg.cred_info[0].username = cval->argv[4]; + acc_cfg.cred_info[0].data_type = 0; + acc_cfg.cred_info[0].data = cval->argv[5]; + + acc_cfg.rtp_cfg = app_config.rtp_cfg; + app_config_init_video(&acc_cfg); + + status = pjsua_acc_add(&acc_cfg, PJ_TRUE, NULL); + if (status != PJ_SUCCESS) { + pjsua_perror(THIS_FILE, "Error adding new account", status); + } + + return status; +} + +/* Delete account */ +static pj_status_t cmd_del_account(pj_cli_cmd_val *cval) +{ + char out_str[64]; + unsigned str_len; + + int i = my_atoi(cval->argv[1].ptr); + + if (!pjsua_acc_is_valid(i)) { + pj_ansi_snprintf(out_str, sizeof(out_str), + "Invalid account id %d\n", i); + str_len = pj_ansi_strlen(out_str); + pj_cli_sess_write_msg(cval->sess, out_str, str_len); + } else { + pjsua_acc_del(i); + pj_ansi_snprintf(out_str, sizeof(out_str), + "Account %d deleted\n", i); + str_len = pj_ansi_strlen(out_str); + pj_cli_sess_write_msg(cval->sess, out_str, str_len); + } + return PJ_SUCCESS; +} + +/* Modify account */ +static pj_status_t cmd_mod_account(pj_cli_cmd_val *cval) +{ + PJ_UNUSED_ARG(cval); + return PJ_SUCCESS; +} + +/* Register account */ +static pj_status_t cmd_reg_account() +{ + pjsua_acc_set_registration(current_acc, PJ_TRUE); + return PJ_SUCCESS; +} + +/* Unregister account */ +static pj_status_t cmd_unreg_account() +{ + pjsua_acc_set_registration(current_acc, PJ_FALSE); + return PJ_SUCCESS; +} + +/* Select account to be used for sending outgoing request */ +static pj_status_t cmd_next_account(pj_cli_cmd_val *cval) +{ + int i = my_atoi(cval->argv[1].ptr); + if (pjsua_acc_is_valid(i)) { + pjsua_acc_set_default(i); + PJ_LOG(3,(THIS_FILE, "Current account changed to %d", i)); + } else { + PJ_LOG(3,(THIS_FILE, "Invalid account id %d", i)); + } + return PJ_SUCCESS; +} + +/* Show account list */ +static pj_status_t cmd_show_account(pj_cli_cmd_val *cval) +{ + pjsua_acc_id acc_ids[16]; + unsigned count = PJ_ARRAY_SIZE(acc_ids); + int i; + static const pj_str_t header = {"Account list:\n", 15}; + + pjsua_enum_accs(acc_ids, &count); + + pj_cli_sess_write_msg(cval->sess, header.ptr, header.slen); + for (i=0; i<(int)count; ++i) { + char acc_info[80]; + char out_str[160]; + pjsua_acc_info info; + + pjsua_acc_get_info(acc_ids[i], &info); + + if (!info.has_registration) { + pj_ansi_snprintf(acc_info, sizeof(acc_info), "%.*s", + (int)info.status_text.slen, + info.status_text.ptr); + + } else { + pj_ansi_snprintf(acc_info, sizeof(acc_info), + "%d/%.*s (expires=%d)", + info.status, + (int)info.status_text.slen, + info.status_text.ptr, + info.expires); + + } + + pj_ansi_snprintf(out_str, sizeof(out_str), + " %c[%2d] %.*s: %s\n", + (acc_ids[i]==current_acc?'*':' '), acc_ids[i], + (int)info.acc_uri.slen, info.acc_uri.ptr, + acc_info); + pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); + + pj_bzero(out_str, sizeof(out_str)); + pj_ansi_snprintf(out_str, sizeof(out_str), + " Online status: %.*s\n", + (int)info.online_status_text.slen, + info.online_status_text.ptr); + + pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); + } + + return PJ_SUCCESS; +} + +/* Account command handler */ +pj_status_t cmd_account_handler(pj_cli_cmd_val *cval) +{ + pj_status_t status = PJ_SUCCESS; + + CHECK_PJSUA_RUNNING(); + + switch(pj_cli_get_cmd_id(cval->cmd)) { + case CMD_ACCOUNT_ADD: + status = cmd_add_account(cval); + break; + case CMD_ACCOUNT_DEL: + status = cmd_del_account(cval); + break; + case CMD_ACCOUNT_MOD: + status = cmd_mod_account(cval); + break; + case CMD_ACCOUNT_REG: + status = cmd_reg_account(); + break; + case CMD_ACCOUNT_UNREG: + status = cmd_unreg_account(); + break; + case CMD_ACCOUNT_NEXT: + case CMD_ACCOUNT_PREV: + status = cmd_next_account(cval); + break; + case CMD_ACCOUNT_SHOW: + status = cmd_show_account(cval); + break; + } + return status; +} + +/* Add buddy */ +static pj_status_t cmd_add_buddy(pj_cli_cmd_val *cval) +{ + char out_str[80]; + pjsua_buddy_config buddy_cfg; + pjsua_buddy_id buddy_id; + pj_status_t status = PJ_SUCCESS; + cval->argv[1].ptr[cval->argv[1].slen] = 0; + + if (pjsua_verify_url(cval->argv[1].ptr) != PJ_SUCCESS) { + pj_ansi_snprintf(out_str, sizeof(out_str), + "Invalid URI '%s'\n", cval->argv[1].ptr); + } else { + pj_bzero(&buddy_cfg, sizeof(pjsua_buddy_config)); + + buddy_cfg.uri = pj_str(cval->argv[1].ptr); + buddy_cfg.subscribe = PJ_TRUE; + + status = pjsua_buddy_add(&buddy_cfg, &buddy_id); + if (status == PJ_SUCCESS) { + pj_ansi_snprintf(out_str, sizeof(out_str), + "New buddy '%s' added at index %d\n", + cval->argv[1].ptr, buddy_id+1); + } + } + pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); + return status; +} + +/* Delete buddy */ +static pj_status_t cmd_del_buddy(pj_cli_cmd_val *cval) +{ + int i = my_atoi(cval->argv[1].ptr) - 1; + char out_str[80]; + + if (!pjsua_buddy_is_valid(i)) { + pj_ansi_snprintf(out_str, sizeof(out_str), + "Invalid buddy id %d\n", i); + } else { + pjsua_buddy_del(i); + pj_ansi_snprintf(out_str, sizeof(out_str), + "Buddy %d deleted\n", i); + } + pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); + return PJ_SUCCESS; +} + +/* Send IM */ +static pj_status_t cmd_send_im(pj_cli_cmd_val *cval) +{ + int i = -1; + struct input_result result; + char dest[64]; + pj_str_t tmp = pj_str(dest); + + /* make compiler happy. */ + char *uri = NULL; + + pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(dest)); + + /* input destination. */ + get_input_url(tmp.ptr, tmp.slen, cval, &result); + if (result.nb_result != PJSUA_APP_NO_NB) { + + if (result.nb_result == -1) { + static const pj_str_t err_msg = {"you can't send broadcast im " + "like that!\n", 40 }; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + return PJ_SUCCESS; + } else if (result.nb_result == 0) { + i = current_call; + } else { + pjsua_buddy_info binfo; + pjsua_buddy_get_info(result.nb_result-1, &binfo); + pj_strncpy_with_null(&tmp, &binfo.uri, sizeof(dest)); + uri = tmp.ptr; + } + + } else if (result.uri_result) { + uri = result.uri_result; + } + + /* send typing indication. */ + if (i != -1) + pjsua_call_send_typing_ind(i, PJ_TRUE, NULL); + else { + pj_str_t tmp_uri = pj_str(uri); + pjsua_im_typing(current_acc, &tmp_uri, PJ_TRUE, NULL); + } + + /* send the im */ + if (i != -1) + pjsua_call_send_im(i, NULL, &cval->argv[2], NULL, NULL); + else { + pj_str_t tmp_uri = pj_str(uri); + pjsua_im_send(current_acc, &tmp_uri, NULL, &cval->argv[2], NULL, NULL); + } + return PJ_SUCCESS; +} + +/* Subscribe/unsubscribe presence */ +static pj_status_t cmd_subs_pres(pj_cli_cmd_val *cval, pj_bool_t subscribe) +{ + struct input_result result; + char dest[64] = {0}; + pj_str_t tmp = pj_str(dest); + + pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(dest)); + get_input_url(tmp.ptr, tmp.slen, cval, &result); + if (result.nb_result != PJSUA_APP_NO_NB) { + if (result.nb_result == -1) { + int i, count; + count = pjsua_get_buddy_count(); + for (i=0; isess, err_msg.ptr, err_msg.slen); + } else { + pjsua_buddy_subscribe_pres(result.nb_result-1, subscribe); + } + + } else if (result.uri_result) { + static const pj_str_t err_msg = {"Sorry, can only subscribe to " + "buddy's presence, not arbitrary " + "URL (for now)\n", 76}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + } + return PJ_SUCCESS; +} + +/* Toggle online state */ +static pj_status_t cmd_toggle_state(pj_cli_cmd_val *cval) +{ + char out_str[128]; + pjsua_acc_info acc_info; + + pjsua_acc_get_info(current_acc, &acc_info); + acc_info.online_status = !acc_info.online_status; + pjsua_acc_set_online_status(current_acc, acc_info.online_status); + pj_ansi_snprintf(out_str, sizeof(out_str), + "Setting %s online status to %s\n", + acc_info.acc_uri.ptr, + (acc_info.online_status?"online":"offline")); + pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); + return PJ_SUCCESS; +} + +/* Set presence text */ +static pj_status_t cmd_set_presence_text(pj_cli_cmd_val *cval) +{ + pjrpid_element elem; + int choice; + pj_bool_t online_status; + + enum { + AVAILABLE, BUSY, OTP, IDLE, AWAY, BRB, OFFLINE, OPT_MAX + }; + + choice = pj_strtol(&cval->argv[1]) - 1; + + pj_bzero(&elem, sizeof(elem)); + elem.type = PJRPID_ELEMENT_TYPE_PERSON; + + online_status = PJ_TRUE; + + switch (choice) { + case AVAILABLE: + break; + case BUSY: + elem.activity = PJRPID_ACTIVITY_BUSY; + elem.note = pj_str("Busy"); + break; + case OTP: + elem.activity = PJRPID_ACTIVITY_BUSY; + elem.note = pj_str("On the phone"); + break; + case IDLE: + elem.activity = PJRPID_ACTIVITY_UNKNOWN; + elem.note = pj_str("Idle"); + break; + case AWAY: + elem.activity = PJRPID_ACTIVITY_AWAY; + elem.note = pj_str("Away"); + break; + case BRB: + elem.activity = PJRPID_ACTIVITY_UNKNOWN; + elem.note = pj_str("Be right back"); + break; + case OFFLINE: + online_status = PJ_FALSE; + break; + } + pjsua_acc_set_online_status2(current_acc, online_status, &elem); + return PJ_SUCCESS; +} + +/* Show buddy list */ +static pj_status_t cmd_show_buddy(pj_cli_cmd_val *cval) +{ + pjsua_buddy_id ids[64]; + int i; + unsigned count = PJ_ARRAY_SIZE(ids); + static const pj_str_t header = {"Buddy list:\n", 13}; + char out_str[64]; + + pj_cli_sess_write_msg(cval->sess, header.ptr, header.slen); + + pjsua_enum_buddies(ids, &count); + + if (count == 0) { + pj_ansi_snprintf(out_str, sizeof(out_str), " -none-\n"); + pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); + } else { + for (i=0; i<(int)count; ++i) { + pjsua_buddy_info info; + pj_bzero(out_str, sizeof(out_str)); + + if (pjsua_buddy_get_info(ids[i], &info) != PJ_SUCCESS) + continue; + + pj_ansi_snprintf(out_str, sizeof(out_str), + " [%2d] <%.*s> %.*s\n", + ids[i]+1, + (int)info.status_text.slen, + info.status_text.ptr, + (int)info.uri.slen, + info.uri.ptr); + + pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); + } + } + return PJ_SUCCESS; +} + +/* Presence/buddy command handler */ +pj_status_t cmd_presence_handler(pj_cli_cmd_val *cval) +{ + pj_status_t status = PJ_SUCCESS; + + CHECK_PJSUA_RUNNING(); + + switch(pj_cli_get_cmd_id(cval->cmd)) { + case CMD_PRESENCE_ADD_BUDDY: + status = cmd_add_buddy(cval); + break; + case CMD_PRESENCE_DEL_BUDDY: + status = cmd_del_buddy(cval); + break; + case CMD_PRESENCE_SEND_IM: + status = cmd_send_im(cval); + break; + case CMD_PRESENCE_SUB: + case CMD_PRESENCE_UNSUB: + status = cmd_subs_pres(cval, + pj_cli_get_cmd_id(cval->cmd)==CMD_PRESENCE_SUB); + break; + case CMD_PRESENCE_TOG_STATE: + status = cmd_toggle_state(cval); + break; + case CMD_PRESENCE_TEXT: + status = cmd_set_presence_text(cval); + break; + case CMD_PRESENCE_LIST: + status = cmd_show_buddy(cval); + break; + } + + return status; +} + +/* Show conference list */ +static pj_status_t cmd_media_list(pj_cli_cmd_val *cval) +{ + unsigned i, count; + pjsua_conf_port_id id[PJSUA_MAX_CONF_PORTS]; + static const pj_str_t header = {"Conference ports:\n", 19}; + + pj_cli_sess_write_msg(cval->sess, header.ptr, header.slen); + + count = PJ_ARRAY_SIZE(id); + pjsua_enum_conf_ports(id, &count); + + for (i=0; isess, out_str, pj_ansi_strlen(out_str)); + } + return PJ_SUCCESS; +} + +/* Conference connect/disconnect */ +static pj_status_t cmd_media_connect(pj_cli_cmd_val *cval, pj_bool_t connect) +{ + pj_status_t status; + + if (connect) + status = pjsua_conf_connect(pj_strtol(&cval->argv[1]), + pj_strtol(&cval->argv[2])); + else + status = pjsua_conf_disconnect(pj_strtol(&cval->argv[1]), + pj_strtol(&cval->argv[2])); + + if (status == PJ_SUCCESS) { + static const pj_str_t success_msg = {"Success\n", 9}; + pj_cli_sess_write_msg(cval->sess, success_msg.ptr, success_msg.slen); + } else { + static const pj_str_t err_msg = {"ERROR!!\n", 9}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + } + return status; +} + +/* Adjust audio volume */ +static pj_status_t cmd_adjust_vol(pj_cli_cmd_val *cval) +{ + char buf[80]; + float orig_level; + char *err; + char level_val[16] = {0}; + pj_str_t tmp = pj_str(level_val); + + /* Adjust mic level */ + orig_level = app_config.mic_level; + pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(level_val)); + app_config.mic_level = (float)strtod(level_val, &err); + pjsua_conf_adjust_rx_level(0, app_config.mic_level); + + pj_ansi_snprintf(buf, sizeof(buf), + "Adjust mic level: [%4.1fx] -> [%4.1fx]\n", + orig_level, app_config.mic_level); + + pj_cli_sess_write_msg(cval->sess, buf, pj_ansi_strlen(buf)); + + /* Adjust speaker level */ + orig_level = app_config.speaker_level; + pj_strncpy_with_null(&tmp, &cval->argv[2], sizeof(level_val)); + app_config.speaker_level = (float)strtod(level_val, &err); + pjsua_conf_adjust_tx_level(0, app_config.speaker_level); + + pj_ansi_snprintf(buf, sizeof(buf), + "Adjust speaker level: [%4.1fx] -> [%4.1fx]\n", + orig_level, app_config.speaker_level); + + pj_cli_sess_write_msg(cval->sess, buf, pj_ansi_strlen(buf)); + + return PJ_SUCCESS; +} + +/* Set codec priority */ +static pj_status_t cmd_set_codec_prio(pj_cli_cmd_val *cval) +{ + int new_prio; + pj_status_t status; + + new_prio = pj_strtol(&cval->argv[2]); + if (new_prio < 0) + new_prio = 0; + else if (new_prio > PJMEDIA_CODEC_PRIO_HIGHEST) + new_prio = PJMEDIA_CODEC_PRIO_HIGHEST; + + status = pjsua_codec_set_priority(&cval->argv[1], + (pj_uint8_t)new_prio); +#if PJSUA_HAS_VIDEO + if (status != PJ_SUCCESS) { + status = pjsua_vid_codec_set_priority(&cval->argv[1], + (pj_uint8_t)new_prio); + } +#endif + if (status != PJ_SUCCESS) + pjsua_perror(THIS_FILE, "Error setting codec priority", status); + + return status; +} + +/* Conference/media command handler */ +pj_status_t cmd_media_handler(pj_cli_cmd_val *cval) +{ + pj_status_t status = PJ_SUCCESS; + + CHECK_PJSUA_RUNNING(); + + switch(pj_cli_get_cmd_id(cval->cmd)) { + case CMD_MEDIA_LIST: + status = cmd_media_list(cval); + break; + case CMD_MEDIA_CONF_CONNECT: + case CMD_MEDIA_CONF_DISCONNECT: + status = cmd_media_connect(cval, + pj_cli_get_cmd_id(cval->cmd)==CMD_MEDIA_CONF_CONNECT); + break; + case CMD_MEDIA_ADJUST_VOL: + status = cmd_adjust_vol(cval); + break; + case CMD_MEDIA_CODEC_PRIO: + status = cmd_set_codec_prio(cval); + break; + } + + return status; +} + +/* Dump status */ +static pj_status_t cmd_stat_dump(pj_bool_t detail) +{ + pjsua_dump(detail); + return PJ_SUCCESS; +} + +static pj_status_t cmd_show_config() +{ + char settings[2000]; + int len; + + len = write_settings(&app_config, settings, sizeof(settings)); + if (len < 1) + PJ_LOG(1,(THIS_FILE, "Error: not enough buffer")); + else + PJ_LOG(3,(THIS_FILE, + "Dumping configuration (%d bytes):\n%s\n", + len, settings)); + + return PJ_SUCCESS; +} + +static pj_status_t cmd_write_config(pj_cli_cmd_val *cval) +{ + char settings[2000]; + char buf[128] = {0}; + int len; + pj_str_t tmp = pj_str(buf); + + pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(buf)); + + len = write_settings(&app_config, settings, sizeof(settings)); + if (len < 1) + PJ_LOG(1,(THIS_FILE, "Error: not enough buffer")); + else { + pj_oshandle_t fd; + pj_status_t status; + + status = pj_file_open(app_config.pool, buf, PJ_O_WRONLY, &fd); + if (status != PJ_SUCCESS) { + pjsua_perror(THIS_FILE, "Unable to open file", status); + } else { + char out_str[256]; + pj_ssize_t size = len; + pj_file_write(fd, settings, &size); + pj_file_close(fd); + + pj_ansi_snprintf(out_str, sizeof(out_str), + "Settings successfully written to '%s'\n", buf); + + pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); + } + } + + return PJ_SUCCESS; +} + +/* Status and config command handler */ +pj_status_t cmd_config_handler(pj_cli_cmd_val *cval) +{ + pj_status_t status = PJ_SUCCESS; + + CHECK_PJSUA_RUNNING(); + + switch(pj_cli_get_cmd_id(cval->cmd)) { + case CMD_CONFIG_DUMP_STAT: + status = cmd_stat_dump(PJ_FALSE); + break; + case CMD_CONFIG_DUMP_DETAIL: + status = cmd_stat_dump(PJ_TRUE); + break; + case CMD_CONFIG_DUMP_CONF: + status = cmd_show_config(); + break; + case CMD_CONFIG_WRITE_SETTING: + status = cmd_write_config(cval); + break; + } + + return status; +} + +/* Make single call */ +static pj_status_t cmd_make_single_call(pj_cli_cmd_val *cval) +{ + struct input_result result; + char dest[64] = {0}; + char out_str[128]; + pj_str_t tmp = pj_str(dest); + + pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(dest)); + + pj_ansi_snprintf(out_str, + sizeof(out_str), + "(You currently have %d calls)\n", + pjsua_call_get_count()); + + pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); + + /* input destination. */ + get_input_url(tmp.ptr, tmp.slen, cval, &result); + if (result.nb_result != PJSUA_APP_NO_NB) { + pjsua_buddy_info binfo; + if (result.nb_result == -1 || result.nb_result == 0) { + static const pj_str_t err_msg = + {"You can't do that with make call!\n", 35}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + return PJ_SUCCESS; + } + pjsua_buddy_get_info(result.nb_result-1, &binfo); + pj_strncpy(&tmp, &binfo.uri, sizeof(dest)); + } else if (result.uri_result) { + tmp = pj_str(result.uri_result); + } else { + tmp.slen = 0; + } + + pjsua_msg_data_init(&msg_data); + TEST_MULTIPART(&msg_data); + pjsua_call_make_call(current_acc, &tmp, &call_opt, NULL, + &msg_data, ¤t_call); + return PJ_SUCCESS; +} + +/* Make multi call */ +static pj_status_t cmd_make_multi_call(pj_cli_cmd_val *cval) +{ + struct input_result result; + char dest[64] = {0}; + char out_str[128]; + int i, count; + pj_str_t tmp = pj_str(dest); + + pj_ansi_snprintf(out_str, + sizeof(out_str), + "(You currently have %d calls)\n", + pjsua_call_get_count()); + + count = pj_strtol(&cval->argv[1]); + if (count < 1) + return PJ_SUCCESS; + + pj_strncpy_with_null(&tmp, &cval->argv[2], sizeof(dest)); + + /* input destination. */ + get_input_url(tmp.ptr, tmp.slen, cval, &result); + if (result.nb_result != PJSUA_APP_NO_NB) { + pjsua_buddy_info binfo; + if (result.nb_result == -1 || result.nb_result == 0) { + static const pj_str_t err_msg = + {"You can't do that with make call!\n", 35}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + return PJ_SUCCESS; + } + pjsua_buddy_get_info(result.nb_result-1, &binfo); + pj_strncpy(&tmp, &binfo.uri, sizeof(dest)); + } else { + tmp = pj_str(result.uri_result); + } + + for (i=0; i= PJSIP_INV_STATE_CONNECTING) + { + static const pj_str_t err_msg = {"No pending incoming call\n", 26}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + + } else { + int st_code; + char contact[120]; + pj_str_t hname = { "Contact", 7 }; + pj_str_t hvalue; + pjsip_generic_string_hdr hcontact; + + st_code = pj_strtol(&cval->argv[1]); + if ((st_code < 100) || (st_code > 699)) + return PJ_SUCCESS; + + pjsua_msg_data_init(&msg_data); + + if (st_code/100 == 3) { + if (cval->argc < 3) { + static const pj_str_t err_msg = {"Enter URL to be put " + "in Contact\n", 32}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + return PJ_SUCCESS; + } + + hvalue = pj_str(contact); + pjsip_generic_string_hdr_init2(&hcontact, &hname, &hvalue); + + pj_list_push_back(&msg_data.hdr_list, &hcontact); + } + + /* + * Must check again! + * Call may have been disconnected while we're waiting for + * keyboard input. + */ + if (current_call == PJSUA_INVALID_ID) { + static const pj_str_t err_msg = {"Call has been disconnected\n", + 28}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + } + + pjsua_call_answer2(current_call, &call_opt, st_code, NULL, &msg_data); + } + return PJ_SUCCESS; +} + +/* Hangup call */ +static pj_status_t cmd_hangup_call(pj_cli_cmd_val *cval, pj_bool_t all) +{ + if (current_call == PJSUA_INVALID_ID) { + static const pj_str_t err_msg = {"No current call\n", 17}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + } else { + if (all) + pjsua_call_hangup_all(); + else + pjsua_call_hangup(current_call, 0, NULL, NULL); + } + return PJ_SUCCESS; +} + +/* Hold call */ +static pj_status_t cmd_hold_call() +{ + if (current_call != PJSUA_INVALID_ID) { + pjsua_call_set_hold(current_call, NULL); + + } else { + PJ_LOG(3,(THIS_FILE, "No current call")); + } + return PJ_SUCCESS; +} + +/* Call reinvite */ +static pj_status_t cmd_call_reinvite() +{ + if (current_call != PJSUA_INVALID_ID) { + /* + * re-INVITE + */ + call_opt.flag |= PJSUA_CALL_UNHOLD; + pjsua_call_reinvite2(current_call, &call_opt, NULL); + + } else { + PJ_LOG(3,(THIS_FILE, "No current call")); + } + return PJ_SUCCESS; +} + +/* Send update */ +static pj_status_t cmd_call_update() +{ + if (current_call != PJSUA_INVALID_ID) { + pjsua_call_update2(current_call, &call_opt, NULL); + } else { + PJ_LOG(3,(THIS_FILE, "No current call")); + } + return PJ_SUCCESS; +} + +/* Select next call */ +static pj_status_t cmd_next_call(pj_bool_t next) +{ + /* + * Cycle next/prev dialog. + */ + if (next) { + find_next_call(current_call); + } else { + find_prev_call(current_call); + } + + if (current_call != PJSUA_INVALID_ID) { + pjsua_call_info call_info; + + pjsua_call_get_info(current_call, &call_info); + PJ_LOG(3,(THIS_FILE,"Current dialog: %.*s", + (int)call_info.remote_info.slen, + call_info.remote_info.ptr)); + + } else { + PJ_LOG(3,(THIS_FILE,"No current dialog")); + } + return PJ_SUCCESS; +} + +/* Transfer call */ +static pj_status_t cmd_transfer_call(pj_cli_cmd_val *cval) +{ + if (current_call == PJSUA_INVALID_ID) { + + PJ_LOG(3,(THIS_FILE, "No current call")); + + } else { + char out_str[64]; + int call = current_call; + char dest[64] = {0}; + pj_str_t tmp = pj_str(dest); + struct input_result result; + pjsip_generic_string_hdr refer_sub; + pj_str_t STR_REFER_SUB = { "Refer-Sub", 9 }; + pj_str_t STR_FALSE = { "false", 5 }; + pjsua_call_info ci; + + pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(dest)); + + pjsua_call_get_info(current_call, &ci); + pj_ansi_snprintf(out_str, + sizeof(out_str), + "Transfering current call [%d] %.*s\n", + current_call, + (int)ci.remote_info.slen, + ci.remote_info.ptr); + + get_input_url(tmp.ptr, tmp.slen, cval, &result); + + /* Check if call is still there. */ + + if (call != current_call) { + puts("Call has been disconnected"); + return PJ_SUCCESS; + } + + pjsua_msg_data_init(&msg_data); + if (app_config.no_refersub) { + /* Add Refer-Sub: false in outgoing REFER request */ + pjsip_generic_string_hdr_init2(&refer_sub, &STR_REFER_SUB, + &STR_FALSE); + pj_list_push_back(&msg_data.hdr_list, &refer_sub); + } + if (result.nb_result != PJSUA_APP_NO_NB) { + if (result.nb_result == -1 || result.nb_result == 0) { + static const pj_str_t err_msg = {"You can't do that with " + "transfer call!\n", 39}; + + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + } else { + pjsua_buddy_info binfo; + pjsua_buddy_get_info(result.nb_result-1, &binfo); + pjsua_call_xfer( current_call, &binfo.uri, &msg_data); + } + } else if (result.uri_result) { + pj_str_t tmp; + tmp = pj_str(result.uri_result); + pjsua_call_xfer( current_call, &tmp, &msg_data); + } + } + return PJ_SUCCESS; +} + +/* Transfer call */ +static pj_status_t cmd_transfer_replace_call(pj_cli_cmd_val *cval) +{ + if (current_call == -1) { + PJ_LOG(3,(THIS_FILE, "No current call")); + } else { + int call = current_call; + int dst_call; + pjsip_generic_string_hdr refer_sub; + pj_str_t STR_REFER_SUB = { "Refer-Sub", 9 }; + pj_str_t STR_FALSE = { "false", 5 }; + pjsua_call_id ids[PJSUA_MAX_CALLS]; + pjsua_msg_data msg_data; + char buf[8] = {0}; + pj_str_t tmp = pj_str(buf); + unsigned count; + static const pj_str_t err_invalid_num = + {"Invalid destination call number\n", 32 }; + count = PJ_ARRAY_SIZE(ids); + pjsua_enum_calls(ids, &count); + + if (count <= 1) { + static const pj_str_t err_no_other_call = + {"There are no other calls\n", 25}; + + pj_cli_sess_write_msg(cval->sess, err_no_other_call.ptr, + err_no_other_call.slen); + return PJ_SUCCESS; + } + + pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(buf)); + dst_call = my_atoi(tmp.ptr); + + /* Check if call is still there. */ + if (call != current_call) { + static pj_str_t err_call_dc = + {"Call has been disconnected\n", 27}; + + pj_cli_sess_write_msg(cval->sess, err_call_dc.ptr, + err_call_dc.slen); + return PJ_SUCCESS; + } + + /* Check that destination call is valid. */ + if (dst_call == call) { + static pj_str_t err_same_num = + {"Destination call number must not be the " + "same as the call being transfered\n", 74}; + + pj_cli_sess_write_msg(cval->sess, err_same_num.ptr, + err_same_num.slen); + return PJ_SUCCESS; + } + + if (dst_call >= PJSUA_MAX_CALLS) { + pj_cli_sess_write_msg(cval->sess, err_invalid_num.ptr, + err_invalid_num.slen); + return PJ_SUCCESS; + } + + if (!pjsua_call_is_active(dst_call)) { + pj_cli_sess_write_msg(cval->sess, err_invalid_num.ptr, + err_invalid_num.slen); + return PJ_SUCCESS; + } + + pjsua_msg_data_init(&msg_data); + if (app_config.no_refersub) { + /* Add Refer-Sub: false in outgoing REFER request */ + pjsip_generic_string_hdr_init2(&refer_sub, &STR_REFER_SUB, + &STR_FALSE); + pj_list_push_back(&msg_data.hdr_list, &refer_sub); + } + + pjsua_call_xfer_replaces(call, dst_call, + PJSUA_XFER_NO_REQUIRE_REPLACES, + &msg_data); + } + return PJ_SUCCESS; +} + +static pj_status_t cmd_redirect_call(pj_cli_cmd_val *cval) +{ + if (current_call == PJSUA_INVALID_ID) { + PJ_LOG(3,(THIS_FILE, "No current call")); + return PJ_SUCCESS; + } + if (!pjsua_call_is_active(current_call)) { + PJ_LOG(1,(THIS_FILE, "Call %d has gone", current_call)); + } else { + enum { + ACCEPT_REPLACE, ACCEPT, REJECT, STOP + }; + int choice = pj_strtol(&cval->argv[1]); + + switch (choice) { + case ACCEPT_REPLACE: + pjsua_call_process_redirect(current_call, + PJSIP_REDIRECT_ACCEPT_REPLACE); + break; + case ACCEPT: + pjsua_call_process_redirect(current_call, PJSIP_REDIRECT_ACCEPT); + break; + case REJECT: + pjsua_call_process_redirect(current_call, PJSIP_REDIRECT_REJECT); + break; + default: + pjsua_call_process_redirect(current_call, PJSIP_REDIRECT_STOP); + break; + } + } + return PJ_SUCCESS; +} + +/* Send DTMF (RFC2833) */ +static pj_status_t cmd_dtmf_2833(pj_cli_cmd_val *cval) +{ + if (current_call == PJSUA_INVALID_ID) { + + PJ_LOG(3,(THIS_FILE, "No current call")); + + } else if (!pjsua_call_has_media(current_call)) { + + PJ_LOG(3,(THIS_FILE, "Media is not established yet!")); + + } else { + int call = current_call; + pj_status_t status; + + if (call != current_call) { + static const pj_str_t err_msg = {"Call has been disconnected\n", + 28}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + return PJ_SUCCESS;; + } + + status = pjsua_call_dial_dtmf(current_call, &cval->argv[1]); + if (status != PJ_SUCCESS) { + pjsua_perror(THIS_FILE, "Unable to send DTMF", status); + } else { + static const pj_str_t msg = {"DTMF digits enqueued " + "for transmission\n", 39}; + pj_cli_sess_write_msg(cval->sess, msg.ptr, msg.slen); + } + } + return PJ_SUCCESS; +} + +/* Send DTMF with SIP Info */ +static pj_status_t cmd_call_info(pj_cli_cmd_val *cval) +{ + if (current_call == PJSUA_INVALID_ID) { + + PJ_LOG(3,(THIS_FILE, "No current call")); + + } else { + const pj_str_t SIP_INFO = pj_str("INFO"); + int call = current_call; + int i; + pj_status_t status; + + if (call != current_call) { + static const pj_str_t err_msg = {"Call has been disconnected\n", + 28}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + return PJ_SUCCESS;; + } + + for (i=0; iargv[1].slen; ++i) { + char body[64]; + + pjsua_msg_data_init(&msg_data); + msg_data.content_type = pj_str("application/dtmf-relay"); + + pj_ansi_snprintf(body, + sizeof(body), + "Signal=%c\n" + "Duration=160", + cval->argv[1].ptr[i]); + + msg_data.msg_body = pj_str(body); + + status = pjsua_call_send_request(current_call, &SIP_INFO, + &msg_data); + if (status != PJ_SUCCESS) { + break; + } + } + } + return PJ_SUCCESS; +} + +/* Dump call quality */ +static pj_status_t cmd_call_quality() +{ + if (current_call != PJSUA_INVALID_ID) { + log_call_dump(current_call); + } else { + PJ_LOG(3,(THIS_FILE, "No current call")); + } + return PJ_SUCCESS; +} + +/* Send arbitrary request */ +static pj_status_t cmd_send_arbitrary(pj_cli_cmd_val *cval) +{ + if (pjsua_acc_get_count() == 0) { + static const pj_str_t err_msg = {"Sorry, need at least one " + "account configured\n", 45}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + } else { + char *uri; + char dest[64] = {0}; + pj_str_t tmp = pj_str(dest); + struct input_result result; + static const pj_str_t header = {"Send arbitrary request to " + "remote host\n", 39}; + + pj_cli_sess_write_msg(cval->sess, header.ptr, header.slen); + + pj_strncpy_with_null(&tmp, &cval->argv[2], sizeof(dest)); + /* Input destination URI */ + uri = NULL; + get_input_url(tmp.ptr, tmp.slen, cval, &result); + if (result.nb_result != PJSUA_APP_NO_NB) { + if (result.nb_result == -1) { + static const pj_str_t err_msg = {"Sorry you can't do that!\n", + 26}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); + return PJ_SUCCESS; + } else if (result.nb_result == 0) { + uri = NULL; + if (current_call == PJSUA_INVALID_ID) { + static const pj_str_t err_msg = {"No current call\n", + 17}; + pj_cli_sess_write_msg(cval->sess, err_msg.ptr, + err_msg.slen); + + return PJ_SUCCESS; + } + } else { + pjsua_buddy_info binfo; + pjsua_buddy_get_info(result.nb_result-1, &binfo); + pj_strncpy_with_null(&tmp, &binfo.uri, sizeof(dest)); + uri = tmp.ptr; + } + } else if (result.uri_result) { + uri = result.uri_result; + } else { + return PJ_SUCCESS;; + } + + if (uri) { + char method[64] = {0}; + pj_str_t tmp_method = pj_str(method); + pj_strncpy_with_null(&tmp_method, &cval->argv[1], sizeof(method)); + tmp = pj_str(uri); + send_request(method, &tmp); + } else { + /* If you send call control request using this method + * (such requests includes BYE, CANCEL, etc.), it will + * not go well with the call state, so don't do it + * unless it's for testing. + */ + pjsua_call_send_request(current_call, &cval->argv[1], NULL); + } + } + return PJ_SUCCESS; +} + +static pj_status_t cmd_show_current_call(pj_cli_cmd_val *cval) +{ + char out_str[128]; + int i = pjsua_call_get_count(); + pj_ansi_snprintf(out_str, sizeof(out_str), + "You have %d active call%s\n", i, (i>1?"s":"")); + + pj_cli_sess_write_msg(cval->sess, out_str, + pj_ansi_strlen(out_str)); + + if (current_call != PJSUA_INVALID_ID) { + pjsua_call_info ci; + if (pjsua_call_get_info(current_call, &ci)==PJ_SUCCESS) { + pj_ansi_snprintf(out_str, sizeof(out_str), + "Current call id=%d to %.*s [%.*s]\n", current_call, + (int)ci.remote_info.slen, ci.remote_info.ptr, + (int)ci.state_text.slen, ci.state_text.ptr); + + pj_cli_sess_write_msg(cval->sess, out_str, + pj_ansi_strlen(out_str)); + } + } + return PJ_SUCCESS; +} + +/* Call handler */ +pj_status_t cmd_call_handler(pj_cli_cmd_val *cval) +{ + pj_status_t status = PJ_SUCCESS; + pj_cli_cmd_id cmd_id = pj_cli_get_cmd_id(cval->cmd); + + CHECK_PJSUA_RUNNING(); + + switch(cmd_id) { + case CMD_CALL_NEW: + status = cmd_make_single_call(cval); + break; + case CMD_CALL_MULTI: + status = cmd_make_multi_call(cval); + break; + case CMD_CALL_ANSWER: + status = cmd_answer_call(cval); + break; + case CMD_CALL_HANGUP: + case CMD_CALL_HANGUP_ALL: + status = cmd_hangup_call(cval, (cmd_id==CMD_CALL_HANGUP_ALL)); + break; + case CMD_CALL_HOLD: + status = cmd_hold_call(); + break; + case CMD_CALL_REINVITE: + status = cmd_call_reinvite(); + break; + case CMD_CALL_UPDATE: + status = cmd_call_update(); + break; + case CMD_CALL_NEXT: + case CMD_CALL_PREVIOUS: + status = cmd_next_call(cmd_id==CMD_CALL_NEXT); + break; + case CMD_CALL_TRANSFER: + status = cmd_transfer_call(cval); + break; + case CMD_CALL_TRANSFER_REPLACE: + status = cmd_transfer_replace_call(cval); + break; + case CMD_CALL_REDIRECT: + status = cmd_redirect_call(cval); + break; + case CMD_CALL_D2833: + status = cmd_dtmf_2833(cval); + break; + case CMD_CALL_INFO: + status = cmd_call_info(cval); + break; + case CMD_CALL_DUMP_Q: + status = cmd_call_quality(); + break; + case CMD_CALL_SEND_ARB: + status = cmd_send_arbitrary(cval); + break; + case CMD_CALL_LIST: + status = cmd_show_current_call(cval); + break; + } + + return status; +} + +#if PJSUA_HAS_VIDEO +static pj_status_t cmd_set_video_enable(pj_bool_t enabled) +{ + app_config.vid.vid_cnt = (enabled ? 1 : 0); + PJ_LOG(3,(THIS_FILE, "Video will be %s in next offer/answer", + (enabled?"enabled":"disabled"))); + + return PJ_SUCCESS; +} + +static pj_status_t modify_video_account(pjsua_acc_config *acc_cfg) +{ + pj_status_t status = pjsua_acc_modify(current_acc, acc_cfg); + if (status != PJ_SUCCESS) + PJ_PERROR(1,(THIS_FILE, status, "Error modifying account %d", + current_acc)); + + return status; +} + +static pj_status_t cmd_show_account_video() +{ + pjsua_acc_config acc_cfg; + + pjsua_acc_get_config(current_acc, &acc_cfg); + app_config_show_video(current_acc, &acc_cfg); + return PJ_SUCCESS; +} + +static pj_status_t cmd_video_acc_handler(pj_cli_cmd_val *cval) +{ + pjsua_acc_config acc_cfg; + pj_cli_cmd_id cmd_id = pj_cli_get_cmd_id(cval->cmd); + + CHECK_PJSUA_RUNNING(); + + pjsua_acc_get_config(current_acc, &acc_cfg); + + switch(cmd_id) { + case CMD_VIDEO_ACC_AUTORX: + case CMD_VIDEO_ACC_AUTOTX: + { + int on = (pj_ansi_strnicmp(cval->argv[1].ptr, "On", 2)==0); + + if (cmd_id == CMD_VIDEO_ACC_AUTORX) + acc_cfg.vid_in_auto_show = on; + else + acc_cfg.vid_out_auto_transmit = on; + } + break; + case CMD_VIDEO_ACC_CAP_ID: + case CMD_VIDEO_ACC_REN_ID: + { + int dev = pj_strtol(&cval->argv[1]); + + if (cmd_id == CMD_VIDEO_ACC_CAP_ID) + acc_cfg.vid_cap_dev = dev; + else + acc_cfg.vid_rend_dev = dev; + } + break; + } + modify_video_account(&acc_cfg); + return PJ_SUCCESS; +} + +static pj_status_t cmd_add_vid_strm() +{ + return pjsua_call_set_vid_strm(current_call, + PJSUA_CALL_VID_STRM_ADD, NULL); +} + +static pj_status_t cmd_enable_vid_rx(pj_cli_cmd_val *cval) +{ + pjsua_call_vid_strm_op_param param; + pjsua_stream_info si; + pj_status_t status = PJ_SUCCESS; + pj_bool_t on = (pj_ansi_strnicmp(cval->argv[1].ptr, "On", 2) == 0); + + pjsua_call_vid_strm_op_param_default(¶m); + + param.med_idx = pj_strtol(&cval->argv[2]); + if (pjsua_call_get_stream_info(current_call, param.med_idx, &si) || + si.type != PJMEDIA_TYPE_VIDEO) + { + PJ_PERROR(1,(THIS_FILE, PJ_EINVAL, "Invalid stream")); + return status; + } + + if (on) param.dir = (si.info.vid.dir | PJMEDIA_DIR_DECODING); + else param.dir = (si.info.vid.dir & PJMEDIA_DIR_ENCODING); + + status = pjsua_call_set_vid_strm(current_call, + PJSUA_CALL_VID_STRM_CHANGE_DIR, + ¶m); + return status; +} + +static pj_status_t cmd_enable_vid_tx(pj_cli_cmd_val *cval) +{ + pjsua_call_vid_strm_op_param param; + pj_status_t status = PJ_SUCCESS; + pj_bool_t on = (pj_ansi_strnicmp(cval->argv[1].ptr, "On", 2) == 0); + + pjsua_call_vid_strm_op op = on? PJSUA_CALL_VID_STRM_START_TRANSMIT : + PJSUA_CALL_VID_STRM_STOP_TRANSMIT; + + pjsua_call_vid_strm_op_param_default(¶m); + + param.med_idx = pj_strtol(&cval->argv[2]); + + status = pjsua_call_set_vid_strm(current_call, op, ¶m); + return status; +} + +static pj_status_t cmd_enable_vid_stream(pj_cli_cmd_val *cval, + pj_bool_t enable) +{ + pjsua_call_vid_strm_op_param param; + pjsua_call_vid_strm_op op = enable? PJSUA_CALL_VID_STRM_CHANGE_DIR : + PJSUA_CALL_VID_STRM_REMOVE; + + pjsua_call_vid_strm_op_param_default(¶m); + + param.med_idx = cval->argc > 1 ? pj_strtol(&cval->argv[1]) : -1; + param.dir = PJMEDIA_DIR_ENCODING_DECODING; + return pjsua_call_set_vid_strm(current_call, op, ¶m); +} + +static pj_status_t cmd_set_cap_dev_id(pj_cli_cmd_val *cval) +{ + pjsua_call_vid_strm_op_param param; + + pjsua_call_vid_strm_op_param_default(¶m); + param.med_idx = cval->argc > 1? pj_strtol(&cval->argv[1]) : -1; + param.cap_dev = cval->argc > 2? pj_strtol(&cval->argv[2]) : + PJMEDIA_VID_DEFAULT_CAPTURE_DEV; + + return pjsua_call_set_vid_strm(current_call, + PJSUA_CALL_VID_STRM_CHANGE_CAP_DEV, + ¶m); +} + +static pj_status_t cmd_list_vid_dev() +{ + vid_list_devs(); + return PJ_SUCCESS; +} + +static pj_status_t cmd_vid_device_refresh() +{ + pjmedia_vid_dev_refresh(); + return PJ_SUCCESS; +} + +static pj_status_t cmd_vid_device_preview(pj_cli_cmd_val *cval) +{ + int dev_id = pj_strtol(&cval->argv[2]); + pj_bool_t on = (pj_ansi_strnicmp(cval->argv[1].ptr, "On", 2) == 0); + + if (on) { + pjsua_vid_preview_param param; + + pjsua_vid_preview_param_default(¶m); + param.wnd_flags = PJMEDIA_VID_DEV_WND_BORDER | + PJMEDIA_VID_DEV_WND_RESIZABLE; + pjsua_vid_preview_start(dev_id, ¶m); + arrange_window(pjsua_vid_preview_get_win(dev_id)); + } else { + pjsua_vid_win_id wid; + wid = pjsua_vid_preview_get_win(dev_id); + if (wid != PJSUA_INVALID_ID) { + /* Preview window hiding once it is stopped is + * responsibility of app */ + pjsua_vid_win_set_show(wid, PJ_FALSE); + pjsua_vid_preview_stop(dev_id); + } + } + return PJ_SUCCESS; +} + +static pj_status_t cmd_vid_codec_list() +{ + pjsua_codec_info ci[PJMEDIA_CODEC_MGR_MAX_CODECS]; + unsigned count = PJ_ARRAY_SIZE(ci); + pj_status_t status = pjsua_vid_enum_codecs(ci, &count); + if (status != PJ_SUCCESS) { + PJ_PERROR(1,(THIS_FILE, status, "Error enumerating codecs")); + } else { + unsigned i; + PJ_LOG(3,(THIS_FILE, "Found %d video codecs:", count)); + PJ_LOG(3,(THIS_FILE, "codec id prio fps bw(kbps) size")); + PJ_LOG(3,(THIS_FILE, "------------------------------------------")); + for (i=0; ifps.num*1.0/vfd->fps.denum), + vfd->avg_bps/1000, vfd->max_bps/1000, + vfd->size.w, vfd->size.h)); + } + } + return PJ_SUCCESS; +} + +static pj_status_t cmd_set_vid_codec_prio(pj_cli_cmd_val *cval) +{ + int prio = pj_strtol(&cval->argv[2]); + pj_status_t status; + + status = pjsua_vid_codec_set_priority(&cval->argv[1], (pj_uint8_t)prio); + if (status != PJ_SUCCESS) + PJ_PERROR(1,(THIS_FILE, status, "Set codec priority error")); + + return PJ_SUCCESS; +} + +static pj_status_t cmd_set_vid_codec_fps(pj_cli_cmd_val *cval) +{ + pjmedia_vid_codec_param cp; + int M, N; + pj_status_t status; + + M = pj_strtol(&cval->argv[2]); + N = pj_strtol(&cval->argv[3]); + status = pjsua_vid_codec_get_param(&cval->argv[1], &cp); + if (status == PJ_SUCCESS) { + cp.enc_fmt.det.vid.fps.num = M; + cp.enc_fmt.det.vid.fps.denum = N; + status = pjsua_vid_codec_set_param(&cval->argv[1], &cp); + } + if (status != PJ_SUCCESS) + PJ_PERROR(1,(THIS_FILE, status, "Set codec framerate error")); + + return PJ_SUCCESS; +} + +static pj_status_t cmd_set_vid_codec_bitrate(pj_cli_cmd_val *cval) +{ + pjmedia_vid_codec_param cp; + int M, N; + pj_status_t status; + + M = pj_strtol(&cval->argv[2]); + N = pj_strtol(&cval->argv[3]); + status = pjsua_vid_codec_get_param(&cval->argv[1], &cp); + if (status == PJ_SUCCESS) { + cp.enc_fmt.det.vid.avg_bps = M * 1000; + cp.enc_fmt.det.vid.max_bps = N * 1000; + status = pjsua_vid_codec_set_param(&cval->argv[1], &cp); + } + if (status != PJ_SUCCESS) + PJ_PERROR(1,(THIS_FILE, status, "Set codec bitrate error")); + + return status; +} + +static pj_status_t cmd_set_vid_codec_size(pj_cli_cmd_val *cval) +{ + pjmedia_vid_codec_param cp; + int M, N; + pj_status_t status; + + M = pj_strtol(&cval->argv[2]); + N = pj_strtol(&cval->argv[3]); + status = pjsua_vid_codec_get_param(&cval->argv[1], &cp); + if (status == PJ_SUCCESS) { + cp.enc_fmt.det.vid.size.w = M; + cp.enc_fmt.det.vid.size.h = N; + status = pjsua_vid_codec_set_param(&cval->argv[1], &cp); + } + if (status != PJ_SUCCESS) + PJ_PERROR(1,(THIS_FILE, status, "Set codec size error")); + + return status; +} + +static pj_status_t cmd_vid_win_list() +{ + pjsua_vid_win_id wids[PJSUA_MAX_VID_WINS]; + unsigned i, cnt = PJ_ARRAY_SIZE(wids); + + pjsua_vid_enum_wins(wids, &cnt); + + PJ_LOG(3,(THIS_FILE, "Found %d video windows:", cnt)); + PJ_LOG(3,(THIS_FILE, "WID show pos size")); + PJ_LOG(3,(THIS_FILE, "------------------------------")); + for (i = 0; i < cnt; ++i) { + pjsua_vid_win_info wi; + pjsua_vid_win_get_info(wids[i], &wi); + PJ_LOG(3,(THIS_FILE, "%3d %c (%d,%d) %dx%d", + wids[i], (wi.show?'Y':'N'), wi.pos.x, wi.pos.y, + wi.size.w, wi.size.h)); + } + return PJ_SUCCESS; +} + +static pj_status_t cmd_arrange_vid_win() +{ + arrange_window(PJSUA_INVALID_ID); + return PJ_SUCCESS; +} + +static pj_status_t cmd_show_vid_win(pj_cli_cmd_val *cval, pj_bool_t show) +{ + pjsua_vid_win_id wid = pj_strtol(&cval->argv[1]); + return pjsua_vid_win_set_show(wid, show); +} + +static pj_status_t cmd_move_vid_win(pj_cli_cmd_val *cval) +{ + pjsua_vid_win_id wid = pj_strtol(&cval->argv[1]); + pjmedia_coord pos; + + pos.x = pj_strtol(&cval->argv[2]); + pos.y = pj_strtol(&cval->argv[3]); + return pjsua_vid_win_set_pos(wid, &pos); +} + +static pj_status_t cmd_resize_vid_win(pj_cli_cmd_val *cval) +{ + pjsua_vid_win_id wid = pj_strtol(&cval->argv[1]); + pjmedia_rect_size size; + + size.w = pj_strtol(&cval->argv[2]); + size.h = pj_strtol(&cval->argv[3]); + return pjsua_vid_win_set_size(wid, &size); +} + +/* Video handler */ +static pj_status_t cmd_video_handler(pj_cli_cmd_val *cval) +{ + pj_status_t status = PJ_SUCCESS; + pj_cli_cmd_id cmd_id = pj_cli_get_cmd_id(cval->cmd); + + CHECK_PJSUA_RUNNING(); + + switch(cmd_id) { + case CMD_VIDEO_ENABLE: + status = cmd_set_video_enable(PJ_TRUE); + break; + case CMD_VIDEO_DISABLE: + status = cmd_set_video_enable(PJ_FALSE); + break; + case CMD_VIDEO_ACC_SHOW: + status = cmd_show_account_video(); + break; + case CMD_VIDEO_ACC_AUTORX: + case CMD_VIDEO_ACC_AUTOTX: + case CMD_VIDEO_ACC_CAP_ID: + case CMD_VIDEO_ACC_REN_ID: + status = cmd_video_acc_handler(cval); + break; + case CMD_VIDEO_CALL_ADD: + status = cmd_add_vid_strm(); + break; + case CMD_VIDEO_CALL_RX: + status = cmd_enable_vid_rx(cval); + break; + case CMD_VIDEO_CALL_TX: + status = cmd_enable_vid_tx(cval); + break; + case CMD_VIDEO_CALL_ENABLE: + case CMD_VIDEO_CALL_DISABLE: + status = cmd_enable_vid_stream(cval, (cmd_id==CMD_VIDEO_CALL_ENABLE)); + break; + case CMD_VIDEO_CALL_CAP: + status = cmd_set_cap_dev_id(cval); + break; + case CMD_VIDEO_DEVICE_LIST: + status = cmd_list_vid_dev(); + break; + case CMD_VIDEO_DEVICE_REFRESH: + status = cmd_vid_device_refresh(); + break; + case CMD_VIDEO_DEVICE_PREVIEW: + status = cmd_vid_device_preview(cval); + break; + case CMD_VIDEO_CODEC_LIST: + status = cmd_vid_codec_list(); + break; + case CMD_VIDEO_CODEC_PRIO: + status = cmd_set_vid_codec_prio(cval); + break; + case CMD_VIDEO_CODEC_FPS: + status = cmd_set_vid_codec_fps(cval); + break; + case CMD_VIDEO_CODEC_BITRATE: + status = cmd_set_vid_codec_bitrate(cval); + break; + case CMD_VIDEO_CODEC_SIZE: + status = cmd_set_vid_codec_size(cval); + break; + case CMD_VIDEO_WIN_LIST: + status = cmd_vid_win_list(); + break; + case CMD_VIDEO_WIN_ARRANGE: + status = cmd_arrange_vid_win(cval); + break; + case CMD_VIDEO_WIN_SHOW: + case CMD_VIDEO_WIN_HIDE: + status = cmd_show_vid_win(cval, (cmd_id==CMD_VIDEO_WIN_SHOW)); + break; + case CMD_VIDEO_WIN_MOVE: + status = cmd_move_vid_win(cval); + break; + case CMD_VIDEO_WIN_RESIZE: + status = cmd_resize_vid_win(cval); + break; + } + + return status; +} +#endif + +/* Other command handler */ +static pj_status_t cmd_sleep_handler(pj_cli_cmd_val *cval) +{ + int delay; + + delay = pj_strtoul(&cval->argv[1]); + if (delay < 0) delay = 0; + pj_thread_sleep(delay); + + return PJ_SUCCESS; +} + +static pj_status_t cmd_network_handler(pj_cli_cmd_val *cval) +{ + pj_status_t status = PJ_SUCCESS; + PJ_UNUSED_ARG(cval); + + CHECK_PJSUA_RUNNING(); + + status = pjsua_detect_nat_type(); + if (status != PJ_SUCCESS) + pjsua_perror(THIS_FILE, "Error", status); + + return status; +} + +static pj_status_t cmd_quit_handler(pj_cli_cmd_val *cval) +{ + PJ_LOG(3,(THIS_FILE, "Quitting app..")); + pj_cli_quit(cval->sess->fe->cli, cval->sess, PJ_FALSE); + + /* Invoke CLI stop callback (defined in pjsua_app.c) */ + cli_on_stopped(PJ_FALSE, 0, NULL); + + return PJ_SUCCESS; +} + +/* + * Syntax error handler for parser. + */ +static void on_syntax_error(pj_scanner *scanner) +{ + PJ_UNUSED_ARG(scanner); + PJ_THROW(PJ_EINVAL); +} + +/* + * This method will parse buffer string info array of argument string + * @argc On input, maximum array size of argument. On output, number of argument + * parsed + * @argv Array of argument string + */ +static pj_status_t get_options(pj_str_t *options, unsigned *argc, + pj_str_t argv[]) +{ + pj_scanner scanner; + unsigned max_argc = *argc; + + PJ_USE_EXCEPTION; + + if (!options) + return PJ_SUCCESS; + + pj_scan_init(&scanner, options->ptr, options->slen, PJ_SCAN_AUTOSKIP_WS, + &on_syntax_error); + PJ_TRY { + *argc = 0; + while (!pj_scan_is_eof(&scanner) && (max_argc > *argc)) { + pj_str_t str; + + pj_scan_get_until_chr(&scanner, " \t\r\n", &str); + argv[*argc] = str; + ++(*argc); + } + } + PJ_CATCH_ANY { + pj_scan_fini(&scanner); + return PJ_GET_EXCEPTION(); + } + PJ_END; + return PJ_SUCCESS; +} + +static pj_status_t cmd_restart_handler(pj_cli_cmd_val *cval) +{ + enum { MAX_ARGC = 64 }; + int i; + unsigned argc = 1; + static char argv_buffer[PJ_CLI_MAX_CMDBUF]; + static char *argv[MAX_ARGC] = {NULL}; + char *pbuf = argv_buffer; + + PJ_LOG(3,(THIS_FILE, "Restarting app..")); + pj_cli_quit(cval->sess->fe->cli, cval->sess, PJ_TRUE); + + /** Get the pjsua option **/ + for (i=1; i < cval->argc; i++) { + pj_str_t argvst[MAX_ARGC]; + unsigned j, ac; + + ac = MAX_ARGC - argc; + get_options(&cval->argv[i], &ac, argvst); + for (j = 0; j < ac; j++) { + pj_ansi_strncpy(pbuf, argvst[j].ptr, argvst[j].slen); + pbuf[argvst[j].slen] = '\0'; + argv[argc + j] = pbuf; + pbuf += argvst[j].slen + 1; + } + argc += ac; + } + + /* Invoke CLI stop callback (defined in pjsua_app.c) */ + cli_on_stopped(PJ_TRUE, argc, (char**)argv); + + return PJ_SUCCESS; +} + +static pj_status_t add_call_command(pj_cli_t *cli) +{ + char* call_command = + "" + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + ""; + + pj_str_t xml = pj_str(call_command); + return pj_cli_add_cmd_from_xml(cli, NULL, + &xml, cmd_call_handler, + NULL, get_choice_value); +} + +static pj_status_t add_presence_command(pj_cli_t *cli) +{ + char* presence_command = + "" + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + ""; + + pj_str_t xml = pj_str(presence_command); + + return pj_cli_add_cmd_from_xml(cli, NULL, + &xml, cmd_presence_handler, + NULL, get_choice_value); +} + +static pj_status_t add_account_command(pj_cli_t *cli) +{ + char* account_command = + "" + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + ""; + + pj_str_t xml = pj_str(account_command); + return pj_cli_add_cmd_from_xml(cli, NULL, + &xml, cmd_account_handler, + NULL, get_choice_value); +} + +static pj_status_t add_media_command(pj_cli_t *cli) +{ + char* media_command = + "" + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + ""; + + pj_str_t xml = pj_str(media_command); + return pj_cli_add_cmd_from_xml(cli, NULL, + &xml, cmd_media_handler, + NULL, get_choice_value); +} + +static pj_status_t add_config_command(pj_cli_t *cli) +{ + char* config_command = + "" + " " + " " + " " + " " + " " + " " + ""; + + pj_str_t xml = pj_str(config_command); + return pj_cli_add_cmd_from_xml(cli, NULL, + &xml, cmd_config_handler, + NULL, get_choice_value); +} + +#if PJSUA_HAS_VIDEO +static pj_status_t add_video_command(pj_cli_t *cli) +{ + char* video_command = + "" + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + " " + ""; + + pj_str_t xml = pj_str(video_command); + return pj_cli_add_cmd_from_xml(cli, NULL, + &xml, cmd_video_handler, + NULL, get_choice_value); +} +#endif + +static pj_status_t add_other_command(pj_cli_t *cli) +{ + char* sleep_command = + "" + " " + ""; + + char* network_command = + ""; + + char* shutdown_command = + ""; + + char* restart_command = + "" + " " + " " + " " + " " + ""; + + pj_status_t status; + pj_str_t sleep_xml = pj_str(sleep_command); + pj_str_t network_xml = pj_str(network_command); + pj_str_t shutdown_xml = pj_str(shutdown_command); + pj_str_t restart_xml = pj_str(restart_command); + + status = pj_cli_add_cmd_from_xml(cli, NULL, + &sleep_xml, cmd_sleep_handler, + NULL, NULL); + if (status != PJ_SUCCESS) + return status; + + status = pj_cli_add_cmd_from_xml(cli, NULL, + &network_xml, cmd_network_handler, + NULL, NULL); + if (status != PJ_SUCCESS) + return status; + + status = pj_cli_add_cmd_from_xml(cli, NULL, + &shutdown_xml, cmd_quit_handler, + NULL, NULL); + + if (status != PJ_SUCCESS) + return status; + + status = pj_cli_add_cmd_from_xml(cli, NULL, + &restart_xml, cmd_restart_handler, + NULL, NULL); + + return status; +} + +pj_status_t cli_setup_command(pj_cli_t *cli) +{ + pj_status_t status; + + status = add_call_command(cli); + if (status != PJ_SUCCESS) + return status; + + status = add_presence_command(cli); + if (status != PJ_SUCCESS) + return status; + + status = add_account_command(cli); + if (status != PJ_SUCCESS) + return status; + + status = add_media_command(cli); + if (status != PJ_SUCCESS) + return status; + + status = add_config_command(cli); + if (status != PJ_SUCCESS) + return status; + +#if PJSUA_HAS_VIDEO + status = add_video_command(cli); + if (status != PJ_SUCCESS) + return status; +#endif + + status = add_other_command(cli); + + return status; +} diff --git a/pjsip-apps/src/pjsua/pjsua_app_common.c b/pjsip-apps/src/pjsua/pjsua_app_common.c new file mode 100644 index 00000000..e02f0456 --- /dev/null +++ b/pjsip-apps/src/pjsua/pjsua_app_common.c @@ -0,0 +1,355 @@ +/* $Id$ */ +/* + * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) + * Copyright (C) 2003-2008 Benny Prijono + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include "pjsua_app_common.h" + +#define THIS_FILE "pjsua_app_common.c" + +#if defined(PJMEDIA_HAS_RTCP_XR) && (PJMEDIA_HAS_RTCP_XR != 0) +# define SOME_BUF_SIZE (1024 * 10) +#else +# define SOME_BUF_SIZE (1024 * 3) +#endif + +static char some_buf[SOME_BUF_SIZE]; + +/** Variable definition **/ +int stdout_refresh = -1; +pj_bool_t stdout_refresh_quit = PJ_FALSE; +pjsua_call_id current_call = PJSUA_INVALID_ID; +pjsua_app_config app_config; +pjsua_call_setting call_opt; +pjsua_msg_data msg_data; + +int my_atoi(const char *cs) +{ + pj_str_t s; + + pj_cstr(&s, cs); + if (cs[0] == '-') { + s.ptr++, s.slen--; + return 0 - (int)pj_strtoul(&s); + } else if (cs[0] == '+') { + s.ptr++, s.slen--; + return pj_strtoul(&s); + } else { + return pj_strtoul(&s); + } +} + +/* + * Find next call when current call is disconnected or when user + * press ']' + */ +pj_bool_t find_next_call() +{ + int i, max; + + max = pjsua_call_get_max_count(); + for (i=current_call+1; i=0; --i) { + if (pjsua_call_is_active(i)) { + current_call = i; + return PJ_TRUE; + } + } + + for (i=max-1; i>current_call; --i) { + if (pjsua_call_is_active(i)) { + current_call = i; + return PJ_TRUE; + } + } + + current_call = PJSUA_INVALID_ID; + return PJ_FALSE; +} + +/* + * Send arbitrary request to remote host + */ +void send_request(char *cstr_method, const pj_str_t *dst_uri) +{ + pj_str_t str_method; + pjsip_method method; + pjsip_tx_data *tdata; + pjsip_endpoint *endpt; + pj_status_t status; + + endpt = pjsua_get_pjsip_endpt(); + + str_method = pj_str(cstr_method); + pjsip_method_init_np(&method, &str_method); + + status = pjsua_acc_create_request(current_acc, &method, dst_uri, &tdata); + + status = pjsip_endpt_send_request(endpt, tdata, -1, NULL, NULL); + if (status != PJ_SUCCESS) { + pjsua_perror(THIS_FILE, "Unable to send request", status); + return; + } +} + +/* + * Print log of call states. Since call states may be too long for logger, + * printing it is a bit tricky, it should be printed part by part as long + * as the logger can accept. + */ +void log_call_dump(int call_id) +{ + unsigned call_dump_len; + unsigned part_len; + unsigned part_idx; + unsigned log_decor; + + pjsua_call_dump(call_id, PJ_TRUE, some_buf, sizeof(some_buf), " "); + call_dump_len = strlen(some_buf); + + log_decor = pj_log_get_decor(); + pj_log_set_decor(log_decor & ~(PJ_LOG_HAS_NEWLINE | PJ_LOG_HAS_CR)); + PJ_LOG(3,(THIS_FILE, "\n")); + pj_log_set_decor(0); + + part_idx = 0; + part_len = PJ_LOG_MAX_SIZE-80; + while (part_idx < call_dump_len) { + char p_orig, *p; + + p = &some_buf[part_idx]; + if (part_idx + part_len > call_dump_len) + part_len = call_dump_len - part_idx; + p_orig = p[part_len]; + p[part_len] = '\0'; + PJ_LOG(3,(THIS_FILE, "%s", p)); + p[part_len] = p_orig; + part_idx += part_len; + } + pj_log_set_decor(log_decor); +} + +#ifdef PJSUA_HAS_VIDEO +void app_config_init_video(pjsua_acc_config *acc_cfg) +{ + acc_cfg->vid_in_auto_show = app_config.vid.in_auto_show; + acc_cfg->vid_out_auto_transmit = app_config.vid.out_auto_transmit; + /* Note that normally GUI application will prefer a borderless + * window. + */ + acc_cfg->vid_wnd_flags = PJMEDIA_VID_DEV_WND_BORDER | + PJMEDIA_VID_DEV_WND_RESIZABLE; + acc_cfg->vid_cap_dev = app_config.vid.vcapture_dev; + acc_cfg->vid_rend_dev = app_config.vid.vrender_dev; + + if (app_config.avi_auto_play && + app_config.avi_def_idx != PJSUA_INVALID_ID && + app_config.avi[app_config.avi_def_idx].dev_id != PJMEDIA_VID_INVALID_DEV) + { + acc_cfg->vid_cap_dev = app_config.avi[app_config.avi_def_idx].dev_id; + } +} +#else +void app_config_init_video(pjsua_acc_config *acc_cfg) +{ + PJ_UNUSED_ARG(acc_cfg); +} +#endif + +#ifdef HAVE_MULTIPART_TEST + /* + * Enable multipart in msg_data and add a dummy body into the + * multipart bodies. + */ + void add_multipart(pjsua_msg_data *msg_data) + { + static pjsip_multipart_part *alt_part; + + if (!alt_part) { + pj_str_t type, subtype, content; + + alt_part = pjsip_multipart_create_part(app_config.pool); + + type = pj_str("text"); + subtype = pj_str("plain"); + content = pj_str("Sample text body of a multipart bodies"); + alt_part->body = pjsip_msg_body_create(app_config.pool, &type, + &subtype, &content); + } + + msg_data->multipart_ctype.type = pj_str("multipart"); + msg_data->multipart_ctype.subtype = pj_str("mixed"); + pj_list_push_back(&msg_data->multipart_parts, alt_part); + } +#endif + +/* arrange windows. arg: + * -1: arrange all windows + * != -1: arrange only this window id + */ +void arrange_window(pjsua_vid_win_id wid) +{ +#if PJSUA_HAS_VIDEO + pjmedia_coord pos; + int i, last; + + pos.x = 0; + pos.y = 10; + last = (wid == PJSUA_INVALID_ID) ? PJSUA_MAX_VID_WINS : wid; + + for (i=0; idir == PJMEDIA_DIR_CAPTURE_RENDER) { + dirname = "capture, render"; + } else if (vdi->dir == PJMEDIA_DIR_CAPTURE) { + dirname = "capture"; + } else { + dirname = "render"; + } + + + capnames[0] = '\0'; + for (i=0; icaps & (1 << i)) { + const char *capname = pjmedia_vid_dev_cap_name(1 << i, NULL); + if (capname) { + if (*capnames) + strcat(capnames, ", "); + strncat(capnames, capname, + sizeof(capnames)-strlen(capnames)-1); + } + } + } + + formats[0] = '\0'; + for (i=0; ifmt_cnt; ++i) { + const pjmedia_video_format_info *vfi = + pjmedia_get_video_format_info(NULL, vdi->fmt[i].id); + if (vfi) { + if (*formats) + strcat(formats, ", "); + strncat(formats, vfi->name, sizeof(formats)-strlen(formats)-1); + } + } + + PJ_LOG(3,(THIS_FILE, "%3d %s [%s][%s] %s", id, vdi->name, vdi->driver, + dirname, title)); + PJ_LOG(3,(THIS_FILE, " Supported capabilities: %s", capnames)); + PJ_LOG(3,(THIS_FILE, " Supported formats: %s", formats)); +} + +void vid_list_devs() +{ + unsigned i, count; + pjmedia_vid_dev_info vdi; + pj_status_t status; + + PJ_LOG(3,(THIS_FILE, "Video device list:")); + count = pjsua_vid_dev_count(); + if (count == 0) { + PJ_LOG(3,(THIS_FILE, " - no device detected -")); + return; + } else { + PJ_LOG(3,(THIS_FILE, "%d device(s) detected:", count)); + } + + status = pjsua_vid_dev_get_info(PJMEDIA_VID_DEFAULT_RENDER_DEV, &vdi); + if (status == PJ_SUCCESS) + vid_print_dev(PJMEDIA_VID_DEFAULT_RENDER_DEV, &vdi, + "(default renderer device)"); + + status = pjsua_vid_dev_get_info(PJMEDIA_VID_DEFAULT_CAPTURE_DEV, &vdi); + if (status == PJ_SUCCESS) + vid_print_dev(PJMEDIA_VID_DEFAULT_CAPTURE_DEV, &vdi, + "(default capture device)"); + + for (i=0; ivid_in_auto_show, + acc_cfg->vid_out_auto_transmit, + acc_cfg->vid_cap_dev, + acc_cfg->vid_rend_dev)); +} + + +#endif diff --git a/pjsip-apps/src/pjsua/pjsua_app_common.h b/pjsip-apps/src/pjsua/pjsua_app_common.h new file mode 100644 index 00000000..3d2ebc4c --- /dev/null +++ b/pjsip-apps/src/pjsua/pjsua_app_common.h @@ -0,0 +1,226 @@ +/* $Id$ */ +/* + * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ +#ifndef __PJSUA_APP_COMMON_H__ +#define __PJSUA_APP_COMMON_H__ + +#include + +PJ_BEGIN_DECL + +#define current_acc pjsua_acc_get_default() + +#define PJSUA_APP_NO_LIMIT_DURATION (int)0x7FFFFFFF +#define PJSUA_APP_MAX_AVI 4 +#define PJSUA_APP_NO_NB -2 + +typedef struct input_result +{ + int nb_result; + char *uri_result; +} input_result; + +/* Call specific data */ +typedef struct app_call_data +{ + pj_timer_entry timer; + pj_bool_t ringback_on; + pj_bool_t ring_on; +} app_call_data; + +/* Video settings */ +typedef struct app_vid +{ + unsigned vid_cnt; + int vcapture_dev; + int vrender_dev; + pj_bool_t in_auto_show; + pj_bool_t out_auto_transmit; +} app_vid; + +/* Enumeration of CLI frontends */ +typedef enum { + CLI_FE_CONSOLE = 1, + CLI_FE_TELNET = 2 +} CLI_FE; + +/** CLI config **/ +typedef struct cli_cfg_t +{ + /** Bitmask of CLI_FE **/ + int cli_fe; + pj_cli_cfg cfg; + pj_cli_telnet_cfg telnet_cfg; + pj_cli_console_cfg console_cfg; +} cli_cfg_t; + +/* Pjsua application data */ +typedef struct pjsua_app_config +{ + pjsua_config cfg; + pjsua_logging_config log_cfg; + pjsua_media_config media_cfg; + pj_bool_t no_refersub; + pj_bool_t ipv6; + pj_bool_t enable_qos; + pj_bool_t no_tcp; + pj_bool_t no_udp; + pj_bool_t use_tls; + pjsua_transport_config udp_cfg; + pjsua_transport_config rtp_cfg; + pjsip_redirect_op redir_op; + + unsigned acc_cnt; + pjsua_acc_config acc_cfg[PJSUA_MAX_ACC]; + + unsigned buddy_cnt; + pjsua_buddy_config buddy_cfg[PJSUA_MAX_BUDDIES]; + + app_call_data call_data[PJSUA_MAX_CALLS]; + + pj_pool_t *pool; + /* Compatibility with older pjsua */ + + unsigned codec_cnt; + pj_str_t codec_arg[32]; + unsigned codec_dis_cnt; + pj_str_t codec_dis[32]; + pj_bool_t null_audio; + unsigned wav_count; + pj_str_t wav_files[32]; + unsigned tone_count; + pjmedia_tone_desc tones[32]; + pjsua_conf_port_id tone_slots[32]; + pjsua_player_id wav_id; + pjsua_conf_port_id wav_port; + pj_bool_t auto_play; + pj_bool_t auto_play_hangup; + pj_timer_entry auto_hangup_timer; + pj_bool_t auto_loop; + pj_bool_t auto_conf; + pj_str_t rec_file; + pj_bool_t auto_rec; + pjsua_recorder_id rec_id; + pjsua_conf_port_id rec_port; + unsigned auto_answer; + unsigned duration; + +#ifdef STEREO_DEMO + pjmedia_snd_port *snd; + pjmedia_port *sc, *sc_ch1; + pjsua_conf_port_id sc_ch1_slot; +#endif + + float mic_level, + speaker_level; + + int capture_dev, playback_dev; + unsigned capture_lat, playback_lat; + + pj_bool_t no_tones; + int ringback_slot; + int ringback_cnt; + pjmedia_port *ringback_port; + int ring_slot; + int ring_cnt; + pjmedia_port *ring_port; + + app_vid vid; + unsigned aud_cnt; + + /* AVI to play */ + unsigned avi_cnt; + struct { + pj_str_t path; + pjmedia_vid_dev_index dev_id; + pjsua_conf_port_id slot; + } avi[PJSUA_APP_MAX_AVI]; + pj_bool_t avi_auto_play; + int avi_def_idx; + + /* CLI setting */ + pj_bool_t use_cli; + cli_cfg_t cli_cfg; +} pjsua_app_config; + +/** Extern variable declaration **/ +extern pjsua_call_id current_call; +extern pjsua_app_config app_config; +extern int stdout_refresh; +extern pj_bool_t stdout_refresh_quit; +extern pjsua_call_setting call_opt; +extern pjsua_msg_data msg_data; +extern pj_bool_t app_running; + +int my_atoi(const char *cs); +pj_bool_t find_next_call(); +pj_bool_t find_prev_call(); +void send_request(char *cstr_method, const pj_str_t *dst_uri); +void log_call_dump(int call_id); +int write_settings(pjsua_app_config *cfg, char *buf, pj_size_t max); +void app_config_init_video(pjsua_acc_config *acc_cfg); +void arrange_window(pjsua_vid_win_id wid); + +/** Defined in pjsua_cli_cmd.c **/ +pj_bool_t is_cli_inited(); + +/** Defined in pjsua_config.c **/ +/** This is to load the configuration **/ +pj_status_t load_config(int argc, char **argv, pj_str_t *uri_arg); + +/** Pjsua app callback **/ +/** This callback is called when CLI is started. **/ +void cli_on_started(pj_status_t status); + +/** This callback is called when "shutdown"/"restart" command is invoked **/ +void cli_on_stopped(pj_bool_t restart, int argc, char **argv); + +/** This callback is called when "quit"/"restart" command is invoked **/ +void legacy_on_stopped(pj_bool_t restart); + +/** Pjsua cli method **/ +pj_status_t cli_init(); +pj_status_t cli_main(pj_bool_t wait_telnet_cli); +void cli_destroy(); +void cli_get_info(char *info, pj_size_t size); + +/** Legacy method **/ +void legacy_main(); + +#if PJSUA_HAS_VIDEO +void vid_print_dev(int id, const pjmedia_vid_dev_info *vdi, const char *title); +void vid_list_devs(); +void app_config_show_video(int acc_id, const pjsua_acc_config *acc_cfg); +#endif + +#ifdef HAVE_MULTIPART_TEST + /* + * Enable multipart in msg_data and add a dummy body into the + * multipart bodies. + */ + void add_multipart(pjsua_msg_data *msg_data); +# define TEST_MULTIPART(msg_data) add_multipart(msg_data) +#else +# define TEST_MULTIPART(msg_data) +#endif + + +PJ_END_DECL + +#endif /* __PJSUA_APP_COMMON_H__ */ + diff --git a/pjsip-apps/src/pjsua/pjsua_app_config.c b/pjsip-apps/src/pjsua/pjsua_app_config.c new file mode 100644 index 00000000..0cf8512c --- /dev/null +++ b/pjsip-apps/src/pjsua/pjsua_app_config.c @@ -0,0 +1,2179 @@ +/* $Id$ */ +/* + * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) + * Copyright (C) 2003-2008 Benny Prijono + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ +#include "pjsua_app_common.h" + +#define THIS_FILE "pjsua_app_config.c" + +#define MAX_APP_OPTIONS 128 + +char *stdout_refresh_text = "STDOUT_REFRESH"; + +/* Show usage */ +static void usage(void) +{ + puts ("Usage:"); + puts (" pjsua [options] [SIP URL to call]"); + puts (""); + puts ("General options:"); + puts (" --config-file=file Read the config/arguments from file."); + puts (" --help Display this help screen"); + puts (" --version Display version info"); + puts (""); + puts ("Logging options:"); + puts (" --log-file=fname Log to filename (default stderr)"); + puts (" --log-level=N Set log max level to N (0(none) to 6(trace)) (default=5)"); + puts (" --app-log-level=N Set log max level for stdout display (default=4)"); + puts (" --log-append Append instead of overwrite existing log file.\n"); + puts (" --color Use colorful logging (default yes on Win32)"); + puts (" --no-color Disable colorful logging"); + puts (" --light-bg Use dark colors for light background (default is dark bg)"); + puts (" --no-stderr Disable stderr"); + + puts (""); + puts ("SIP Account options:"); + puts (" --registrar=url Set the URL of registrar server"); + puts (" --id=url Set the URL of local ID (used in From header)"); + puts (" --realm=string Set realm"); + puts (" --username=string Set authentication username"); + puts (" --password=string Set authentication password"); + puts (" --contact=url Optionally override the Contact information"); + puts (" --contact-params=S Append the specified parameters S in Contact header"); + puts (" --contact-uri-params=S Append the specified parameters S in Contact URI"); + puts (" --proxy=url Optional URL of proxy server to visit"); + puts (" May be specified multiple times"); + printf(" --reg-timeout=SEC Optional registration interval (default %d)\n", + PJSUA_REG_INTERVAL); + printf(" --rereg-delay=SEC Optional auto retry registration interval (default %d)\n", + PJSUA_REG_RETRY_INTERVAL); + puts (" --reg-use-proxy=N Control the use of proxy settings in REGISTER."); + puts (" 0=no proxy, 1=outbound only, 2=acc only, 3=all (default)"); + puts (" --publish Send presence PUBLISH for this account"); + puts (" --mwi Subscribe to message summary/waiting indication"); + puts (" --use-ims Enable 3GPP/IMS related settings on this account"); +#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0) + puts (" --use-srtp=N Use SRTP? 0:disabled, 1:optional, 2:mandatory,"); + puts (" 3:optional by duplicating media offer (def:0)"); + puts (" --srtp-secure=N SRTP require secure SIP? 0:no, 1:tls, 2:sips (def:1)"); +#endif + puts (" --use-100rel Require reliable provisional response (100rel)"); + puts (" --use-timer=N Use SIP session timers? (default=1)"); + puts (" 0:inactive, 1:optional, 2:mandatory, 3:always"); + printf(" --timer-se=N Session timers expiration period, in secs (def:%d)\n", + PJSIP_SESS_TIMER_DEF_SE); + puts (" --timer-min-se=N Session timers minimum expiration period, in secs (def:90)"); + puts (" --outb-rid=string Set SIP outbound reg-id (default:1)"); + puts (" --auto-update-nat=N Where N is 0 or 1 to enable/disable SIP traversal behind"); + puts (" symmetric NAT (default 1)"); + puts (" --disable-stun Disable STUN for this account"); + puts (" --next-cred Add another credentials"); + puts (""); + puts ("SIP Account Control:"); + puts (" --next-account Add more account"); + puts (""); + puts ("Transport Options:"); +#if defined(PJ_HAS_IPV6) && PJ_HAS_IPV6 + puts (" --ipv6 Use IPv6 instead for SIP and media."); +#endif + puts (" --set-qos Enable QoS tagging for SIP and media."); + puts (" --local-port=port Set TCP/UDP port. This implicitly enables both "); + puts (" TCP and UDP transports on the specified port, unless"); + puts (" if TCP or UDP is disabled."); + puts (" --ip-addr=IP Use the specifed address as SIP and RTP addresses."); + puts (" (Hint: the IP may be the public IP of the NAT/router)"); + puts (" --bound-addr=IP Bind transports to this IP interface"); + puts (" --no-tcp Disable TCP transport."); + puts (" --no-udp Disable UDP transport."); + puts (" --nameserver=NS Add the specified nameserver to enable SRV resolution"); + puts (" This option can be specified multiple times."); + puts (" --outbound=url Set the URL of global outbound proxy server"); + puts (" May be specified multiple times"); + puts (" --stun-srv=FORMAT Set STUN server host or domain. This option may be"); + puts (" specified more than once. FORMAT is hostdom[:PORT]"); + +#if defined(PJSIP_HAS_TLS_TRANSPORT) && (PJSIP_HAS_TLS_TRANSPORT != 0) + puts (""); + puts ("TLS Options:"); + puts (" --use-tls Enable TLS transport (default=no)"); + puts (" --tls-ca-file Specify TLS CA file (default=none)"); + puts (" --tls-cert-file Specify TLS certificate file (default=none)"); + puts (" --tls-privkey-file Specify TLS private key file (default=none)"); + puts (" --tls-password Specify TLS password to private key file (default=none)"); + puts (" --tls-verify-server Verify server's certificate (default=no)"); + puts (" --tls-verify-client Verify client's certificate (default=no)"); + puts (" --tls-neg-timeout Specify TLS negotiation timeout (default=no)"); + puts (" --tls-srv-name Specify TLS server name for multihosting server"); + puts (" --tls-cipher Specify prefered TLS cipher (optional)."); + puts (" May be specified multiple times"); +#endif + + puts (""); + puts ("Audio Options:"); + puts (" --add-codec=name Manually add codec (default is to enable all)"); + puts (" --dis-codec=name Disable codec (can be specified multiple times)"); + puts (" --clock-rate=N Override conference bridge clock rate"); + puts (" --snd-clock-rate=N Override sound device clock rate"); + puts (" --stereo Audio device and conference bridge opened in stereo mode"); + puts (" --null-audio Use NULL audio device"); + puts (" --play-file=file Register WAV file in conference bridge."); + puts (" This can be specified multiple times."); + puts (" --play-tone=FORMAT Register tone to the conference bridge."); + puts (" FORMAT is 'F1,F2,ON,OFF', where F1,F2 are"); + puts (" frequencies, and ON,OFF=on/off duration in msec."); + puts (" This can be specified multiple times."); + puts (" --auto-play Automatically play the file (to incoming calls only)"); + puts (" --auto-loop Automatically loop incoming RTP to outgoing RTP"); + puts (" --auto-conf Automatically put calls in conference with others"); + puts (" --rec-file=file Open file recorder (extension can be .wav or .mp3"); + puts (" --auto-rec Automatically record conversation"); + puts (" --quality=N Specify media quality (0-10, default=6)"); + puts (" --ptime=MSEC Override codec ptime to MSEC (default=specific)"); + puts (" --no-vad Disable VAD/silence detector (default=vad enabled)"); + puts (" --ec-tail=MSEC Set echo canceller tail length (default=256)"); + puts (" --ec-opt=OPT Select echo canceller algorithm (0=default, "); + puts (" 1=speex, 2=suppressor)"); + puts (" --ilbc-mode=MODE Set iLBC codec mode (20 or 30, default is 30)"); + puts (" --capture-dev=id Audio capture device ID (default=-1)"); + puts (" --playback-dev=id Audio playback device ID (default=-1)"); + puts (" --capture-lat=N Audio capture latency, in ms (default=100)"); + puts (" --playback-lat=N Audio playback latency, in ms (default=100)"); + puts (" --snd-auto-close=N Auto close audio device when idle for N secs (default=1)"); + puts (" Specify N=-1 to disable this feature."); + puts (" Specify N=0 for instant close when unused."); + puts (" --no-tones Disable audible tones"); + puts (" --jb-max-size Specify jitter buffer maximum size, in frames (default=-1)"); + puts (" --extra-audio Add one more audio stream"); + +#if PJSUA_HAS_VIDEO + puts (""); + puts ("Video Options:"); + puts (" --video Enable video"); + puts (" --vcapture-dev=id Video capture device ID (default=-1)"); + puts (" --vrender-dev=id Video render device ID (default=-2)"); + puts (" --play-avi=FILE Load this AVI as virtual capture device"); + puts (" --auto-play-avi Automatically play the AVI media to call"); +#endif + + puts (""); + puts ("Media Transport Options:"); + puts (" --use-ice Enable ICE (default:no)"); + puts (" --ice-regular Use ICE regular nomination (default: aggressive)"); + puts (" --ice-max-hosts=N Set maximum number of ICE host candidates"); + puts (" --ice-no-rtcp Disable RTCP component in ICE (default: no)"); + puts (" --rtp-port=N Base port to try for RTP (default=4000)"); + puts (" --rx-drop-pct=PCT Drop PCT percent of RX RTP (for pkt lost sim, default: 0)"); + puts (" --tx-drop-pct=PCT Drop PCT percent of TX RTP (for pkt lost sim, default: 0)"); + puts (" --use-turn Enable TURN relay with ICE (default:no)"); + puts (" --turn-srv Domain or host name of TURN server (\"NAME:PORT\" format)"); + puts (" --turn-tcp Use TCP connection to TURN server (default no)"); + puts (" --turn-user TURN username"); + puts (" --turn-passwd TURN password"); + + puts (""); + puts ("Buddy List (can be more than one):"); + puts (" --add-buddy url Add the specified URL to the buddy list."); + puts (""); + puts ("User Agent options:"); + puts (" --auto-answer=code Automatically answer incoming calls with code (e.g. 200)"); + puts (" --max-calls=N Maximum number of concurrent calls (default:4, max:255)"); + puts (" --thread-cnt=N Number of worker threads (default:1)"); + puts (" --duration=SEC Set maximum call duration (default:no limit)"); + puts (" --norefersub Suppress event subscription when transfering calls"); + puts (" --use-compact-form Minimize SIP message size"); + puts (" --no-force-lr Allow strict-route to be used (i.e. do not force lr)"); + puts (" --accept-redirect=N Specify how to handle call redirect (3xx) response."); + puts (" 0: reject, 1: follow automatically,"); + puts (" 2: follow + replace To header (default), 3: ask"); + + puts (""); + puts ("CLI options:"); + puts (" --use-cli Use CLI as user interface"); + puts (" --cli-telnet-port=N CLI telnet port"); + puts (" --no-cli-console Disable CLI console"); + puts (""); + + puts (""); + puts ("When URL is specified, pjsua will immediately initiate call to that URL"); + puts (""); + + fflush(stdout); +} + +/* + * Read command arguments from config file. + */ +static int read_config_file(pj_pool_t *pool, const char *filename, + int *app_argc, char ***app_argv) +{ + int i; + FILE *fhnd; + char line[200]; + int argc = 0; + char **argv; + enum { MAX_ARGS = 128 }; + + /* Allocate MAX_ARGS+1 (argv needs to be terminated with NULL argument) */ + argv = pj_pool_calloc(pool, MAX_ARGS+1, sizeof(char*)); + argv[argc++] = *app_argv[0]; + + /* Open config file. */ + fhnd = fopen(filename, "rt"); + if (!fhnd) { + PJ_LOG(1,(THIS_FILE, "Unable to open config file %s", filename)); + fflush(stdout); + return -1; + } + + /* Scan tokens in the file. */ + while (argc < MAX_ARGS && !feof(fhnd)) { + char *token; + char *p; + const char *whitespace = " \t\r\n"; + char cDelimiter; + int len, token_len; + + pj_bzero(line, sizeof(line)); + if (fgets(line, sizeof(line), fhnd) == NULL) break; + + // Trim ending newlines + len = strlen(line); + if (line[len-1]=='\n') + line[--len] = '\0'; + if (line[len-1]=='\r') + line[--len] = '\0'; + + if (len==0) continue; + + for (p = line; *p != '\0' && argc < MAX_ARGS; p++) { + // first, scan whitespaces + while (*p != '\0' && strchr(whitespace, *p) != NULL) p++; + + if (*p == '\0') // are we done yet? + break; + + if (*p == '"' || *p == '\'') { // is token a quoted string + cDelimiter = *p++; // save quote delimiter + token = p; + + while (*p != '\0' && *p != cDelimiter) p++; + + if (*p == '\0') // found end of the line, but, + cDelimiter = '\0'; // didn't find a matching quote + + } else { // token's not a quoted string + token = p; + + while (*p != '\0' && strchr(whitespace, *p) == NULL) p++; + + cDelimiter = *p; + } + + *p = '\0'; + token_len = p-token; + + if (token_len > 0) { + if (*token == '#') + break; // ignore remainder of line + + argv[argc] = pj_pool_alloc(pool, token_len + 1); + pj_memcpy(argv[argc], token, token_len + 1); + ++argc; + } + + *p = cDelimiter; + } + } + + /* Copy arguments from command line */ + for (i=1; i<*app_argc && argc < MAX_ARGS; ++i) + argv[argc++] = (*app_argv)[i]; + + if (argc == MAX_ARGS && (i!=*app_argc || !feof(fhnd))) { + PJ_LOG(1,(THIS_FILE, + "Too many arguments specified in cmd line/config file")); + fflush(stdout); + fclose(fhnd); + return -1; + } + + fclose(fhnd); + + /* Assign the new command line back to the original command line. */ + *app_argc = argc; + *app_argv = argv; + return 0; +} + +/* Parse arguments. */ +static pj_status_t parse_args(int argc, char *argv[], + pj_str_t *uri_to_call) +{ + int c; + int option_index; + pjsua_app_config *cfg = &app_config; + enum { OPT_CONFIG_FILE=127, OPT_LOG_FILE, OPT_LOG_LEVEL, OPT_APP_LOG_LEVEL, + OPT_LOG_APPEND, OPT_COLOR, OPT_NO_COLOR, OPT_LIGHT_BG, OPT_NO_STDERR, + OPT_HELP, OPT_VERSION, OPT_NULL_AUDIO, OPT_SND_AUTO_CLOSE, + OPT_LOCAL_PORT, OPT_IP_ADDR, OPT_PROXY, OPT_OUTBOUND_PROXY, + OPT_REGISTRAR, OPT_REG_TIMEOUT, OPT_PUBLISH, OPT_ID, OPT_CONTACT, + OPT_BOUND_ADDR, OPT_CONTACT_PARAMS, OPT_CONTACT_URI_PARAMS, + OPT_100REL, OPT_USE_IMS, OPT_REALM, OPT_USERNAME, OPT_PASSWORD, + OPT_REG_RETRY_INTERVAL, OPT_REG_USE_PROXY, + OPT_MWI, OPT_NAMESERVER, OPT_STUN_SRV, OPT_OUTB_RID, + OPT_ADD_BUDDY, OPT_OFFER_X_MS_MSG, OPT_NO_PRESENCE, + OPT_AUTO_ANSWER, OPT_AUTO_PLAY, OPT_AUTO_PLAY_HANGUP, OPT_AUTO_LOOP, + OPT_AUTO_CONF, OPT_CLOCK_RATE, OPT_SND_CLOCK_RATE, OPT_STEREO, + OPT_USE_ICE, OPT_ICE_REGULAR, OPT_USE_SRTP, OPT_SRTP_SECURE, + OPT_USE_TURN, OPT_ICE_MAX_HOSTS, OPT_ICE_NO_RTCP, OPT_TURN_SRV, + OPT_TURN_TCP, OPT_TURN_USER, OPT_TURN_PASSWD, + OPT_PLAY_FILE, OPT_PLAY_TONE, OPT_RTP_PORT, OPT_ADD_CODEC, + OPT_ILBC_MODE, OPT_REC_FILE, OPT_AUTO_REC, + OPT_COMPLEXITY, OPT_QUALITY, OPT_PTIME, OPT_NO_VAD, + OPT_RX_DROP_PCT, OPT_TX_DROP_PCT, OPT_EC_TAIL, OPT_EC_OPT, + OPT_NEXT_ACCOUNT, OPT_NEXT_CRED, OPT_MAX_CALLS, + OPT_DURATION, OPT_NO_TCP, OPT_NO_UDP, OPT_THREAD_CNT, + OPT_NOREFERSUB, OPT_ACCEPT_REDIRECT, + OPT_USE_TLS, OPT_TLS_CA_FILE, OPT_TLS_CERT_FILE, OPT_TLS_PRIV_FILE, + OPT_TLS_PASSWORD, OPT_TLS_VERIFY_SERVER, OPT_TLS_VERIFY_CLIENT, + OPT_TLS_NEG_TIMEOUT, OPT_TLS_CIPHER, + OPT_CAPTURE_DEV, OPT_PLAYBACK_DEV, + OPT_CAPTURE_LAT, OPT_PLAYBACK_LAT, OPT_NO_TONES, OPT_JB_MAX_SIZE, + OPT_STDOUT_REFRESH, OPT_STDOUT_REFRESH_TEXT, OPT_IPV6, OPT_QOS, +#ifdef _IONBF + OPT_STDOUT_NO_BUF, +#endif + OPT_AUTO_UPDATE_NAT,OPT_USE_COMPACT_FORM,OPT_DIS_CODEC, + OPT_DISABLE_STUN, OPT_NO_FORCE_LR, + OPT_TIMER, OPT_TIMER_SE, OPT_TIMER_MIN_SE, + OPT_VIDEO, OPT_EXTRA_AUDIO, + OPT_VCAPTURE_DEV, OPT_VRENDER_DEV, OPT_PLAY_AVI, OPT_AUTO_PLAY_AVI, + OPT_USE_CLI, OPT_CLI_TELNET_PORT, OPT_DISABLE_CLI_CONSOLE + }; + struct pj_getopt_option long_options[] = { + { "config-file",1, 0, OPT_CONFIG_FILE}, + { "log-file", 1, 0, OPT_LOG_FILE}, + { "log-level", 1, 0, OPT_LOG_LEVEL}, + { "app-log-level",1,0,OPT_APP_LOG_LEVEL}, + { "log-append", 0, 0, OPT_LOG_APPEND}, + { "color", 0, 0, OPT_COLOR}, + { "no-color", 0, 0, OPT_NO_COLOR}, + { "light-bg", 0, 0, OPT_LIGHT_BG}, + { "no-stderr", 0, 0, OPT_NO_STDERR}, + { "help", 0, 0, OPT_HELP}, + { "version", 0, 0, OPT_VERSION}, + { "clock-rate", 1, 0, OPT_CLOCK_RATE}, + { "snd-clock-rate", 1, 0, OPT_SND_CLOCK_RATE}, + { "stereo", 0, 0, OPT_STEREO}, + { "null-audio", 0, 0, OPT_NULL_AUDIO}, + { "local-port", 1, 0, OPT_LOCAL_PORT}, + { "ip-addr", 1, 0, OPT_IP_ADDR}, + { "bound-addr", 1, 0, OPT_BOUND_ADDR}, + { "no-tcp", 0, 0, OPT_NO_TCP}, + { "no-udp", 0, 0, OPT_NO_UDP}, + { "norefersub", 0, 0, OPT_NOREFERSUB}, + { "proxy", 1, 0, OPT_PROXY}, + { "outbound", 1, 0, OPT_OUTBOUND_PROXY}, + { "registrar", 1, 0, OPT_REGISTRAR}, + { "reg-timeout",1, 0, OPT_REG_TIMEOUT}, + { "publish", 0, 0, OPT_PUBLISH}, + { "mwi", 0, 0, OPT_MWI}, + { "use-100rel", 0, 0, OPT_100REL}, + { "use-ims", 0, 0, OPT_USE_IMS}, + { "id", 1, 0, OPT_ID}, + { "contact", 1, 0, OPT_CONTACT}, + { "contact-params",1,0, OPT_CONTACT_PARAMS}, + { "contact-uri-params",1,0, OPT_CONTACT_URI_PARAMS}, + { "auto-update-nat", 1, 0, OPT_AUTO_UPDATE_NAT}, + { "disable-stun",0,0, OPT_DISABLE_STUN}, + { "use-compact-form", 0, 0, OPT_USE_COMPACT_FORM}, + { "accept-redirect", 1, 0, OPT_ACCEPT_REDIRECT}, + { "no-force-lr",0, 0, OPT_NO_FORCE_LR}, + { "realm", 1, 0, OPT_REALM}, + { "username", 1, 0, OPT_USERNAME}, + { "password", 1, 0, OPT_PASSWORD}, + { "rereg-delay",1, 0, OPT_REG_RETRY_INTERVAL}, + { "reg-use-proxy", 1, 0, OPT_REG_USE_PROXY}, + { "nameserver", 1, 0, OPT_NAMESERVER}, + { "stun-srv", 1, 0, OPT_STUN_SRV}, + { "add-buddy", 1, 0, OPT_ADD_BUDDY}, + { "offer-x-ms-msg",0,0,OPT_OFFER_X_MS_MSG}, + { "no-presence", 0, 0, OPT_NO_PRESENCE}, + { "auto-answer",1, 0, OPT_AUTO_ANSWER}, + { "auto-play", 0, 0, OPT_AUTO_PLAY}, + { "auto-play-hangup",0, 0, OPT_AUTO_PLAY_HANGUP}, + { "auto-rec", 0, 0, OPT_AUTO_REC}, + { "auto-loop", 0, 0, OPT_AUTO_LOOP}, + { "auto-conf", 0, 0, OPT_AUTO_CONF}, + { "play-file", 1, 0, OPT_PLAY_FILE}, + { "play-tone", 1, 0, OPT_PLAY_TONE}, + { "rec-file", 1, 0, OPT_REC_FILE}, + { "rtp-port", 1, 0, OPT_RTP_PORT}, + + { "use-ice", 0, 0, OPT_USE_ICE}, + { "ice-regular",0, 0, OPT_ICE_REGULAR}, + { "use-turn", 0, 0, OPT_USE_TURN}, + { "ice-max-hosts",1, 0, OPT_ICE_MAX_HOSTS}, + { "ice-no-rtcp",0, 0, OPT_ICE_NO_RTCP}, + { "turn-srv", 1, 0, OPT_TURN_SRV}, + { "turn-tcp", 0, 0, OPT_TURN_TCP}, + { "turn-user", 1, 0, OPT_TURN_USER}, + { "turn-passwd",1, 0, OPT_TURN_PASSWD}, + +#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0) + { "use-srtp", 1, 0, OPT_USE_SRTP}, + { "srtp-secure",1, 0, OPT_SRTP_SECURE}, +#endif + { "add-codec", 1, 0, OPT_ADD_CODEC}, + { "dis-codec", 1, 0, OPT_DIS_CODEC}, + { "complexity", 1, 0, OPT_COMPLEXITY}, + { "quality", 1, 0, OPT_QUALITY}, + { "ptime", 1, 0, OPT_PTIME}, + { "no-vad", 0, 0, OPT_NO_VAD}, + { "ec-tail", 1, 0, OPT_EC_TAIL}, + { "ec-opt", 1, 0, OPT_EC_OPT}, + { "ilbc-mode", 1, 0, OPT_ILBC_MODE}, + { "rx-drop-pct",1, 0, OPT_RX_DROP_PCT}, + { "tx-drop-pct",1, 0, OPT_TX_DROP_PCT}, + { "next-account",0,0, OPT_NEXT_ACCOUNT}, + { "next-cred", 0, 0, OPT_NEXT_CRED}, + { "max-calls", 1, 0, OPT_MAX_CALLS}, + { "duration", 1, 0, OPT_DURATION}, + { "thread-cnt", 1, 0, OPT_THREAD_CNT}, +#if defined(PJSIP_HAS_TLS_TRANSPORT) && (PJSIP_HAS_TLS_TRANSPORT != 0) + { "use-tls", 0, 0, OPT_USE_TLS}, + { "tls-ca-file",1, 0, OPT_TLS_CA_FILE}, + { "tls-cert-file",1,0, OPT_TLS_CERT_FILE}, + { "tls-privkey-file",1,0, OPT_TLS_PRIV_FILE}, + { "tls-password",1,0, OPT_TLS_PASSWORD}, + { "tls-verify-server", 0, 0, OPT_TLS_VERIFY_SERVER}, + { "tls-verify-client", 0, 0, OPT_TLS_VERIFY_CLIENT}, + { "tls-neg-timeout", 1, 0, OPT_TLS_NEG_TIMEOUT}, + { "tls-cipher", 1, 0, OPT_TLS_CIPHER}, +#endif + { "capture-dev", 1, 0, OPT_CAPTURE_DEV}, + { "playback-dev", 1, 0, OPT_PLAYBACK_DEV}, + { "capture-lat", 1, 0, OPT_CAPTURE_LAT}, + { "playback-lat", 1, 0, OPT_PLAYBACK_LAT}, + { "stdout-refresh", 1, 0, OPT_STDOUT_REFRESH}, + { "stdout-refresh-text", 1, 0, OPT_STDOUT_REFRESH_TEXT}, +#ifdef _IONBF + { "stdout-no-buf", 0, 0, OPT_STDOUT_NO_BUF }, +#endif + { "snd-auto-close", 1, 0, OPT_SND_AUTO_CLOSE}, + { "no-tones", 0, 0, OPT_NO_TONES}, + { "jb-max-size", 1, 0, OPT_JB_MAX_SIZE}, +#if defined(PJ_HAS_IPV6) && PJ_HAS_IPV6 + { "ipv6", 0, 0, OPT_IPV6}, +#endif + { "set-qos", 0, 0, OPT_QOS}, + { "use-timer", 1, 0, OPT_TIMER}, + { "timer-se", 1, 0, OPT_TIMER_SE}, + { "timer-min-se", 1, 0, OPT_TIMER_MIN_SE}, + { "outb-rid", 1, 0, OPT_OUTB_RID}, + { "video", 0, 0, OPT_VIDEO}, + { "extra-audio",0, 0, OPT_EXTRA_AUDIO}, + { "vcapture-dev", 1, 0, OPT_VCAPTURE_DEV}, + { "vrender-dev", 1, 0, OPT_VRENDER_DEV}, + { "play-avi", 1, 0, OPT_PLAY_AVI}, + { "auto-play-avi", 0, 0, OPT_AUTO_PLAY_AVI}, + { "use-cli", 0, 0, OPT_USE_CLI}, + { "cli-telnet-port", 1, 0, OPT_CLI_TELNET_PORT}, + { "no-cli-console", 0, 0, OPT_DISABLE_CLI_CONSOLE}, + { NULL, 0, 0, 0} + }; + pj_status_t status; + pjsua_acc_config *cur_acc; + char *config_file = NULL; + unsigned i; + + /* Run pj_getopt once to see if user specifies config file to read. */ + pj_optind = 0; + while ((c=pj_getopt_long(argc, argv, "", long_options, + &option_index)) != -1) + { + switch (c) { + case OPT_CONFIG_FILE: + config_file = pj_optarg; + break; + } + if (config_file) + break; + } + + if (config_file) { + status = read_config_file(cfg->pool, config_file, &argc, &argv); + if (status != 0) + return status; + } + + cfg->acc_cnt = 0; + cur_acc = &cfg->acc_cfg[0]; + + + /* Reinitialize and re-run pj_getopt again, possibly with new arguments + * read from config file. + */ + pj_optind = 0; + while((c=pj_getopt_long(argc,argv, "", long_options,&option_index))!=-1) { + pj_str_t tmp; + long lval; + + switch (c) { + + case OPT_CONFIG_FILE: + /* Ignore as this has been processed before */ + break; + + case OPT_LOG_FILE: + cfg->log_cfg.log_filename = pj_str(pj_optarg); + break; + + case OPT_LOG_LEVEL: + c = pj_strtoul(pj_cstr(&tmp, pj_optarg)); + if (c < 0 || c > 6) { + PJ_LOG(1,(THIS_FILE, + "Error: expecting integer value 0-6 " + "for --log-level")); + return PJ_EINVAL; + } + cfg->log_cfg.level = c; + pj_log_set_level( c ); + break; + + case OPT_APP_LOG_LEVEL: + cfg->log_cfg.console_level = pj_strtoul(pj_cstr(&tmp, pj_optarg)); + if (cfg->log_cfg.console_level < 0 || cfg->log_cfg.console_level > 6) { + PJ_LOG(1,(THIS_FILE, + "Error: expecting integer value 0-6 " + "for --app-log-level")); + return PJ_EINVAL; + } + break; + + case OPT_LOG_APPEND: + cfg->log_cfg.log_file_flags |= PJ_O_APPEND; + break; + + case OPT_COLOR: + cfg->log_cfg.decor |= PJ_LOG_HAS_COLOR; + break; + + case OPT_NO_COLOR: + cfg->log_cfg.decor &= ~PJ_LOG_HAS_COLOR; + break; + + case OPT_LIGHT_BG: + pj_log_set_color(1, PJ_TERM_COLOR_R); + pj_log_set_color(2, PJ_TERM_COLOR_R | PJ_TERM_COLOR_G); + pj_log_set_color(3, PJ_TERM_COLOR_B | PJ_TERM_COLOR_G); + pj_log_set_color(4, 0); + pj_log_set_color(5, 0); + pj_log_set_color(77, 0); + break; + + case OPT_NO_STDERR: +#if !defined(PJ_WIN32_WINCE) || PJ_WIN32_WINCE==0 + freopen("/dev/null", "w", stderr); +#endif + break; + + case OPT_HELP: + usage(); + return PJ_EINVAL; + + case OPT_VERSION: /* version */ + pj_dump_config(); + return PJ_EINVAL; + + case OPT_NULL_AUDIO: + cfg->null_audio = PJ_TRUE; + break; + + case OPT_CLOCK_RATE: + lval = pj_strtoul(pj_cstr(&tmp, pj_optarg)); + if (lval < 8000 || lval > 192000) { + PJ_LOG(1,(THIS_FILE, "Error: expecting value between " + "8000-192000 for conference clock rate")); + return PJ_EINVAL; + } + cfg->media_cfg.clock_rate = lval; + break; + + case OPT_SND_CLOCK_RATE: + lval = pj_strtoul(pj_cstr(&tmp, pj_optarg)); + if (lval < 8000 || lval > 192000) { + PJ_LOG(1,(THIS_FILE, "Error: expecting value between " + "8000-192000 for sound device clock rate")); + return PJ_EINVAL; + } + cfg->media_cfg.snd_clock_rate = lval; + break; + + case OPT_STEREO: + cfg->media_cfg.channel_count = 2; + break; + + case OPT_LOCAL_PORT: /* local-port */ + lval = pj_strtoul(pj_cstr(&tmp, pj_optarg)); + if (lval < 0 || lval > 65535) { + PJ_LOG(1,(THIS_FILE, + "Error: expecting integer value for " + "--local-port")); + return PJ_EINVAL; + } + cfg->udp_cfg.port = (pj_uint16_t)lval; + break; + + case OPT_IP_ADDR: /* ip-addr */ + cfg->udp_cfg.public_addr = pj_str(pj_optarg); + cfg->rtp_cfg.public_addr = pj_str(pj_optarg); + break; + + case OPT_BOUND_ADDR: /* bound-addr */ + cfg->udp_cfg.bound_addr = pj_str(pj_optarg); + cfg->rtp_cfg.bound_addr = pj_str(pj_optarg); + break; + + case OPT_NO_UDP: /* no-udp */ + if (cfg->no_tcp && !cfg->use_tls) { + PJ_LOG(1,(THIS_FILE,"Error: cannot disable both TCP and UDP")); + return PJ_EINVAL; + } + + cfg->no_udp = PJ_TRUE; + break; + + case OPT_NOREFERSUB: /* norefersub */ + cfg->no_refersub = PJ_TRUE; + break; + + case OPT_NO_TCP: /* no-tcp */ + if (cfg->no_udp && !cfg->use_tls) { + PJ_LOG(1,(THIS_FILE,"Error: cannot disable both TCP and UDP")); + return PJ_EINVAL; + } + + cfg->no_tcp = PJ_TRUE; + break; + + case OPT_PROXY: /* proxy */ + if (pjsua_verify_sip_url(pj_optarg) != 0) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid SIP URL '%s' " + "in proxy argument", pj_optarg)); + return PJ_EINVAL; + } + cur_acc->proxy[cur_acc->proxy_cnt++] = pj_str(pj_optarg); + break; + + case OPT_OUTBOUND_PROXY: /* outbound proxy */ + if (pjsua_verify_sip_url(pj_optarg) != 0) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid SIP URL '%s' " + "in outbound proxy argument", pj_optarg)); + return PJ_EINVAL; + } + cfg->cfg.outbound_proxy[cfg->cfg.outbound_proxy_cnt++] = pj_str(pj_optarg); + break; + + case OPT_REGISTRAR: /* registrar */ + if (pjsua_verify_sip_url(pj_optarg) != 0) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid SIP URL '%s' in " + "registrar argument", pj_optarg)); + return PJ_EINVAL; + } + cur_acc->reg_uri = pj_str(pj_optarg); + break; + + case OPT_REG_TIMEOUT: /* reg-timeout */ + cur_acc->reg_timeout = pj_strtoul(pj_cstr(&tmp,pj_optarg)); + if (cur_acc->reg_timeout < 1 || cur_acc->reg_timeout > 3600) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid value for --reg-timeout " + "(expecting 1-3600)")); + return PJ_EINVAL; + } + break; + + case OPT_PUBLISH: /* publish */ + cur_acc->publish_enabled = PJ_TRUE; + break; + + case OPT_MWI: /* mwi */ + cur_acc->mwi_enabled = PJ_TRUE; + break; + + case OPT_100REL: /** 100rel */ + cur_acc->require_100rel = PJSUA_100REL_MANDATORY; + cfg->cfg.require_100rel = PJSUA_100REL_MANDATORY; + break; + + case OPT_TIMER: /** session timer */ + lval = pj_strtoul(pj_cstr(&tmp, pj_optarg)); + if (lval < 0 || lval > 3) { + PJ_LOG(1,(THIS_FILE, + "Error: expecting integer value 0-3 for --use-timer")); + return PJ_EINVAL; + } + cur_acc->use_timer = lval; + cfg->cfg.use_timer = lval; + break; + + case OPT_TIMER_SE: /** session timer session expiration */ + cur_acc->timer_setting.sess_expires = pj_strtoul(pj_cstr(&tmp, pj_optarg)); + if (cur_acc->timer_setting.sess_expires < 90) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid value for --timer-se " + "(expecting higher than 90)")); + return PJ_EINVAL; + } + cfg->cfg.timer_setting.sess_expires = cur_acc->timer_setting.sess_expires; + break; + + case OPT_TIMER_MIN_SE: /** session timer minimum session expiration */ + cur_acc->timer_setting.min_se = pj_strtoul(pj_cstr(&tmp, pj_optarg)); + if (cur_acc->timer_setting.min_se < 90) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid value for --timer-min-se " + "(expecting higher than 90)")); + return PJ_EINVAL; + } + cfg->cfg.timer_setting.min_se = cur_acc->timer_setting.min_se; + break; + + case OPT_OUTB_RID: /* Outbound reg-id */ + cur_acc->rfc5626_reg_id = pj_str(pj_optarg); + break; + + case OPT_USE_IMS: /* Activate IMS settings */ + cur_acc->auth_pref.initial_auth = PJ_TRUE; + break; + + case OPT_ID: /* id */ + if (pjsua_verify_url(pj_optarg) != 0) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid SIP URL '%s' " + "in local id argument", pj_optarg)); + return PJ_EINVAL; + } + cur_acc->id = pj_str(pj_optarg); + break; + + case OPT_CONTACT: /* contact */ + if (pjsua_verify_sip_url(pj_optarg) != 0) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid SIP URL '%s' " + "in contact argument", pj_optarg)); + return PJ_EINVAL; + } + cur_acc->force_contact = pj_str(pj_optarg); + break; + + case OPT_CONTACT_PARAMS: + cur_acc->contact_params = pj_str(pj_optarg); + break; + + case OPT_CONTACT_URI_PARAMS: + cur_acc->contact_uri_params = pj_str(pj_optarg); + break; + + case OPT_AUTO_UPDATE_NAT: /* OPT_AUTO_UPDATE_NAT */ + cur_acc->allow_contact_rewrite = pj_strtoul(pj_cstr(&tmp, pj_optarg)); + break; + + case OPT_DISABLE_STUN: + cur_acc->sip_stun_use = PJSUA_STUN_USE_DISABLED; + cur_acc->media_stun_use = PJSUA_STUN_USE_DISABLED; + break; + + case OPT_USE_COMPACT_FORM: + /* enable compact form - from Ticket #342 */ + { + extern pj_bool_t pjsip_use_compact_form; + extern pj_bool_t pjsip_include_allow_hdr_in_dlg; + extern pj_bool_t pjmedia_add_rtpmap_for_static_pt; + + pjsip_use_compact_form = PJ_TRUE; + /* do not transmit Allow header */ + pjsip_include_allow_hdr_in_dlg = PJ_FALSE; + /* Do not include rtpmap for static payload types (<96) */ + pjmedia_add_rtpmap_for_static_pt = PJ_FALSE; + } + break; + + case OPT_ACCEPT_REDIRECT: + cfg->redir_op = my_atoi(pj_optarg); + if (cfg->redir_op<0 || cfg->redir_op>PJSIP_REDIRECT_STOP) { + PJ_LOG(1,(THIS_FILE, + "Error: accept-redirect value '%s' ", pj_optarg)); + return PJ_EINVAL; + } + break; + + case OPT_NO_FORCE_LR: + cfg->cfg.force_lr = PJ_FALSE; + break; + + case OPT_NEXT_ACCOUNT: /* Add more account. */ + cfg->acc_cnt++; + cur_acc = &cfg->acc_cfg[cfg->acc_cnt]; + break; + + case OPT_USERNAME: /* Default authentication user */ + cur_acc->cred_info[cur_acc->cred_count].username = pj_str(pj_optarg); + cur_acc->cred_info[cur_acc->cred_count].scheme = pj_str("Digest"); + break; + + case OPT_REALM: /* Default authentication realm. */ + cur_acc->cred_info[cur_acc->cred_count].realm = pj_str(pj_optarg); + break; + + case OPT_PASSWORD: /* authentication password */ + cur_acc->cred_info[cur_acc->cred_count].data_type = PJSIP_CRED_DATA_PLAIN_PASSWD; + cur_acc->cred_info[cur_acc->cred_count].data = pj_str(pj_optarg); +#if PJSIP_HAS_DIGEST_AKA_AUTH + cur_acc->cred_info[cur_acc->cred_count].data_type |= PJSIP_CRED_DATA_EXT_AKA; + cur_acc->cred_info[cur_acc->cred_count].ext.aka.k = pj_str(pj_optarg); + cur_acc->cred_info[cur_acc->cred_count].ext.aka.cb = &pjsip_auth_create_aka_response; +#endif + break; + + case OPT_REG_RETRY_INTERVAL: + cur_acc->reg_retry_interval = pj_strtoul(pj_cstr(&tmp, pj_optarg)); + break; + + case OPT_REG_USE_PROXY: + cur_acc->reg_use_proxy = (unsigned)pj_strtoul(pj_cstr(&tmp, pj_optarg)); + if (cur_acc->reg_use_proxy > 3) { + PJ_LOG(1,(THIS_FILE, "Error: invalid --reg-use-proxy value '%s'", + pj_optarg)); + return PJ_EINVAL; + } + break; + + case OPT_NEXT_CRED: /* next credential */ + cur_acc->cred_count++; + break; + + case OPT_NAMESERVER: /* nameserver */ + cfg->cfg.nameserver[cfg->cfg.nameserver_count++] = pj_str(pj_optarg); + if (cfg->cfg.nameserver_count > PJ_ARRAY_SIZE(cfg->cfg.nameserver)) { + PJ_LOG(1,(THIS_FILE, "Error: too many nameservers")); + return PJ_ETOOMANY; + } + break; + + case OPT_STUN_SRV: /* STUN server */ + cfg->cfg.stun_host = pj_str(pj_optarg); + if (cfg->cfg.stun_srv_cnt==PJ_ARRAY_SIZE(cfg->cfg.stun_srv)) { + PJ_LOG(1,(THIS_FILE, "Error: too many STUN servers")); + return PJ_ETOOMANY; + } + cfg->cfg.stun_srv[cfg->cfg.stun_srv_cnt++] = pj_str(pj_optarg); + break; + + case OPT_ADD_BUDDY: /* Add to buddy list. */ + if (pjsua_verify_url(pj_optarg) != 0) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid URL '%s' in " + "--add-buddy option", pj_optarg)); + return -1; + } + if (cfg->buddy_cnt == PJ_ARRAY_SIZE(cfg->buddy_cfg)) { + PJ_LOG(1,(THIS_FILE, + "Error: too many buddies in buddy list.")); + return -1; + } + cfg->buddy_cfg[cfg->buddy_cnt].uri = pj_str(pj_optarg); + cfg->buddy_cnt++; + break; + + case OPT_AUTO_PLAY: + cfg->auto_play = 1; + break; + + case OPT_AUTO_PLAY_HANGUP: + cfg->auto_play_hangup = 1; + break; + + case OPT_AUTO_REC: + cfg->auto_rec = 1; + break; + + case OPT_AUTO_LOOP: + cfg->auto_loop = 1; + break; + + case OPT_AUTO_CONF: + cfg->auto_conf = 1; + break; + + case OPT_PLAY_FILE: + cfg->wav_files[cfg->wav_count++] = pj_str(pj_optarg); + break; + + case OPT_PLAY_TONE: + { + int f1, f2, on, off; + int n; + + n = sscanf(pj_optarg, "%d,%d,%d,%d", &f1, &f2, &on, &off); + if (n != 4) { + puts("Expecting f1,f2,on,off in --play-tone"); + return -1; + } + + cfg->tones[cfg->tone_count].freq1 = (short)f1; + cfg->tones[cfg->tone_count].freq2 = (short)f2; + cfg->tones[cfg->tone_count].on_msec = (short)on; + cfg->tones[cfg->tone_count].off_msec = (short)off; + ++cfg->tone_count; + } + break; + + case OPT_REC_FILE: + cfg->rec_file = pj_str(pj_optarg); + break; + + case OPT_USE_ICE: + cfg->media_cfg.enable_ice = + cur_acc->ice_cfg.enable_ice = PJ_TRUE; + break; + + case OPT_ICE_REGULAR: + cfg->media_cfg.ice_opt.aggressive = + cur_acc->ice_cfg.ice_opt.aggressive = PJ_FALSE; + break; + + case OPT_USE_TURN: + cfg->media_cfg.enable_turn = + cur_acc->turn_cfg.enable_turn = PJ_TRUE; + break; + + case OPT_ICE_MAX_HOSTS: + cfg->media_cfg.ice_max_host_cands = + cur_acc->ice_cfg.ice_max_host_cands = my_atoi(pj_optarg); + break; + + case OPT_ICE_NO_RTCP: + cfg->media_cfg.ice_no_rtcp = + cur_acc->ice_cfg.ice_no_rtcp = PJ_TRUE; + break; + + case OPT_TURN_SRV: + cfg->media_cfg.turn_server = + cur_acc->turn_cfg.turn_server = pj_str(pj_optarg); + break; + + case OPT_TURN_TCP: + cfg->media_cfg.turn_conn_type = + cur_acc->turn_cfg.turn_conn_type = PJ_TURN_TP_TCP; + break; + + case OPT_TURN_USER: + cfg->media_cfg.turn_auth_cred.type = + cur_acc->turn_cfg.turn_auth_cred.type = PJ_STUN_AUTH_CRED_STATIC; + cfg->media_cfg.turn_auth_cred.data.static_cred.realm = + cur_acc->turn_cfg.turn_auth_cred.data.static_cred.realm = pj_str("*"); + cfg->media_cfg.turn_auth_cred.data.static_cred.username = + cur_acc->turn_cfg.turn_auth_cred.data.static_cred.username = pj_str(pj_optarg); + break; + + case OPT_TURN_PASSWD: + cfg->media_cfg.turn_auth_cred.data.static_cred.data_type = + cur_acc->turn_cfg.turn_auth_cred.data.static_cred.data_type = PJ_STUN_PASSWD_PLAIN; + cfg->media_cfg.turn_auth_cred.data.static_cred.data = + cur_acc->turn_cfg.turn_auth_cred.data.static_cred.data = pj_str(pj_optarg); + break; + +#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0) + case OPT_USE_SRTP: + app_config.cfg.use_srtp = my_atoi(pj_optarg); + if (!pj_isdigit(*pj_optarg) || app_config.cfg.use_srtp > 3) { + PJ_LOG(1,(THIS_FILE, "Invalid value for --use-srtp option")); + return -1; + } + if ((int)app_config.cfg.use_srtp == 3) { + /* SRTP optional mode with duplicated media offer */ + app_config.cfg.use_srtp = PJMEDIA_SRTP_OPTIONAL; + app_config.cfg.srtp_optional_dup_offer = PJ_TRUE; + cur_acc->srtp_optional_dup_offer = PJ_TRUE; + } + cur_acc->use_srtp = app_config.cfg.use_srtp; + break; + case OPT_SRTP_SECURE: + app_config.cfg.srtp_secure_signaling = my_atoi(pj_optarg); + if (!pj_isdigit(*pj_optarg) || + app_config.cfg.srtp_secure_signaling > 2) + { + PJ_LOG(1,(THIS_FILE, "Invalid value for --srtp-secure option")); + return -1; + } + cur_acc->srtp_secure_signaling = app_config.cfg.srtp_secure_signaling; + break; +#endif + + case OPT_RTP_PORT: + cfg->rtp_cfg.port = my_atoi(pj_optarg); + if (cfg->rtp_cfg.port == 0) { + enum { START_PORT=4000 }; + unsigned range; + + range = (65535-START_PORT-PJSUA_MAX_CALLS*2); + cfg->rtp_cfg.port = START_PORT + + ((pj_rand() % range) & 0xFFFE); + } + + if (cfg->rtp_cfg.port < 1 || cfg->rtp_cfg.port > 65535) { + PJ_LOG(1,(THIS_FILE, + "Error: rtp-port argument value " + "(expecting 1-65535")); + return -1; + } + break; + + case OPT_DIS_CODEC: + cfg->codec_dis[cfg->codec_dis_cnt++] = pj_str(pj_optarg); + break; + + case OPT_ADD_CODEC: + cfg->codec_arg[cfg->codec_cnt++] = pj_str(pj_optarg); + break; + + /* These options were no longer valid after new pjsua */ + /* + case OPT_COMPLEXITY: + cfg->complexity = my_atoi(pj_optarg); + if (cfg->complexity < 0 || cfg->complexity > 10) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid --complexity (expecting 0-10")); + return -1; + } + break; + */ + + case OPT_DURATION: + cfg->duration = my_atoi(pj_optarg); + break; + + case OPT_THREAD_CNT: + cfg->cfg.thread_cnt = my_atoi(pj_optarg); + if (cfg->cfg.thread_cnt > 128) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid --thread-cnt option")); + return -1; + } + break; + + case OPT_PTIME: + cfg->media_cfg.ptime = my_atoi(pj_optarg); + if (cfg->media_cfg.ptime < 10 || cfg->media_cfg.ptime > 1000) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid --ptime option")); + return -1; + } + break; + + case OPT_NO_VAD: + cfg->media_cfg.no_vad = PJ_TRUE; + break; + + case OPT_EC_TAIL: + cfg->media_cfg.ec_tail_len = my_atoi(pj_optarg); + if (cfg->media_cfg.ec_tail_len > 1000) { + PJ_LOG(1,(THIS_FILE, "I think the ec-tail length setting " + "is too big")); + return -1; + } + break; + + case OPT_EC_OPT: + cfg->media_cfg.ec_options = my_atoi(pj_optarg); + break; + + case OPT_QUALITY: + cfg->media_cfg.quality = my_atoi(pj_optarg); + if (cfg->media_cfg.quality < 0 || cfg->media_cfg.quality > 10) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid --quality (expecting 0-10")); + return -1; + } + break; + + case OPT_ILBC_MODE: + cfg->media_cfg.ilbc_mode = my_atoi(pj_optarg); + if (cfg->media_cfg.ilbc_mode!=20 && cfg->media_cfg.ilbc_mode!=30) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid --ilbc-mode (expecting 20 or 30")); + return -1; + } + break; + + case OPT_RX_DROP_PCT: + cfg->media_cfg.rx_drop_pct = my_atoi(pj_optarg); + if (cfg->media_cfg.rx_drop_pct > 100) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid --rx-drop-pct (expecting <= 100")); + return -1; + } + break; + + case OPT_TX_DROP_PCT: + cfg->media_cfg.tx_drop_pct = my_atoi(pj_optarg); + if (cfg->media_cfg.tx_drop_pct > 100) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid --tx-drop-pct (expecting <= 100")); + return -1; + } + break; + + case OPT_AUTO_ANSWER: + cfg->auto_answer = my_atoi(pj_optarg); + if (cfg->auto_answer < 100 || cfg->auto_answer > 699) { + PJ_LOG(1,(THIS_FILE, + "Error: invalid code in --auto-answer " + "(expecting 100-699")); + return -1; + } + break; + + case OPT_MAX_CALLS: + cfg->cfg.max_calls = my_atoi(pj_optarg); + if (cfg->cfg.max_calls < 1 || cfg->cfg.max_calls > PJSUA_MAX_CALLS) { + PJ_LOG(1,(THIS_FILE,"Error: maximum call setting exceeds " + "compile time limit (PJSUA_MAX_CALLS=%d)", + PJSUA_MAX_CALLS)); + return -1; + } + break; + +#if defined(PJSIP_HAS_TLS_TRANSPORT) && (PJSIP_HAS_TLS_TRANSPORT != 0) + case OPT_USE_TLS: + cfg->use_tls = PJ_TRUE; + break; + + case OPT_TLS_CA_FILE: + cfg->udp_cfg.tls_setting.ca_list_file = pj_str(pj_optarg); + break; + + case OPT_TLS_CERT_FILE: + cfg->udp_cfg.tls_setting.cert_file = pj_str(pj_optarg); + break; + + case OPT_TLS_PRIV_FILE: + cfg->udp_cfg.tls_setting.privkey_file = pj_str(pj_optarg); + break; + + case OPT_TLS_PASSWORD: + cfg->udp_cfg.tls_setting.password = pj_str(pj_optarg); + break; + + case OPT_TLS_VERIFY_SERVER: + cfg->udp_cfg.tls_setting.verify_server = PJ_TRUE; + break; + + case OPT_TLS_VERIFY_CLIENT: + cfg->udp_cfg.tls_setting.verify_client = PJ_TRUE; + cfg->udp_cfg.tls_setting.require_client_cert = PJ_TRUE; + break; + + case OPT_TLS_NEG_TIMEOUT: + cfg->udp_cfg.tls_setting.timeout.sec = atoi(pj_optarg); + break; + + case OPT_TLS_CIPHER: + { + pj_ssl_cipher cipher; + + if (pj_ansi_strnicmp(pj_optarg, "0x", 2) == 0) { + pj_str_t cipher_st = pj_str(pj_optarg + 2); + cipher = pj_strtoul2(&cipher_st, NULL, 16); + } else { + cipher = atoi(pj_optarg); + } + + if (pj_ssl_cipher_is_supported(cipher)) { + static pj_ssl_cipher tls_ciphers[128]; + + tls_ciphers[cfg->udp_cfg.tls_setting.ciphers_num++] = cipher; + cfg->udp_cfg.tls_setting.ciphers = tls_ciphers; + } else { + pj_ssl_cipher ciphers[128]; + unsigned j, ciphers_cnt; + + ciphers_cnt = PJ_ARRAY_SIZE(ciphers); + pj_ssl_cipher_get_availables(ciphers, &ciphers_cnt); + + PJ_LOG(1,(THIS_FILE, "Cipher \"%s\" is not supported by " + "TLS/SSL backend.", pj_optarg)); + printf("Available TLS/SSL ciphers (%d):\n", ciphers_cnt); + for (j=0; jcapture_dev = atoi(pj_optarg); + break; + + case OPT_PLAYBACK_DEV: + cfg->playback_dev = atoi(pj_optarg); + break; + + case OPT_STDOUT_REFRESH: + stdout_refresh = atoi(pj_optarg); + break; + + case OPT_STDOUT_REFRESH_TEXT: + stdout_refresh_text = pj_optarg; + break; + +#ifdef _IONBF + case OPT_STDOUT_NO_BUF: + setvbuf(stdout, NULL, _IONBF, 0); + break; +#endif + + case OPT_CAPTURE_LAT: + cfg->capture_lat = atoi(pj_optarg); + break; + + case OPT_PLAYBACK_LAT: + cfg->playback_lat = atoi(pj_optarg); + break; + + case OPT_SND_AUTO_CLOSE: + cfg->media_cfg.snd_auto_close_time = atoi(pj_optarg); + break; + + case OPT_NO_TONES: + cfg->no_tones = PJ_TRUE; + break; + + case OPT_JB_MAX_SIZE: + cfg->media_cfg.jb_max = atoi(pj_optarg); + break; + +#if defined(PJ_HAS_IPV6) && PJ_HAS_IPV6 + case OPT_IPV6: + cfg->ipv6 = PJ_TRUE; + break; +#endif + case OPT_QOS: + cfg->enable_qos = PJ_TRUE; + /* Set RTP traffic type to Voice */ + cfg->rtp_cfg.qos_type = PJ_QOS_TYPE_VOICE; + /* Directly apply DSCP value to SIP traffic. Say lets + * set it to CS3 (DSCP 011000). Note that this will not + * work on all platforms. + */ + cfg->udp_cfg.qos_params.flags = PJ_QOS_PARAM_HAS_DSCP; + cfg->udp_cfg.qos_params.dscp_val = 0x18; + break; + case OPT_VIDEO: + cfg->vid.vid_cnt = 1; + cfg->vid.in_auto_show = PJ_TRUE; + cfg->vid.out_auto_transmit = PJ_TRUE; + break; + case OPT_EXTRA_AUDIO: + cfg->aud_cnt++; + break; + + case OPT_VCAPTURE_DEV: + cfg->vid.vcapture_dev = atoi(pj_optarg); + cur_acc->vid_cap_dev = cfg->vid.vcapture_dev; + break; + + case OPT_VRENDER_DEV: + cfg->vid.vrender_dev = atoi(pj_optarg); + cur_acc->vid_rend_dev = cfg->vid.vrender_dev; + break; + + case OPT_PLAY_AVI: + if (app_config.avi_cnt >= PJSUA_APP_MAX_AVI) { + PJ_LOG(1,(THIS_FILE, "Too many AVIs")); + return -1; + } + app_config.avi[app_config.avi_cnt++].path = pj_str(pj_optarg); + break; + + case OPT_AUTO_PLAY_AVI: + app_config.avi_auto_play = PJ_TRUE; + break; + + case OPT_USE_CLI: + cfg->use_cli = PJ_TRUE; + break; + + case OPT_CLI_TELNET_PORT: + cfg->cli_cfg.telnet_cfg.port = (pj_uint16_t)atoi(pj_optarg); + cfg->cli_cfg.cli_fe |= CLI_FE_TELNET; + break; + + case OPT_DISABLE_CLI_CONSOLE: + cfg->cli_cfg.cli_fe &= (~CLI_FE_CONSOLE); + break; + + default: + PJ_LOG(1,(THIS_FILE, + "Argument \"%s\" is not valid. Use --help to see help", + argv[pj_optind-1])); + return -1; + } + } + + if (pj_optind != argc) { + pj_str_t uri_arg; + + if (pjsua_verify_url(argv[pj_optind]) != PJ_SUCCESS) { + PJ_LOG(1,(THIS_FILE, "Invalid SIP URI %s", argv[pj_optind])); + return -1; + } + uri_arg = pj_str(argv[pj_optind]); + if (uri_to_call) + *uri_to_call = uri_arg; + pj_optind++; + + /* Add URI to call to buddy list if it's not already there */ + for (i=0; ibuddy_cnt; ++i) { + if (pj_stricmp(&cfg->buddy_cfg[i].uri, &uri_arg)==0) + break; + } + if (i == cfg->buddy_cnt && cfg->buddy_cnt < PJSUA_MAX_BUDDIES) { + cfg->buddy_cfg[cfg->buddy_cnt++].uri = uri_arg; + } + + } else { + if (uri_to_call) + uri_to_call->slen = 0; + } + + if (pj_optind != argc) { + PJ_LOG(1,(THIS_FILE, "Error: unknown options %s", argv[pj_optind])); + return PJ_EINVAL; + } + + if (cfg->acc_cfg[cfg->acc_cnt].id.slen) + cfg->acc_cnt++; + + for (i=0; iacc_cnt; ++i) { + pjsua_acc_config *acfg = &cfg->acc_cfg[i]; + + if (acfg->cred_info[acfg->cred_count].username.slen) + { + acfg->cred_count++; + } + + if (acfg->ice_cfg.enable_ice) { + acfg->ice_cfg_use = PJSUA_ICE_CONFIG_USE_CUSTOM; + } + if (acfg->turn_cfg.enable_turn) { + acfg->turn_cfg_use = PJSUA_TURN_CONFIG_USE_CUSTOM; + } + + /* When IMS mode is enabled for the account, verify that settings + * are okay. + */ + /* For now we check if IMS mode is activated by looking if + * initial_auth is set. + */ + if (acfg->auth_pref.initial_auth && acfg->cred_count) { + /* Realm must point to the real domain */ + if (*acfg->cred_info[0].realm.ptr=='*') { + PJ_LOG(1,(THIS_FILE, + "Error: cannot use '*' as realm with IMS")); + return PJ_EINVAL; + } + + /* Username for authentication must be in a@b format */ + if (strchr(acfg->cred_info[0].username.ptr, '@')==0) { + PJ_LOG(1,(THIS_FILE, + "Error: Username for authentication must " + "be in user@domain format with IMS")); + return PJ_EINVAL; + } + } + } + return PJ_SUCCESS; +} + +/* Set default config. */ +static void default_config() +{ + char tmp[80]; + unsigned i; + pjsua_app_config *cfg = &app_config; + + pjsua_config_default(&cfg->cfg); + pj_ansi_sprintf(tmp, "PJSUA v%s %s", pj_get_version(), + pj_get_sys_info()->info.ptr); + pj_strdup2_with_null(app_config.pool, &cfg->cfg.user_agent, tmp); + + pjsua_logging_config_default(&cfg->log_cfg); + pjsua_media_config_default(&cfg->media_cfg); + pjsua_transport_config_default(&cfg->udp_cfg); + cfg->udp_cfg.port = 5060; + pjsua_transport_config_default(&cfg->rtp_cfg); + cfg->rtp_cfg.port = 4000; + cfg->redir_op = PJSIP_REDIRECT_ACCEPT_REPLACE; + cfg->duration = PJSUA_APP_NO_LIMIT_DURATION; + cfg->wav_id = PJSUA_INVALID_ID; + cfg->rec_id = PJSUA_INVALID_ID; + cfg->wav_port = PJSUA_INVALID_ID; + cfg->rec_port = PJSUA_INVALID_ID; + cfg->mic_level = cfg->speaker_level = 1.0; + cfg->capture_dev = PJSUA_INVALID_ID; + cfg->playback_dev = PJSUA_INVALID_ID; + cfg->capture_lat = PJMEDIA_SND_DEFAULT_REC_LATENCY; + cfg->playback_lat = PJMEDIA_SND_DEFAULT_PLAY_LATENCY; + cfg->ringback_slot = PJSUA_INVALID_ID; + cfg->ring_slot = PJSUA_INVALID_ID; + + for (i=0; iacc_cfg); ++i) + pjsua_acc_config_default(&cfg->acc_cfg[i]); + + for (i=0; ibuddy_cfg); ++i) + pjsua_buddy_config_default(&cfg->buddy_cfg[i]); + + cfg->vid.vcapture_dev = PJMEDIA_VID_DEFAULT_CAPTURE_DEV; + cfg->vid.vrender_dev = PJMEDIA_VID_DEFAULT_RENDER_DEV; + cfg->aud_cnt = 1; + + cfg->avi_def_idx = PJSUA_INVALID_ID; + + cfg->use_cli = PJ_FALSE; + cfg->cli_cfg.cli_fe = CLI_FE_CONSOLE; + cfg->cli_cfg.telnet_cfg.port = 0; +} + +static pj_status_t parse_config(int argc, char *argv[], pj_str_t *uri_arg) +{ + pj_status_t status; + + /* Initialize default config */ + default_config(app_config); + + /* Parse the arguments */ + status = parse_args(argc, argv, uri_arg); + return status; +} + +pj_status_t load_config(int argc, + char **argv, + pj_str_t *uri_arg) +{ + pj_status_t status; + pj_bool_t use_cli = PJ_FALSE; + int cli_fe = 0; + pj_uint16_t cli_telnet_port = 0; + + /** CLI options are not changable **/ + if (app_running) { + use_cli = app_config.use_cli; + cli_fe = app_config.cli_cfg.cli_fe; + cli_telnet_port = app_config.cli_cfg.telnet_cfg.port; + } + + status = parse_config(argc, argv, uri_arg); + if (status != PJ_SUCCESS) + return status; + + if (app_running) { + app_config.use_cli = use_cli; + app_config.cli_cfg.cli_fe = cli_fe; + app_config.cli_cfg.telnet_cfg.port = cli_telnet_port; + } + + return status; +} + +/* + * Save account settings + */ +static void write_account_settings(int acc_index, pj_str_t *result) +{ + unsigned i; + char line[128]; + pjsua_acc_config *acc_cfg = &app_config.acc_cfg[acc_index]; + + + pj_ansi_sprintf(line, "\n#\n# Account %d:\n#\n", acc_index); + pj_strcat2(result, line); + + + /* Identity */ + if (acc_cfg->id.slen) { + pj_ansi_sprintf(line, "--id %.*s\n", + (int)acc_cfg->id.slen, + acc_cfg->id.ptr); + pj_strcat2(result, line); + } + + /* Registrar server */ + if (acc_cfg->reg_uri.slen) { + pj_ansi_sprintf(line, "--registrar %.*s\n", + (int)acc_cfg->reg_uri.slen, + acc_cfg->reg_uri.ptr); + pj_strcat2(result, line); + + pj_ansi_sprintf(line, "--reg-timeout %u\n", + acc_cfg->reg_timeout); + pj_strcat2(result, line); + } + + /* Contact */ + if (acc_cfg->force_contact.slen) { + pj_ansi_sprintf(line, "--contact %.*s\n", + (int)acc_cfg->force_contact.slen, + acc_cfg->force_contact.ptr); + pj_strcat2(result, line); + } + + /* Contact header parameters */ + if (acc_cfg->contact_params.slen) { + pj_ansi_sprintf(line, "--contact-params %.*s\n", + (int)acc_cfg->contact_params.slen, + acc_cfg->contact_params.ptr); + pj_strcat2(result, line); + } + + /* Contact URI parameters */ + if (acc_cfg->contact_uri_params.slen) { + pj_ansi_sprintf(line, "--contact-uri-params %.*s\n", + (int)acc_cfg->contact_uri_params.slen, + acc_cfg->contact_uri_params.ptr); + pj_strcat2(result, line); + } + + /* */ + if (acc_cfg->allow_contact_rewrite!=1) + { + pj_ansi_sprintf(line, "--auto-update-nat %i\n", + (int)acc_cfg->allow_contact_rewrite); + pj_strcat2(result, line); + } + +#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0) + /* SRTP */ + if (acc_cfg->use_srtp) { + int use_srtp = (int)acc_cfg->use_srtp; + if (use_srtp == PJMEDIA_SRTP_OPTIONAL && + acc_cfg->srtp_optional_dup_offer) + { + use_srtp = 3; + } + pj_ansi_sprintf(line, "--use-srtp %i\n", use_srtp); + pj_strcat2(result, line); + } + if (acc_cfg->srtp_secure_signaling != + PJSUA_DEFAULT_SRTP_SECURE_SIGNALING) + { + pj_ansi_sprintf(line, "--srtp-secure %d\n", + acc_cfg->srtp_secure_signaling); + pj_strcat2(result, line); + } +#endif + + /* Proxy */ + for (i=0; iproxy_cnt; ++i) { + pj_ansi_sprintf(line, "--proxy %.*s\n", + (int)acc_cfg->proxy[i].slen, + acc_cfg->proxy[i].ptr); + pj_strcat2(result, line); + } + + /* Credentials */ + for (i=0; icred_count; ++i) { + if (acc_cfg->cred_info[i].realm.slen) { + pj_ansi_sprintf(line, "--realm %.*s\n", + (int)acc_cfg->cred_info[i].realm.slen, + acc_cfg->cred_info[i].realm.ptr); + pj_strcat2(result, line); + } + + if (acc_cfg->cred_info[i].username.slen) { + pj_ansi_sprintf(line, "--username %.*s\n", + (int)acc_cfg->cred_info[i].username.slen, + acc_cfg->cred_info[i].username.ptr); + pj_strcat2(result, line); + } + + if (acc_cfg->cred_info[i].data.slen) { + pj_ansi_sprintf(line, "--password %.*s\n", + (int)acc_cfg->cred_info[i].data.slen, + acc_cfg->cred_info[i].data.ptr); + pj_strcat2(result, line); + } + + if (i != acc_cfg->cred_count - 1) + pj_strcat2(result, "--next-cred\n"); + } + + /* reg-use-proxy */ + if (acc_cfg->reg_use_proxy != 3) { + pj_ansi_sprintf(line, "--reg-use-proxy %d\n", + acc_cfg->reg_use_proxy); + pj_strcat2(result, line); + } + + /* rereg-delay */ + if (acc_cfg->reg_retry_interval != PJSUA_REG_RETRY_INTERVAL) { + pj_ansi_sprintf(line, "--rereg-delay %d\n", + acc_cfg->reg_retry_interval); + pj_strcat2(result, line); + } + + /* 100rel extension */ + if (acc_cfg->require_100rel) { + pj_strcat2(result, "--use-100rel\n"); + } + + /* Session Timer extension */ + if (acc_cfg->use_timer) { + pj_ansi_sprintf(line, "--use-timer %d\n", + acc_cfg->use_timer); + pj_strcat2(result, line); + } + if (acc_cfg->timer_setting.min_se != 90) { + pj_ansi_sprintf(line, "--timer-min-se %d\n", + acc_cfg->timer_setting.min_se); + pj_strcat2(result, line); + } + if (acc_cfg->timer_setting.sess_expires != PJSIP_SESS_TIMER_DEF_SE) { + pj_ansi_sprintf(line, "--timer-se %d\n", + acc_cfg->timer_setting.sess_expires); + pj_strcat2(result, line); + } + + /* Publish */ + if (acc_cfg->publish_enabled) + pj_strcat2(result, "--publish\n"); + + /* MWI */ + if (acc_cfg->mwi_enabled) + pj_strcat2(result, "--mwi\n"); + + if (acc_cfg->sip_stun_use != PJSUA_STUN_USE_DEFAULT || + acc_cfg->media_stun_use != PJSUA_STUN_USE_DEFAULT) + { + pj_strcat2(result, "--disable-stun\n"); + } + + /* Media Transport*/ + if (acc_cfg->ice_cfg.enable_ice) + pj_strcat2(result, "--use-ice\n"); + + if (acc_cfg->ice_cfg.ice_opt.aggressive == PJ_FALSE) + pj_strcat2(result, "--ice-regular\n"); + + if (acc_cfg->turn_cfg.enable_turn) + pj_strcat2(result, "--use-turn\n"); + + if (acc_cfg->ice_cfg.ice_max_host_cands >= 0) { + pj_ansi_sprintf(line, "--ice_max_host_cands %d\n", + acc_cfg->ice_cfg.ice_max_host_cands); + pj_strcat2(result, line); + } + + if (acc_cfg->ice_cfg.ice_no_rtcp) + pj_strcat2(result, "--ice-no-rtcp\n"); + + if (acc_cfg->turn_cfg.turn_server.slen) { + pj_ansi_sprintf(line, "--turn-srv %.*s\n", + (int)acc_cfg->turn_cfg.turn_server.slen, + acc_cfg->turn_cfg.turn_server.ptr); + pj_strcat2(result, line); + } + + if (acc_cfg->turn_cfg.turn_conn_type == PJ_TURN_TP_TCP) + pj_strcat2(result, "--turn-tcp\n"); + + if (acc_cfg->turn_cfg.turn_auth_cred.data.static_cred.username.slen) { + pj_ansi_sprintf(line, "--turn-user %.*s\n", + (int)acc_cfg->turn_cfg.turn_auth_cred.data.static_cred.username.slen, + acc_cfg->turn_cfg.turn_auth_cred.data.static_cred.username.ptr); + pj_strcat2(result, line); + } + + if (acc_cfg->turn_cfg.turn_auth_cred.data.static_cred.data.slen) { + pj_ansi_sprintf(line, "--turn-passwd %.*s\n", + (int)acc_cfg->turn_cfg.turn_auth_cred.data.static_cred.data.slen, + acc_cfg->turn_cfg.turn_auth_cred.data.static_cred.data.ptr); + pj_strcat2(result, line); + } +} + +/* + * Write settings. + */ +int write_settings(pjsua_app_config *config, char *buf, pj_size_t max) +{ + unsigned acc_index; + unsigned i; + pj_str_t cfg; + char line[128]; + extern pj_bool_t pjsip_use_compact_form; + + PJ_UNUSED_ARG(max); + + cfg.ptr = buf; + cfg.slen = 0; + + /* Logging. */ + pj_strcat2(&cfg, "#\n# Logging options:\n#\n"); + pj_ansi_sprintf(line, "--log-level %d\n", + config->log_cfg.level); + pj_strcat2(&cfg, line); + + pj_ansi_sprintf(line, "--app-log-level %d\n", + config->log_cfg.console_level); + pj_strcat2(&cfg, line); + + if (config->log_cfg.log_filename.slen) { + pj_ansi_sprintf(line, "--log-file %.*s\n", + (int)config->log_cfg.log_filename.slen, + config->log_cfg.log_filename.ptr); + pj_strcat2(&cfg, line); + } + + if (config->log_cfg.log_file_flags & PJ_O_APPEND) { + pj_strcat2(&cfg, "--log-append\n"); + } + + /* Save account settings. */ + for (acc_index=0; acc_index < config->acc_cnt; ++acc_index) { + + write_account_settings(acc_index, &cfg); + + if (acc_index < config->acc_cnt-1) + pj_strcat2(&cfg, "--next-account\n"); + } + + pj_strcat2(&cfg, "\n#\n# Network settings:\n#\n"); + + /* Nameservers */ + for (i=0; icfg.nameserver_count; ++i) { + pj_ansi_sprintf(line, "--nameserver %.*s\n", + (int)config->cfg.nameserver[i].slen, + config->cfg.nameserver[i].ptr); + pj_strcat2(&cfg, line); + } + + /* Outbound proxy */ + for (i=0; icfg.outbound_proxy_cnt; ++i) { + pj_ansi_sprintf(line, "--outbound %.*s\n", + (int)config->cfg.outbound_proxy[i].slen, + config->cfg.outbound_proxy[i].ptr); + pj_strcat2(&cfg, line); + } + + /* Transport options */ + if (config->ipv6) { + pj_strcat2(&cfg, "--ipv6\n"); + } + if (config->enable_qos) { + pj_strcat2(&cfg, "--set-qos\n"); + } + + /* UDP Transport. */ + pj_ansi_sprintf(line, "--local-port %d\n", config->udp_cfg.port); + pj_strcat2(&cfg, line); + + /* IP address, if any. */ + if (config->udp_cfg.public_addr.slen) { + pj_ansi_sprintf(line, "--ip-addr %.*s\n", + (int)config->udp_cfg.public_addr.slen, + config->udp_cfg.public_addr.ptr); + pj_strcat2(&cfg, line); + } + + /* Bound IP address, if any. */ + if (config->udp_cfg.bound_addr.slen) { + pj_ansi_sprintf(line, "--bound-addr %.*s\n", + (int)config->udp_cfg.bound_addr.slen, + config->udp_cfg.bound_addr.ptr); + pj_strcat2(&cfg, line); + } + + /* No TCP ? */ + if (config->no_tcp) { + pj_strcat2(&cfg, "--no-tcp\n"); + } + + /* No UDP ? */ + if (config->no_udp) { + pj_strcat2(&cfg, "--no-udp\n"); + } + + /* STUN */ + for (i=0; icfg.stun_srv_cnt; ++i) { + pj_ansi_sprintf(line, "--stun-srv %.*s\n", + (int)config->cfg.stun_srv[i].slen, + config->cfg.stun_srv[i].ptr); + pj_strcat2(&cfg, line); + } + +#if defined(PJSIP_HAS_TLS_TRANSPORT) && (PJSIP_HAS_TLS_TRANSPORT != 0) + /* TLS */ + if (config->use_tls) + pj_strcat2(&cfg, "--use-tls\n"); + if (config->udp_cfg.tls_setting.ca_list_file.slen) { + pj_ansi_sprintf(line, "--tls-ca-file %.*s\n", + (int)config->udp_cfg.tls_setting.ca_list_file.slen, + config->udp_cfg.tls_setting.ca_list_file.ptr); + pj_strcat2(&cfg, line); + } + if (config->udp_cfg.tls_setting.cert_file.slen) { + pj_ansi_sprintf(line, "--tls-cert-file %.*s\n", + (int)config->udp_cfg.tls_setting.cert_file.slen, + config->udp_cfg.tls_setting.cert_file.ptr); + pj_strcat2(&cfg, line); + } + if (config->udp_cfg.tls_setting.privkey_file.slen) { + pj_ansi_sprintf(line, "--tls-privkey-file %.*s\n", + (int)config->udp_cfg.tls_setting.privkey_file.slen, + config->udp_cfg.tls_setting.privkey_file.ptr); + pj_strcat2(&cfg, line); + } + + if (config->udp_cfg.tls_setting.password.slen) { + pj_ansi_sprintf(line, "--tls-password %.*s\n", + (int)config->udp_cfg.tls_setting.password.slen, + config->udp_cfg.tls_setting.password.ptr); + pj_strcat2(&cfg, line); + } + + if (config->udp_cfg.tls_setting.verify_server) + pj_strcat2(&cfg, "--tls-verify-server\n"); + + if (config->udp_cfg.tls_setting.verify_client) + pj_strcat2(&cfg, "--tls-verify-client\n"); + + if (config->udp_cfg.tls_setting.timeout.sec) { + pj_ansi_sprintf(line, "--tls-neg-timeout %d\n", + (int)config->udp_cfg.tls_setting.timeout.sec); + pj_strcat2(&cfg, line); + } + + for (i=0; iudp_cfg.tls_setting.ciphers_num; ++i) { + pj_ansi_sprintf(line, "--tls-cipher 0x%06X # %s\n", + config->udp_cfg.tls_setting.ciphers[i], + pj_ssl_cipher_name(config->udp_cfg.tls_setting.ciphers[i])); + pj_strcat2(&cfg, line); + } +#endif + + pj_strcat2(&cfg, "\n#\n# Media settings:\n#\n"); + + /* Video & extra audio */ + for (i=0; ivid.vid_cnt; ++i) { + pj_strcat2(&cfg, "--video\n"); + } + for (i=1; iaud_cnt; ++i) { + pj_strcat2(&cfg, "--extra-audio\n"); + } + + /* SRTP */ +#if PJMEDIA_HAS_SRTP + if (app_config.cfg.use_srtp != PJSUA_DEFAULT_USE_SRTP) { + int use_srtp = (int)app_config.cfg.use_srtp; + if (use_srtp == PJMEDIA_SRTP_OPTIONAL && + app_config.cfg.srtp_optional_dup_offer) + { + use_srtp = 3; + } + pj_ansi_sprintf(line, "--use-srtp %d\n", use_srtp); + pj_strcat2(&cfg, line); + } + if (app_config.cfg.srtp_secure_signaling != + PJSUA_DEFAULT_SRTP_SECURE_SIGNALING) + { + pj_ansi_sprintf(line, "--srtp-secure %d\n", + app_config.cfg.srtp_secure_signaling); + pj_strcat2(&cfg, line); + } +#endif + + /* Media */ + if (config->null_audio) + pj_strcat2(&cfg, "--null-audio\n"); + if (config->auto_play) + pj_strcat2(&cfg, "--auto-play\n"); + if (config->auto_loop) + pj_strcat2(&cfg, "--auto-loop\n"); + if (config->auto_conf) + pj_strcat2(&cfg, "--auto-conf\n"); + for (i=0; iwav_count; ++i) { + pj_ansi_sprintf(line, "--play-file %s\n", + config->wav_files[i].ptr); + pj_strcat2(&cfg, line); + } + for (i=0; itone_count; ++i) { + pj_ansi_sprintf(line, "--play-tone %d,%d,%d,%d\n", + config->tones[i].freq1, config->tones[i].freq2, + config->tones[i].on_msec, config->tones[i].off_msec); + pj_strcat2(&cfg, line); + } + if (config->rec_file.slen) { + pj_ansi_sprintf(line, "--rec-file %s\n", + config->rec_file.ptr); + pj_strcat2(&cfg, line); + } + if (config->auto_rec) + pj_strcat2(&cfg, "--auto-rec\n"); + if (config->capture_dev != PJSUA_INVALID_ID) { + pj_ansi_sprintf(line, "--capture-dev %d\n", config->capture_dev); + pj_strcat2(&cfg, line); + } + if (config->playback_dev != PJSUA_INVALID_ID) { + pj_ansi_sprintf(line, "--playback-dev %d\n", config->playback_dev); + pj_strcat2(&cfg, line); + } + if (config->media_cfg.snd_auto_close_time != -1) { + pj_ansi_sprintf(line, "--snd-auto-close %d\n", + config->media_cfg.snd_auto_close_time); + pj_strcat2(&cfg, line); + } + if (config->no_tones) { + pj_strcat2(&cfg, "--no-tones\n"); + } + if (config->media_cfg.jb_max != -1) { + pj_ansi_sprintf(line, "--jb-max-size %d\n", + config->media_cfg.jb_max); + pj_strcat2(&cfg, line); + } + + /* Sound device latency */ + if (config->capture_lat != PJMEDIA_SND_DEFAULT_REC_LATENCY) { + pj_ansi_sprintf(line, "--capture-lat %d\n", config->capture_lat); + pj_strcat2(&cfg, line); + } + if (config->playback_lat != PJMEDIA_SND_DEFAULT_PLAY_LATENCY) { + pj_ansi_sprintf(line, "--playback-lat %d\n", config->playback_lat); + pj_strcat2(&cfg, line); + } + + /* Media clock rate. */ + if (config->media_cfg.clock_rate != PJSUA_DEFAULT_CLOCK_RATE) { + pj_ansi_sprintf(line, "--clock-rate %d\n", + config->media_cfg.clock_rate); + pj_strcat2(&cfg, line); + } else { + pj_ansi_sprintf(line, "#using default --clock-rate %d\n", + config->media_cfg.clock_rate); + pj_strcat2(&cfg, line); + } + + if (config->media_cfg.snd_clock_rate && + config->media_cfg.snd_clock_rate != config->media_cfg.clock_rate) + { + pj_ansi_sprintf(line, "--snd-clock-rate %d\n", + config->media_cfg.snd_clock_rate); + pj_strcat2(&cfg, line); + } + + /* Stereo mode. */ + if (config->media_cfg.channel_count == 2) { + pj_ansi_sprintf(line, "--stereo\n"); + pj_strcat2(&cfg, line); + } + + /* quality */ + if (config->media_cfg.quality != PJSUA_DEFAULT_CODEC_QUALITY) { + pj_ansi_sprintf(line, "--quality %d\n", + config->media_cfg.quality); + pj_strcat2(&cfg, line); + } else { + pj_ansi_sprintf(line, "#using default --quality %d\n", + config->media_cfg.quality); + pj_strcat2(&cfg, line); + } + + if (config->vid.vcapture_dev != PJMEDIA_VID_DEFAULT_CAPTURE_DEV) { + pj_ansi_sprintf(line, "--vcapture-dev %d\n", config->vid.vcapture_dev); + pj_strcat2(&cfg, line); + } + if (config->vid.vrender_dev != PJMEDIA_VID_DEFAULT_RENDER_DEV) { + pj_ansi_sprintf(line, "--vrender-dev %d\n", config->vid.vrender_dev); + pj_strcat2(&cfg, line); + } + for (i=0; iavi_cnt; ++i) { + pj_ansi_sprintf(line, "--play-avi %s\n", config->avi[i].path.ptr); + pj_strcat2(&cfg, line); + } + if (config->avi_auto_play) { + pj_ansi_sprintf(line, "--auto-play-avi\n"); + pj_strcat2(&cfg, line); + } + + /* ptime */ + if (config->media_cfg.ptime) { + pj_ansi_sprintf(line, "--ptime %d\n", + config->media_cfg.ptime); + pj_strcat2(&cfg, line); + } + + /* no-vad */ + if (config->media_cfg.no_vad) { + pj_strcat2(&cfg, "--no-vad\n"); + } + + /* ec-tail */ + if (config->media_cfg.ec_tail_len != PJSUA_DEFAULT_EC_TAIL_LEN) { + pj_ansi_sprintf(line, "--ec-tail %d\n", + config->media_cfg.ec_tail_len); + pj_strcat2(&cfg, line); + } else { + pj_ansi_sprintf(line, "#using default --ec-tail %d\n", + config->media_cfg.ec_tail_len); + pj_strcat2(&cfg, line); + } + + /* ec-opt */ + if (config->media_cfg.ec_options != 0) { + pj_ansi_sprintf(line, "--ec-opt %d\n", + config->media_cfg.ec_options); + pj_strcat2(&cfg, line); + } + + /* ilbc-mode */ + if (config->media_cfg.ilbc_mode != PJSUA_DEFAULT_ILBC_MODE) { + pj_ansi_sprintf(line, "--ilbc-mode %d\n", + config->media_cfg.ilbc_mode); + pj_strcat2(&cfg, line); + } else { + pj_ansi_sprintf(line, "#using default --ilbc-mode %d\n", + config->media_cfg.ilbc_mode); + pj_strcat2(&cfg, line); + } + + /* RTP drop */ + if (config->media_cfg.tx_drop_pct) { + pj_ansi_sprintf(line, "--tx-drop-pct %d\n", + config->media_cfg.tx_drop_pct); + pj_strcat2(&cfg, line); + + } + if (config->media_cfg.rx_drop_pct) { + pj_ansi_sprintf(line, "--rx-drop-pct %d\n", + config->media_cfg.rx_drop_pct); + pj_strcat2(&cfg, line); + + } + + /* Start RTP port. */ + pj_ansi_sprintf(line, "--rtp-port %d\n", + config->rtp_cfg.port); + pj_strcat2(&cfg, line); + + /* Disable codec */ + for (i=0; icodec_dis_cnt; ++i) { + pj_ansi_sprintf(line, "--dis-codec %s\n", + config->codec_dis[i].ptr); + pj_strcat2(&cfg, line); + } + /* Add codec. */ + for (i=0; icodec_cnt; ++i) { + pj_ansi_sprintf(line, "--add-codec %s\n", + config->codec_arg[i].ptr); + pj_strcat2(&cfg, line); + } + + pj_strcat2(&cfg, "\n#\n# User agent:\n#\n"); + + /* Auto-answer. */ + if (config->auto_answer != 0) { + pj_ansi_sprintf(line, "--auto-answer %d\n", + config->auto_answer); + pj_strcat2(&cfg, line); + } + + /* accept-redirect */ + if (config->redir_op != PJSIP_REDIRECT_ACCEPT_REPLACE) { + pj_ansi_sprintf(line, "--accept-redirect %d\n", + config->redir_op); + pj_strcat2(&cfg, line); + } + + /* Max calls. */ + pj_ansi_sprintf(line, "--max-calls %d\n", + config->cfg.max_calls); + pj_strcat2(&cfg, line); + + /* Uas-duration. */ + if (config->duration != PJSUA_APP_NO_LIMIT_DURATION) { + pj_ansi_sprintf(line, "--duration %d\n", + config->duration); + pj_strcat2(&cfg, line); + } + + /* norefersub ? */ + if (config->no_refersub) { + pj_strcat2(&cfg, "--norefersub\n"); + } + + if (pjsip_use_compact_form) + { + pj_strcat2(&cfg, "--use-compact-form\n"); + } + + if (!config->cfg.force_lr) { + pj_strcat2(&cfg, "--no-force-lr\n"); + } + + pj_strcat2(&cfg, "\n#\n# Buddies:\n#\n"); + + /* Add buddies. */ + for (i=0; ibuddy_cnt; ++i) { + pj_ansi_sprintf(line, "--add-buddy %.*s\n", + (int)config->buddy_cfg[i].uri.slen, + config->buddy_cfg[i].uri.ptr); + pj_strcat2(&cfg, line); + } + + /* SIP extensions. */ + pj_strcat2(&cfg, "\n#\n# SIP extensions:\n#\n"); + /* 100rel extension */ + if (config->cfg.require_100rel) { + pj_strcat2(&cfg, "--use-100rel\n"); + } + /* Session Timer extension */ + if (config->cfg.use_timer) { + pj_ansi_sprintf(line, "--use-timer %d\n", + config->cfg.use_timer); + pj_strcat2(&cfg, line); + } + if (config->cfg.timer_setting.min_se != 90) { + pj_ansi_sprintf(line, "--timer-min-se %d\n", + config->cfg.timer_setting.min_se); + pj_strcat2(&cfg, line); + } + if (config->cfg.timer_setting.sess_expires != PJSIP_SESS_TIMER_DEF_SE) { + pj_ansi_sprintf(line, "--timer-se %d\n", + config->cfg.timer_setting.sess_expires); + pj_strcat2(&cfg, line); + } + + *(cfg.ptr + cfg.slen) = '\0'; + return cfg.slen; +} diff --git a/pjsip-apps/src/pjsua/pjsua_app_legacy.c b/pjsip-apps/src/pjsua/pjsua_app_legacy.c new file mode 100644 index 00000000..c3d9af1c --- /dev/null +++ b/pjsip-apps/src/pjsua/pjsua_app_legacy.c @@ -0,0 +1,1927 @@ +/* $Id$ */ +/* + * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) + * Copyright (C) 2003-2008 Benny Prijono + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include +#include "pjsua_app_common.h" + +#define THIS_FILE "pjsua_app_legacy.c" + +static pj_bool_t cmd_echo; + +/* + * Print buddy list. + */ +static void print_buddy_list() +{ + pjsua_buddy_id ids[64]; + int i; + unsigned count = PJ_ARRAY_SIZE(ids); + + puts("Buddy list:"); + + pjsua_enum_buddies(ids, &count); + + if (count == 0) + puts(" -none-"); + else { + for (i=0; i<(int)count; ++i) { + pjsua_buddy_info info; + + if (pjsua_buddy_get_info(ids[i], &info) != PJ_SUCCESS) + continue; + + printf(" [%2d] <%.*s> %.*s\n", + ids[i]+1, + (int)info.status_text.slen, + info.status_text.ptr, + (int)info.uri.slen, + info.uri.ptr); + } + } + puts(""); +} + +/* + * Input URL. + */ +static void ui_input_url(const char *title, char *buf, int len, + input_result *result) +{ + result->nb_result = PJSUA_APP_NO_NB; + result->uri_result = NULL; + + print_buddy_list(); + + printf("Choices:\n" + " 0 For current dialog.\n" + " -1 All %d buddies in buddy list\n" + " [1 -%2d] Select from buddy list\n" + " URL An URL\n" + " Empty input (or 'q') to cancel\n" + , pjsua_get_buddy_count(), pjsua_get_buddy_count()); + printf("%s: ", title); + + fflush(stdout); + if (fgets(buf, len, stdin) == NULL) + return; + len = strlen(buf); + + /* Left trim */ + while (pj_isspace(*buf)) { + ++buf; + --len; + } + + /* Remove trailing newlines */ + while (len && (buf[len-1] == '\r' || buf[len-1] == '\n')) + buf[--len] = '\0'; + + if (len == 0 || buf[0]=='q') + return; + + if (pj_isdigit(*buf) || *buf=='-') { + + int i; + + if (*buf=='-') + i = 1; + else + i = 0; + + for (; inb_result = my_atoi(buf); + + if (result->nb_result >= 0 && + result->nb_result <= (int)pjsua_get_buddy_count()) + { + return; + } + if (result->nb_result == -1) + return; + + puts("Invalid input"); + result->nb_result = PJSUA_APP_NO_NB; + return; + + } else { + pj_status_t status; + + if ((status=pjsua_verify_url(buf)) != PJ_SUCCESS) { + pjsua_perror(THIS_FILE, "Invalid URL", status); + return; + } + + result->uri_result = buf; + } +} + +static pj_bool_t simple_input(const char *title, char *buf, pj_size_t len) +{ + char *p; + + printf("%s (empty to cancel): ", title); fflush(stdout); + if (fgets(buf, len, stdin) == NULL) + return PJ_FALSE; + + /* Remove trailing newlines. */ + for (p=buf; ; ++p) { + if (*p=='\r' || *p=='\n') *p='\0'; + else if (!*p) break; + } + + if (!*buf) + return PJ_FALSE; + + return PJ_TRUE; +} + +/* + * Print account status. + */ +static void print_acc_status(int acc_id) +{ + char buf[80]; + pjsua_acc_info info; + + pjsua_acc_get_info(acc_id, &info); + + if (!info.has_registration) { + pj_ansi_snprintf(buf, sizeof(buf), "%.*s", + (int)info.status_text.slen, + info.status_text.ptr); + + } else { + pj_ansi_snprintf(buf, sizeof(buf), + "%d/%.*s (expires=%d)", + info.status, + (int)info.status_text.slen, + info.status_text.ptr, + info.expires); + + } + + printf(" %c[%2d] %.*s: %s\n", (acc_id==current_acc?'*':' '), + acc_id, (int)info.acc_uri.slen, info.acc_uri.ptr, buf); + printf(" Online status: %.*s\n", + (int)info.online_status_text.slen, + info.online_status_text.ptr); +} + +/* + * Show a bit of help. + */ +static void keystroke_help() +{ + pjsua_acc_id acc_ids[16]; + unsigned count = PJ_ARRAY_SIZE(acc_ids); + int i; + + printf(">>>>\n"); + + pjsua_enum_accs(acc_ids, &count); + + printf("Account list:\n"); + for (i=0; i<(int)count; ++i) + print_acc_status(acc_ids[i]); + + print_buddy_list(); + + //puts("Commands:"); + puts("+=============================================================================+"); + puts("| Call Commands: | Buddy, IM & Presence: | Account: |"); + puts("| | | |"); + puts("| m Make new call | +b Add new buddy .| +a Add new accnt |"); + puts("| M Make multiple calls | -b Delete buddy | -a Delete accnt. |"); + puts("| a Answer call | i Send IM | !a Modify accnt. |"); + puts("| h Hangup call (ha=all) | s Subscribe presence | rr (Re-)register |"); + puts("| H Hold call | u Unsubscribe presence | ru Unregister |"); + puts("| v re-inVite (release hold) | t ToGgle Online status | > Cycle next ac.|"); + puts("| U send UPDATE | T Set online status | < Cycle prev ac.|"); + puts("| ],[ Select next/prev call +--------------------------+-------------------+"); + puts("| x Xfer call | Media Commands: | Status & Config: |"); + puts("| X Xfer with Replaces | | |"); + puts("| # Send RFC 2833 DTMF | cl List ports | d Dump status |"); + puts("| * Send DTMF with INFO | cc Connect port | dd Dump detailed |"); + puts("| dq Dump curr. call quality | cd Disconnect port | dc Dump config |"); + puts("| | V Adjust audio Volume | f Save config |"); + puts("| S Send arbitrary REQUEST | Cp Codec priorities | |"); + puts("+-----------------------------------------------------------------------------+"); +#if PJSUA_HAS_VIDEO + puts("| Video: \"vid help\" for more info |"); + puts("+-----------------------------------------------------------------------------+"); +#endif + puts("| q QUIT L ReLoad sleep MS echo [0|1|txt] n: detect NAT type |"); + puts("+=============================================================================+"); + + i = pjsua_call_get_count(); + printf("You have %d active call%s\n", i, (i>1?"s":"")); + + if (current_call != PJSUA_INVALID_ID) { + pjsua_call_info ci; + if (pjsua_call_get_info(current_call, &ci)==PJ_SUCCESS) + printf("Current call id=%d to %.*s [%.*s]\n", current_call, + (int)ci.remote_info.slen, ci.remote_info.ptr, + (int)ci.state_text.slen, ci.state_text.ptr); + } +} + +/* Help screen for video */ +#if PJSUA_HAS_VIDEO +static void vid_show_help() +{ + pj_bool_t vid_enabled = (app_config.vid.vid_cnt > 0); + + puts("+=============================================================================+"); + puts("| Video commands: |"); + puts("| |"); + puts("| vid help Show this help screen |"); + puts("| vid enable|disable Enable or disable video in next offer/answer |"); + puts("| vid acc show Show current account video settings |"); + puts("| vid acc autorx on|off Automatically show incoming video on/off |"); + puts("| vid acc autotx on|off Automatically offer video on/off |"); + puts("| vid acc cap ID Set default capture device for current acc |"); + puts("| vid acc rend ID Set default renderer device for current acc |"); + puts("| vid call rx on|off N Enable/disable video RX for stream N in curr call |"); + puts("| vid call tx on|off N Enable/disable video TX for stream N in curr call |"); + puts("| vid call add Add video stream for current call |"); + puts("| vid call enable|disable N Enable/disable stream #N in current call |"); + puts("| vid call cap N ID Set capture dev ID for stream #N in current call |"); + puts("| vid dev list List all video devices |"); + puts("| vid dev refresh Refresh video device list |"); + puts("| vid dev prev on|off ID Enable/disable preview for specified device ID |"); + puts("| vid codec list List video codecs |"); + puts("| vid codec prio ID PRIO Set codec ID priority to PRIO |"); + puts("| vid codec fps ID NUM DEN Set codec ID framerate to (NUM/DEN) fps |"); + puts("| vid codec bw ID AVG MAX Set codec ID bitrate to AVG & MAX kbps |"); + puts("| vid codec size ID W H Set codec ID size/resolution to W x H |"); + puts("| vid win list List all active video windows |"); + puts("| vid win arrange Auto arrange windows |"); + puts("| vid win show|hide ID Show/hide the specified video window ID |"); + puts("| vid win move ID X Y Move window ID to position X,Y |"); + puts("| vid win resize ID w h Resize window ID to the specified width, height |"); + puts("+=============================================================================+"); + printf("| Video will be %s in the next offer/answer %s |\n", + (vid_enabled? "enabled" : "disabled"), (vid_enabled? " " : "")); + puts("+=============================================================================+"); +} + +static void vid_handle_menu(char *menuin) +{ + char *argv[8]; + int argc = 0; + + /* Tokenize */ + argv[argc] = strtok(menuin, " \t\r\n"); + while (argv[argc] && *argv[argc]) { + argc++; + argv[argc] = strtok(NULL, " \t\r\n"); + } + + if (argc == 1 || strcmp(argv[1], "help")==0) { + vid_show_help(); + } else if (argc == 2 && (strcmp(argv[1], "enable")==0 || + strcmp(argv[1], "disable")==0)) + { + pj_bool_t enabled = (strcmp(argv[1], "enable")==0); + app_config.vid.vid_cnt = (enabled ? 1 : 0); + PJ_LOG(3,(THIS_FILE, "Video will be %s in next offer/answer", + (enabled?"enabled":"disabled"))); + } else if (strcmp(argv[1], "acc")==0) { + pjsua_acc_config acc_cfg; + pj_bool_t changed = PJ_FALSE; + + pjsua_acc_get_config(current_acc, &acc_cfg); + + if (argc == 3 && strcmp(argv[2], "show")==0) { + app_config_show_video(current_acc, &acc_cfg); + } else if (argc == 4 && strcmp(argv[2], "autorx")==0) { + int on = (strcmp(argv[3], "on")==0); + acc_cfg.vid_in_auto_show = on; + changed = PJ_TRUE; + } else if (argc == 4 && strcmp(argv[2], "autotx")==0) { + int on = (strcmp(argv[3], "on")==0); + acc_cfg.vid_out_auto_transmit = on; + changed = PJ_TRUE; + } else if (argc == 4 && strcmp(argv[2], "cap")==0) { + int dev = atoi(argv[3]); + acc_cfg.vid_cap_dev = dev; + changed = PJ_TRUE; + } else if (argc == 4 && strcmp(argv[2], "rend")==0) { + int dev = atoi(argv[3]); + acc_cfg.vid_rend_dev = dev; + changed = PJ_TRUE; + } else { + goto on_error; + } + + if (changed) { + pj_status_t status = pjsua_acc_modify(current_acc, &acc_cfg); + if (status != PJ_SUCCESS) + PJ_PERROR(1,(THIS_FILE, status, "Error modifying account %d", + current_acc)); + } + + } else if (strcmp(argv[1], "call")==0) { + pjsua_call_vid_strm_op_param param; + pj_status_t status = PJ_SUCCESS; + + pjsua_call_vid_strm_op_param_default(¶m); + + if (argc == 5 && strcmp(argv[2], "rx")==0) { + pjsua_stream_info si; + pj_bool_t on = (strcmp(argv[3], "on") == 0); + + param.med_idx = atoi(argv[4]); + if (pjsua_call_get_stream_info(current_call, param.med_idx, &si) || + si.type != PJMEDIA_TYPE_VIDEO) + { + PJ_PERROR(1,(THIS_FILE, PJ_EINVAL, "Invalid stream")); + return; + } + + if (on) param.dir = (si.info.vid.dir | PJMEDIA_DIR_DECODING); + else param.dir = (si.info.vid.dir & PJMEDIA_DIR_ENCODING); + + status = pjsua_call_set_vid_strm(current_call, + PJSUA_CALL_VID_STRM_CHANGE_DIR, + ¶m); + } + else if (argc == 5 && strcmp(argv[2], "tx")==0) { + pj_bool_t on = (strcmp(argv[3], "on") == 0); + pjsua_call_vid_strm_op op = on? PJSUA_CALL_VID_STRM_START_TRANSMIT : + PJSUA_CALL_VID_STRM_STOP_TRANSMIT; + + param.med_idx = atoi(argv[4]); + + status = pjsua_call_set_vid_strm(current_call, op, ¶m); + } + else if (argc == 3 && strcmp(argv[2], "add")==0) { + status = pjsua_call_set_vid_strm(current_call, + PJSUA_CALL_VID_STRM_ADD, NULL); + } + else if (argc >= 3 && + (strcmp(argv[2], "disable")==0 || strcmp(argv[2], "enable")==0)) + { + pj_bool_t enable = (strcmp(argv[2], "enable") == 0); + pjsua_call_vid_strm_op op = enable? PJSUA_CALL_VID_STRM_CHANGE_DIR : + PJSUA_CALL_VID_STRM_REMOVE; + + param.med_idx = argc >= 4? atoi(argv[3]) : -1; + param.dir = PJMEDIA_DIR_ENCODING_DECODING; + status = pjsua_call_set_vid_strm(current_call, op, ¶m); + } + else if (argc >= 3 && strcmp(argv[2], "cap")==0) { + param.med_idx = argc >= 4? atoi(argv[3]) : -1; + param.cap_dev = argc >= 5? atoi(argv[4]) : PJMEDIA_VID_DEFAULT_CAPTURE_DEV; + status = pjsua_call_set_vid_strm(current_call, + PJSUA_CALL_VID_STRM_CHANGE_CAP_DEV, + ¶m); + } else + goto on_error; + + if (status != PJ_SUCCESS) { + PJ_PERROR(1,(THIS_FILE, status, "Error modifying video stream")); + } + + } else if (argc >= 3 && strcmp(argv[1], "dev")==0) { + if (strcmp(argv[2], "list")==0) { + vid_list_devs(); + } else if (strcmp(argv[2], "refresh")==0) { + pjmedia_vid_dev_refresh(); + } else if (strcmp(argv[2], "prev")==0) { + if (argc != 5) { + goto on_error; + } else { + pj_bool_t on = (strcmp(argv[3], "on") == 0); + int dev_id = atoi(argv[4]); + if (on) { + pjsua_vid_preview_param param; + + pjsua_vid_preview_param_default(¶m); + param.wnd_flags = PJMEDIA_VID_DEV_WND_BORDER | + PJMEDIA_VID_DEV_WND_RESIZABLE; + pjsua_vid_preview_start(dev_id, ¶m); + arrange_window(pjsua_vid_preview_get_win(dev_id)); + } else { + pjsua_vid_win_id wid; + wid = pjsua_vid_preview_get_win(dev_id); + if (wid != PJSUA_INVALID_ID) { + /* Preview window hiding once it is stopped is + * responsibility of app */ + pjsua_vid_win_set_show(wid, PJ_FALSE); + pjsua_vid_preview_stop(dev_id); + } + } + } + } else + goto on_error; + } else if (strcmp(argv[1], "win")==0) { + pj_status_t status = PJ_SUCCESS; + + if (argc==3 && strcmp(argv[2], "list")==0) { + pjsua_vid_win_id wids[PJSUA_MAX_VID_WINS]; + unsigned i, cnt = PJ_ARRAY_SIZE(wids); + + pjsua_vid_enum_wins(wids, &cnt); + + PJ_LOG(3,(THIS_FILE, "Found %d video windows:", cnt)); + PJ_LOG(3,(THIS_FILE, "WID show pos size")); + PJ_LOG(3,(THIS_FILE, "------------------------------")); + for (i = 0; i < cnt; ++i) { + pjsua_vid_win_info wi; + pjsua_vid_win_get_info(wids[i], &wi); + PJ_LOG(3,(THIS_FILE, "%3d %c (%d,%d) %dx%d", + wids[i], (wi.show?'Y':'N'), wi.pos.x, wi.pos.y, + wi.size.w, wi.size.h)); + } + } else if (argc==4 && (strcmp(argv[2], "show")==0 || + strcmp(argv[2], "hide")==0)) + { + pj_bool_t show = (strcmp(argv[2], "show")==0); + pjsua_vid_win_id wid = atoi(argv[3]); + status = pjsua_vid_win_set_show(wid, show); + } else if (argc==6 && strcmp(argv[2], "move")==0) { + pjsua_vid_win_id wid = atoi(argv[3]); + pjmedia_coord pos; + + pos.x = atoi(argv[4]); + pos.y = atoi(argv[5]); + status = pjsua_vid_win_set_pos(wid, &pos); + } else if (argc==6 && strcmp(argv[2], "resize")==0) { + pjsua_vid_win_id wid = atoi(argv[3]); + pjmedia_rect_size size; + + size.w = atoi(argv[4]); + size.h = atoi(argv[5]); + status = pjsua_vid_win_set_size(wid, &size); + } else if (argc==3 && strcmp(argv[2], "arrange")==0) { + arrange_window(PJSUA_INVALID_ID); + } else + goto on_error; + + if (status != PJ_SUCCESS) { + PJ_PERROR(1,(THIS_FILE, status, "Window operation error")); + } + + } else if (strcmp(argv[1], "codec")==0) { + pjsua_codec_info ci[PJMEDIA_CODEC_MGR_MAX_CODECS]; + unsigned count = PJ_ARRAY_SIZE(ci); + pj_status_t status; + + if (argc==3 && strcmp(argv[2], "list")==0) { + status = pjsua_vid_enum_codecs(ci, &count); + if (status != PJ_SUCCESS) { + PJ_PERROR(1,(THIS_FILE, status, "Error enumerating codecs")); + } else { + unsigned i; + PJ_LOG(3,(THIS_FILE, "Found %d video codecs:", count)); + PJ_LOG(3,(THIS_FILE, "codec id prio fps bw(kbps) size")); + PJ_LOG(3,(THIS_FILE, "------------------------------------------")); + for (i=0; ifps.num*1.0/vfd->fps.denum), + vfd->avg_bps/1000, vfd->max_bps/1000, + vfd->size.w, vfd->size.h)); + } + } + } else if (argc==5 && strcmp(argv[2], "prio")==0) { + pj_str_t cid; + int prio; + cid = pj_str(argv[3]); + prio = atoi(argv[4]); + status = pjsua_vid_codec_set_priority(&cid, (pj_uint8_t)prio); + if (status != PJ_SUCCESS) + PJ_PERROR(1,(THIS_FILE, status, "Set codec priority error")); + } else if (argc==6 && strcmp(argv[2], "fps")==0) { + pjmedia_vid_codec_param cp; + pj_str_t cid; + int M, N; + cid = pj_str(argv[3]); + M = atoi(argv[4]); + N = atoi(argv[5]); + status = pjsua_vid_codec_get_param(&cid, &cp); + if (status == PJ_SUCCESS) { + cp.enc_fmt.det.vid.fps.num = M; + cp.enc_fmt.det.vid.fps.denum = N; + status = pjsua_vid_codec_set_param(&cid, &cp); + } + if (status != PJ_SUCCESS) + PJ_PERROR(1,(THIS_FILE, status, "Set codec framerate error")); + } else if (argc==6 && strcmp(argv[2], "bw")==0) { + pjmedia_vid_codec_param cp; + pj_str_t cid; + int M, N; + cid = pj_str(argv[3]); + M = atoi(argv[4]); + N = atoi(argv[5]); + status = pjsua_vid_codec_get_param(&cid, &cp); + if (status == PJ_SUCCESS) { + cp.enc_fmt.det.vid.avg_bps = M * 1000; + cp.enc_fmt.det.vid.max_bps = N * 1000; + status = pjsua_vid_codec_set_param(&cid, &cp); + } + if (status != PJ_SUCCESS) + PJ_PERROR(1,(THIS_FILE, status, "Set codec bitrate error")); + } else if (argc==6 && strcmp(argv[2], "size")==0) { + pjmedia_vid_codec_param cp; + pj_str_t cid; + int M, N; + cid = pj_str(argv[3]); + M = atoi(argv[4]); + N = atoi(argv[5]); + status = pjsua_vid_codec_get_param(&cid, &cp); + if (status == PJ_SUCCESS) { + cp.enc_fmt.det.vid.size.w = M; + cp.enc_fmt.det.vid.size.h = N; + status = pjsua_vid_codec_set_param(&cid, &cp); + } + if (status != PJ_SUCCESS) + PJ_PERROR(1,(THIS_FILE, status, "Set codec size error")); + } else + goto on_error; + } else + goto on_error; + + return; + +on_error: + PJ_LOG(1,(THIS_FILE, "Invalid command, use 'vid help'")); +} + +#endif /* PJSUA_HAS_VIDEO */ + +/** UI Command **/ +static void ui_make_new_call() +{ + char buf[128]; + pjsua_msg_data msg_data; + input_result result; + pj_str_t tmp; + + printf("(You currently have %d calls)\n", pjsua_call_get_count()); + + ui_input_url("Make call", buf, sizeof(buf), &result); + if (result.nb_result != PJSUA_APP_NO_NB) { + + if (result.nb_result == -1 || result.nb_result == 0) { + puts("You can't do that with make call!"); + return; + } else { + pjsua_buddy_info binfo; + pjsua_buddy_get_info(result.nb_result-1, &binfo); + tmp.ptr = buf; + pj_strncpy(&tmp, &binfo.uri, sizeof(buf)); + } + + } else if (result.uri_result) { + tmp = pj_str(result.uri_result); + } else { + tmp.slen = 0; + } + + pjsua_msg_data_init(&msg_data); + TEST_MULTIPART(&msg_data); + pjsua_call_make_call(current_acc, &tmp, &call_opt, NULL, + &msg_data, ¤t_call); +} + +static void ui_make_multi_call() +{ + char menuin[32]; + int count; + char buf[128]; + input_result result; + pj_str_t tmp; + int i; + + printf("(You currently have %d calls)\n", pjsua_call_get_count()); + + if (!simple_input("Number of calls", menuin, sizeof(menuin))) + return; + + count = my_atoi(menuin); + if (count < 1) + return; + + ui_input_url("Make call", buf, sizeof(buf), &result); + if (result.nb_result != PJSUA_APP_NO_NB) { + pjsua_buddy_info binfo; + if (result.nb_result == -1 || result.nb_result == 0) { + puts("You can't do that with make call!"); + return; + } + pjsua_buddy_get_info(result.nb_result-1, &binfo); + tmp.ptr = buf; + pj_strncpy(&tmp, &binfo.uri, sizeof(buf)); + } else { + tmp = pj_str(result.uri_result); + } + + for (i=0; i= PJSIP_INV_STATE_CONNECTING) + { + puts("No pending incoming call"); + fflush(stdout); + return; + + } else { + int st_code; + char contact[120]; + pj_str_t hname = { "Contact", 7 }; + pj_str_t hvalue; + pjsip_generic_string_hdr hcontact; + + if (!simple_input("Answer with code (100-699)", buf, sizeof(buf))) + return; + + st_code = my_atoi(buf); + if (st_code < 100) + return; + + pjsua_msg_data_init(&msg_data); + + if (st_code/100 == 3) { + if (!simple_input("Enter URL to be put in Contact", + contact, sizeof(contact))) + return; + hvalue = pj_str(contact); + pjsip_generic_string_hdr_init2(&hcontact, &hname, &hvalue); + + pj_list_push_back(&msg_data.hdr_list, &hcontact); + } + + /* + * Must check again! + * Call may have been disconnected while we're waiting for + * keyboard input. + */ + if (current_call == -1) { + puts("Call has been disconnected"); + fflush(stdout); + return; + } + + pjsua_call_answer2(current_call, &call_opt, st_code, NULL, &msg_data); + } +} + +static void ui_hangup_call(char menuin[]) +{ + if (current_call == -1) { + puts("No current call"); + fflush(stdout); + return; + + } else if (menuin[1] == 'a') { + /* Hangup all calls */ + pjsua_call_hangup_all(); + } else { + /* Hangup current calls */ + pjsua_call_hangup(current_call, 0, NULL, NULL); + } +} + +static void ui_cycle_dialog(char menuin[]) +{ + if (menuin[0] == ']') { + find_next_call(); + + } else { + find_prev_call(); + } + + if (current_call != -1) { + pjsua_call_info call_info; + + pjsua_call_get_info(current_call, &call_info); + PJ_LOG(3,(THIS_FILE,"Current dialog: %.*s", + (int)call_info.remote_info.slen, + call_info.remote_info.ptr)); + + } else { + PJ_LOG(3,(THIS_FILE,"No current dialog")); + } +} + +static void ui_cycle_account() +{ + int i; + char buf[128]; + + if (!simple_input("Enter account ID to select", buf, sizeof(buf))) + return; + + i = my_atoi(buf); + if (pjsua_acc_is_valid(i)) { + pjsua_acc_set_default(i); + PJ_LOG(3,(THIS_FILE, "Current account changed to %d", i)); + } else { + PJ_LOG(3,(THIS_FILE, "Invalid account id %d", i)); + } +} + +static void ui_add_buddy() +{ + char buf[128]; + pjsua_buddy_config buddy_cfg; + pjsua_buddy_id buddy_id; + pj_status_t status; + + if (!simple_input("Enter buddy's URI:", buf, sizeof(buf))) + return; + + if (pjsua_verify_url(buf) != PJ_SUCCESS) { + printf("Invalid URI '%s'\n", buf); + return; + } + + pj_bzero(&buddy_cfg, sizeof(pjsua_buddy_config)); + + buddy_cfg.uri = pj_str(buf); + buddy_cfg.subscribe = PJ_TRUE; + + status = pjsua_buddy_add(&buddy_cfg, &buddy_id); + if (status == PJ_SUCCESS) { + printf("New buddy '%s' added at index %d\n", + buf, buddy_id+1); + } +} + +static void ui_add_account(pjsua_transport_config *rtp_cfg) +{ + char id[80], registrar[80], realm[80], uname[80], passwd[30]; + pjsua_acc_config acc_cfg; + pj_status_t status; + + if (!simple_input("Your SIP URL:", id, sizeof(id))) + return; + if (!simple_input("URL of the registrar:", registrar, sizeof(registrar))) + return; + if (!simple_input("Auth Realm:", realm, sizeof(realm))) + return; + if (!simple_input("Auth Username:", uname, sizeof(uname))) + return; + if (!simple_input("Auth Password:", passwd, sizeof(passwd))) + return; + + pjsua_acc_config_default(&acc_cfg); + acc_cfg.id = pj_str(id); + acc_cfg.reg_uri = pj_str(registrar); + acc_cfg.cred_count = 1; + acc_cfg.cred_info[0].scheme = pj_str("Digest"); + acc_cfg.cred_info[0].realm = pj_str(realm); + acc_cfg.cred_info[0].username = pj_str(uname); + acc_cfg.cred_info[0].data_type = 0; + acc_cfg.cred_info[0].data = pj_str(passwd); + + acc_cfg.rtp_cfg = *rtp_cfg; + app_config_init_video(&acc_cfg); + + status = pjsua_acc_add(&acc_cfg, PJ_TRUE, NULL); + if (status != PJ_SUCCESS) { + pjsua_perror(THIS_FILE, "Error adding new account", status); + } +} + +static void ui_delete_buddy() +{ + char buf[128]; + int i; + + if (!simple_input("Enter buddy ID to delete", buf, sizeof(buf))) + return; + + i = my_atoi(buf) - 1; + + if (!pjsua_buddy_is_valid(i)) { + printf("Invalid buddy id %d\n", i); + } else { + pjsua_buddy_del(i); + printf("Buddy %d deleted\n", i); + } +} + +static void ui_delete_account() +{ + char buf[128]; + int i; + + if (!simple_input("Enter account ID to delete", buf, sizeof(buf))) + return; + + i = my_atoi(buf); + + if (!pjsua_acc_is_valid(i)) { + printf("Invalid account id %d\n", i); + } else { + pjsua_acc_del(i); + printf("Account %d deleted\n", i); + } +} + +static void ui_call_hold() +{ + if (current_call != -1) { + pjsua_call_set_hold(current_call, NULL); + } else { + PJ_LOG(3,(THIS_FILE, "No current call")); + } +} + +static void ui_call_reinvite() +{ + call_opt.flag |= PJSUA_CALL_UNHOLD; + pjsua_call_reinvite2(current_call, &call_opt, NULL); +} + +static void ui_send_update() +{ + if (current_call != -1) { + pjsua_call_update2(current_call, &call_opt, NULL); + } else { + PJ_LOG(3,(THIS_FILE, "No current call")); + } +} + +/* + * Change codec priorities. + */ +static void ui_manage_codec_prio() +{ + pjsua_codec_info c[32]; + unsigned i, count = PJ_ARRAY_SIZE(c); + char input[32]; + char *codec, *prio; + pj_str_t id; + int new_prio; + pj_status_t status; + + printf("List of audio codecs:\n"); + pjsua_enum_codecs(c, &count); + for (i=0; i PJMEDIA_CODEC_PRIO_HIGHEST) + new_prio = PJMEDIA_CODEC_PRIO_HIGHEST; + + status = pjsua_codec_set_priority(pj_cstr(&id, codec), + (pj_uint8_t)new_prio); +#if PJSUA_HAS_VIDEO + if (status != PJ_SUCCESS) { + status = pjsua_vid_codec_set_priority(pj_cstr(&id, codec), + (pj_uint8_t)new_prio); + } +#endif + if (status != PJ_SUCCESS) + pjsua_perror(THIS_FILE, "Error setting codec priority", status); +} + +static void ui_call_transfer(pj_bool_t no_refersub) +{ + if (current_call == -1) { + PJ_LOG(3,(THIS_FILE, "No current call")); + } else { + int call = current_call; + char buf[128]; + pjsip_generic_string_hdr refer_sub; + pj_str_t STR_REFER_SUB = { "Refer-Sub", 9 }; + pj_str_t STR_FALSE = { "false", 5 }; + pjsua_call_info ci; + input_result result; + pjsua_msg_data msg_data; + + pjsua_call_get_info(current_call, &ci); + printf("Transfering current call [%d] %.*s\n", current_call, + (int)ci.remote_info.slen, ci.remote_info.ptr); + + ui_input_url("Transfer to URL", buf, sizeof(buf), &result); + + /* Check if call is still there. */ + + if (call != current_call) { + puts("Call has been disconnected"); + return; + } + + pjsua_msg_data_init(&msg_data); + if (no_refersub) { + /* Add Refer-Sub: false in outgoing REFER request */ + pjsip_generic_string_hdr_init2(&refer_sub, &STR_REFER_SUB, + &STR_FALSE); + pj_list_push_back(&msg_data.hdr_list, &refer_sub); + } + if (result.nb_result != PJSUA_APP_NO_NB) { + if (result.nb_result == -1 || result.nb_result == 0) + puts("You can't do that with transfer call!"); + else { + pjsua_buddy_info binfo; + pjsua_buddy_get_info(result.nb_result-1, &binfo); + pjsua_call_xfer( current_call, &binfo.uri, &msg_data); + } + + } else if (result.uri_result) { + pj_str_t tmp; + tmp = pj_str(result.uri_result); + pjsua_call_xfer( current_call, &tmp, &msg_data); + } + } +} + +static void ui_call_transfer_replaces(pj_bool_t no_refersub) +{ + if (current_call == -1) { + PJ_LOG(3,(THIS_FILE, "No current call")); + } else { + int call = current_call; + int dst_call; + pjsip_generic_string_hdr refer_sub; + pj_str_t STR_REFER_SUB = { "Refer-Sub", 9 }; + pj_str_t STR_FALSE = { "false", 5 }; + pjsua_call_id ids[PJSUA_MAX_CALLS]; + pjsua_call_info ci; + pjsua_msg_data msg_data; + char buf[128]; + unsigned i, count; + + count = PJ_ARRAY_SIZE(ids); + pjsua_enum_calls(ids, &count); + + if (count <= 1) { + puts("There are no other calls"); + return; + } + + pjsua_call_get_info(current_call, &ci); + printf("Transfer call [%d] %.*s to one of the following:\n", + current_call, + (int)ci.remote_info.slen, ci.remote_info.ptr); + + for (i=0; i= PJSUA_MAX_CALLS) { + puts("Invalid destination call number"); + return; + } + if (!pjsua_call_is_active(dst_call)) { + puts("Invalid destination call number"); + return; + } + + pjsua_msg_data_init(&msg_data); + if (no_refersub) { + /* Add Refer-Sub: false in outgoing REFER request */ + pjsip_generic_string_hdr_init2(&refer_sub, &STR_REFER_SUB, + &STR_FALSE); + pj_list_push_back(&msg_data.hdr_list, &refer_sub); + } + + pjsua_call_xfer_replaces(call, dst_call, + PJSUA_XFER_NO_REQUIRE_REPLACES, + &msg_data); + } +} + +static void ui_send_dtmf_2833() +{ + if (current_call == -1) { + PJ_LOG(3,(THIS_FILE, "No current call")); + } else if (!pjsua_call_has_media(current_call)) { + PJ_LOG(3,(THIS_FILE, "Media is not established yet!")); + } else { + pj_str_t digits; + int call = current_call; + pj_status_t status; + char buf[128]; + + if (!simple_input("DTMF strings to send (0-9*#A-B)", buf, + sizeof(buf))) + { + return; + } + + if (call != current_call) { + puts("Call has been disconnected"); + return; + } + + digits = pj_str(buf); + status = pjsua_call_dial_dtmf(current_call, &digits); + if (status != PJ_SUCCESS) { + pjsua_perror(THIS_FILE, "Unable to send DTMF", status); + } else { + puts("DTMF digits enqueued for transmission"); + } + } +} + +static void ui_send_dtmf_info() +{ + if (current_call == -1) { + PJ_LOG(3,(THIS_FILE, "No current call")); + } else { + const pj_str_t SIP_INFO = pj_str("INFO"); + pj_str_t digits; + int call = current_call; + int i; + pj_status_t status; + char buf[128]; + + if (!simple_input("DTMF strings to send (0-9*#A-B)", buf, + sizeof(buf))) + { + return; + } + + if (call != current_call) { + puts("Call has been disconnected"); + return; + } + + digits = pj_str(buf); + for (i=0; i= OPT_MAX) { + puts("Invalid selection"); + return; + } + + pj_bzero(&elem, sizeof(elem)); + elem.type = PJRPID_ELEMENT_TYPE_PERSON; + + online_status = PJ_TRUE; + + switch (choice) { + case AVAILABLE: + break; + case BUSY: + elem.activity = PJRPID_ACTIVITY_BUSY; + elem.note = pj_str("Busy"); + break; + case OTP: + elem.activity = PJRPID_ACTIVITY_BUSY; + elem.note = pj_str("On the phone"); + break; + case IDLE: + elem.activity = PJRPID_ACTIVITY_UNKNOWN; + elem.note = pj_str("Idle"); + break; + case AWAY: + elem.activity = PJRPID_ACTIVITY_AWAY; + elem.note = pj_str("Away"); + break; + case BRB: + elem.activity = PJRPID_ACTIVITY_UNKNOWN; + elem.note = pj_str("Be right back"); + break; + case OFFLINE: + online_status = PJ_FALSE; + break; + } + + pjsua_acc_set_online_status2(current_acc, online_status, &elem); +} + +/* + * List the ports in conference bridge + */ +static void ui_conf_list() +{ + unsigned i, count; + pjsua_conf_port_id id[PJSUA_MAX_CALLS]; + + printf("Conference ports:\n"); + + count = PJ_ARRAY_SIZE(id); + pjsua_enum_conf_ports(id, &count); + + for (i=0; i>> "); + fflush(stdout); + + if (fgets(menuin, sizeof(menuin), stdin) == NULL) { + /* + * Be friendly to users who redirect commands into + * program, when file ends, resume with kbd. + * If exit is desired end script with q for quit + */ + /* Reopen stdin/stdout/stderr to /dev/console */ +#if defined(PJ_WIN32) && PJ_WIN32!=0 && \ + (!defined(PJ_WIN32_WINCE) || PJ_WIN32_WINCE==0) + if (freopen ("CONIN$", "r", stdin) == NULL) { +#else + if (1) { +#endif + puts("Cannot switch back to console from file redirection"); + menuin[0] = 'q'; + menuin[1] = '\0'; + } else { + puts("Switched back to console from file redirection"); + continue; + } + } + + if (cmd_echo) { + printf("%s", menuin); + } + + /* Update call setting */ + pjsua_call_setting_default(&call_opt); + call_opt.aud_cnt = app_config.aud_cnt; + call_opt.vid_cnt = app_config.vid.vid_cnt; + + switch (menuin[0]) { + + case 'm': + /* Make call! : */ + ui_make_new_call(); + break; + + case 'M': + /* Make multiple calls! : */ + ui_make_multi_call(); + break; + + case 'n': + ui_detect_nat_type(); + break; + + case 'i': + /* Send instant messaeg */ + ui_send_instant_message(); + break; + + case 'a': + ui_answer_call(); + break; + + case 'h': + ui_hangup_call(menuin); + break; + + case ']': + case '[': + /* + * Cycle next/prev dialog. + */ + ui_cycle_dialog(menuin); + break; + + case '>': + case '<': + ui_cycle_account(); + break; + + case '+': + if (menuin[1] == 'b') { + ui_add_buddy(); + } else if (menuin[1] == 'a') { + ui_add_account(&app_config.rtp_cfg); + } else { + printf("Invalid input %s\n", menuin); + } + break; + + case '-': + if (menuin[1] == 'b') { + ui_delete_buddy(); + } else if (menuin[1] == 'a') { + ui_delete_account(); + } else { + printf("Invalid input %s\n", menuin); + } + break; + + case 'H': + /* + * Hold call. + */ + ui_call_hold(); + break; + + case 'v': +#if PJSUA_HAS_VIDEO + if (menuin[1]=='i' && menuin[2]=='d' && menuin[3]==' ') { + vid_handle_menu(menuin); + } else +#endif + if (current_call != -1) { + /* + * re-INVITE + */ + ui_call_reinvite(); + } else { + PJ_LOG(3,(THIS_FILE, "No current call")); + } + break; + + case 'U': + /* + * Send UPDATE + */ + ui_send_update(); + break; + + case 'C': + if (menuin[1] == 'p') { + ui_manage_codec_prio(); + } + break; + + case 'x': + /* + * Transfer call. + */ + ui_call_transfer(app_config.no_refersub); + break; + + case 'X': + /* + * Transfer call with replaces. + */ + ui_call_transfer_replaces(app_config.no_refersub); + break; + + case '#': + /* + * Send DTMF strings. + */ + ui_send_dtmf_2833(); + break; + + case '*': + /* Send DTMF with INFO */ + ui_send_dtmf_info(); + break; + + case 'S': + /* + * Send arbitrary request + */ + ui_send_arbitrary_request(); + break; + + case 'e': + ui_echo(menuin); + break; + + case 's': + ui_sleep(menuin); + break; + /* Continue below */ + + case 'u': + /* + * Subscribe/unsubscribe presence. + */ + ui_subscribe(menuin); + break; + + case 'r': + ui_register(menuin); + break; + + case 't': + ui_toggle_state(); + break; + + case 'T': + ui_change_online_status(); + break; + + case 'c': + switch (menuin[1]) { + case 'l': + ui_conf_list(); + break; + case 'c': + case 'd': + ui_conf_connect(menuin); + break; + } + break; + + case 'V': + /* Adjust audio volume */ + ui_adjust_volume(); + break; + + case 'd': + if (menuin[1] == 'c') { + ui_dump_configuration(); + } else if (menuin[1] == 'q') { + ui_dump_call_quality(); + } else { + ui_app_dump(menuin[1]=='d'); + } + break; + + case 'f': + if (simple_input("Enter output filename", buf, sizeof(buf))) { + ui_write_settings(); + } + break; + + case 'L': /* Restart */ + case 'q': + legacy_on_stopped(menuin[0]=='L'); + goto on_exit; + + case 'R': + ui_call_redirect(menuin); + break; + + default: + if (menuin[0] != '\n' && menuin[0] != '\r') { + printf("Invalid input %s", menuin); + } + keystroke_help(); + break; + } + } + +on_exit: + ; +} diff --git a/pjsip-apps/src/pjsua/pjsua_cli.c b/pjsip-apps/src/pjsua/pjsua_cli.c deleted file mode 100644 index 1a384143..00000000 --- a/pjsip-apps/src/pjsua/pjsua_cli.c +++ /dev/null @@ -1,3094 +0,0 @@ -/* $Id$ */ -/* - * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) - * Copyright (C) 2003-2008 Benny Prijono - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#include "pjsua_common.h" - -#define THIS_FILE "pjsua_cli.c" - -#define CHECK_PJSUA_RUNNING() if (pjsua_get_state()!=PJSUA_STATE_RUNNING) \ - return PJ_EINVALIDOP - -/* CLI command id */ -/* level 1 command */ -#define CMD_CALL 100 -#define CMD_PRESENCE 200 -#define CMD_ACCOUNT 300 -#define CMD_MEDIA 400 -#define CMD_CONFIG 500 -#define CMD_VIDEO 600 -#define CMD_SLEEP 700 -#define CMD_ECHO 800 -#define CMD_NETWORK 900 -#define CMD_QUIT 110 -#define CMD_RESTART 120 - -/* call level 2 command */ -#define CMD_CALL_NEW ((CMD_CALL*10)+1) -#define CMD_CALL_MULTI ((CMD_CALL*10)+2) -#define CMD_CALL_ANSWER ((CMD_CALL*10)+3) -#define CMD_CALL_HANGUP ((CMD_CALL*10)+4) -#define CMD_CALL_HANGUP_ALL ((CMD_CALL*10)+5) -#define CMD_CALL_HOLD ((CMD_CALL*10)+6) -#define CMD_CALL_REINVITE ((CMD_CALL*10)+7) -#define CMD_CALL_UPDATE ((CMD_CALL*10)+8) -#define CMD_CALL_NEXT ((CMD_CALL*10)+9) -#define CMD_CALL_PREVIOUS ((CMD_CALL*10)+10) -#define CMD_CALL_TRANSFER ((CMD_CALL*10)+11) -#define CMD_CALL_TRANSFER_REPLACE ((CMD_CALL*10)+12) -#define CMD_CALL_REDIRECT ((CMD_CALL*10)+13) -#define CMD_CALL_D2833 ((CMD_CALL*10)+14) -#define CMD_CALL_INFO ((CMD_CALL*10)+15) -#define CMD_CALL_DUMP_Q ((CMD_CALL*10)+16) -#define CMD_CALL_SEND_ARB ((CMD_CALL*10)+17) -#define CMD_CALL_LIST ((CMD_CALL*10)+18) - -/* im & presence level 2 command */ -#define CMD_PRESENCE_ADD_BUDDY ((CMD_PRESENCE*10)+1) -#define CMD_PRESENCE_DEL_BUDDY ((CMD_PRESENCE*10)+2) -#define CMD_PRESENCE_SEND_IM ((CMD_PRESENCE*10)+3) -#define CMD_PRESENCE_SUB ((CMD_PRESENCE*10)+4) -#define CMD_PRESENCE_UNSUB ((CMD_PRESENCE*10)+5) -#define CMD_PRESENCE_TOG_STATE ((CMD_PRESENCE*10)+6) -#define CMD_PRESENCE_TEXT ((CMD_PRESENCE*10)+7) -#define CMD_PRESENCE_LIST ((CMD_PRESENCE*10)+8) - -/* account level 2 command */ -#define CMD_ACCOUNT_ADD ((CMD_ACCOUNT*10)+1) -#define CMD_ACCOUNT_DEL ((CMD_ACCOUNT*10)+2) -#define CMD_ACCOUNT_MOD ((CMD_ACCOUNT*10)+3) -#define CMD_ACCOUNT_REG ((CMD_ACCOUNT*10)+4) -#define CMD_ACCOUNT_UNREG ((CMD_ACCOUNT*10)+5) -#define CMD_ACCOUNT_NEXT ((CMD_ACCOUNT*10)+6) -#define CMD_ACCOUNT_PREV ((CMD_ACCOUNT*10)+7) -#define CMD_ACCOUNT_SHOW ((CMD_ACCOUNT*10)+8) - -/* conference & media level 2 command */ -#define CMD_MEDIA_LIST ((CMD_MEDIA*10)+1) -#define CMD_MEDIA_CONF_CONNECT ((CMD_MEDIA*10)+2) -#define CMD_MEDIA_CONF_DISCONNECT ((CMD_MEDIA*10)+3) -#define CMD_MEDIA_ADJUST_VOL ((CMD_MEDIA*10)+4) -#define CMD_MEDIA_CODEC_PRIO ((CMD_MEDIA*10)+5) - -/* status & config level 2 command */ -#define CMD_CONFIG_DUMP_STAT ((CMD_CONFIG*10)+1) -#define CMD_CONFIG_DUMP_DETAIL ((CMD_CONFIG*10)+2) -#define CMD_CONFIG_DUMP_CONF ((CMD_CONFIG*10)+3) -#define CMD_CONFIG_WRITE_SETTING ((CMD_CONFIG*10)+4) - -/* video level 2 command */ -#define CMD_VIDEO_ENABLE ((CMD_VIDEO*10)+1) -#define CMD_VIDEO_DISABLE ((CMD_VIDEO*10)+2) -#define CMD_VIDEO_ACC ((CMD_VIDEO*10)+3) -#define CMD_VIDEO_CALL ((CMD_VIDEO*10)+4) -#define CMD_VIDEO_DEVICE ((CMD_VIDEO*10)+5) -#define CMD_VIDEO_CODEC ((CMD_VIDEO*10)+6) -#define CMD_VIDEO_WIN ((CMD_VIDEO*10)+7) - -/* video level 3 command */ -#define CMD_VIDEO_ACC_SHOW ((CMD_VIDEO_ACC*10)+1) -#define CMD_VIDEO_ACC_AUTORX ((CMD_VIDEO_ACC*10)+2) -#define CMD_VIDEO_ACC_AUTOTX ((CMD_VIDEO_ACC*10)+3) -#define CMD_VIDEO_ACC_CAP_ID ((CMD_VIDEO_ACC*10)+4) -#define CMD_VIDEO_ACC_REN_ID ((CMD_VIDEO_ACC*10)+5) -#define CMD_VIDEO_CALL_RX ((CMD_VIDEO_CALL*10)+1) -#define CMD_VIDEO_CALL_TX ((CMD_VIDEO_CALL*10)+2) -#define CMD_VIDEO_CALL_ADD ((CMD_VIDEO_CALL*10)+3) -#define CMD_VIDEO_CALL_ENABLE ((CMD_VIDEO_CALL*10)+4) -#define CMD_VIDEO_CALL_DISABLE ((CMD_VIDEO_CALL*10)+5) -#define CMD_VIDEO_CALL_CAP ((CMD_VIDEO_CALL*10)+6) -#define CMD_VIDEO_DEVICE_LIST ((CMD_VIDEO_DEVICE*10)+1) -#define CMD_VIDEO_DEVICE_REFRESH ((CMD_VIDEO_DEVICE*10)+2) -#define CMD_VIDEO_DEVICE_PREVIEW ((CMD_VIDEO_DEVICE*10)+3) -#define CMD_VIDEO_CODEC_LIST ((CMD_VIDEO_CODEC*10)+1) -#define CMD_VIDEO_CODEC_PRIO ((CMD_VIDEO_CODEC*10)+2) -#define CMD_VIDEO_CODEC_FPS ((CMD_VIDEO_CODEC*10)+3) -#define CMD_VIDEO_CODEC_BITRATE ((CMD_VIDEO_CODEC*10)+4) -#define CMD_VIDEO_CODEC_SIZE ((CMD_VIDEO_CODEC*10)+5) -#define CMD_VIDEO_WIN_LIST ((CMD_VIDEO_WIN*10)+1) -#define CMD_VIDEO_WIN_ARRANGE ((CMD_VIDEO_WIN*10)+2) -#define CMD_VIDEO_WIN_SHOW ((CMD_VIDEO_WIN*10)+3) -#define CMD_VIDEO_WIN_HIDE ((CMD_VIDEO_WIN*10)+4) -#define CMD_VIDEO_WIN_MOVE ((CMD_VIDEO_WIN*10)+5) -#define CMD_VIDEO_WIN_RESIZE ((CMD_VIDEO_WIN*10)+6) - -/* dynamic choice argument list */ -#define DYN_CHOICE_START 9900 -#define DYN_CHOICE_BUDDY_ID (DYN_CHOICE_START)+1 -#define DYN_CHOICE_ACCOUNT_ID (DYN_CHOICE_START)+2 -#define DYN_CHOICE_MEDIA_PORT (DYN_CHOICE_START)+3 -#define DYN_CHOICE_AUDIO_CODEC_ID (DYN_CHOICE_START)+4 -#define DYN_CHOICE_CAP_DEV_ID (DYN_CHOICE_START)+5 -#define DYN_CHOICE_REN_DEV_ID (DYN_CHOICE_START)+6 -#define DYN_CHOICE_VID_DEV_ID (DYN_CHOICE_START)+7 -#define DYN_CHOICE_STREAM_ID (DYN_CHOICE_START)+8 -#define DYN_CHOICE_VIDEO_CODEC_ID (DYN_CHOICE_START)+9 -#define DYN_CHOICE_WIN_ID (DYN_CHOICE_START)+10 -#define DYN_CHOICE_CALL_ID (DYN_CHOICE_START)+11 -#define DYN_CHOICE_ADDED_BUDDY_ID (DYN_CHOICE_START)+12 - -static pj_bool_t pj_inited = PJ_FALSE; -static pj_caching_pool cli_cp; -static pj_bool_t cli_cp_inited = PJ_FALSE; -static pj_cli_t *cli = NULL; -static pj_cli_sess *cli_cons_sess = NULL; -static pj_cli_front_end *telnet_front_end = NULL; - -/** Forward declaration **/ -pj_status_t cli_setup_command(pj_cli_t *cli); -void cli_destroy(); - -PJ_DEF(void) cli_get_info(char *info, pj_size_t size) -{ - pj_cli_telnet_info telnet_info; - pj_cli_telnet_get_info(telnet_front_end, &telnet_info); - - pj_ansi_snprintf(info, size, "Telnet to %.*s:%d", - telnet_info.ip_address.slen, telnet_info.ip_address.ptr, - telnet_info.port); -} - -static void cli_log_writer(int level, const char *buffer, int len) -{ - if (cli) - pj_cli_write_log(cli, level, buffer, len); -} - -pj_status_t cli_init() -{ - pj_status_t status; - - pj_cli_cfg *cfg = &app_config.cli_cfg.cfg; - - /* Init PJLIB */ - status = pj_init(); - if (status != PJ_SUCCESS) - goto on_error; - - pj_inited = PJ_TRUE; - - /* Init PJLIB-UTIL */ - status = pjlib_util_init(); - if (status != PJ_SUCCESS) - goto on_error; - - /* Init CLI */ - pj_caching_pool_init(&cli_cp, NULL, 0); - cli_cp_inited = PJ_TRUE; - cfg->pf = &cli_cp.factory; - cfg->name = pj_str("pjsua_cli"); - cfg->title = pj_str("Pjsua CLI Application"); - status = pj_cli_create(cfg, &cli); - if (status != PJ_SUCCESS) - goto on_error; - - status = cli_setup_command(cli); - if (status != PJ_SUCCESS) - goto on_error; - - /* Init telnet frontend */ - if (app_config.cli_cfg.cli_fe & CLI_FE_TELNET) { - pj_cli_telnet_cfg *fe_cfg = &app_config.cli_cfg.telnet_cfg; - pj_pool_t *pool; - - pool = pj_pool_create(cfg->pf, "cli_cp", 128, 128, NULL); - pj_assert(pool); - - status = pj_cli_telnet_create(cli, fe_cfg, &telnet_front_end); - if (status != PJ_SUCCESS) - goto on_error; - } - - /* Init console frontend */ - if (app_config.cli_cfg.cli_fe & CLI_FE_CONSOLE) { - pj_cli_console_cfg *fe_cfg = &app_config.cli_cfg.console_cfg; - - fe_cfg->quit_command = pj_str("shutdown"); - status = pj_cli_console_create(cli, fe_cfg, - &cli_cons_sess, NULL); - if (status != PJ_SUCCESS) - goto on_error; - } - - return PJ_SUCCESS; - -on_error: - cli_destroy(); - return status; -} - -pj_status_t cli_main(pj_bool_t wait_telnet_cli) -{ - char cmdline[PJ_CLI_MAX_CMDBUF]; - - /* ReInit logging */ - app_config.log_cfg.cb = &cli_log_writer; - pjsua_reconfigure_logging(&app_config.log_cfg); - - if (app_config.cli_cfg.cli_fe & CLI_FE_CONSOLE) { - /* Main loop for CLI FE console */ - while (!pj_cli_is_quitting(cli)) { - pj_cli_console_process(cli_cons_sess, &cmdline[0], sizeof(cmdline)); - } - } else if (wait_telnet_cli) { - /* Just wait for CLI quit */ - while (!pj_cli_is_quitting(cli)) { - pj_thread_sleep(200); - } - } - - return PJ_SUCCESS; -} - -void cli_destroy() -{ - /* Destroy CLI, it will automatically destroy any FEs */ - if (cli) { - pj_cli_destroy(cli); - cli = NULL; - } - - /* Destroy CLI caching pool factory */ - if (cli_cp_inited) { - pj_caching_pool_destroy(&cli_cp); - cli_cp_inited = PJ_FALSE; - } - - /* Shutdown PJLIB */ - if (pj_inited) { - pj_shutdown(); - pj_inited = PJ_FALSE; - } -} - -/* Get input URL */ -static void get_input_url(char *buf, - int len, - pj_cli_cmd_val *cval, - struct input_result *result) -{ - static const pj_str_t err_invalid_input = {"Invalid input\n", 15}; - result->nb_result = PJSUA_APP_NO_NB; - result->uri_result = NULL; - - len = strlen(buf); - - /* Left trim */ - while (pj_isspace(*buf)) { - ++buf; - --len; - } - - /* Remove trailing newlines */ - while (len && (buf[len-1] == '\r' || buf[len-1] == '\n')) - buf[--len] = '\0'; - - if (len == 0 || buf[0]=='q') - return; - - if (pj_isdigit(*buf) || *buf=='-') { - - int i; - - if (*buf=='-') - i = 1; - else - i = 0; - - for (; isess, err_invalid_input.ptr, - err_invalid_input.slen); - return; - } - } - - result->nb_result = my_atoi(buf); - - if (result->nb_result >= 0 && - result->nb_result <= (int)pjsua_get_buddy_count()) - { - return; - } - if (result->nb_result == -1) - return; - - pj_cli_sess_write_msg(cval->sess, err_invalid_input.ptr, - err_invalid_input.slen); - result->nb_result = PJSUA_APP_NO_NB; - return; - - } else { - pj_status_t status; - - if ((status=pjsua_verify_url(buf)) != PJ_SUCCESS) { - pjsua_perror(THIS_FILE, "Invalid URL", status); - return; - } - - result->uri_result = buf; - } -} - -/* CLI dynamic choice handler */ -/* Get buddy id */ -static void get_buddy_id(pj_cli_dyn_choice_param *param) -{ - if (param->cnt < param->max_cnt) { - pjsua_buddy_id ids[64]; - int i = 0; - unsigned count = PJ_ARRAY_SIZE(ids); - char data_out[64]; - - pjsua_enum_buddies(ids, &count); - - if (count > 0) { - for (i=0; i<(int)count; ++i) { - pjsua_buddy_info info; - - if (pjsua_buddy_get_info(ids[i], &info) != PJ_SUCCESS) - continue; - - /* Fill buddy id */ - pj_ansi_snprintf(data_out, sizeof(data_out), "%d", ids[i]+1); - pj_strdup2(param->pool, ¶m->choice[i].value, data_out); - pj_bzero(data_out, PJ_ARRAY_SIZE(data_out)); - - /* Format & fill description */ - pj_ansi_snprintf(data_out, - sizeof(data_out), - "<%.*s> %.*s", - (int)info.status_text.slen, - info.status_text.ptr, - (int)info.uri.slen, - info.uri.ptr); - - pj_strdup2(param->pool, ¶m->choice[i].desc, data_out); - if (++param->cnt >= (param->max_cnt-1)) - break; - } - } - if (param->arg_id == DYN_CHOICE_BUDDY_ID) { - /* Add URL input option */ - pj_ansi_snprintf(data_out, sizeof(data_out), "URL"); - pj_strdup2(param->pool, ¶m->choice[i].value, data_out); - pj_ansi_snprintf(data_out, sizeof(data_out), "An URL"); - pj_strdup2(param->pool, ¶m->choice[i].desc, data_out); - ++param->cnt; - } - } -} - -static void get_account_id(pj_cli_dyn_choice_param *param) -{ - if (param->cnt < param->max_cnt) { - char buf[8]; - char buf_out[80]; - pjsua_acc_info info; - - pjsua_acc_id acc_ids[16]; - unsigned count = PJ_ARRAY_SIZE(acc_ids); - int i; - - pjsua_enum_accs(acc_ids, &count); - - for (i=0; i<(int)count; ++i) { - pj_bzero(&buf_out[0], PJ_ARRAY_SIZE(buf_out)); - - pjsua_acc_get_info(acc_ids[i], &info); - - pj_ansi_snprintf(buf_out, - sizeof(buf_out), - "%c%.*s", - (acc_ids[i]==current_acc?'*':' '), - (int)info.acc_uri.slen, - info.acc_uri.ptr); - - pj_bzero(buf, sizeof(buf)); - pj_ansi_snprintf(buf, sizeof(buf), "%d", acc_ids[i]); - pj_strdup2(param->pool, ¶m->choice[i].value, buf); - pj_strdup2(param->pool, ¶m->choice[i].desc, buf_out); - if (++param->cnt >= param->max_cnt) - break; - } - } -} - -static void get_media_port(pj_cli_dyn_choice_param *param) -{ - unsigned i, count; - pjsua_conf_port_id id[PJSUA_MAX_CONF_PORTS]; - - count = PJ_ARRAY_SIZE(id); - pjsua_enum_conf_ports(id, &count); - - for (i=0; ipool, ¶m->choice[i].value, slot_id); - - txlist[0] = '\0'; - for (j=0; jpool, ¶m->choice[i].desc, desc); - if (++param->cnt >= param->max_cnt) - break; - } -} - -static void get_audio_codec_id(pj_cli_dyn_choice_param *param) -{ - if (param->cnt < param->max_cnt) { - pjsua_codec_info c[32]; - unsigned i, count = PJ_ARRAY_SIZE(c); - char codec_id[64]; - char desc[128]; - - pjsua_enum_codecs(c, &count); - for (i=0; ipool, ¶m->choice[param->cnt].value, codec_id); - - pj_ansi_snprintf(desc, sizeof(desc), - "Audio, prio: %d%s%.*s", - c[i].priority, - c[i].desc.slen? " - ":"", - (int)c[i].desc.slen, - c[i].desc.ptr); - - pj_strdup2(param->pool, ¶m->choice[param->cnt].desc, desc); - if (++param->cnt >= param->max_cnt) - break; - } - } -} - -#if PJSUA_HAS_VIDEO -static void get_video_stream_id(pj_cli_dyn_choice_param *param) -{ - if (param->cnt < param->max_cnt) { - pjsua_call_info call_info; - - if (current_call != PJSUA_INVALID_ID) { - unsigned i; - pjsua_call_get_info(current_call, &call_info); - for (i=0; ipool, ¶m->choice[i].value, med_idx); - - switch (call_info.media[i].status) { - case PJSUA_CALL_MEDIA_NONE: - pj_strdup2(param->pool, ¶m->choice[i].desc, - "Status:None"); - break; - case PJSUA_CALL_MEDIA_ACTIVE: - pj_strdup2(param->pool, ¶m->choice[i].desc, - "Status:Active"); - break; - case PJSUA_CALL_MEDIA_LOCAL_HOLD: - pj_strdup2(param->pool, ¶m->choice[i].desc, - "Status:Local Hold"); - break; - case PJSUA_CALL_MEDIA_REMOTE_HOLD: - pj_strdup2(param->pool, ¶m->choice[i].desc, - "Status:Remote Hold"); - break; - case PJSUA_CALL_MEDIA_ERROR: - pj_strdup2(param->pool, ¶m->choice[i].desc, - "Status:Media Error"); - break; - } - if (++param->cnt >= param->max_cnt) - break; - } - } - } - } -} - -static void get_video_dev_hint(pj_cli_dyn_choice_param *param, - pjmedia_vid_dev_info *vdi, - unsigned vid_dev_id) -{ - char desc[128]; - char dev_id[8]; - pj_ansi_snprintf(dev_id, sizeof(dev_id), - "%d", vid_dev_id); - pj_ansi_snprintf(desc, sizeof(desc), "%s [%s]", - vdi->name, vdi->driver); - - pj_strdup2(param->pool, ¶m->choice[param->cnt].value, - dev_id); - pj_strdup2(param->pool, ¶m->choice[param->cnt].desc, - desc); -} - -static void get_video_dev_id(pj_cli_dyn_choice_param *param, - pj_bool_t all, - pj_bool_t capture) -{ - if (param->cnt < param->max_cnt) { - unsigned i, count; - pjmedia_vid_dev_info vdi; - pj_status_t status; - - count = pjsua_vid_dev_count(); - if (count == 0) { - return; - } - - for (i=0; icnt >= param->max_cnt) - break; - } - } - } - } -} - -static void get_video_codec_id(pj_cli_dyn_choice_param *param) -{ - if (param->cnt < param->max_cnt) { - pjsua_codec_info ci[32]; - unsigned i, count = PJ_ARRAY_SIZE(ci); - char codec_id[64]; - char desc[128]; - - pjsua_vid_enum_codecs(ci, &count); - for (i=0; ipool, ¶m->choice[param->cnt].value, codec_id); - - pj_ansi_snprintf(desc, sizeof(desc), - "Video, p[%d], f[%.2f], b[%d/%d], s[%dx%d]", - ci[i].priority, - (vfd->fps.num*1.0/vfd->fps.denum), - vfd->avg_bps/1000, vfd->max_bps/1000, - vfd->size.w, vfd->size.h); - - pj_strdup2(param->pool, ¶m->choice[param->cnt].desc, desc); - if (++param->cnt >= param->max_cnt) - break; - } - } -} - -static void get_video_window_id(pj_cli_dyn_choice_param *param) -{ - if (param->cnt < param->max_cnt) { - pjsua_vid_win_id wids[PJSUA_MAX_VID_WINS]; - unsigned i, cnt = PJ_ARRAY_SIZE(wids); - char win_id[64]; - char desc[128]; - - pjsua_vid_enum_wins(wids, &cnt); - - for (i = 0; i < cnt; ++i) { - pjsua_vid_win_info wi; - - pjsua_vid_win_get_info(wids[i], &wi); - pj_ansi_snprintf(win_id, sizeof(win_id), "%d", wids[i]); - pj_strdup2(param->pool, ¶m->choice[i].value, win_id); - - pj_ansi_snprintf(desc, sizeof(desc), - "Show:%c Pos(%d,%d) Size(%dx%d)", - (wi.show?'Y':'N'), wi.pos.x, wi.pos.y, - wi.size.w, wi.size.h); - - pj_strdup2(param->pool, ¶m->choice[i].desc, desc); - if (++param->cnt >= param->max_cnt) - break; - } - } -} - -static void get_call_id(pj_cli_dyn_choice_param *param) -{ - if (param->cnt < param->max_cnt) { - char call_id[64]; - char desc[128]; - unsigned i, count; - pjsua_call_id ids[PJSUA_MAX_CALLS]; - int call = current_call; - - count = PJ_ARRAY_SIZE(ids); - pjsua_enum_calls(ids, &count); - - if (count > 1) { - for (i=0; ipool, ¶m->choice[i].value, call_id); - pj_ansi_snprintf(desc, sizeof(desc), "%.*s [%.*s]", - (int)call_info.remote_info.slen, - call_info.remote_info.ptr, - (int)call_info.state_text.slen, - call_info.state_text.ptr); - pj_strdup2(param->pool, ¶m->choice[i].desc, desc); - if (++param->cnt >= param->max_cnt) - break; - - } - } - } -} - -#endif - -static void get_choice_value(pj_cli_dyn_choice_param *param) -{ - switch (param->arg_id) { - case DYN_CHOICE_BUDDY_ID: - case DYN_CHOICE_ADDED_BUDDY_ID: - get_buddy_id(param); - break; - case DYN_CHOICE_ACCOUNT_ID: - get_account_id(param); - break; - case DYN_CHOICE_MEDIA_PORT: - get_media_port(param); - break; - case DYN_CHOICE_AUDIO_CODEC_ID: - get_audio_codec_id(param); - break; -#if PJSUA_HAS_VIDEO - case DYN_CHOICE_CAP_DEV_ID: - case DYN_CHOICE_REN_DEV_ID: - case DYN_CHOICE_VID_DEV_ID: - get_video_dev_id(param, - (param->arg_id==DYN_CHOICE_VID_DEV_ID), - (param->arg_id==DYN_CHOICE_CAP_DEV_ID)); - break; - case DYN_CHOICE_STREAM_ID: - get_video_stream_id(param); - break; - case DYN_CHOICE_VIDEO_CODEC_ID: - get_video_codec_id(param); - break; - case DYN_CHOICE_WIN_ID: - get_video_window_id(param); - break; - case DYN_CHOICE_CALL_ID: - get_call_id(param); - break; -#endif - default: - param->cnt = 0; - break; - } -} - -/* - * CLI command handler - */ - -/* Add account */ -static pj_status_t cmd_add_account(pj_cli_cmd_val *cval) -{ - pjsua_acc_config acc_cfg; - pj_status_t status; - - pjsua_acc_config_default(&acc_cfg); - acc_cfg.id = cval->argv[1]; - acc_cfg.reg_uri = cval->argv[2]; - acc_cfg.cred_count = 1; - acc_cfg.cred_info[0].scheme = pj_str("Digest"); - acc_cfg.cred_info[0].realm = cval->argv[3]; - acc_cfg.cred_info[0].username = cval->argv[4]; - acc_cfg.cred_info[0].data_type = 0; - acc_cfg.cred_info[0].data = cval->argv[5]; - - acc_cfg.rtp_cfg = app_config.rtp_cfg; - app_config_init_video(&acc_cfg); - - status = pjsua_acc_add(&acc_cfg, PJ_TRUE, NULL); - if (status != PJ_SUCCESS) { - pjsua_perror(THIS_FILE, "Error adding new account", status); - } - - return status; -} - -/* Delete account */ -static pj_status_t cmd_del_account(pj_cli_cmd_val *cval) -{ - char out_str[64]; - unsigned str_len; - - int i = my_atoi(cval->argv[1].ptr); - - if (!pjsua_acc_is_valid(i)) { - pj_ansi_snprintf(out_str, sizeof(out_str), - "Invalid account id %d\n", i); - str_len = pj_ansi_strlen(out_str); - pj_cli_sess_write_msg(cval->sess, out_str, str_len); - } else { - pjsua_acc_del(i); - pj_ansi_snprintf(out_str, sizeof(out_str), - "Account %d deleted\n", i); - str_len = pj_ansi_strlen(out_str); - pj_cli_sess_write_msg(cval->sess, out_str, str_len); - } - return PJ_SUCCESS; -} - -/* Modify account */ -static pj_status_t cmd_mod_account(pj_cli_cmd_val *cval) -{ - PJ_UNUSED_ARG(cval); - return PJ_SUCCESS; -} - -/* Register account */ -static pj_status_t cmd_reg_account() -{ - pjsua_acc_set_registration(current_acc, PJ_TRUE); - return PJ_SUCCESS; -} - -/* Unregister account */ -static pj_status_t cmd_unreg_account() -{ - pjsua_acc_set_registration(current_acc, PJ_FALSE); - return PJ_SUCCESS; -} - -/* Select account to be used for sending outgoing request */ -static pj_status_t cmd_next_account(pj_cli_cmd_val *cval) -{ - int i = my_atoi(cval->argv[1].ptr); - if (pjsua_acc_is_valid(i)) { - pjsua_acc_set_default(i); - PJ_LOG(3,(THIS_FILE, "Current account changed to %d", i)); - } else { - PJ_LOG(3,(THIS_FILE, "Invalid account id %d", i)); - } - return PJ_SUCCESS; -} - -/* Show account list */ -static pj_status_t cmd_show_account(pj_cli_cmd_val *cval) -{ - pjsua_acc_id acc_ids[16]; - unsigned count = PJ_ARRAY_SIZE(acc_ids); - int i; - static const pj_str_t header = {"Account list:\n", 15}; - - pjsua_enum_accs(acc_ids, &count); - - pj_cli_sess_write_msg(cval->sess, header.ptr, header.slen); - for (i=0; i<(int)count; ++i) { - char acc_info[80]; - char out_str[160]; - pjsua_acc_info info; - - pjsua_acc_get_info(acc_ids[i], &info); - - if (!info.has_registration) { - pj_ansi_snprintf(acc_info, sizeof(acc_info), "%.*s", - (int)info.status_text.slen, - info.status_text.ptr); - - } else { - pj_ansi_snprintf(acc_info, sizeof(acc_info), - "%d/%.*s (expires=%d)", - info.status, - (int)info.status_text.slen, - info.status_text.ptr, - info.expires); - - } - - pj_ansi_snprintf(out_str, sizeof(out_str), - " %c[%2d] %.*s: %s\n", - (acc_ids[i]==current_acc?'*':' '), acc_ids[i], - (int)info.acc_uri.slen, info.acc_uri.ptr, - acc_info); - pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); - - pj_bzero(out_str, sizeof(out_str)); - pj_ansi_snprintf(out_str, sizeof(out_str), - " Online status: %.*s\n", - (int)info.online_status_text.slen, - info.online_status_text.ptr); - - pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); - } - - return PJ_SUCCESS; -} - -/* Account command handler */ -pj_status_t cmd_account_handler(pj_cli_cmd_val *cval) -{ - pj_status_t status = PJ_SUCCESS; - - CHECK_PJSUA_RUNNING(); - - switch(pj_cli_get_cmd_id(cval->cmd)) { - case CMD_ACCOUNT_ADD: - status = cmd_add_account(cval); - break; - case CMD_ACCOUNT_DEL: - status = cmd_del_account(cval); - break; - case CMD_ACCOUNT_MOD: - status = cmd_mod_account(cval); - break; - case CMD_ACCOUNT_REG: - status = cmd_reg_account(); - break; - case CMD_ACCOUNT_UNREG: - status = cmd_unreg_account(); - break; - case CMD_ACCOUNT_NEXT: - case CMD_ACCOUNT_PREV: - status = cmd_next_account(cval); - break; - case CMD_ACCOUNT_SHOW: - status = cmd_show_account(cval); - break; - } - return status; -} - -/* Add buddy */ -static pj_status_t cmd_add_buddy(pj_cli_cmd_val *cval) -{ - char out_str[80]; - pjsua_buddy_config buddy_cfg; - pjsua_buddy_id buddy_id; - pj_status_t status = PJ_SUCCESS; - cval->argv[1].ptr[cval->argv[1].slen] = 0; - - if (pjsua_verify_url(cval->argv[1].ptr) != PJ_SUCCESS) { - pj_ansi_snprintf(out_str, sizeof(out_str), - "Invalid URI '%s'\n", cval->argv[1].ptr); - } else { - pj_bzero(&buddy_cfg, sizeof(pjsua_buddy_config)); - - buddy_cfg.uri = pj_str(cval->argv[1].ptr); - buddy_cfg.subscribe = PJ_TRUE; - - status = pjsua_buddy_add(&buddy_cfg, &buddy_id); - if (status == PJ_SUCCESS) { - pj_ansi_snprintf(out_str, sizeof(out_str), - "New buddy '%s' added at index %d\n", - cval->argv[1].ptr, buddy_id+1); - } - } - pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); - return status; -} - -/* Delete buddy */ -static pj_status_t cmd_del_buddy(pj_cli_cmd_val *cval) -{ - int i = my_atoi(cval->argv[1].ptr) - 1; - char out_str[80]; - - if (!pjsua_buddy_is_valid(i)) { - pj_ansi_snprintf(out_str, sizeof(out_str), - "Invalid buddy id %d\n", i); - } else { - pjsua_buddy_del(i); - pj_ansi_snprintf(out_str, sizeof(out_str), - "Buddy %d deleted\n", i); - } - pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); - return PJ_SUCCESS; -} - -/* Send IM */ -static pj_status_t cmd_send_im(pj_cli_cmd_val *cval) -{ - int i = -1; - struct input_result result; - char dest[64]; - pj_str_t tmp = pj_str(dest); - - /* make compiler happy. */ - char *uri = NULL; - - pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(dest)); - - /* input destination. */ - get_input_url(tmp.ptr, tmp.slen, cval, &result); - if (result.nb_result != PJSUA_APP_NO_NB) { - - if (result.nb_result == -1) { - static const pj_str_t err_msg = {"you can't send broadcast im " - "like that!\n", 40 }; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - return PJ_SUCCESS; - } else if (result.nb_result == 0) { - i = current_call; - } else { - pjsua_buddy_info binfo; - pjsua_buddy_get_info(result.nb_result-1, &binfo); - pj_strncpy_with_null(&tmp, &binfo.uri, sizeof(dest)); - uri = tmp.ptr; - } - - } else if (result.uri_result) { - uri = result.uri_result; - } - - /* send typing indication. */ - if (i != -1) - pjsua_call_send_typing_ind(i, PJ_TRUE, NULL); - else { - pj_str_t tmp_uri = pj_str(uri); - pjsua_im_typing(current_acc, &tmp_uri, PJ_TRUE, NULL); - } - - /* send the im */ - if (i != -1) - pjsua_call_send_im(i, NULL, &cval->argv[2], NULL, NULL); - else { - pj_str_t tmp_uri = pj_str(uri); - pjsua_im_send(current_acc, &tmp_uri, NULL, &cval->argv[2], NULL, NULL); - } - return PJ_SUCCESS; -} - -/* Subscribe/unsubscribe presence */ -static pj_status_t cmd_subs_pres(pj_cli_cmd_val *cval, pj_bool_t subscribe) -{ - struct input_result result; - char dest[64] = {0}; - pj_str_t tmp = pj_str(dest); - - pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(dest)); - get_input_url(tmp.ptr, tmp.slen, cval, &result); - if (result.nb_result != PJSUA_APP_NO_NB) { - if (result.nb_result == -1) { - int i, count; - count = pjsua_get_buddy_count(); - for (i=0; isess, err_msg.ptr, err_msg.slen); - } else { - pjsua_buddy_subscribe_pres(result.nb_result-1, subscribe); - } - - } else if (result.uri_result) { - static const pj_str_t err_msg = {"Sorry, can only subscribe to " - "buddy's presence, not arbitrary " - "URL (for now)\n", 76}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - } - return PJ_SUCCESS; -} - -/* Toggle online state */ -static pj_status_t cmd_toggle_state(pj_cli_cmd_val *cval) -{ - char out_str[128]; - pjsua_acc_info acc_info; - - pjsua_acc_get_info(current_acc, &acc_info); - acc_info.online_status = !acc_info.online_status; - pjsua_acc_set_online_status(current_acc, acc_info.online_status); - pj_ansi_snprintf(out_str, sizeof(out_str), - "Setting %s online status to %s\n", - acc_info.acc_uri.ptr, - (acc_info.online_status?"online":"offline")); - pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); - return PJ_SUCCESS; -} - -/* Set presence text */ -static pj_status_t cmd_set_presence_text(pj_cli_cmd_val *cval) -{ - pjrpid_element elem; - int choice; - pj_bool_t online_status; - - enum { - AVAILABLE, BUSY, OTP, IDLE, AWAY, BRB, OFFLINE, OPT_MAX - }; - - choice = pj_strtol(&cval->argv[1]) - 1; - - pj_bzero(&elem, sizeof(elem)); - elem.type = PJRPID_ELEMENT_TYPE_PERSON; - - online_status = PJ_TRUE; - - switch (choice) { - case AVAILABLE: - break; - case BUSY: - elem.activity = PJRPID_ACTIVITY_BUSY; - elem.note = pj_str("Busy"); - break; - case OTP: - elem.activity = PJRPID_ACTIVITY_BUSY; - elem.note = pj_str("On the phone"); - break; - case IDLE: - elem.activity = PJRPID_ACTIVITY_UNKNOWN; - elem.note = pj_str("Idle"); - break; - case AWAY: - elem.activity = PJRPID_ACTIVITY_AWAY; - elem.note = pj_str("Away"); - break; - case BRB: - elem.activity = PJRPID_ACTIVITY_UNKNOWN; - elem.note = pj_str("Be right back"); - break; - case OFFLINE: - online_status = PJ_FALSE; - break; - } - pjsua_acc_set_online_status2(current_acc, online_status, &elem); - return PJ_SUCCESS; -} - -/* Show buddy list */ -static pj_status_t cmd_show_buddy(pj_cli_cmd_val *cval) -{ - pjsua_buddy_id ids[64]; - int i; - unsigned count = PJ_ARRAY_SIZE(ids); - static const pj_str_t header = {"Buddy list:\n", 13}; - char out_str[64]; - - pj_cli_sess_write_msg(cval->sess, header.ptr, header.slen); - - pjsua_enum_buddies(ids, &count); - - if (count == 0) { - pj_ansi_snprintf(out_str, sizeof(out_str), " -none-\n"); - pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); - } else { - for (i=0; i<(int)count; ++i) { - pjsua_buddy_info info; - pj_bzero(out_str, sizeof(out_str)); - - if (pjsua_buddy_get_info(ids[i], &info) != PJ_SUCCESS) - continue; - - pj_ansi_snprintf(out_str, sizeof(out_str), - " [%2d] <%.*s> %.*s\n", - ids[i]+1, - (int)info.status_text.slen, - info.status_text.ptr, - (int)info.uri.slen, - info.uri.ptr); - - pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); - } - } - return PJ_SUCCESS; -} - -/* Presence/buddy command handler */ -pj_status_t cmd_presence_handler(pj_cli_cmd_val *cval) -{ - pj_status_t status = PJ_SUCCESS; - - CHECK_PJSUA_RUNNING(); - - switch(pj_cli_get_cmd_id(cval->cmd)) { - case CMD_PRESENCE_ADD_BUDDY: - status = cmd_add_buddy(cval); - break; - case CMD_PRESENCE_DEL_BUDDY: - status = cmd_del_buddy(cval); - break; - case CMD_PRESENCE_SEND_IM: - status = cmd_send_im(cval); - break; - case CMD_PRESENCE_SUB: - case CMD_PRESENCE_UNSUB: - status = cmd_subs_pres(cval, - pj_cli_get_cmd_id(cval->cmd)==CMD_PRESENCE_SUB); - break; - case CMD_PRESENCE_TOG_STATE: - status = cmd_toggle_state(cval); - break; - case CMD_PRESENCE_TEXT: - status = cmd_set_presence_text(cval); - break; - case CMD_PRESENCE_LIST: - status = cmd_show_buddy(cval); - break; - } - - return status; -} - -/* Show conference list */ -static pj_status_t cmd_media_list(pj_cli_cmd_val *cval) -{ - unsigned i, count; - pjsua_conf_port_id id[PJSUA_MAX_CONF_PORTS]; - static const pj_str_t header = {"Conference ports:\n", 19}; - - pj_cli_sess_write_msg(cval->sess, header.ptr, header.slen); - - count = PJ_ARRAY_SIZE(id); - pjsua_enum_conf_ports(id, &count); - - for (i=0; isess, out_str, pj_ansi_strlen(out_str)); - } - return PJ_SUCCESS; -} - -/* Conference connect/disconnect */ -static pj_status_t cmd_media_connect(pj_cli_cmd_val *cval, pj_bool_t connect) -{ - pj_status_t status; - - if (connect) - status = pjsua_conf_connect(pj_strtol(&cval->argv[1]), - pj_strtol(&cval->argv[2])); - else - status = pjsua_conf_disconnect(pj_strtol(&cval->argv[1]), - pj_strtol(&cval->argv[2])); - - if (status == PJ_SUCCESS) { - static const pj_str_t success_msg = {"Success\n", 9}; - pj_cli_sess_write_msg(cval->sess, success_msg.ptr, success_msg.slen); - } else { - static const pj_str_t err_msg = {"ERROR!!\n", 9}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - } - return status; -} - -/* Adjust audio volume */ -static pj_status_t cmd_adjust_vol(pj_cli_cmd_val *cval) -{ - char buf[80]; - float orig_level; - char *err; - char level_val[16] = {0}; - pj_str_t tmp = pj_str(level_val); - - /* Adjust mic level */ - orig_level = app_config.mic_level; - pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(level_val)); - app_config.mic_level = (float)strtod(level_val, &err); - pjsua_conf_adjust_rx_level(0, app_config.mic_level); - - pj_ansi_snprintf(buf, sizeof(buf), - "Adjust mic level: [%4.1fx] -> [%4.1fx]\n", - orig_level, app_config.mic_level); - - pj_cli_sess_write_msg(cval->sess, buf, pj_ansi_strlen(buf)); - - /* Adjust speaker level */ - orig_level = app_config.speaker_level; - pj_strncpy_with_null(&tmp, &cval->argv[2], sizeof(level_val)); - app_config.speaker_level = (float)strtod(level_val, &err); - pjsua_conf_adjust_tx_level(0, app_config.speaker_level); - - pj_ansi_snprintf(buf, sizeof(buf), - "Adjust speaker level: [%4.1fx] -> [%4.1fx]\n", - orig_level, app_config.speaker_level); - - pj_cli_sess_write_msg(cval->sess, buf, pj_ansi_strlen(buf)); - - return PJ_SUCCESS; -} - -/* Set codec priority */ -static pj_status_t cmd_set_codec_prio(pj_cli_cmd_val *cval) -{ - int new_prio; - pj_status_t status; - - new_prio = pj_strtol(&cval->argv[2]); - if (new_prio < 0) - new_prio = 0; - else if (new_prio > PJMEDIA_CODEC_PRIO_HIGHEST) - new_prio = PJMEDIA_CODEC_PRIO_HIGHEST; - - status = pjsua_codec_set_priority(&cval->argv[1], - (pj_uint8_t)new_prio); -#if PJSUA_HAS_VIDEO - if (status != PJ_SUCCESS) { - status = pjsua_vid_codec_set_priority(&cval->argv[1], - (pj_uint8_t)new_prio); - } -#endif - if (status != PJ_SUCCESS) - pjsua_perror(THIS_FILE, "Error setting codec priority", status); - - return status; -} - -/* Conference/media command handler */ -pj_status_t cmd_media_handler(pj_cli_cmd_val *cval) -{ - pj_status_t status = PJ_SUCCESS; - - CHECK_PJSUA_RUNNING(); - - switch(pj_cli_get_cmd_id(cval->cmd)) { - case CMD_MEDIA_LIST: - status = cmd_media_list(cval); - break; - case CMD_MEDIA_CONF_CONNECT: - case CMD_MEDIA_CONF_DISCONNECT: - status = cmd_media_connect(cval, - pj_cli_get_cmd_id(cval->cmd)==CMD_MEDIA_CONF_CONNECT); - break; - case CMD_MEDIA_ADJUST_VOL: - status = cmd_adjust_vol(cval); - break; - case CMD_MEDIA_CODEC_PRIO: - status = cmd_set_codec_prio(cval); - break; - } - - return status; -} - -/* Dump status */ -static pj_status_t cmd_stat_dump(pj_bool_t detail) -{ - pjsua_dump(detail); - return PJ_SUCCESS; -} - -static pj_status_t cmd_show_config() -{ - char settings[2000]; - int len; - - len = write_settings(&app_config, settings, sizeof(settings)); - if (len < 1) - PJ_LOG(1,(THIS_FILE, "Error: not enough buffer")); - else - PJ_LOG(3,(THIS_FILE, - "Dumping configuration (%d bytes):\n%s\n", - len, settings)); - - return PJ_SUCCESS; -} - -static pj_status_t cmd_write_config(pj_cli_cmd_val *cval) -{ - char settings[2000]; - char buf[128] = {0}; - int len; - pj_str_t tmp = pj_str(buf); - - pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(buf)); - - len = write_settings(&app_config, settings, sizeof(settings)); - if (len < 1) - PJ_LOG(1,(THIS_FILE, "Error: not enough buffer")); - else { - pj_oshandle_t fd; - pj_status_t status; - - status = pj_file_open(app_config.pool, buf, PJ_O_WRONLY, &fd); - if (status != PJ_SUCCESS) { - pjsua_perror(THIS_FILE, "Unable to open file", status); - } else { - char out_str[256]; - pj_ssize_t size = len; - pj_file_write(fd, settings, &size); - pj_file_close(fd); - - pj_ansi_snprintf(out_str, sizeof(out_str), - "Settings successfully written to '%s'\n", buf); - - pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); - } - } - - return PJ_SUCCESS; -} - -/* Status and config command handler */ -pj_status_t cmd_config_handler(pj_cli_cmd_val *cval) -{ - pj_status_t status = PJ_SUCCESS; - - CHECK_PJSUA_RUNNING(); - - switch(pj_cli_get_cmd_id(cval->cmd)) { - case CMD_CONFIG_DUMP_STAT: - status = cmd_stat_dump(PJ_FALSE); - break; - case CMD_CONFIG_DUMP_DETAIL: - status = cmd_stat_dump(PJ_TRUE); - break; - case CMD_CONFIG_DUMP_CONF: - status = cmd_show_config(); - break; - case CMD_CONFIG_WRITE_SETTING: - status = cmd_write_config(cval); - break; - } - - return status; -} - -/* Make single call */ -static pj_status_t cmd_make_single_call(pj_cli_cmd_val *cval) -{ - struct input_result result; - char dest[64] = {0}; - char out_str[128]; - pj_str_t tmp = pj_str(dest); - - pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(dest)); - - pj_ansi_snprintf(out_str, - sizeof(out_str), - "(You currently have %d calls)\n", - pjsua_call_get_count()); - - pj_cli_sess_write_msg(cval->sess, out_str, pj_ansi_strlen(out_str)); - - /* input destination. */ - get_input_url(tmp.ptr, tmp.slen, cval, &result); - if (result.nb_result != PJSUA_APP_NO_NB) { - pjsua_buddy_info binfo; - if (result.nb_result == -1 || result.nb_result == 0) { - static const pj_str_t err_msg = - {"You can't do that with make call!\n", 35}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - return PJ_SUCCESS; - } - pjsua_buddy_get_info(result.nb_result-1, &binfo); - pj_strncpy(&tmp, &binfo.uri, sizeof(dest)); - } else if (result.uri_result) { - tmp = pj_str(result.uri_result); - } else { - tmp.slen = 0; - } - - pjsua_msg_data_init(&msg_data); - TEST_MULTIPART(&msg_data); - pjsua_call_make_call(current_acc, &tmp, &call_opt, NULL, - &msg_data, ¤t_call); - return PJ_SUCCESS; -} - -/* Make multi call */ -static pj_status_t cmd_make_multi_call(pj_cli_cmd_val *cval) -{ - struct input_result result; - char dest[64] = {0}; - char out_str[128]; - int i, count; - pj_str_t tmp = pj_str(dest); - - pj_ansi_snprintf(out_str, - sizeof(out_str), - "(You currently have %d calls)\n", - pjsua_call_get_count()); - - count = pj_strtol(&cval->argv[1]); - if (count < 1) - return PJ_SUCCESS; - - pj_strncpy_with_null(&tmp, &cval->argv[2], sizeof(dest)); - - /* input destination. */ - get_input_url(tmp.ptr, tmp.slen, cval, &result); - if (result.nb_result != PJSUA_APP_NO_NB) { - pjsua_buddy_info binfo; - if (result.nb_result == -1 || result.nb_result == 0) { - static const pj_str_t err_msg = - {"You can't do that with make call!\n", 35}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - return PJ_SUCCESS; - } - pjsua_buddy_get_info(result.nb_result-1, &binfo); - pj_strncpy(&tmp, &binfo.uri, sizeof(dest)); - } else { - tmp = pj_str(result.uri_result); - } - - for (i=0; i= PJSIP_INV_STATE_CONNECTING) - { - static const pj_str_t err_msg = {"No pending incoming call\n", 26}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - - } else { - int st_code; - char contact[120]; - pj_str_t hname = { "Contact", 7 }; - pj_str_t hvalue; - pjsip_generic_string_hdr hcontact; - - st_code = pj_strtol(&cval->argv[1]); - if ((st_code < 100) || (st_code > 699)) - return PJ_SUCCESS; - - pjsua_msg_data_init(&msg_data); - - if (st_code/100 == 3) { - if (cval->argc < 3) { - static const pj_str_t err_msg = {"Enter URL to be put " - "in Contact\n", 32}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - return PJ_SUCCESS; - } - - hvalue = pj_str(contact); - pjsip_generic_string_hdr_init2(&hcontact, &hname, &hvalue); - - pj_list_push_back(&msg_data.hdr_list, &hcontact); - } - - /* - * Must check again! - * Call may have been disconnected while we're waiting for - * keyboard input. - */ - if (current_call == PJSUA_INVALID_ID) { - static const pj_str_t err_msg = {"Call has been disconnected\n", - 28}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - } - - pjsua_call_answer2(current_call, &call_opt, st_code, NULL, &msg_data); - } - return PJ_SUCCESS; -} - -/* Hangup call */ -static pj_status_t cmd_hangup_call(pj_cli_cmd_val *cval, pj_bool_t all) -{ - if (current_call == PJSUA_INVALID_ID) { - static const pj_str_t err_msg = {"No current call\n", 17}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - } else { - if (all) - pjsua_call_hangup_all(); - else - pjsua_call_hangup(current_call, 0, NULL, NULL); - } - return PJ_SUCCESS; -} - -/* Hold call */ -static pj_status_t cmd_hold_call() -{ - if (current_call != PJSUA_INVALID_ID) { - pjsua_call_set_hold(current_call, NULL); - - } else { - PJ_LOG(3,(THIS_FILE, "No current call")); - } - return PJ_SUCCESS; -} - -/* Call reinvite */ -static pj_status_t cmd_call_reinvite() -{ - if (current_call != PJSUA_INVALID_ID) { - /* - * re-INVITE - */ - call_opt.flag |= PJSUA_CALL_UNHOLD; - pjsua_call_reinvite2(current_call, &call_opt, NULL); - - } else { - PJ_LOG(3,(THIS_FILE, "No current call")); - } - return PJ_SUCCESS; -} - -/* Send update */ -static pj_status_t cmd_call_update() -{ - if (current_call != PJSUA_INVALID_ID) { - pjsua_call_update2(current_call, &call_opt, NULL); - } else { - PJ_LOG(3,(THIS_FILE, "No current call")); - } - return PJ_SUCCESS; -} - -/* Select next call */ -static pj_status_t cmd_next_call(pj_bool_t next) -{ - /* - * Cycle next/prev dialog. - */ - if (next) { - find_next_call(current_call); - } else { - find_prev_call(current_call); - } - - if (current_call != PJSUA_INVALID_ID) { - pjsua_call_info call_info; - - pjsua_call_get_info(current_call, &call_info); - PJ_LOG(3,(THIS_FILE,"Current dialog: %.*s", - (int)call_info.remote_info.slen, - call_info.remote_info.ptr)); - - } else { - PJ_LOG(3,(THIS_FILE,"No current dialog")); - } - return PJ_SUCCESS; -} - -/* Transfer call */ -static pj_status_t cmd_transfer_call(pj_cli_cmd_val *cval) -{ - if (current_call == PJSUA_INVALID_ID) { - - PJ_LOG(3,(THIS_FILE, "No current call")); - - } else { - char out_str[64]; - int call = current_call; - char dest[64] = {0}; - pj_str_t tmp = pj_str(dest); - struct input_result result; - pjsip_generic_string_hdr refer_sub; - pj_str_t STR_REFER_SUB = { "Refer-Sub", 9 }; - pj_str_t STR_FALSE = { "false", 5 }; - pjsua_call_info ci; - - pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(dest)); - - pjsua_call_get_info(current_call, &ci); - pj_ansi_snprintf(out_str, - sizeof(out_str), - "Transfering current call [%d] %.*s\n", - current_call, - (int)ci.remote_info.slen, - ci.remote_info.ptr); - - get_input_url(tmp.ptr, tmp.slen, cval, &result); - - /* Check if call is still there. */ - - if (call != current_call) { - puts("Call has been disconnected"); - return PJ_SUCCESS; - } - - pjsua_msg_data_init(&msg_data); - if (app_config.no_refersub) { - /* Add Refer-Sub: false in outgoing REFER request */ - pjsip_generic_string_hdr_init2(&refer_sub, &STR_REFER_SUB, - &STR_FALSE); - pj_list_push_back(&msg_data.hdr_list, &refer_sub); - } - if (result.nb_result != PJSUA_APP_NO_NB) { - if (result.nb_result == -1 || result.nb_result == 0) { - static const pj_str_t err_msg = {"You can't do that with " - "transfer call!\n", 39}; - - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - } else { - pjsua_buddy_info binfo; - pjsua_buddy_get_info(result.nb_result-1, &binfo); - pjsua_call_xfer( current_call, &binfo.uri, &msg_data); - } - } else if (result.uri_result) { - pj_str_t tmp; - tmp = pj_str(result.uri_result); - pjsua_call_xfer( current_call, &tmp, &msg_data); - } - } - return PJ_SUCCESS; -} - -/* Transfer call */ -static pj_status_t cmd_transfer_replace_call(pj_cli_cmd_val *cval) -{ - if (current_call == -1) { - PJ_LOG(3,(THIS_FILE, "No current call")); - } else { - int call = current_call; - int dst_call; - pjsip_generic_string_hdr refer_sub; - pj_str_t STR_REFER_SUB = { "Refer-Sub", 9 }; - pj_str_t STR_FALSE = { "false", 5 }; - pjsua_call_id ids[PJSUA_MAX_CALLS]; - pjsua_msg_data msg_data; - char buf[8] = {0}; - pj_str_t tmp = pj_str(buf); - unsigned count; - static const pj_str_t err_invalid_num = - {"Invalid destination call number\n", 32 }; - count = PJ_ARRAY_SIZE(ids); - pjsua_enum_calls(ids, &count); - - if (count <= 1) { - static const pj_str_t err_no_other_call = - {"There are no other calls\n", 25}; - - pj_cli_sess_write_msg(cval->sess, err_no_other_call.ptr, - err_no_other_call.slen); - return PJ_SUCCESS; - } - - pj_strncpy_with_null(&tmp, &cval->argv[1], sizeof(buf)); - dst_call = my_atoi(tmp.ptr); - - /* Check if call is still there. */ - if (call != current_call) { - static pj_str_t err_call_dc = - {"Call has been disconnected\n", 27}; - - pj_cli_sess_write_msg(cval->sess, err_call_dc.ptr, - err_call_dc.slen); - return PJ_SUCCESS; - } - - /* Check that destination call is valid. */ - if (dst_call == call) { - static pj_str_t err_same_num = - {"Destination call number must not be the " - "same as the call being transfered\n", 74}; - - pj_cli_sess_write_msg(cval->sess, err_same_num.ptr, - err_same_num.slen); - return PJ_SUCCESS; - } - - if (dst_call >= PJSUA_MAX_CALLS) { - pj_cli_sess_write_msg(cval->sess, err_invalid_num.ptr, - err_invalid_num.slen); - return PJ_SUCCESS; - } - - if (!pjsua_call_is_active(dst_call)) { - pj_cli_sess_write_msg(cval->sess, err_invalid_num.ptr, - err_invalid_num.slen); - return PJ_SUCCESS; - } - - pjsua_msg_data_init(&msg_data); - if (app_config.no_refersub) { - /* Add Refer-Sub: false in outgoing REFER request */ - pjsip_generic_string_hdr_init2(&refer_sub, &STR_REFER_SUB, - &STR_FALSE); - pj_list_push_back(&msg_data.hdr_list, &refer_sub); - } - - pjsua_call_xfer_replaces(call, dst_call, - PJSUA_XFER_NO_REQUIRE_REPLACES, - &msg_data); - } - return PJ_SUCCESS; -} - -static pj_status_t cmd_redirect_call(pj_cli_cmd_val *cval) -{ - if (current_call == PJSUA_INVALID_ID) { - PJ_LOG(3,(THIS_FILE, "No current call")); - return PJ_SUCCESS; - } - if (!pjsua_call_is_active(current_call)) { - PJ_LOG(1,(THIS_FILE, "Call %d has gone", current_call)); - } else { - enum { - ACCEPT_REPLACE, ACCEPT, REJECT, STOP - }; - int choice = pj_strtol(&cval->argv[1]); - - switch (choice) { - case ACCEPT_REPLACE: - pjsua_call_process_redirect(current_call, - PJSIP_REDIRECT_ACCEPT_REPLACE); - break; - case ACCEPT: - pjsua_call_process_redirect(current_call, PJSIP_REDIRECT_ACCEPT); - break; - case REJECT: - pjsua_call_process_redirect(current_call, PJSIP_REDIRECT_REJECT); - break; - default: - pjsua_call_process_redirect(current_call, PJSIP_REDIRECT_STOP); - break; - } - } - return PJ_SUCCESS; -} - -/* Send DTMF (RFC2833) */ -static pj_status_t cmd_dtmf_2833(pj_cli_cmd_val *cval) -{ - if (current_call == PJSUA_INVALID_ID) { - - PJ_LOG(3,(THIS_FILE, "No current call")); - - } else if (!pjsua_call_has_media(current_call)) { - - PJ_LOG(3,(THIS_FILE, "Media is not established yet!")); - - } else { - int call = current_call; - pj_status_t status; - - if (call != current_call) { - static const pj_str_t err_msg = {"Call has been disconnected\n", - 28}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - return PJ_SUCCESS;; - } - - status = pjsua_call_dial_dtmf(current_call, &cval->argv[1]); - if (status != PJ_SUCCESS) { - pjsua_perror(THIS_FILE, "Unable to send DTMF", status); - } else { - static const pj_str_t msg = {"DTMF digits enqueued " - "for transmission\n", 39}; - pj_cli_sess_write_msg(cval->sess, msg.ptr, msg.slen); - } - } - return PJ_SUCCESS; -} - -/* Send DTMF with SIP Info */ -static pj_status_t cmd_call_info(pj_cli_cmd_val *cval) -{ - if (current_call == PJSUA_INVALID_ID) { - - PJ_LOG(3,(THIS_FILE, "No current call")); - - } else { - const pj_str_t SIP_INFO = pj_str("INFO"); - int call = current_call; - int i; - pj_status_t status; - - if (call != current_call) { - static const pj_str_t err_msg = {"Call has been disconnected\n", - 28}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - return PJ_SUCCESS;; - } - - for (i=0; iargv[1].slen; ++i) { - char body[64]; - - pjsua_msg_data_init(&msg_data); - msg_data.content_type = pj_str("application/dtmf-relay"); - - pj_ansi_snprintf(body, - sizeof(body), - "Signal=%c\n" - "Duration=160", - cval->argv[1].ptr[i]); - - msg_data.msg_body = pj_str(body); - - status = pjsua_call_send_request(current_call, &SIP_INFO, - &msg_data); - if (status != PJ_SUCCESS) { - break; - } - } - } - return PJ_SUCCESS; -} - -/* Dump call quality */ -static pj_status_t cmd_call_quality() -{ - if (current_call != PJSUA_INVALID_ID) { - log_call_dump(current_call); - } else { - PJ_LOG(3,(THIS_FILE, "No current call")); - } - return PJ_SUCCESS; -} - -/* Send arbitrary request */ -static pj_status_t cmd_send_arbitrary(pj_cli_cmd_val *cval) -{ - if (pjsua_acc_get_count() == 0) { - static const pj_str_t err_msg = {"Sorry, need at least one " - "account configured\n", 45}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - } else { - char *uri; - char dest[64] = {0}; - pj_str_t tmp = pj_str(dest); - struct input_result result; - static const pj_str_t header = {"Send arbitrary request to " - "remote host\n", 39}; - - pj_cli_sess_write_msg(cval->sess, header.ptr, header.slen); - - pj_strncpy_with_null(&tmp, &cval->argv[2], sizeof(dest)); - /* Input destination URI */ - uri = NULL; - get_input_url(tmp.ptr, tmp.slen, cval, &result); - if (result.nb_result != PJSUA_APP_NO_NB) { - if (result.nb_result == -1) { - static const pj_str_t err_msg = {"Sorry you can't do that!\n", - 26}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, err_msg.slen); - return PJ_SUCCESS; - } else if (result.nb_result == 0) { - uri = NULL; - if (current_call == PJSUA_INVALID_ID) { - static const pj_str_t err_msg = {"No current call\n", - 17}; - pj_cli_sess_write_msg(cval->sess, err_msg.ptr, - err_msg.slen); - - return PJ_SUCCESS; - } - } else { - pjsua_buddy_info binfo; - pjsua_buddy_get_info(result.nb_result-1, &binfo); - pj_strncpy_with_null(&tmp, &binfo.uri, sizeof(dest)); - uri = tmp.ptr; - } - } else if (result.uri_result) { - uri = result.uri_result; - } else { - return PJ_SUCCESS;; - } - - if (uri) { - char method[64] = {0}; - pj_str_t tmp_method = pj_str(method); - pj_strncpy_with_null(&tmp_method, &cval->argv[1], sizeof(method)); - tmp = pj_str(uri); - send_request(method, &tmp); - } else { - /* If you send call control request using this method - * (such requests includes BYE, CANCEL, etc.), it will - * not go well with the call state, so don't do it - * unless it's for testing. - */ - pjsua_call_send_request(current_call, &cval->argv[1], NULL); - } - } - return PJ_SUCCESS; -} - -static pj_status_t cmd_show_current_call(pj_cli_cmd_val *cval) -{ - char out_str[128]; - int i = pjsua_call_get_count(); - pj_ansi_snprintf(out_str, sizeof(out_str), - "You have %d active call%s\n", i, (i>1?"s":"")); - - pj_cli_sess_write_msg(cval->sess, out_str, - pj_ansi_strlen(out_str)); - - if (current_call != PJSUA_INVALID_ID) { - pjsua_call_info ci; - if (pjsua_call_get_info(current_call, &ci)==PJ_SUCCESS) { - pj_ansi_snprintf(out_str, sizeof(out_str), - "Current call id=%d to %.*s [%.*s]\n", current_call, - (int)ci.remote_info.slen, ci.remote_info.ptr, - (int)ci.state_text.slen, ci.state_text.ptr); - - pj_cli_sess_write_msg(cval->sess, out_str, - pj_ansi_strlen(out_str)); - } - } - return PJ_SUCCESS; -} - -/* Call handler */ -pj_status_t cmd_call_handler(pj_cli_cmd_val *cval) -{ - pj_status_t status = PJ_SUCCESS; - pj_cli_cmd_id cmd_id = pj_cli_get_cmd_id(cval->cmd); - - CHECK_PJSUA_RUNNING(); - - switch(cmd_id) { - case CMD_CALL_NEW: - status = cmd_make_single_call(cval); - break; - case CMD_CALL_MULTI: - status = cmd_make_multi_call(cval); - break; - case CMD_CALL_ANSWER: - status = cmd_answer_call(cval); - break; - case CMD_CALL_HANGUP: - case CMD_CALL_HANGUP_ALL: - status = cmd_hangup_call(cval, (cmd_id==CMD_CALL_HANGUP_ALL)); - break; - case CMD_CALL_HOLD: - status = cmd_hold_call(); - break; - case CMD_CALL_REINVITE: - status = cmd_call_reinvite(); - break; - case CMD_CALL_UPDATE: - status = cmd_call_update(); - break; - case CMD_CALL_NEXT: - case CMD_CALL_PREVIOUS: - status = cmd_next_call(cmd_id==CMD_CALL_NEXT); - break; - case CMD_CALL_TRANSFER: - status = cmd_transfer_call(cval); - break; - case CMD_CALL_TRANSFER_REPLACE: - status = cmd_transfer_replace_call(cval); - break; - case CMD_CALL_REDIRECT: - status = cmd_redirect_call(cval); - break; - case CMD_CALL_D2833: - status = cmd_dtmf_2833(cval); - break; - case CMD_CALL_INFO: - status = cmd_call_info(cval); - break; - case CMD_CALL_DUMP_Q: - status = cmd_call_quality(); - break; - case CMD_CALL_SEND_ARB: - status = cmd_send_arbitrary(cval); - break; - case CMD_CALL_LIST: - status = cmd_show_current_call(cval); - break; - } - - return status; -} - -#if PJSUA_HAS_VIDEO -static pj_status_t cmd_set_video_enable(pj_bool_t enabled) -{ - app_config.vid.vid_cnt = (enabled ? 1 : 0); - PJ_LOG(3,(THIS_FILE, "Video will be %s in next offer/answer", - (enabled?"enabled":"disabled"))); - - return PJ_SUCCESS; -} - -static pj_status_t modify_video_account(pjsua_acc_config *acc_cfg) -{ - pj_status_t status = pjsua_acc_modify(current_acc, acc_cfg); - if (status != PJ_SUCCESS) - PJ_PERROR(1,(THIS_FILE, status, "Error modifying account %d", - current_acc)); - - return status; -} - -static pj_status_t cmd_show_account_video() -{ - pjsua_acc_config acc_cfg; - - pjsua_acc_get_config(current_acc, &acc_cfg); - app_config_show_video(current_acc, &acc_cfg); - return PJ_SUCCESS; -} - -static pj_status_t cmd_video_acc_handler(pj_cli_cmd_val *cval) -{ - pjsua_acc_config acc_cfg; - pj_cli_cmd_id cmd_id = pj_cli_get_cmd_id(cval->cmd); - - CHECK_PJSUA_RUNNING(); - - pjsua_acc_get_config(current_acc, &acc_cfg); - - switch(cmd_id) { - case CMD_VIDEO_ACC_AUTORX: - case CMD_VIDEO_ACC_AUTOTX: - { - int on = (pj_ansi_strnicmp(cval->argv[1].ptr, "On", 2)==0); - - if (cmd_id == CMD_VIDEO_ACC_AUTORX) - acc_cfg.vid_in_auto_show = on; - else - acc_cfg.vid_out_auto_transmit = on; - } - break; - case CMD_VIDEO_ACC_CAP_ID: - case CMD_VIDEO_ACC_REN_ID: - { - int dev = pj_strtol(&cval->argv[1]); - - if (cmd_id == CMD_VIDEO_ACC_CAP_ID) - acc_cfg.vid_cap_dev = dev; - else - acc_cfg.vid_rend_dev = dev; - } - break; - } - modify_video_account(&acc_cfg); - return PJ_SUCCESS; -} - -static pj_status_t cmd_add_vid_strm() -{ - return pjsua_call_set_vid_strm(current_call, - PJSUA_CALL_VID_STRM_ADD, NULL); -} - -static pj_status_t cmd_enable_vid_rx(pj_cli_cmd_val *cval) -{ - pjsua_call_vid_strm_op_param param; - pjsua_stream_info si; - pj_status_t status = PJ_SUCCESS; - pj_bool_t on = (pj_ansi_strnicmp(cval->argv[1].ptr, "On", 2) == 0); - - pjsua_call_vid_strm_op_param_default(¶m); - - param.med_idx = pj_strtol(&cval->argv[2]); - if (pjsua_call_get_stream_info(current_call, param.med_idx, &si) || - si.type != PJMEDIA_TYPE_VIDEO) - { - PJ_PERROR(1,(THIS_FILE, PJ_EINVAL, "Invalid stream")); - return status; - } - - if (on) param.dir = (si.info.vid.dir | PJMEDIA_DIR_DECODING); - else param.dir = (si.info.vid.dir & PJMEDIA_DIR_ENCODING); - - status = pjsua_call_set_vid_strm(current_call, - PJSUA_CALL_VID_STRM_CHANGE_DIR, - ¶m); - return status; -} - -static pj_status_t cmd_enable_vid_tx(pj_cli_cmd_val *cval) -{ - pjsua_call_vid_strm_op_param param; - pj_status_t status = PJ_SUCCESS; - pj_bool_t on = (pj_ansi_strnicmp(cval->argv[1].ptr, "On", 2) == 0); - - pjsua_call_vid_strm_op op = on? PJSUA_CALL_VID_STRM_START_TRANSMIT : - PJSUA_CALL_VID_STRM_STOP_TRANSMIT; - - pjsua_call_vid_strm_op_param_default(¶m); - - param.med_idx = pj_strtol(&cval->argv[2]); - - status = pjsua_call_set_vid_strm(current_call, op, ¶m); - return status; -} - -static pj_status_t cmd_enable_vid_stream(pj_cli_cmd_val *cval, - pj_bool_t enable) -{ - pjsua_call_vid_strm_op_param param; - pjsua_call_vid_strm_op op = enable? PJSUA_CALL_VID_STRM_CHANGE_DIR : - PJSUA_CALL_VID_STRM_REMOVE; - - pjsua_call_vid_strm_op_param_default(¶m); - - param.med_idx = cval->argc > 1 ? pj_strtol(&cval->argv[1]) : -1; - param.dir = PJMEDIA_DIR_ENCODING_DECODING; - return pjsua_call_set_vid_strm(current_call, op, ¶m); -} - -static pj_status_t cmd_set_cap_dev_id(pj_cli_cmd_val *cval) -{ - pjsua_call_vid_strm_op_param param; - - pjsua_call_vid_strm_op_param_default(¶m); - param.med_idx = cval->argc > 1? pj_strtol(&cval->argv[1]) : -1; - param.cap_dev = cval->argc > 2? pj_strtol(&cval->argv[2]) : - PJMEDIA_VID_DEFAULT_CAPTURE_DEV; - - return pjsua_call_set_vid_strm(current_call, - PJSUA_CALL_VID_STRM_CHANGE_CAP_DEV, - ¶m); -} - -static pj_status_t cmd_list_vid_dev() -{ - vid_list_devs(); - return PJ_SUCCESS; -} - -static pj_status_t cmd_vid_device_refresh() -{ - pjmedia_vid_dev_refresh(); - return PJ_SUCCESS; -} - -static pj_status_t cmd_vid_device_preview(pj_cli_cmd_val *cval) -{ - int dev_id = pj_strtol(&cval->argv[2]); - pj_bool_t on = (pj_ansi_strnicmp(cval->argv[1].ptr, "On", 2) == 0); - - if (on) { - pjsua_vid_preview_param param; - - pjsua_vid_preview_param_default(¶m); - param.wnd_flags = PJMEDIA_VID_DEV_WND_BORDER | - PJMEDIA_VID_DEV_WND_RESIZABLE; - pjsua_vid_preview_start(dev_id, ¶m); - arrange_window(pjsua_vid_preview_get_win(dev_id)); - } else { - pjsua_vid_win_id wid; - wid = pjsua_vid_preview_get_win(dev_id); - if (wid != PJSUA_INVALID_ID) { - /* Preview window hiding once it is stopped is - * responsibility of app */ - pjsua_vid_win_set_show(wid, PJ_FALSE); - pjsua_vid_preview_stop(dev_id); - } - } - return PJ_SUCCESS; -} - -static pj_status_t cmd_vid_codec_list() -{ - pjsua_codec_info ci[PJMEDIA_CODEC_MGR_MAX_CODECS]; - unsigned count = PJ_ARRAY_SIZE(ci); - pj_status_t status = pjsua_vid_enum_codecs(ci, &count); - if (status != PJ_SUCCESS) { - PJ_PERROR(1,(THIS_FILE, status, "Error enumerating codecs")); - } else { - unsigned i; - PJ_LOG(3,(THIS_FILE, "Found %d video codecs:", count)); - PJ_LOG(3,(THIS_FILE, "codec id prio fps bw(kbps) size")); - PJ_LOG(3,(THIS_FILE, "------------------------------------------")); - for (i=0; ifps.num*1.0/vfd->fps.denum), - vfd->avg_bps/1000, vfd->max_bps/1000, - vfd->size.w, vfd->size.h)); - } - } - return PJ_SUCCESS; -} - -static pj_status_t cmd_set_vid_codec_prio(pj_cli_cmd_val *cval) -{ - int prio = pj_strtol(&cval->argv[2]); - pj_status_t status; - - status = pjsua_vid_codec_set_priority(&cval->argv[1], (pj_uint8_t)prio); - if (status != PJ_SUCCESS) - PJ_PERROR(1,(THIS_FILE, status, "Set codec priority error")); - - return PJ_SUCCESS; -} - -static pj_status_t cmd_set_vid_codec_fps(pj_cli_cmd_val *cval) -{ - pjmedia_vid_codec_param cp; - int M, N; - pj_status_t status; - - M = pj_strtol(&cval->argv[2]); - N = pj_strtol(&cval->argv[3]); - status = pjsua_vid_codec_get_param(&cval->argv[1], &cp); - if (status == PJ_SUCCESS) { - cp.enc_fmt.det.vid.fps.num = M; - cp.enc_fmt.det.vid.fps.denum = N; - status = pjsua_vid_codec_set_param(&cval->argv[1], &cp); - } - if (status != PJ_SUCCESS) - PJ_PERROR(1,(THIS_FILE, status, "Set codec framerate error")); - - return PJ_SUCCESS; -} - -static pj_status_t cmd_set_vid_codec_bitrate(pj_cli_cmd_val *cval) -{ - pjmedia_vid_codec_param cp; - int M, N; - pj_status_t status; - - M = pj_strtol(&cval->argv[2]); - N = pj_strtol(&cval->argv[3]); - status = pjsua_vid_codec_get_param(&cval->argv[1], &cp); - if (status == PJ_SUCCESS) { - cp.enc_fmt.det.vid.avg_bps = M * 1000; - cp.enc_fmt.det.vid.max_bps = N * 1000; - status = pjsua_vid_codec_set_param(&cval->argv[1], &cp); - } - if (status != PJ_SUCCESS) - PJ_PERROR(1,(THIS_FILE, status, "Set codec bitrate error")); - - return status; -} - -static pj_status_t cmd_set_vid_codec_size(pj_cli_cmd_val *cval) -{ - pjmedia_vid_codec_param cp; - int M, N; - pj_status_t status; - - M = pj_strtol(&cval->argv[2]); - N = pj_strtol(&cval->argv[3]); - status = pjsua_vid_codec_get_param(&cval->argv[1], &cp); - if (status == PJ_SUCCESS) { - cp.enc_fmt.det.vid.size.w = M; - cp.enc_fmt.det.vid.size.h = N; - status = pjsua_vid_codec_set_param(&cval->argv[1], &cp); - } - if (status != PJ_SUCCESS) - PJ_PERROR(1,(THIS_FILE, status, "Set codec size error")); - - return status; -} - -static pj_status_t cmd_vid_win_list() -{ - pjsua_vid_win_id wids[PJSUA_MAX_VID_WINS]; - unsigned i, cnt = PJ_ARRAY_SIZE(wids); - - pjsua_vid_enum_wins(wids, &cnt); - - PJ_LOG(3,(THIS_FILE, "Found %d video windows:", cnt)); - PJ_LOG(3,(THIS_FILE, "WID show pos size")); - PJ_LOG(3,(THIS_FILE, "------------------------------")); - for (i = 0; i < cnt; ++i) { - pjsua_vid_win_info wi; - pjsua_vid_win_get_info(wids[i], &wi); - PJ_LOG(3,(THIS_FILE, "%3d %c (%d,%d) %dx%d", - wids[i], (wi.show?'Y':'N'), wi.pos.x, wi.pos.y, - wi.size.w, wi.size.h)); - } - return PJ_SUCCESS; -} - -static pj_status_t cmd_arrange_vid_win() -{ - arrange_window(PJSUA_INVALID_ID); - return PJ_SUCCESS; -} - -static pj_status_t cmd_show_vid_win(pj_cli_cmd_val *cval, pj_bool_t show) -{ - pjsua_vid_win_id wid = pj_strtol(&cval->argv[1]); - return pjsua_vid_win_set_show(wid, show); -} - -static pj_status_t cmd_move_vid_win(pj_cli_cmd_val *cval) -{ - pjsua_vid_win_id wid = pj_strtol(&cval->argv[1]); - pjmedia_coord pos; - - pos.x = pj_strtol(&cval->argv[2]); - pos.y = pj_strtol(&cval->argv[3]); - return pjsua_vid_win_set_pos(wid, &pos); -} - -static pj_status_t cmd_resize_vid_win(pj_cli_cmd_val *cval) -{ - pjsua_vid_win_id wid = pj_strtol(&cval->argv[1]); - pjmedia_rect_size size; - - size.w = pj_strtol(&cval->argv[2]); - size.h = pj_strtol(&cval->argv[3]); - return pjsua_vid_win_set_size(wid, &size); -} - -/* Video handler */ -static pj_status_t cmd_video_handler(pj_cli_cmd_val *cval) -{ - pj_status_t status = PJ_SUCCESS; - pj_cli_cmd_id cmd_id = pj_cli_get_cmd_id(cval->cmd); - - CHECK_PJSUA_RUNNING(); - - switch(cmd_id) { - case CMD_VIDEO_ENABLE: - status = cmd_set_video_enable(PJ_TRUE); - break; - case CMD_VIDEO_DISABLE: - status = cmd_set_video_enable(PJ_FALSE); - break; - case CMD_VIDEO_ACC_SHOW: - status = cmd_show_account_video(); - break; - case CMD_VIDEO_ACC_AUTORX: - case CMD_VIDEO_ACC_AUTOTX: - case CMD_VIDEO_ACC_CAP_ID: - case CMD_VIDEO_ACC_REN_ID: - status = cmd_video_acc_handler(cval); - break; - case CMD_VIDEO_CALL_ADD: - status = cmd_add_vid_strm(); - break; - case CMD_VIDEO_CALL_RX: - status = cmd_enable_vid_rx(cval); - break; - case CMD_VIDEO_CALL_TX: - status = cmd_enable_vid_tx(cval); - break; - case CMD_VIDEO_CALL_ENABLE: - case CMD_VIDEO_CALL_DISABLE: - status = cmd_enable_vid_stream(cval, (cmd_id==CMD_VIDEO_CALL_ENABLE)); - break; - case CMD_VIDEO_CALL_CAP: - status = cmd_set_cap_dev_id(cval); - break; - case CMD_VIDEO_DEVICE_LIST: - status = cmd_list_vid_dev(); - break; - case CMD_VIDEO_DEVICE_REFRESH: - status = cmd_vid_device_refresh(); - break; - case CMD_VIDEO_DEVICE_PREVIEW: - status = cmd_vid_device_preview(cval); - break; - case CMD_VIDEO_CODEC_LIST: - status = cmd_vid_codec_list(); - break; - case CMD_VIDEO_CODEC_PRIO: - status = cmd_set_vid_codec_prio(cval); - break; - case CMD_VIDEO_CODEC_FPS: - status = cmd_set_vid_codec_fps(cval); - break; - case CMD_VIDEO_CODEC_BITRATE: - status = cmd_set_vid_codec_bitrate(cval); - break; - case CMD_VIDEO_CODEC_SIZE: - status = cmd_set_vid_codec_size(cval); - break; - case CMD_VIDEO_WIN_LIST: - status = cmd_vid_win_list(); - break; - case CMD_VIDEO_WIN_ARRANGE: - status = cmd_arrange_vid_win(cval); - break; - case CMD_VIDEO_WIN_SHOW: - case CMD_VIDEO_WIN_HIDE: - status = cmd_show_vid_win(cval, (cmd_id==CMD_VIDEO_WIN_SHOW)); - break; - case CMD_VIDEO_WIN_MOVE: - status = cmd_move_vid_win(cval); - break; - case CMD_VIDEO_WIN_RESIZE: - status = cmd_resize_vid_win(cval); - break; - } - - return status; -} -#endif - -/* Other command handler */ -static pj_status_t cmd_sleep_handler(pj_cli_cmd_val *cval) -{ - int delay; - - delay = pj_strtoul(&cval->argv[1]); - if (delay < 0) delay = 0; - pj_thread_sleep(delay); - - return PJ_SUCCESS; -} - -static pj_status_t cmd_network_handler(pj_cli_cmd_val *cval) -{ - pj_status_t status = PJ_SUCCESS; - PJ_UNUSED_ARG(cval); - - CHECK_PJSUA_RUNNING(); - - status = pjsua_detect_nat_type(); - if (status != PJ_SUCCESS) - pjsua_perror(THIS_FILE, "Error", status); - - return status; -} - -static pj_status_t cmd_quit_handler(pj_cli_cmd_val *cval) -{ - PJ_LOG(3,(THIS_FILE, "Quitting app..")); - pj_cli_quit(cval->sess->fe->cli, cval->sess, PJ_FALSE); - - /* Invoke CLI stop callback (defined in pjsua_app.c) */ - cli_on_stopped(PJ_FALSE, 0, NULL); - - return PJ_SUCCESS; -} - -/* - * Syntax error handler for parser. - */ -static void on_syntax_error(pj_scanner *scanner) -{ - PJ_UNUSED_ARG(scanner); - PJ_THROW(PJ_EINVAL); -} - -/* - * This method will parse buffer string info array of argument string - * @argc On input, maximum array size of argument. On output, number of argument - * parsed - * @argv Array of argument string - */ -static pj_status_t get_options(pj_str_t *options, unsigned *argc, - pj_str_t argv[]) -{ - pj_scanner scanner; - unsigned max_argc = *argc; - - PJ_USE_EXCEPTION; - - if (!options) - return PJ_SUCCESS; - - pj_scan_init(&scanner, options->ptr, options->slen, PJ_SCAN_AUTOSKIP_WS, - &on_syntax_error); - PJ_TRY { - *argc = 0; - while (!pj_scan_is_eof(&scanner) && (max_argc > *argc)) { - pj_str_t str; - - pj_scan_get_until_chr(&scanner, " \t\r\n", &str); - argv[*argc] = str; - ++(*argc); - } - } - PJ_CATCH_ANY { - pj_scan_fini(&scanner); - return PJ_GET_EXCEPTION(); - } - PJ_END; - return PJ_SUCCESS; -} - -static pj_status_t cmd_restart_handler(pj_cli_cmd_val *cval) -{ - enum { MAX_ARGC = 64 }; - int i; - unsigned argc = 1; - static char argv_buffer[PJ_CLI_MAX_CMDBUF]; - static char *argv[MAX_ARGC] = {NULL}; - char *pbuf = argv_buffer; - - PJ_LOG(3,(THIS_FILE, "Restarting app..")); - pj_cli_quit(cval->sess->fe->cli, cval->sess, PJ_TRUE); - - /** Get the pjsua option **/ - for (i=1; i < cval->argc; i++) { - pj_str_t argvst[MAX_ARGC]; - unsigned j, ac; - - ac = MAX_ARGC - argc; - get_options(&cval->argv[i], &ac, argvst); - for (j = 0; j < ac; j++) { - pj_ansi_strncpy(pbuf, argvst[j].ptr, argvst[j].slen); - pbuf[argvst[j].slen] = '\0'; - argv[argc + j] = pbuf; - pbuf += argvst[j].slen + 1; - } - argc += ac; - } - - /* Invoke CLI stop callback (defined in pjsua_app.c) */ - cli_on_stopped(PJ_TRUE, argc, (char**)argv); - - return PJ_SUCCESS; -} - -static pj_status_t add_call_command(pj_cli_t *cli) -{ - char* call_command = - "" - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - ""; - - pj_str_t xml = pj_str(call_command); - return pj_cli_add_cmd_from_xml(cli, NULL, - &xml, cmd_call_handler, - NULL, get_choice_value); -} - -static pj_status_t add_presence_command(pj_cli_t *cli) -{ - char* presence_command = - "" - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - ""; - - pj_str_t xml = pj_str(presence_command); - - return pj_cli_add_cmd_from_xml(cli, NULL, - &xml, cmd_presence_handler, - NULL, get_choice_value); -} - -static pj_status_t add_account_command(pj_cli_t *cli) -{ - char* account_command = - "" - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - ""; - - pj_str_t xml = pj_str(account_command); - return pj_cli_add_cmd_from_xml(cli, NULL, - &xml, cmd_account_handler, - NULL, get_choice_value); -} - -static pj_status_t add_media_command(pj_cli_t *cli) -{ - char* media_command = - "" - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - ""; - - pj_str_t xml = pj_str(media_command); - return pj_cli_add_cmd_from_xml(cli, NULL, - &xml, cmd_media_handler, - NULL, get_choice_value); -} - -static pj_status_t add_config_command(pj_cli_t *cli) -{ - char* config_command = - "" - " " - " " - " " - " " - " " - " " - ""; - - pj_str_t xml = pj_str(config_command); - return pj_cli_add_cmd_from_xml(cli, NULL, - &xml, cmd_config_handler, - NULL, get_choice_value); -} - -#if PJSUA_HAS_VIDEO -static pj_status_t add_video_command(pj_cli_t *cli) -{ - char* video_command = - "" - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - " " - ""; - - pj_str_t xml = pj_str(video_command); - return pj_cli_add_cmd_from_xml(cli, NULL, - &xml, cmd_video_handler, - NULL, get_choice_value); -} -#endif - -static pj_status_t add_other_command(pj_cli_t *cli) -{ - char* sleep_command = - "" - " " - ""; - - char* network_command = - ""; - - char* shutdown_command = - ""; - - char* restart_command = - "" - " " - " " - " " - " " - ""; - - pj_status_t status; - pj_str_t sleep_xml = pj_str(sleep_command); - pj_str_t network_xml = pj_str(network_command); - pj_str_t shutdown_xml = pj_str(shutdown_command); - pj_str_t restart_xml = pj_str(restart_command); - - status = pj_cli_add_cmd_from_xml(cli, NULL, - &sleep_xml, cmd_sleep_handler, - NULL, NULL); - if (status != PJ_SUCCESS) - return status; - - status = pj_cli_add_cmd_from_xml(cli, NULL, - &network_xml, cmd_network_handler, - NULL, NULL); - if (status != PJ_SUCCESS) - return status; - - status = pj_cli_add_cmd_from_xml(cli, NULL, - &shutdown_xml, cmd_quit_handler, - NULL, NULL); - - if (status != PJ_SUCCESS) - return status; - - status = pj_cli_add_cmd_from_xml(cli, NULL, - &restart_xml, cmd_restart_handler, - NULL, NULL); - - return status; -} - -pj_status_t cli_setup_command(pj_cli_t *cli) -{ - pj_status_t status; - - status = add_call_command(cli); - if (status != PJ_SUCCESS) - return status; - - status = add_presence_command(cli); - if (status != PJ_SUCCESS) - return status; - - status = add_account_command(cli); - if (status != PJ_SUCCESS) - return status; - - status = add_media_command(cli); - if (status != PJ_SUCCESS) - return status; - - status = add_config_command(cli); - if (status != PJ_SUCCESS) - return status; - -#if PJSUA_HAS_VIDEO - status = add_video_command(cli); - if (status != PJ_SUCCESS) - return status; -#endif - - status = add_other_command(cli); - - return status; -} diff --git a/pjsip-apps/src/pjsua/pjsua_common.c b/pjsip-apps/src/pjsua/pjsua_common.c deleted file mode 100644 index 60c7dbe1..00000000 --- a/pjsip-apps/src/pjsua/pjsua_common.c +++ /dev/null @@ -1,356 +0,0 @@ -/* $Id$ */ -/* - * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) - * Copyright (C) 2003-2008 Benny Prijono - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#include "pjsua_common.h" - -#define THIS_FILE "pjsua_common.c" - -#if defined(PJMEDIA_HAS_RTCP_XR) && (PJMEDIA_HAS_RTCP_XR != 0) -# define SOME_BUF_SIZE (1024 * 10) -#else -# define SOME_BUF_SIZE (1024 * 3) -#endif - -static char some_buf[SOME_BUF_SIZE]; - -/** Variable definition **/ -int stdout_refresh = -1; -pj_bool_t stdout_refresh_quit = PJ_FALSE; -pjsua_call_id current_call = PJSUA_INVALID_ID; -pjsua_app_config app_config; -pjsua_call_setting call_opt; -pjsua_msg_data msg_data; - -PJ_DEF(int) my_atoi(const char *cs) -{ - pj_str_t s; - - pj_cstr(&s, cs); - if (cs[0] == '-') { - s.ptr++, s.slen--; - return 0 - (int)pj_strtoul(&s); - } else if (cs[0] == '+') { - s.ptr++, s.slen--; - return pj_strtoul(&s); - } else { - return pj_strtoul(&s); - } -} - -/* - * Find next call when current call is disconnected or when user - * press ']' - */ -PJ_DEF(pj_bool_t) find_next_call() -{ - int i, max; - - max = pjsua_call_get_max_count(); - for (i=current_call+1; i=0; --i) { - if (pjsua_call_is_active(i)) { - current_call = i; - return PJ_TRUE; - } - } - - for (i=max-1; i>current_call; --i) { - if (pjsua_call_is_active(i)) { - current_call = i; - return PJ_TRUE; - } - } - - current_call = PJSUA_INVALID_ID; - return PJ_FALSE; -} - -/* - * Send arbitrary request to remote host - */ -PJ_DEF(void) send_request(char *cstr_method, const pj_str_t *dst_uri) -{ - pj_str_t str_method; - pjsip_method method; - pjsip_tx_data *tdata; - pjsip_endpoint *endpt; - pj_status_t status; - - endpt = pjsua_get_pjsip_endpt(); - - str_method = pj_str(cstr_method); - pjsip_method_init_np(&method, &str_method); - - status = pjsua_acc_create_request(current_acc, &method, dst_uri, &tdata); - - status = pjsip_endpt_send_request(endpt, tdata, -1, NULL, NULL); - if (status != PJ_SUCCESS) { - pjsua_perror(THIS_FILE, "Unable to send request", status); - return; - } -} - -/* - * Print log of call states. Since call states may be too long for logger, - * printing it is a bit tricky, it should be printed part by part as long - * as the logger can accept. - */ -PJ_DEF(void) log_call_dump(int call_id) -{ - unsigned call_dump_len; - unsigned part_len; - unsigned part_idx; - unsigned log_decor; - - pjsua_call_dump(call_id, PJ_TRUE, some_buf, sizeof(some_buf), " "); - call_dump_len = strlen(some_buf); - - log_decor = pj_log_get_decor(); - pj_log_set_decor(log_decor & ~(PJ_LOG_HAS_NEWLINE | PJ_LOG_HAS_CR)); - PJ_LOG(3,(THIS_FILE, "\n")); - pj_log_set_decor(0); - - part_idx = 0; - part_len = PJ_LOG_MAX_SIZE-80; - while (part_idx < call_dump_len) { - char p_orig, *p; - - p = &some_buf[part_idx]; - if (part_idx + part_len > call_dump_len) - part_len = call_dump_len - part_idx; - p_orig = p[part_len]; - p[part_len] = '\0'; - PJ_LOG(3,(THIS_FILE, "%s", p)); - p[part_len] = p_orig; - part_idx += part_len; - } - pj_log_set_decor(log_decor); -} - -#ifdef PJSUA_HAS_VIDEO -PJ_DEF(void) app_config_init_video(pjsua_acc_config *acc_cfg) -{ - acc_cfg->vid_in_auto_show = app_config.vid.in_auto_show; - acc_cfg->vid_out_auto_transmit = app_config.vid.out_auto_transmit; - /* Note that normally GUI application will prefer a borderless - * window. - */ - acc_cfg->vid_wnd_flags = PJMEDIA_VID_DEV_WND_BORDER | - PJMEDIA_VID_DEV_WND_RESIZABLE; - acc_cfg->vid_cap_dev = app_config.vid.vcapture_dev; - acc_cfg->vid_rend_dev = app_config.vid.vrender_dev; - - if (app_config.avi_auto_play && - app_config.avi_def_idx != PJSUA_INVALID_ID && - app_config.avi[app_config.avi_def_idx].dev_id != PJMEDIA_VID_INVALID_DEV) - { - acc_cfg->vid_cap_dev = app_config.avi[app_config.avi_def_idx].dev_id; - } -} -#else -PJ_DEF(void) app_config_init_video(pjsua_acc_config *acc_cfg) -{ - PJ_UNUSED_ARG(acc_cfg); -} -#endif - -#ifdef HAVE_MULTIPART_TEST - /* - * Enable multipart in msg_data and add a dummy body into the - * multipart bodies. - */ - PJ_DEF(void) add_multipart(pjsua_msg_data *msg_data) - { - static pjsip_multipart_part *alt_part; - - if (!alt_part) { - pj_str_t type, subtype, content; - - alt_part = pjsip_multipart_create_part(app_config.pool); - - type = pj_str("text"); - subtype = pj_str("plain"); - content = pj_str("Sample text body of a multipart bodies"); - alt_part->body = pjsip_msg_body_create(app_config.pool, &type, - &subtype, &content); - } - - msg_data->multipart_ctype.type = pj_str("multipart"); - msg_data->multipart_ctype.subtype = pj_str("mixed"); - pj_list_push_back(&msg_data->multipart_parts, alt_part); - } -#endif - -/* arrange windows. arg: - * -1: arrange all windows - * != -1: arrange only this window id - */ -PJ_DEF(void) arrange_window(pjsua_vid_win_id wid) -{ -#if PJSUA_HAS_VIDEO - pjmedia_coord pos; - int i, last; - - pos.x = 0; - pos.y = 10; - last = (wid == PJSUA_INVALID_ID) ? PJSUA_MAX_VID_WINS : wid; - - for (i=0; idir == PJMEDIA_DIR_CAPTURE_RENDER) { - dirname = "capture, render"; - } else if (vdi->dir == PJMEDIA_DIR_CAPTURE) { - dirname = "capture"; - } else { - dirname = "render"; - } - - - capnames[0] = '\0'; - for (i=0; icaps & (1 << i)) { - const char *capname = pjmedia_vid_dev_cap_name(1 << i, NULL); - if (capname) { - if (*capnames) - strcat(capnames, ", "); - strncat(capnames, capname, - sizeof(capnames)-strlen(capnames)-1); - } - } - } - - formats[0] = '\0'; - for (i=0; ifmt_cnt; ++i) { - const pjmedia_video_format_info *vfi = - pjmedia_get_video_format_info(NULL, vdi->fmt[i].id); - if (vfi) { - if (*formats) - strcat(formats, ", "); - strncat(formats, vfi->name, sizeof(formats)-strlen(formats)-1); - } - } - - PJ_LOG(3,(THIS_FILE, "%3d %s [%s][%s] %s", id, vdi->name, vdi->driver, - dirname, title)); - PJ_LOG(3,(THIS_FILE, " Supported capabilities: %s", capnames)); - PJ_LOG(3,(THIS_FILE, " Supported formats: %s", formats)); -} - -PJ_DEF(void) vid_list_devs() -{ - unsigned i, count; - pjmedia_vid_dev_info vdi; - pj_status_t status; - - PJ_LOG(3,(THIS_FILE, "Video device list:")); - count = pjsua_vid_dev_count(); - if (count == 0) { - PJ_LOG(3,(THIS_FILE, " - no device detected -")); - return; - } else { - PJ_LOG(3,(THIS_FILE, "%d device(s) detected:", count)); - } - - status = pjsua_vid_dev_get_info(PJMEDIA_VID_DEFAULT_RENDER_DEV, &vdi); - if (status == PJ_SUCCESS) - vid_print_dev(PJMEDIA_VID_DEFAULT_RENDER_DEV, &vdi, - "(default renderer device)"); - - status = pjsua_vid_dev_get_info(PJMEDIA_VID_DEFAULT_CAPTURE_DEV, &vdi); - if (status == PJ_SUCCESS) - vid_print_dev(PJMEDIA_VID_DEFAULT_CAPTURE_DEV, &vdi, - "(default capture device)"); - - for (i=0; ivid_in_auto_show, - acc_cfg->vid_out_auto_transmit, - acc_cfg->vid_cap_dev, - acc_cfg->vid_rend_dev)); -} - - -#endif diff --git a/pjsip-apps/src/pjsua/pjsua_common.h b/pjsip-apps/src/pjsua/pjsua_common.h deleted file mode 100644 index 9e51a8f4..00000000 --- a/pjsip-apps/src/pjsua/pjsua_common.h +++ /dev/null @@ -1,230 +0,0 @@ -/* $Id$ */ -/* - * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ -#ifndef __PJSUA_COMMON_H__ -#define __PJSUA_COMMON_H__ - -#include - -PJ_BEGIN_DECL - -#define current_acc pjsua_acc_get_default() - -#define PJSUA_APP_NO_LIMIT_DURATION (int)0x7FFFFFFF -#define PJSUA_APP_MAX_AVI 4 -#define PJSUA_APP_NO_NB -2 - -typedef struct input_result -{ - int nb_result; - char *uri_result; -} input_result; - -/* Call specific data */ -typedef struct app_call_data -{ - pj_timer_entry timer; - pj_bool_t ringback_on; - pj_bool_t ring_on; -} app_call_data; - -/* Video settings */ -typedef struct app_vid -{ - unsigned vid_cnt; - int vcapture_dev; - int vrender_dev; - pj_bool_t in_auto_show; - pj_bool_t out_auto_transmit; -} app_vid; - -/* Enumeration of CLI frontends */ -typedef enum { - CLI_FE_CONSOLE = 1, - CLI_FE_TELNET = 2 -} CLI_FE; - -/** CLI config **/ -typedef struct cli_cfg_t -{ - /** Bitmask of CLI_FE **/ - int cli_fe; - pj_cli_cfg cfg; - pj_cli_telnet_cfg telnet_cfg; - pj_cli_console_cfg console_cfg; -} cli_cfg_t; - -/* Pjsua application data */ -typedef struct pjsua_app_config -{ - pjsua_config cfg; - pjsua_logging_config log_cfg; - pjsua_media_config media_cfg; - pj_bool_t no_refersub; - pj_bool_t ipv6; - pj_bool_t enable_qos; - pj_bool_t no_tcp; - pj_bool_t no_udp; - pj_bool_t use_tls; - pjsua_transport_config udp_cfg; - pjsua_transport_config rtp_cfg; - pjsip_redirect_op redir_op; - - unsigned acc_cnt; - pjsua_acc_config acc_cfg[PJSUA_MAX_ACC]; - - unsigned buddy_cnt; - pjsua_buddy_config buddy_cfg[PJSUA_MAX_BUDDIES]; - - app_call_data call_data[PJSUA_MAX_CALLS]; - - pj_pool_t *pool; - /* Compatibility with older pjsua */ - - unsigned codec_cnt; - pj_str_t codec_arg[32]; - unsigned codec_dis_cnt; - pj_str_t codec_dis[32]; - pj_bool_t null_audio; - unsigned wav_count; - pj_str_t wav_files[32]; - unsigned tone_count; - pjmedia_tone_desc tones[32]; - pjsua_conf_port_id tone_slots[32]; - pjsua_player_id wav_id; - pjsua_conf_port_id wav_port; - pj_bool_t auto_play; - pj_bool_t auto_play_hangup; - pj_timer_entry auto_hangup_timer; - pj_bool_t auto_loop; - pj_bool_t auto_conf; - pj_str_t rec_file; - pj_bool_t auto_rec; - pjsua_recorder_id rec_id; - pjsua_conf_port_id rec_port; - unsigned auto_answer; - unsigned duration; - -#ifdef STEREO_DEMO - pjmedia_snd_port *snd; - pjmedia_port *sc, *sc_ch1; - pjsua_conf_port_id sc_ch1_slot; -#endif - - float mic_level, - speaker_level; - - int capture_dev, playback_dev; - unsigned capture_lat, playback_lat; - - pj_bool_t no_tones; - int ringback_slot; - int ringback_cnt; - pjmedia_port *ringback_port; - int ring_slot; - int ring_cnt; - pjmedia_port *ring_port; - - app_vid vid; - unsigned aud_cnt; - - /* AVI to play */ - unsigned avi_cnt; - struct { - pj_str_t path; - pjmedia_vid_dev_index dev_id; - pjsua_conf_port_id slot; - } avi[PJSUA_APP_MAX_AVI]; - pj_bool_t avi_auto_play; - int avi_def_idx; - - /* CLI setting */ - pj_bool_t use_cli; - cli_cfg_t cli_cfg; -} pjsua_app_config; - -/** Extern variable declaration **/ -extern pjsua_call_id current_call; -extern pjsua_app_config app_config; -extern int stdout_refresh; -extern pj_bool_t stdout_refresh_quit; -extern pjsua_call_setting call_opt; -extern pjsua_msg_data msg_data; -extern pj_bool_t app_running; - -PJ_DECL(int) my_atoi(const char *cs); -PJ_DECL(pj_bool_t) find_next_call(); -PJ_DECL(pj_bool_t) find_prev_call(); -PJ_DECL(void) send_request(char *cstr_method, const pj_str_t *dst_uri); -PJ_DECL(void) log_call_dump(int call_id); -PJ_DECL(int) write_settings(pjsua_app_config *cfg, char *buf, pj_size_t max); -PJ_DECL(void) app_config_init_video(pjsua_acc_config *acc_cfg); -PJ_DECL(void) arrange_window(pjsua_vid_win_id wid); - -/** Defined in pjsua_cli_cmd.c **/ -PJ_DECL(pj_bool_t) is_cli_inited(); - -/** Defined in pjsua_config.c **/ -/** This is to load the configuration **/ -PJ_DECL(pj_status_t) load_config(int argc, - char **argv, - pj_str_t *uri_arg); - -/** Pjsua app callback **/ -/** This callback is called when CLI is started. **/ -PJ_DECL(void) cli_on_started(pj_status_t status); - -/** This callback is called when "shutdown"/"restart" command is invoked **/ -PJ_DECL(pj_bool_t) cli_on_stopped(pj_bool_t restart, int argc, char **argv); - -/** This callback is called when "quit"/"restart" command is invoked **/ -PJ_DECL(pj_bool_t) legacy_on_stopped(pj_bool_t restart); - -/** Pjsua cli method **/ -PJ_DECL(pj_status_t) cli_init(); -PJ_DECL(pj_status_t) cli_main(pj_bool_t wait_telnet_cli); -PJ_DECL(void) cli_destroy(); -PJ_DECL(void) cli_get_info(char *info, pj_size_t size); - -/** Legacy method **/ -PJ_DECL(void) legacy_main(); - -#if PJSUA_HAS_VIDEO -PJ_DECL(void) vid_print_dev(int id, const pjmedia_vid_dev_info *vdi, - const char *title); -PJ_DECL(void) vid_list_devs(); -PJ_DECL(void) app_config_show_video(int acc_id, - const pjsua_acc_config *acc_cfg); -#endif - -#ifdef HAVE_MULTIPART_TEST - /* - * Enable multipart in msg_data and add a dummy body into the - * multipart bodies. - */ - PJ_DECL(void) add_multipart(pjsua_msg_data *msg_data); -# define TEST_MULTIPART(msg_data) add_multipart(msg_data) -#else -# define TEST_MULTIPART(msg_data) -#endif - - -PJ_END_DECL - -#endif /* __PJSUA_COMMON_H__ */ - diff --git a/pjsip-apps/src/pjsua/pjsua_config.c b/pjsip-apps/src/pjsua/pjsua_config.c deleted file mode 100644 index 0959e7ea..00000000 --- a/pjsip-apps/src/pjsua/pjsua_config.c +++ /dev/null @@ -1,2179 +0,0 @@ -/* $Id$ */ -/* - * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) - * Copyright (C) 2003-2008 Benny Prijono - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ -#include "pjsua_common.h" - -#define THIS_FILE "pjsua_config.c" - -#define MAX_APP_OPTIONS 128 - -char *stdout_refresh_text = "STDOUT_REFRESH"; - -/* Show usage */ -static void usage(void) -{ - puts ("Usage:"); - puts (" pjsua [options] [SIP URL to call]"); - puts (""); - puts ("General options:"); - puts (" --config-file=file Read the config/arguments from file."); - puts (" --help Display this help screen"); - puts (" --version Display version info"); - puts (""); - puts ("Logging options:"); - puts (" --log-file=fname Log to filename (default stderr)"); - puts (" --log-level=N Set log max level to N (0(none) to 6(trace)) (default=5)"); - puts (" --app-log-level=N Set log max level for stdout display (default=4)"); - puts (" --log-append Append instead of overwrite existing log file.\n"); - puts (" --color Use colorful logging (default yes on Win32)"); - puts (" --no-color Disable colorful logging"); - puts (" --light-bg Use dark colors for light background (default is dark bg)"); - puts (" --no-stderr Disable stderr"); - - puts (""); - puts ("SIP Account options:"); - puts (" --registrar=url Set the URL of registrar server"); - puts (" --id=url Set the URL of local ID (used in From header)"); - puts (" --realm=string Set realm"); - puts (" --username=string Set authentication username"); - puts (" --password=string Set authentication password"); - puts (" --contact=url Optionally override the Contact information"); - puts (" --contact-params=S Append the specified parameters S in Contact header"); - puts (" --contact-uri-params=S Append the specified parameters S in Contact URI"); - puts (" --proxy=url Optional URL of proxy server to visit"); - puts (" May be specified multiple times"); - printf(" --reg-timeout=SEC Optional registration interval (default %d)\n", - PJSUA_REG_INTERVAL); - printf(" --rereg-delay=SEC Optional auto retry registration interval (default %d)\n", - PJSUA_REG_RETRY_INTERVAL); - puts (" --reg-use-proxy=N Control the use of proxy settings in REGISTER."); - puts (" 0=no proxy, 1=outbound only, 2=acc only, 3=all (default)"); - puts (" --publish Send presence PUBLISH for this account"); - puts (" --mwi Subscribe to message summary/waiting indication"); - puts (" --use-ims Enable 3GPP/IMS related settings on this account"); -#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0) - puts (" --use-srtp=N Use SRTP? 0:disabled, 1:optional, 2:mandatory,"); - puts (" 3:optional by duplicating media offer (def:0)"); - puts (" --srtp-secure=N SRTP require secure SIP? 0:no, 1:tls, 2:sips (def:1)"); -#endif - puts (" --use-100rel Require reliable provisional response (100rel)"); - puts (" --use-timer=N Use SIP session timers? (default=1)"); - puts (" 0:inactive, 1:optional, 2:mandatory, 3:always"); - printf(" --timer-se=N Session timers expiration period, in secs (def:%d)\n", - PJSIP_SESS_TIMER_DEF_SE); - puts (" --timer-min-se=N Session timers minimum expiration period, in secs (def:90)"); - puts (" --outb-rid=string Set SIP outbound reg-id (default:1)"); - puts (" --auto-update-nat=N Where N is 0 or 1 to enable/disable SIP traversal behind"); - puts (" symmetric NAT (default 1)"); - puts (" --disable-stun Disable STUN for this account"); - puts (" --next-cred Add another credentials"); - puts (""); - puts ("SIP Account Control:"); - puts (" --next-account Add more account"); - puts (""); - puts ("Transport Options:"); -#if defined(PJ_HAS_IPV6) && PJ_HAS_IPV6 - puts (" --ipv6 Use IPv6 instead for SIP and media."); -#endif - puts (" --set-qos Enable QoS tagging for SIP and media."); - puts (" --local-port=port Set TCP/UDP port. This implicitly enables both "); - puts (" TCP and UDP transports on the specified port, unless"); - puts (" if TCP or UDP is disabled."); - puts (" --ip-addr=IP Use the specifed address as SIP and RTP addresses."); - puts (" (Hint: the IP may be the public IP of the NAT/router)"); - puts (" --bound-addr=IP Bind transports to this IP interface"); - puts (" --no-tcp Disable TCP transport."); - puts (" --no-udp Disable UDP transport."); - puts (" --nameserver=NS Add the specified nameserver to enable SRV resolution"); - puts (" This option can be specified multiple times."); - puts (" --outbound=url Set the URL of global outbound proxy server"); - puts (" May be specified multiple times"); - puts (" --stun-srv=FORMAT Set STUN server host or domain. This option may be"); - puts (" specified more than once. FORMAT is hostdom[:PORT]"); - -#if defined(PJSIP_HAS_TLS_TRANSPORT) && (PJSIP_HAS_TLS_TRANSPORT != 0) - puts (""); - puts ("TLS Options:"); - puts (" --use-tls Enable TLS transport (default=no)"); - puts (" --tls-ca-file Specify TLS CA file (default=none)"); - puts (" --tls-cert-file Specify TLS certificate file (default=none)"); - puts (" --tls-privkey-file Specify TLS private key file (default=none)"); - puts (" --tls-password Specify TLS password to private key file (default=none)"); - puts (" --tls-verify-server Verify server's certificate (default=no)"); - puts (" --tls-verify-client Verify client's certificate (default=no)"); - puts (" --tls-neg-timeout Specify TLS negotiation timeout (default=no)"); - puts (" --tls-srv-name Specify TLS server name for multihosting server"); - puts (" --tls-cipher Specify prefered TLS cipher (optional)."); - puts (" May be specified multiple times"); -#endif - - puts (""); - puts ("Audio Options:"); - puts (" --add-codec=name Manually add codec (default is to enable all)"); - puts (" --dis-codec=name Disable codec (can be specified multiple times)"); - puts (" --clock-rate=N Override conference bridge clock rate"); - puts (" --snd-clock-rate=N Override sound device clock rate"); - puts (" --stereo Audio device and conference bridge opened in stereo mode"); - puts (" --null-audio Use NULL audio device"); - puts (" --play-file=file Register WAV file in conference bridge."); - puts (" This can be specified multiple times."); - puts (" --play-tone=FORMAT Register tone to the conference bridge."); - puts (" FORMAT is 'F1,F2,ON,OFF', where F1,F2 are"); - puts (" frequencies, and ON,OFF=on/off duration in msec."); - puts (" This can be specified multiple times."); - puts (" --auto-play Automatically play the file (to incoming calls only)"); - puts (" --auto-loop Automatically loop incoming RTP to outgoing RTP"); - puts (" --auto-conf Automatically put calls in conference with others"); - puts (" --rec-file=file Open file recorder (extension can be .wav or .mp3"); - puts (" --auto-rec Automatically record conversation"); - puts (" --quality=N Specify media quality (0-10, default=6)"); - puts (" --ptime=MSEC Override codec ptime to MSEC (default=specific)"); - puts (" --no-vad Disable VAD/silence detector (default=vad enabled)"); - puts (" --ec-tail=MSEC Set echo canceller tail length (default=256)"); - puts (" --ec-opt=OPT Select echo canceller algorithm (0=default, "); - puts (" 1=speex, 2=suppressor)"); - puts (" --ilbc-mode=MODE Set iLBC codec mode (20 or 30, default is 30)"); - puts (" --capture-dev=id Audio capture device ID (default=-1)"); - puts (" --playback-dev=id Audio playback device ID (default=-1)"); - puts (" --capture-lat=N Audio capture latency, in ms (default=100)"); - puts (" --playback-lat=N Audio playback latency, in ms (default=100)"); - puts (" --snd-auto-close=N Auto close audio device when idle for N secs (default=1)"); - puts (" Specify N=-1 to disable this feature."); - puts (" Specify N=0 for instant close when unused."); - puts (" --no-tones Disable audible tones"); - puts (" --jb-max-size Specify jitter buffer maximum size, in frames (default=-1)"); - puts (" --extra-audio Add one more audio stream"); - -#if PJSUA_HAS_VIDEO - puts (""); - puts ("Video Options:"); - puts (" --video Enable video"); - puts (" --vcapture-dev=id Video capture device ID (default=-1)"); - puts (" --vrender-dev=id Video render device ID (default=-2)"); - puts (" --play-avi=FILE Load this AVI as virtual capture device"); - puts (" --auto-play-avi Automatically play the AVI media to call"); -#endif - - puts (""); - puts ("Media Transport Options:"); - puts (" --use-ice Enable ICE (default:no)"); - puts (" --ice-regular Use ICE regular nomination (default: aggressive)"); - puts (" --ice-max-hosts=N Set maximum number of ICE host candidates"); - puts (" --ice-no-rtcp Disable RTCP component in ICE (default: no)"); - puts (" --rtp-port=N Base port to try for RTP (default=4000)"); - puts (" --rx-drop-pct=PCT Drop PCT percent of RX RTP (for pkt lost sim, default: 0)"); - puts (" --tx-drop-pct=PCT Drop PCT percent of TX RTP (for pkt lost sim, default: 0)"); - puts (" --use-turn Enable TURN relay with ICE (default:no)"); - puts (" --turn-srv Domain or host name of TURN server (\"NAME:PORT\" format)"); - puts (" --turn-tcp Use TCP connection to TURN server (default no)"); - puts (" --turn-user TURN username"); - puts (" --turn-passwd TURN password"); - - puts (""); - puts ("Buddy List (can be more than one):"); - puts (" --add-buddy url Add the specified URL to the buddy list."); - puts (""); - puts ("User Agent options:"); - puts (" --auto-answer=code Automatically answer incoming calls with code (e.g. 200)"); - puts (" --max-calls=N Maximum number of concurrent calls (default:4, max:255)"); - puts (" --thread-cnt=N Number of worker threads (default:1)"); - puts (" --duration=SEC Set maximum call duration (default:no limit)"); - puts (" --norefersub Suppress event subscription when transfering calls"); - puts (" --use-compact-form Minimize SIP message size"); - puts (" --no-force-lr Allow strict-route to be used (i.e. do not force lr)"); - puts (" --accept-redirect=N Specify how to handle call redirect (3xx) response."); - puts (" 0: reject, 1: follow automatically,"); - puts (" 2: follow + replace To header (default), 3: ask"); - - puts (""); - puts ("CLI options:"); - puts (" --use-cli Use CLI as user interface"); - puts (" --cli-telnet-port=N CLI telnet port"); - puts (" --no-cli-console Disable CLI console"); - puts (""); - - puts (""); - puts ("When URL is specified, pjsua will immediately initiate call to that URL"); - puts (""); - - fflush(stdout); -} - -/* - * Read command arguments from config file. - */ -static int read_config_file(pj_pool_t *pool, const char *filename, - int *app_argc, char ***app_argv) -{ - int i; - FILE *fhnd; - char line[200]; - int argc = 0; - char **argv; - enum { MAX_ARGS = 128 }; - - /* Allocate MAX_ARGS+1 (argv needs to be terminated with NULL argument) */ - argv = pj_pool_calloc(pool, MAX_ARGS+1, sizeof(char*)); - argv[argc++] = *app_argv[0]; - - /* Open config file. */ - fhnd = fopen(filename, "rt"); - if (!fhnd) { - PJ_LOG(1,(THIS_FILE, "Unable to open config file %s", filename)); - fflush(stdout); - return -1; - } - - /* Scan tokens in the file. */ - while (argc < MAX_ARGS && !feof(fhnd)) { - char *token; - char *p; - const char *whitespace = " \t\r\n"; - char cDelimiter; - int len, token_len; - - pj_bzero(line, sizeof(line)); - if (fgets(line, sizeof(line), fhnd) == NULL) break; - - // Trim ending newlines - len = strlen(line); - if (line[len-1]=='\n') - line[--len] = '\0'; - if (line[len-1]=='\r') - line[--len] = '\0'; - - if (len==0) continue; - - for (p = line; *p != '\0' && argc < MAX_ARGS; p++) { - // first, scan whitespaces - while (*p != '\0' && strchr(whitespace, *p) != NULL) p++; - - if (*p == '\0') // are we done yet? - break; - - if (*p == '"' || *p == '\'') { // is token a quoted string - cDelimiter = *p++; // save quote delimiter - token = p; - - while (*p != '\0' && *p != cDelimiter) p++; - - if (*p == '\0') // found end of the line, but, - cDelimiter = '\0'; // didn't find a matching quote - - } else { // token's not a quoted string - token = p; - - while (*p != '\0' && strchr(whitespace, *p) == NULL) p++; - - cDelimiter = *p; - } - - *p = '\0'; - token_len = p-token; - - if (token_len > 0) { - if (*token == '#') - break; // ignore remainder of line - - argv[argc] = pj_pool_alloc(pool, token_len + 1); - pj_memcpy(argv[argc], token, token_len + 1); - ++argc; - } - - *p = cDelimiter; - } - } - - /* Copy arguments from command line */ - for (i=1; i<*app_argc && argc < MAX_ARGS; ++i) - argv[argc++] = (*app_argv)[i]; - - if (argc == MAX_ARGS && (i!=*app_argc || !feof(fhnd))) { - PJ_LOG(1,(THIS_FILE, - "Too many arguments specified in cmd line/config file")); - fflush(stdout); - fclose(fhnd); - return -1; - } - - fclose(fhnd); - - /* Assign the new command line back to the original command line. */ - *app_argc = argc; - *app_argv = argv; - return 0; -} - -/* Parse arguments. */ -static pj_status_t parse_args(int argc, char *argv[], - pj_str_t *uri_to_call) -{ - int c; - int option_index; - pjsua_app_config *cfg = &app_config; - enum { OPT_CONFIG_FILE=127, OPT_LOG_FILE, OPT_LOG_LEVEL, OPT_APP_LOG_LEVEL, - OPT_LOG_APPEND, OPT_COLOR, OPT_NO_COLOR, OPT_LIGHT_BG, OPT_NO_STDERR, - OPT_HELP, OPT_VERSION, OPT_NULL_AUDIO, OPT_SND_AUTO_CLOSE, - OPT_LOCAL_PORT, OPT_IP_ADDR, OPT_PROXY, OPT_OUTBOUND_PROXY, - OPT_REGISTRAR, OPT_REG_TIMEOUT, OPT_PUBLISH, OPT_ID, OPT_CONTACT, - OPT_BOUND_ADDR, OPT_CONTACT_PARAMS, OPT_CONTACT_URI_PARAMS, - OPT_100REL, OPT_USE_IMS, OPT_REALM, OPT_USERNAME, OPT_PASSWORD, - OPT_REG_RETRY_INTERVAL, OPT_REG_USE_PROXY, - OPT_MWI, OPT_NAMESERVER, OPT_STUN_SRV, OPT_OUTB_RID, - OPT_ADD_BUDDY, OPT_OFFER_X_MS_MSG, OPT_NO_PRESENCE, - OPT_AUTO_ANSWER, OPT_AUTO_PLAY, OPT_AUTO_PLAY_HANGUP, OPT_AUTO_LOOP, - OPT_AUTO_CONF, OPT_CLOCK_RATE, OPT_SND_CLOCK_RATE, OPT_STEREO, - OPT_USE_ICE, OPT_ICE_REGULAR, OPT_USE_SRTP, OPT_SRTP_SECURE, - OPT_USE_TURN, OPT_ICE_MAX_HOSTS, OPT_ICE_NO_RTCP, OPT_TURN_SRV, - OPT_TURN_TCP, OPT_TURN_USER, OPT_TURN_PASSWD, - OPT_PLAY_FILE, OPT_PLAY_TONE, OPT_RTP_PORT, OPT_ADD_CODEC, - OPT_ILBC_MODE, OPT_REC_FILE, OPT_AUTO_REC, - OPT_COMPLEXITY, OPT_QUALITY, OPT_PTIME, OPT_NO_VAD, - OPT_RX_DROP_PCT, OPT_TX_DROP_PCT, OPT_EC_TAIL, OPT_EC_OPT, - OPT_NEXT_ACCOUNT, OPT_NEXT_CRED, OPT_MAX_CALLS, - OPT_DURATION, OPT_NO_TCP, OPT_NO_UDP, OPT_THREAD_CNT, - OPT_NOREFERSUB, OPT_ACCEPT_REDIRECT, - OPT_USE_TLS, OPT_TLS_CA_FILE, OPT_TLS_CERT_FILE, OPT_TLS_PRIV_FILE, - OPT_TLS_PASSWORD, OPT_TLS_VERIFY_SERVER, OPT_TLS_VERIFY_CLIENT, - OPT_TLS_NEG_TIMEOUT, OPT_TLS_CIPHER, - OPT_CAPTURE_DEV, OPT_PLAYBACK_DEV, - OPT_CAPTURE_LAT, OPT_PLAYBACK_LAT, OPT_NO_TONES, OPT_JB_MAX_SIZE, - OPT_STDOUT_REFRESH, OPT_STDOUT_REFRESH_TEXT, OPT_IPV6, OPT_QOS, -#ifdef _IONBF - OPT_STDOUT_NO_BUF, -#endif - OPT_AUTO_UPDATE_NAT,OPT_USE_COMPACT_FORM,OPT_DIS_CODEC, - OPT_DISABLE_STUN, OPT_NO_FORCE_LR, - OPT_TIMER, OPT_TIMER_SE, OPT_TIMER_MIN_SE, - OPT_VIDEO, OPT_EXTRA_AUDIO, - OPT_VCAPTURE_DEV, OPT_VRENDER_DEV, OPT_PLAY_AVI, OPT_AUTO_PLAY_AVI, - OPT_USE_CLI, OPT_CLI_TELNET_PORT, OPT_DISABLE_CLI_CONSOLE - }; - struct pj_getopt_option long_options[] = { - { "config-file",1, 0, OPT_CONFIG_FILE}, - { "log-file", 1, 0, OPT_LOG_FILE}, - { "log-level", 1, 0, OPT_LOG_LEVEL}, - { "app-log-level",1,0,OPT_APP_LOG_LEVEL}, - { "log-append", 0, 0, OPT_LOG_APPEND}, - { "color", 0, 0, OPT_COLOR}, - { "no-color", 0, 0, OPT_NO_COLOR}, - { "light-bg", 0, 0, OPT_LIGHT_BG}, - { "no-stderr", 0, 0, OPT_NO_STDERR}, - { "help", 0, 0, OPT_HELP}, - { "version", 0, 0, OPT_VERSION}, - { "clock-rate", 1, 0, OPT_CLOCK_RATE}, - { "snd-clock-rate", 1, 0, OPT_SND_CLOCK_RATE}, - { "stereo", 0, 0, OPT_STEREO}, - { "null-audio", 0, 0, OPT_NULL_AUDIO}, - { "local-port", 1, 0, OPT_LOCAL_PORT}, - { "ip-addr", 1, 0, OPT_IP_ADDR}, - { "bound-addr", 1, 0, OPT_BOUND_ADDR}, - { "no-tcp", 0, 0, OPT_NO_TCP}, - { "no-udp", 0, 0, OPT_NO_UDP}, - { "norefersub", 0, 0, OPT_NOREFERSUB}, - { "proxy", 1, 0, OPT_PROXY}, - { "outbound", 1, 0, OPT_OUTBOUND_PROXY}, - { "registrar", 1, 0, OPT_REGISTRAR}, - { "reg-timeout",1, 0, OPT_REG_TIMEOUT}, - { "publish", 0, 0, OPT_PUBLISH}, - { "mwi", 0, 0, OPT_MWI}, - { "use-100rel", 0, 0, OPT_100REL}, - { "use-ims", 0, 0, OPT_USE_IMS}, - { "id", 1, 0, OPT_ID}, - { "contact", 1, 0, OPT_CONTACT}, - { "contact-params",1,0, OPT_CONTACT_PARAMS}, - { "contact-uri-params",1,0, OPT_CONTACT_URI_PARAMS}, - { "auto-update-nat", 1, 0, OPT_AUTO_UPDATE_NAT}, - { "disable-stun",0,0, OPT_DISABLE_STUN}, - { "use-compact-form", 0, 0, OPT_USE_COMPACT_FORM}, - { "accept-redirect", 1, 0, OPT_ACCEPT_REDIRECT}, - { "no-force-lr",0, 0, OPT_NO_FORCE_LR}, - { "realm", 1, 0, OPT_REALM}, - { "username", 1, 0, OPT_USERNAME}, - { "password", 1, 0, OPT_PASSWORD}, - { "rereg-delay",1, 0, OPT_REG_RETRY_INTERVAL}, - { "reg-use-proxy", 1, 0, OPT_REG_USE_PROXY}, - { "nameserver", 1, 0, OPT_NAMESERVER}, - { "stun-srv", 1, 0, OPT_STUN_SRV}, - { "add-buddy", 1, 0, OPT_ADD_BUDDY}, - { "offer-x-ms-msg",0,0,OPT_OFFER_X_MS_MSG}, - { "no-presence", 0, 0, OPT_NO_PRESENCE}, - { "auto-answer",1, 0, OPT_AUTO_ANSWER}, - { "auto-play", 0, 0, OPT_AUTO_PLAY}, - { "auto-play-hangup",0, 0, OPT_AUTO_PLAY_HANGUP}, - { "auto-rec", 0, 0, OPT_AUTO_REC}, - { "auto-loop", 0, 0, OPT_AUTO_LOOP}, - { "auto-conf", 0, 0, OPT_AUTO_CONF}, - { "play-file", 1, 0, OPT_PLAY_FILE}, - { "play-tone", 1, 0, OPT_PLAY_TONE}, - { "rec-file", 1, 0, OPT_REC_FILE}, - { "rtp-port", 1, 0, OPT_RTP_PORT}, - - { "use-ice", 0, 0, OPT_USE_ICE}, - { "ice-regular",0, 0, OPT_ICE_REGULAR}, - { "use-turn", 0, 0, OPT_USE_TURN}, - { "ice-max-hosts",1, 0, OPT_ICE_MAX_HOSTS}, - { "ice-no-rtcp",0, 0, OPT_ICE_NO_RTCP}, - { "turn-srv", 1, 0, OPT_TURN_SRV}, - { "turn-tcp", 0, 0, OPT_TURN_TCP}, - { "turn-user", 1, 0, OPT_TURN_USER}, - { "turn-passwd",1, 0, OPT_TURN_PASSWD}, - -#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0) - { "use-srtp", 1, 0, OPT_USE_SRTP}, - { "srtp-secure",1, 0, OPT_SRTP_SECURE}, -#endif - { "add-codec", 1, 0, OPT_ADD_CODEC}, - { "dis-codec", 1, 0, OPT_DIS_CODEC}, - { "complexity", 1, 0, OPT_COMPLEXITY}, - { "quality", 1, 0, OPT_QUALITY}, - { "ptime", 1, 0, OPT_PTIME}, - { "no-vad", 0, 0, OPT_NO_VAD}, - { "ec-tail", 1, 0, OPT_EC_TAIL}, - { "ec-opt", 1, 0, OPT_EC_OPT}, - { "ilbc-mode", 1, 0, OPT_ILBC_MODE}, - { "rx-drop-pct",1, 0, OPT_RX_DROP_PCT}, - { "tx-drop-pct",1, 0, OPT_TX_DROP_PCT}, - { "next-account",0,0, OPT_NEXT_ACCOUNT}, - { "next-cred", 0, 0, OPT_NEXT_CRED}, - { "max-calls", 1, 0, OPT_MAX_CALLS}, - { "duration", 1, 0, OPT_DURATION}, - { "thread-cnt", 1, 0, OPT_THREAD_CNT}, -#if defined(PJSIP_HAS_TLS_TRANSPORT) && (PJSIP_HAS_TLS_TRANSPORT != 0) - { "use-tls", 0, 0, OPT_USE_TLS}, - { "tls-ca-file",1, 0, OPT_TLS_CA_FILE}, - { "tls-cert-file",1,0, OPT_TLS_CERT_FILE}, - { "tls-privkey-file",1,0, OPT_TLS_PRIV_FILE}, - { "tls-password",1,0, OPT_TLS_PASSWORD}, - { "tls-verify-server", 0, 0, OPT_TLS_VERIFY_SERVER}, - { "tls-verify-client", 0, 0, OPT_TLS_VERIFY_CLIENT}, - { "tls-neg-timeout", 1, 0, OPT_TLS_NEG_TIMEOUT}, - { "tls-cipher", 1, 0, OPT_TLS_CIPHER}, -#endif - { "capture-dev", 1, 0, OPT_CAPTURE_DEV}, - { "playback-dev", 1, 0, OPT_PLAYBACK_DEV}, - { "capture-lat", 1, 0, OPT_CAPTURE_LAT}, - { "playback-lat", 1, 0, OPT_PLAYBACK_LAT}, - { "stdout-refresh", 1, 0, OPT_STDOUT_REFRESH}, - { "stdout-refresh-text", 1, 0, OPT_STDOUT_REFRESH_TEXT}, -#ifdef _IONBF - { "stdout-no-buf", 0, 0, OPT_STDOUT_NO_BUF }, -#endif - { "snd-auto-close", 1, 0, OPT_SND_AUTO_CLOSE}, - { "no-tones", 0, 0, OPT_NO_TONES}, - { "jb-max-size", 1, 0, OPT_JB_MAX_SIZE}, -#if defined(PJ_HAS_IPV6) && PJ_HAS_IPV6 - { "ipv6", 0, 0, OPT_IPV6}, -#endif - { "set-qos", 0, 0, OPT_QOS}, - { "use-timer", 1, 0, OPT_TIMER}, - { "timer-se", 1, 0, OPT_TIMER_SE}, - { "timer-min-se", 1, 0, OPT_TIMER_MIN_SE}, - { "outb-rid", 1, 0, OPT_OUTB_RID}, - { "video", 0, 0, OPT_VIDEO}, - { "extra-audio",0, 0, OPT_EXTRA_AUDIO}, - { "vcapture-dev", 1, 0, OPT_VCAPTURE_DEV}, - { "vrender-dev", 1, 0, OPT_VRENDER_DEV}, - { "play-avi", 1, 0, OPT_PLAY_AVI}, - { "auto-play-avi", 0, 0, OPT_AUTO_PLAY_AVI}, - { "use-cli", 0, 0, OPT_USE_CLI}, - { "cli-telnet-port", 1, 0, OPT_CLI_TELNET_PORT}, - { "no-cli-console", 0, 0, OPT_DISABLE_CLI_CONSOLE}, - { NULL, 0, 0, 0} - }; - pj_status_t status; - pjsua_acc_config *cur_acc; - char *config_file = NULL; - unsigned i; - - /* Run pj_getopt once to see if user specifies config file to read. */ - pj_optind = 0; - while ((c=pj_getopt_long(argc, argv, "", long_options, - &option_index)) != -1) - { - switch (c) { - case OPT_CONFIG_FILE: - config_file = pj_optarg; - break; - } - if (config_file) - break; - } - - if (config_file) { - status = read_config_file(cfg->pool, config_file, &argc, &argv); - if (status != 0) - return status; - } - - cfg->acc_cnt = 0; - cur_acc = &cfg->acc_cfg[0]; - - - /* Reinitialize and re-run pj_getopt again, possibly with new arguments - * read from config file. - */ - pj_optind = 0; - while((c=pj_getopt_long(argc,argv, "", long_options,&option_index))!=-1) { - pj_str_t tmp; - long lval; - - switch (c) { - - case OPT_CONFIG_FILE: - /* Ignore as this has been processed before */ - break; - - case OPT_LOG_FILE: - cfg->log_cfg.log_filename = pj_str(pj_optarg); - break; - - case OPT_LOG_LEVEL: - c = pj_strtoul(pj_cstr(&tmp, pj_optarg)); - if (c < 0 || c > 6) { - PJ_LOG(1,(THIS_FILE, - "Error: expecting integer value 0-6 " - "for --log-level")); - return PJ_EINVAL; - } - cfg->log_cfg.level = c; - pj_log_set_level( c ); - break; - - case OPT_APP_LOG_LEVEL: - cfg->log_cfg.console_level = pj_strtoul(pj_cstr(&tmp, pj_optarg)); - if (cfg->log_cfg.console_level < 0 || cfg->log_cfg.console_level > 6) { - PJ_LOG(1,(THIS_FILE, - "Error: expecting integer value 0-6 " - "for --app-log-level")); - return PJ_EINVAL; - } - break; - - case OPT_LOG_APPEND: - cfg->log_cfg.log_file_flags |= PJ_O_APPEND; - break; - - case OPT_COLOR: - cfg->log_cfg.decor |= PJ_LOG_HAS_COLOR; - break; - - case OPT_NO_COLOR: - cfg->log_cfg.decor &= ~PJ_LOG_HAS_COLOR; - break; - - case OPT_LIGHT_BG: - pj_log_set_color(1, PJ_TERM_COLOR_R); - pj_log_set_color(2, PJ_TERM_COLOR_R | PJ_TERM_COLOR_G); - pj_log_set_color(3, PJ_TERM_COLOR_B | PJ_TERM_COLOR_G); - pj_log_set_color(4, 0); - pj_log_set_color(5, 0); - pj_log_set_color(77, 0); - break; - - case OPT_NO_STDERR: -#if !defined(PJ_WIN32_WINCE) || PJ_WIN32_WINCE==0 - freopen("/dev/null", "w", stderr); -#endif - break; - - case OPT_HELP: - usage(); - return PJ_EINVAL; - - case OPT_VERSION: /* version */ - pj_dump_config(); - return PJ_EINVAL; - - case OPT_NULL_AUDIO: - cfg->null_audio = PJ_TRUE; - break; - - case OPT_CLOCK_RATE: - lval = pj_strtoul(pj_cstr(&tmp, pj_optarg)); - if (lval < 8000 || lval > 192000) { - PJ_LOG(1,(THIS_FILE, "Error: expecting value between " - "8000-192000 for conference clock rate")); - return PJ_EINVAL; - } - cfg->media_cfg.clock_rate = lval; - break; - - case OPT_SND_CLOCK_RATE: - lval = pj_strtoul(pj_cstr(&tmp, pj_optarg)); - if (lval < 8000 || lval > 192000) { - PJ_LOG(1,(THIS_FILE, "Error: expecting value between " - "8000-192000 for sound device clock rate")); - return PJ_EINVAL; - } - cfg->media_cfg.snd_clock_rate = lval; - break; - - case OPT_STEREO: - cfg->media_cfg.channel_count = 2; - break; - - case OPT_LOCAL_PORT: /* local-port */ - lval = pj_strtoul(pj_cstr(&tmp, pj_optarg)); - if (lval < 0 || lval > 65535) { - PJ_LOG(1,(THIS_FILE, - "Error: expecting integer value for " - "--local-port")); - return PJ_EINVAL; - } - cfg->udp_cfg.port = (pj_uint16_t)lval; - break; - - case OPT_IP_ADDR: /* ip-addr */ - cfg->udp_cfg.public_addr = pj_str(pj_optarg); - cfg->rtp_cfg.public_addr = pj_str(pj_optarg); - break; - - case OPT_BOUND_ADDR: /* bound-addr */ - cfg->udp_cfg.bound_addr = pj_str(pj_optarg); - cfg->rtp_cfg.bound_addr = pj_str(pj_optarg); - break; - - case OPT_NO_UDP: /* no-udp */ - if (cfg->no_tcp && !cfg->use_tls) { - PJ_LOG(1,(THIS_FILE,"Error: cannot disable both TCP and UDP")); - return PJ_EINVAL; - } - - cfg->no_udp = PJ_TRUE; - break; - - case OPT_NOREFERSUB: /* norefersub */ - cfg->no_refersub = PJ_TRUE; - break; - - case OPT_NO_TCP: /* no-tcp */ - if (cfg->no_udp && !cfg->use_tls) { - PJ_LOG(1,(THIS_FILE,"Error: cannot disable both TCP and UDP")); - return PJ_EINVAL; - } - - cfg->no_tcp = PJ_TRUE; - break; - - case OPT_PROXY: /* proxy */ - if (pjsua_verify_sip_url(pj_optarg) != 0) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid SIP URL '%s' " - "in proxy argument", pj_optarg)); - return PJ_EINVAL; - } - cur_acc->proxy[cur_acc->proxy_cnt++] = pj_str(pj_optarg); - break; - - case OPT_OUTBOUND_PROXY: /* outbound proxy */ - if (pjsua_verify_sip_url(pj_optarg) != 0) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid SIP URL '%s' " - "in outbound proxy argument", pj_optarg)); - return PJ_EINVAL; - } - cfg->cfg.outbound_proxy[cfg->cfg.outbound_proxy_cnt++] = pj_str(pj_optarg); - break; - - case OPT_REGISTRAR: /* registrar */ - if (pjsua_verify_sip_url(pj_optarg) != 0) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid SIP URL '%s' in " - "registrar argument", pj_optarg)); - return PJ_EINVAL; - } - cur_acc->reg_uri = pj_str(pj_optarg); - break; - - case OPT_REG_TIMEOUT: /* reg-timeout */ - cur_acc->reg_timeout = pj_strtoul(pj_cstr(&tmp,pj_optarg)); - if (cur_acc->reg_timeout < 1 || cur_acc->reg_timeout > 3600) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid value for --reg-timeout " - "(expecting 1-3600)")); - return PJ_EINVAL; - } - break; - - case OPT_PUBLISH: /* publish */ - cur_acc->publish_enabled = PJ_TRUE; - break; - - case OPT_MWI: /* mwi */ - cur_acc->mwi_enabled = PJ_TRUE; - break; - - case OPT_100REL: /** 100rel */ - cur_acc->require_100rel = PJSUA_100REL_MANDATORY; - cfg->cfg.require_100rel = PJSUA_100REL_MANDATORY; - break; - - case OPT_TIMER: /** session timer */ - lval = pj_strtoul(pj_cstr(&tmp, pj_optarg)); - if (lval < 0 || lval > 3) { - PJ_LOG(1,(THIS_FILE, - "Error: expecting integer value 0-3 for --use-timer")); - return PJ_EINVAL; - } - cur_acc->use_timer = lval; - cfg->cfg.use_timer = lval; - break; - - case OPT_TIMER_SE: /** session timer session expiration */ - cur_acc->timer_setting.sess_expires = pj_strtoul(pj_cstr(&tmp, pj_optarg)); - if (cur_acc->timer_setting.sess_expires < 90) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid value for --timer-se " - "(expecting higher than 90)")); - return PJ_EINVAL; - } - cfg->cfg.timer_setting.sess_expires = cur_acc->timer_setting.sess_expires; - break; - - case OPT_TIMER_MIN_SE: /** session timer minimum session expiration */ - cur_acc->timer_setting.min_se = pj_strtoul(pj_cstr(&tmp, pj_optarg)); - if (cur_acc->timer_setting.min_se < 90) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid value for --timer-min-se " - "(expecting higher than 90)")); - return PJ_EINVAL; - } - cfg->cfg.timer_setting.min_se = cur_acc->timer_setting.min_se; - break; - - case OPT_OUTB_RID: /* Outbound reg-id */ - cur_acc->rfc5626_reg_id = pj_str(pj_optarg); - break; - - case OPT_USE_IMS: /* Activate IMS settings */ - cur_acc->auth_pref.initial_auth = PJ_TRUE; - break; - - case OPT_ID: /* id */ - if (pjsua_verify_url(pj_optarg) != 0) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid SIP URL '%s' " - "in local id argument", pj_optarg)); - return PJ_EINVAL; - } - cur_acc->id = pj_str(pj_optarg); - break; - - case OPT_CONTACT: /* contact */ - if (pjsua_verify_sip_url(pj_optarg) != 0) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid SIP URL '%s' " - "in contact argument", pj_optarg)); - return PJ_EINVAL; - } - cur_acc->force_contact = pj_str(pj_optarg); - break; - - case OPT_CONTACT_PARAMS: - cur_acc->contact_params = pj_str(pj_optarg); - break; - - case OPT_CONTACT_URI_PARAMS: - cur_acc->contact_uri_params = pj_str(pj_optarg); - break; - - case OPT_AUTO_UPDATE_NAT: /* OPT_AUTO_UPDATE_NAT */ - cur_acc->allow_contact_rewrite = pj_strtoul(pj_cstr(&tmp, pj_optarg)); - break; - - case OPT_DISABLE_STUN: - cur_acc->sip_stun_use = PJSUA_STUN_USE_DISABLED; - cur_acc->media_stun_use = PJSUA_STUN_USE_DISABLED; - break; - - case OPT_USE_COMPACT_FORM: - /* enable compact form - from Ticket #342 */ - { - extern pj_bool_t pjsip_use_compact_form; - extern pj_bool_t pjsip_include_allow_hdr_in_dlg; - extern pj_bool_t pjmedia_add_rtpmap_for_static_pt; - - pjsip_use_compact_form = PJ_TRUE; - /* do not transmit Allow header */ - pjsip_include_allow_hdr_in_dlg = PJ_FALSE; - /* Do not include rtpmap for static payload types (<96) */ - pjmedia_add_rtpmap_for_static_pt = PJ_FALSE; - } - break; - - case OPT_ACCEPT_REDIRECT: - cfg->redir_op = my_atoi(pj_optarg); - if (cfg->redir_op<0 || cfg->redir_op>PJSIP_REDIRECT_STOP) { - PJ_LOG(1,(THIS_FILE, - "Error: accept-redirect value '%s' ", pj_optarg)); - return PJ_EINVAL; - } - break; - - case OPT_NO_FORCE_LR: - cfg->cfg.force_lr = PJ_FALSE; - break; - - case OPT_NEXT_ACCOUNT: /* Add more account. */ - cfg->acc_cnt++; - cur_acc = &cfg->acc_cfg[cfg->acc_cnt]; - break; - - case OPT_USERNAME: /* Default authentication user */ - cur_acc->cred_info[cur_acc->cred_count].username = pj_str(pj_optarg); - cur_acc->cred_info[cur_acc->cred_count].scheme = pj_str("Digest"); - break; - - case OPT_REALM: /* Default authentication realm. */ - cur_acc->cred_info[cur_acc->cred_count].realm = pj_str(pj_optarg); - break; - - case OPT_PASSWORD: /* authentication password */ - cur_acc->cred_info[cur_acc->cred_count].data_type = PJSIP_CRED_DATA_PLAIN_PASSWD; - cur_acc->cred_info[cur_acc->cred_count].data = pj_str(pj_optarg); -#if PJSIP_HAS_DIGEST_AKA_AUTH - cur_acc->cred_info[cur_acc->cred_count].data_type |= PJSIP_CRED_DATA_EXT_AKA; - cur_acc->cred_info[cur_acc->cred_count].ext.aka.k = pj_str(pj_optarg); - cur_acc->cred_info[cur_acc->cred_count].ext.aka.cb = &pjsip_auth_create_aka_response; -#endif - break; - - case OPT_REG_RETRY_INTERVAL: - cur_acc->reg_retry_interval = pj_strtoul(pj_cstr(&tmp, pj_optarg)); - break; - - case OPT_REG_USE_PROXY: - cur_acc->reg_use_proxy = (unsigned)pj_strtoul(pj_cstr(&tmp, pj_optarg)); - if (cur_acc->reg_use_proxy > 3) { - PJ_LOG(1,(THIS_FILE, "Error: invalid --reg-use-proxy value '%s'", - pj_optarg)); - return PJ_EINVAL; - } - break; - - case OPT_NEXT_CRED: /* next credential */ - cur_acc->cred_count++; - break; - - case OPT_NAMESERVER: /* nameserver */ - cfg->cfg.nameserver[cfg->cfg.nameserver_count++] = pj_str(pj_optarg); - if (cfg->cfg.nameserver_count > PJ_ARRAY_SIZE(cfg->cfg.nameserver)) { - PJ_LOG(1,(THIS_FILE, "Error: too many nameservers")); - return PJ_ETOOMANY; - } - break; - - case OPT_STUN_SRV: /* STUN server */ - cfg->cfg.stun_host = pj_str(pj_optarg); - if (cfg->cfg.stun_srv_cnt==PJ_ARRAY_SIZE(cfg->cfg.stun_srv)) { - PJ_LOG(1,(THIS_FILE, "Error: too many STUN servers")); - return PJ_ETOOMANY; - } - cfg->cfg.stun_srv[cfg->cfg.stun_srv_cnt++] = pj_str(pj_optarg); - break; - - case OPT_ADD_BUDDY: /* Add to buddy list. */ - if (pjsua_verify_url(pj_optarg) != 0) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid URL '%s' in " - "--add-buddy option", pj_optarg)); - return -1; - } - if (cfg->buddy_cnt == PJ_ARRAY_SIZE(cfg->buddy_cfg)) { - PJ_LOG(1,(THIS_FILE, - "Error: too many buddies in buddy list.")); - return -1; - } - cfg->buddy_cfg[cfg->buddy_cnt].uri = pj_str(pj_optarg); - cfg->buddy_cnt++; - break; - - case OPT_AUTO_PLAY: - cfg->auto_play = 1; - break; - - case OPT_AUTO_PLAY_HANGUP: - cfg->auto_play_hangup = 1; - break; - - case OPT_AUTO_REC: - cfg->auto_rec = 1; - break; - - case OPT_AUTO_LOOP: - cfg->auto_loop = 1; - break; - - case OPT_AUTO_CONF: - cfg->auto_conf = 1; - break; - - case OPT_PLAY_FILE: - cfg->wav_files[cfg->wav_count++] = pj_str(pj_optarg); - break; - - case OPT_PLAY_TONE: - { - int f1, f2, on, off; - int n; - - n = sscanf(pj_optarg, "%d,%d,%d,%d", &f1, &f2, &on, &off); - if (n != 4) { - puts("Expecting f1,f2,on,off in --play-tone"); - return -1; - } - - cfg->tones[cfg->tone_count].freq1 = (short)f1; - cfg->tones[cfg->tone_count].freq2 = (short)f2; - cfg->tones[cfg->tone_count].on_msec = (short)on; - cfg->tones[cfg->tone_count].off_msec = (short)off; - ++cfg->tone_count; - } - break; - - case OPT_REC_FILE: - cfg->rec_file = pj_str(pj_optarg); - break; - - case OPT_USE_ICE: - cfg->media_cfg.enable_ice = - cur_acc->ice_cfg.enable_ice = PJ_TRUE; - break; - - case OPT_ICE_REGULAR: - cfg->media_cfg.ice_opt.aggressive = - cur_acc->ice_cfg.ice_opt.aggressive = PJ_FALSE; - break; - - case OPT_USE_TURN: - cfg->media_cfg.enable_turn = - cur_acc->turn_cfg.enable_turn = PJ_TRUE; - break; - - case OPT_ICE_MAX_HOSTS: - cfg->media_cfg.ice_max_host_cands = - cur_acc->ice_cfg.ice_max_host_cands = my_atoi(pj_optarg); - break; - - case OPT_ICE_NO_RTCP: - cfg->media_cfg.ice_no_rtcp = - cur_acc->ice_cfg.ice_no_rtcp = PJ_TRUE; - break; - - case OPT_TURN_SRV: - cfg->media_cfg.turn_server = - cur_acc->turn_cfg.turn_server = pj_str(pj_optarg); - break; - - case OPT_TURN_TCP: - cfg->media_cfg.turn_conn_type = - cur_acc->turn_cfg.turn_conn_type = PJ_TURN_TP_TCP; - break; - - case OPT_TURN_USER: - cfg->media_cfg.turn_auth_cred.type = - cur_acc->turn_cfg.turn_auth_cred.type = PJ_STUN_AUTH_CRED_STATIC; - cfg->media_cfg.turn_auth_cred.data.static_cred.realm = - cur_acc->turn_cfg.turn_auth_cred.data.static_cred.realm = pj_str("*"); - cfg->media_cfg.turn_auth_cred.data.static_cred.username = - cur_acc->turn_cfg.turn_auth_cred.data.static_cred.username = pj_str(pj_optarg); - break; - - case OPT_TURN_PASSWD: - cfg->media_cfg.turn_auth_cred.data.static_cred.data_type = - cur_acc->turn_cfg.turn_auth_cred.data.static_cred.data_type = PJ_STUN_PASSWD_PLAIN; - cfg->media_cfg.turn_auth_cred.data.static_cred.data = - cur_acc->turn_cfg.turn_auth_cred.data.static_cred.data = pj_str(pj_optarg); - break; - -#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0) - case OPT_USE_SRTP: - app_config.cfg.use_srtp = my_atoi(pj_optarg); - if (!pj_isdigit(*pj_optarg) || app_config.cfg.use_srtp > 3) { - PJ_LOG(1,(THIS_FILE, "Invalid value for --use-srtp option")); - return -1; - } - if ((int)app_config.cfg.use_srtp == 3) { - /* SRTP optional mode with duplicated media offer */ - app_config.cfg.use_srtp = PJMEDIA_SRTP_OPTIONAL; - app_config.cfg.srtp_optional_dup_offer = PJ_TRUE; - cur_acc->srtp_optional_dup_offer = PJ_TRUE; - } - cur_acc->use_srtp = app_config.cfg.use_srtp; - break; - case OPT_SRTP_SECURE: - app_config.cfg.srtp_secure_signaling = my_atoi(pj_optarg); - if (!pj_isdigit(*pj_optarg) || - app_config.cfg.srtp_secure_signaling > 2) - { - PJ_LOG(1,(THIS_FILE, "Invalid value for --srtp-secure option")); - return -1; - } - cur_acc->srtp_secure_signaling = app_config.cfg.srtp_secure_signaling; - break; -#endif - - case OPT_RTP_PORT: - cfg->rtp_cfg.port = my_atoi(pj_optarg); - if (cfg->rtp_cfg.port == 0) { - enum { START_PORT=4000 }; - unsigned range; - - range = (65535-START_PORT-PJSUA_MAX_CALLS*2); - cfg->rtp_cfg.port = START_PORT + - ((pj_rand() % range) & 0xFFFE); - } - - if (cfg->rtp_cfg.port < 1 || cfg->rtp_cfg.port > 65535) { - PJ_LOG(1,(THIS_FILE, - "Error: rtp-port argument value " - "(expecting 1-65535")); - return -1; - } - break; - - case OPT_DIS_CODEC: - cfg->codec_dis[cfg->codec_dis_cnt++] = pj_str(pj_optarg); - break; - - case OPT_ADD_CODEC: - cfg->codec_arg[cfg->codec_cnt++] = pj_str(pj_optarg); - break; - - /* These options were no longer valid after new pjsua */ - /* - case OPT_COMPLEXITY: - cfg->complexity = my_atoi(pj_optarg); - if (cfg->complexity < 0 || cfg->complexity > 10) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid --complexity (expecting 0-10")); - return -1; - } - break; - */ - - case OPT_DURATION: - cfg->duration = my_atoi(pj_optarg); - break; - - case OPT_THREAD_CNT: - cfg->cfg.thread_cnt = my_atoi(pj_optarg); - if (cfg->cfg.thread_cnt > 128) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid --thread-cnt option")); - return -1; - } - break; - - case OPT_PTIME: - cfg->media_cfg.ptime = my_atoi(pj_optarg); - if (cfg->media_cfg.ptime < 10 || cfg->media_cfg.ptime > 1000) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid --ptime option")); - return -1; - } - break; - - case OPT_NO_VAD: - cfg->media_cfg.no_vad = PJ_TRUE; - break; - - case OPT_EC_TAIL: - cfg->media_cfg.ec_tail_len = my_atoi(pj_optarg); - if (cfg->media_cfg.ec_tail_len > 1000) { - PJ_LOG(1,(THIS_FILE, "I think the ec-tail length setting " - "is too big")); - return -1; - } - break; - - case OPT_EC_OPT: - cfg->media_cfg.ec_options = my_atoi(pj_optarg); - break; - - case OPT_QUALITY: - cfg->media_cfg.quality = my_atoi(pj_optarg); - if (cfg->media_cfg.quality < 0 || cfg->media_cfg.quality > 10) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid --quality (expecting 0-10")); - return -1; - } - break; - - case OPT_ILBC_MODE: - cfg->media_cfg.ilbc_mode = my_atoi(pj_optarg); - if (cfg->media_cfg.ilbc_mode!=20 && cfg->media_cfg.ilbc_mode!=30) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid --ilbc-mode (expecting 20 or 30")); - return -1; - } - break; - - case OPT_RX_DROP_PCT: - cfg->media_cfg.rx_drop_pct = my_atoi(pj_optarg); - if (cfg->media_cfg.rx_drop_pct > 100) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid --rx-drop-pct (expecting <= 100")); - return -1; - } - break; - - case OPT_TX_DROP_PCT: - cfg->media_cfg.tx_drop_pct = my_atoi(pj_optarg); - if (cfg->media_cfg.tx_drop_pct > 100) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid --tx-drop-pct (expecting <= 100")); - return -1; - } - break; - - case OPT_AUTO_ANSWER: - cfg->auto_answer = my_atoi(pj_optarg); - if (cfg->auto_answer < 100 || cfg->auto_answer > 699) { - PJ_LOG(1,(THIS_FILE, - "Error: invalid code in --auto-answer " - "(expecting 100-699")); - return -1; - } - break; - - case OPT_MAX_CALLS: - cfg->cfg.max_calls = my_atoi(pj_optarg); - if (cfg->cfg.max_calls < 1 || cfg->cfg.max_calls > PJSUA_MAX_CALLS) { - PJ_LOG(1,(THIS_FILE,"Error: maximum call setting exceeds " - "compile time limit (PJSUA_MAX_CALLS=%d)", - PJSUA_MAX_CALLS)); - return -1; - } - break; - -#if defined(PJSIP_HAS_TLS_TRANSPORT) && (PJSIP_HAS_TLS_TRANSPORT != 0) - case OPT_USE_TLS: - cfg->use_tls = PJ_TRUE; - break; - - case OPT_TLS_CA_FILE: - cfg->udp_cfg.tls_setting.ca_list_file = pj_str(pj_optarg); - break; - - case OPT_TLS_CERT_FILE: - cfg->udp_cfg.tls_setting.cert_file = pj_str(pj_optarg); - break; - - case OPT_TLS_PRIV_FILE: - cfg->udp_cfg.tls_setting.privkey_file = pj_str(pj_optarg); - break; - - case OPT_TLS_PASSWORD: - cfg->udp_cfg.tls_setting.password = pj_str(pj_optarg); - break; - - case OPT_TLS_VERIFY_SERVER: - cfg->udp_cfg.tls_setting.verify_server = PJ_TRUE; - break; - - case OPT_TLS_VERIFY_CLIENT: - cfg->udp_cfg.tls_setting.verify_client = PJ_TRUE; - cfg->udp_cfg.tls_setting.require_client_cert = PJ_TRUE; - break; - - case OPT_TLS_NEG_TIMEOUT: - cfg->udp_cfg.tls_setting.timeout.sec = atoi(pj_optarg); - break; - - case OPT_TLS_CIPHER: - { - pj_ssl_cipher cipher; - - if (pj_ansi_strnicmp(pj_optarg, "0x", 2) == 0) { - pj_str_t cipher_st = pj_str(pj_optarg + 2); - cipher = pj_strtoul2(&cipher_st, NULL, 16); - } else { - cipher = atoi(pj_optarg); - } - - if (pj_ssl_cipher_is_supported(cipher)) { - static pj_ssl_cipher tls_ciphers[128]; - - tls_ciphers[cfg->udp_cfg.tls_setting.ciphers_num++] = cipher; - cfg->udp_cfg.tls_setting.ciphers = tls_ciphers; - } else { - pj_ssl_cipher ciphers[128]; - unsigned j, ciphers_cnt; - - ciphers_cnt = PJ_ARRAY_SIZE(ciphers); - pj_ssl_cipher_get_availables(ciphers, &ciphers_cnt); - - PJ_LOG(1,(THIS_FILE, "Cipher \"%s\" is not supported by " - "TLS/SSL backend.", pj_optarg)); - printf("Available TLS/SSL ciphers (%d):\n", ciphers_cnt); - for (j=0; jcapture_dev = atoi(pj_optarg); - break; - - case OPT_PLAYBACK_DEV: - cfg->playback_dev = atoi(pj_optarg); - break; - - case OPT_STDOUT_REFRESH: - stdout_refresh = atoi(pj_optarg); - break; - - case OPT_STDOUT_REFRESH_TEXT: - stdout_refresh_text = pj_optarg; - break; - -#ifdef _IONBF - case OPT_STDOUT_NO_BUF: - setvbuf(stdout, NULL, _IONBF, 0); - break; -#endif - - case OPT_CAPTURE_LAT: - cfg->capture_lat = atoi(pj_optarg); - break; - - case OPT_PLAYBACK_LAT: - cfg->playback_lat = atoi(pj_optarg); - break; - - case OPT_SND_AUTO_CLOSE: - cfg->media_cfg.snd_auto_close_time = atoi(pj_optarg); - break; - - case OPT_NO_TONES: - cfg->no_tones = PJ_TRUE; - break; - - case OPT_JB_MAX_SIZE: - cfg->media_cfg.jb_max = atoi(pj_optarg); - break; - -#if defined(PJ_HAS_IPV6) && PJ_HAS_IPV6 - case OPT_IPV6: - cfg->ipv6 = PJ_TRUE; - break; -#endif - case OPT_QOS: - cfg->enable_qos = PJ_TRUE; - /* Set RTP traffic type to Voice */ - cfg->rtp_cfg.qos_type = PJ_QOS_TYPE_VOICE; - /* Directly apply DSCP value to SIP traffic. Say lets - * set it to CS3 (DSCP 011000). Note that this will not - * work on all platforms. - */ - cfg->udp_cfg.qos_params.flags = PJ_QOS_PARAM_HAS_DSCP; - cfg->udp_cfg.qos_params.dscp_val = 0x18; - break; - case OPT_VIDEO: - cfg->vid.vid_cnt = 1; - cfg->vid.in_auto_show = PJ_TRUE; - cfg->vid.out_auto_transmit = PJ_TRUE; - break; - case OPT_EXTRA_AUDIO: - cfg->aud_cnt++; - break; - - case OPT_VCAPTURE_DEV: - cfg->vid.vcapture_dev = atoi(pj_optarg); - cur_acc->vid_cap_dev = cfg->vid.vcapture_dev; - break; - - case OPT_VRENDER_DEV: - cfg->vid.vrender_dev = atoi(pj_optarg); - cur_acc->vid_rend_dev = cfg->vid.vrender_dev; - break; - - case OPT_PLAY_AVI: - if (app_config.avi_cnt >= PJSUA_APP_MAX_AVI) { - PJ_LOG(1,(THIS_FILE, "Too many AVIs")); - return -1; - } - app_config.avi[app_config.avi_cnt++].path = pj_str(pj_optarg); - break; - - case OPT_AUTO_PLAY_AVI: - app_config.avi_auto_play = PJ_TRUE; - break; - - case OPT_USE_CLI: - cfg->use_cli = PJ_TRUE; - break; - - case OPT_CLI_TELNET_PORT: - cfg->cli_cfg.telnet_cfg.port = (pj_uint16_t)atoi(pj_optarg); - cfg->cli_cfg.cli_fe |= CLI_FE_TELNET; - break; - - case OPT_DISABLE_CLI_CONSOLE: - cfg->cli_cfg.cli_fe &= (~CLI_FE_CONSOLE); - break; - - default: - PJ_LOG(1,(THIS_FILE, - "Argument \"%s\" is not valid. Use --help to see help", - argv[pj_optind-1])); - return -1; - } - } - - if (pj_optind != argc) { - pj_str_t uri_arg; - - if (pjsua_verify_url(argv[pj_optind]) != PJ_SUCCESS) { - PJ_LOG(1,(THIS_FILE, "Invalid SIP URI %s", argv[pj_optind])); - return -1; - } - uri_arg = pj_str(argv[pj_optind]); - if (uri_to_call) - *uri_to_call = uri_arg; - pj_optind++; - - /* Add URI to call to buddy list if it's not already there */ - for (i=0; ibuddy_cnt; ++i) { - if (pj_stricmp(&cfg->buddy_cfg[i].uri, &uri_arg)==0) - break; - } - if (i == cfg->buddy_cnt && cfg->buddy_cnt < PJSUA_MAX_BUDDIES) { - cfg->buddy_cfg[cfg->buddy_cnt++].uri = uri_arg; - } - - } else { - if (uri_to_call) - uri_to_call->slen = 0; - } - - if (pj_optind != argc) { - PJ_LOG(1,(THIS_FILE, "Error: unknown options %s", argv[pj_optind])); - return PJ_EINVAL; - } - - if (cfg->acc_cfg[cfg->acc_cnt].id.slen) - cfg->acc_cnt++; - - for (i=0; iacc_cnt; ++i) { - pjsua_acc_config *acfg = &cfg->acc_cfg[i]; - - if (acfg->cred_info[acfg->cred_count].username.slen) - { - acfg->cred_count++; - } - - if (acfg->ice_cfg.enable_ice) { - acfg->ice_cfg_use = PJSUA_ICE_CONFIG_USE_CUSTOM; - } - if (acfg->turn_cfg.enable_turn) { - acfg->turn_cfg_use = PJSUA_TURN_CONFIG_USE_CUSTOM; - } - - /* When IMS mode is enabled for the account, verify that settings - * are okay. - */ - /* For now we check if IMS mode is activated by looking if - * initial_auth is set. - */ - if (acfg->auth_pref.initial_auth && acfg->cred_count) { - /* Realm must point to the real domain */ - if (*acfg->cred_info[0].realm.ptr=='*') { - PJ_LOG(1,(THIS_FILE, - "Error: cannot use '*' as realm with IMS")); - return PJ_EINVAL; - } - - /* Username for authentication must be in a@b format */ - if (strchr(acfg->cred_info[0].username.ptr, '@')==0) { - PJ_LOG(1,(THIS_FILE, - "Error: Username for authentication must " - "be in user@domain format with IMS")); - return PJ_EINVAL; - } - } - } - return PJ_SUCCESS; -} - -/* Set default config. */ -static void default_config() -{ - char tmp[80]; - unsigned i; - pjsua_app_config *cfg = &app_config; - - pjsua_config_default(&cfg->cfg); - pj_ansi_sprintf(tmp, "PJSUA v%s %s", pj_get_version(), - pj_get_sys_info()->info.ptr); - pj_strdup2_with_null(app_config.pool, &cfg->cfg.user_agent, tmp); - - pjsua_logging_config_default(&cfg->log_cfg); - pjsua_media_config_default(&cfg->media_cfg); - pjsua_transport_config_default(&cfg->udp_cfg); - cfg->udp_cfg.port = 5060; - pjsua_transport_config_default(&cfg->rtp_cfg); - cfg->rtp_cfg.port = 4000; - cfg->redir_op = PJSIP_REDIRECT_ACCEPT_REPLACE; - cfg->duration = PJSUA_APP_NO_LIMIT_DURATION; - cfg->wav_id = PJSUA_INVALID_ID; - cfg->rec_id = PJSUA_INVALID_ID; - cfg->wav_port = PJSUA_INVALID_ID; - cfg->rec_port = PJSUA_INVALID_ID; - cfg->mic_level = cfg->speaker_level = 1.0; - cfg->capture_dev = PJSUA_INVALID_ID; - cfg->playback_dev = PJSUA_INVALID_ID; - cfg->capture_lat = PJMEDIA_SND_DEFAULT_REC_LATENCY; - cfg->playback_lat = PJMEDIA_SND_DEFAULT_PLAY_LATENCY; - cfg->ringback_slot = PJSUA_INVALID_ID; - cfg->ring_slot = PJSUA_INVALID_ID; - - for (i=0; iacc_cfg); ++i) - pjsua_acc_config_default(&cfg->acc_cfg[i]); - - for (i=0; ibuddy_cfg); ++i) - pjsua_buddy_config_default(&cfg->buddy_cfg[i]); - - cfg->vid.vcapture_dev = PJMEDIA_VID_DEFAULT_CAPTURE_DEV; - cfg->vid.vrender_dev = PJMEDIA_VID_DEFAULT_RENDER_DEV; - cfg->aud_cnt = 1; - - cfg->avi_def_idx = PJSUA_INVALID_ID; - - cfg->use_cli = PJ_FALSE; - cfg->cli_cfg.cli_fe = CLI_FE_CONSOLE; - cfg->cli_cfg.telnet_cfg.port = 0; -} - -static pj_status_t parse_config(int argc, char *argv[], pj_str_t *uri_arg) -{ - pj_status_t status; - - /* Initialize default config */ - default_config(app_config); - - /* Parse the arguments */ - status = parse_args(argc, argv, uri_arg); - return status; -} - -PJ_DEF(pj_status_t) load_config(int argc, - char **argv, - pj_str_t *uri_arg) -{ - pj_status_t status; - pj_bool_t use_cli = PJ_FALSE; - int cli_fe = 0; - pj_uint16_t cli_telnet_port = 0; - - /** CLI options are not changable **/ - if (app_running) { - use_cli = app_config.use_cli; - cli_fe = app_config.cli_cfg.cli_fe; - cli_telnet_port = app_config.cli_cfg.telnet_cfg.port; - } - - status = parse_config(argc, argv, uri_arg); - if (status != PJ_SUCCESS) - return status; - - if (app_running) { - app_config.use_cli = use_cli; - app_config.cli_cfg.cli_fe = cli_fe; - app_config.cli_cfg.telnet_cfg.port = cli_telnet_port; - } - - return status; -} - -/* - * Save account settings - */ -static void write_account_settings(int acc_index, pj_str_t *result) -{ - unsigned i; - char line[128]; - pjsua_acc_config *acc_cfg = &app_config.acc_cfg[acc_index]; - - - pj_ansi_sprintf(line, "\n#\n# Account %d:\n#\n", acc_index); - pj_strcat2(result, line); - - - /* Identity */ - if (acc_cfg->id.slen) { - pj_ansi_sprintf(line, "--id %.*s\n", - (int)acc_cfg->id.slen, - acc_cfg->id.ptr); - pj_strcat2(result, line); - } - - /* Registrar server */ - if (acc_cfg->reg_uri.slen) { - pj_ansi_sprintf(line, "--registrar %.*s\n", - (int)acc_cfg->reg_uri.slen, - acc_cfg->reg_uri.ptr); - pj_strcat2(result, line); - - pj_ansi_sprintf(line, "--reg-timeout %u\n", - acc_cfg->reg_timeout); - pj_strcat2(result, line); - } - - /* Contact */ - if (acc_cfg->force_contact.slen) { - pj_ansi_sprintf(line, "--contact %.*s\n", - (int)acc_cfg->force_contact.slen, - acc_cfg->force_contact.ptr); - pj_strcat2(result, line); - } - - /* Contact header parameters */ - if (acc_cfg->contact_params.slen) { - pj_ansi_sprintf(line, "--contact-params %.*s\n", - (int)acc_cfg->contact_params.slen, - acc_cfg->contact_params.ptr); - pj_strcat2(result, line); - } - - /* Contact URI parameters */ - if (acc_cfg->contact_uri_params.slen) { - pj_ansi_sprintf(line, "--contact-uri-params %.*s\n", - (int)acc_cfg->contact_uri_params.slen, - acc_cfg->contact_uri_params.ptr); - pj_strcat2(result, line); - } - - /* */ - if (acc_cfg->allow_contact_rewrite!=1) - { - pj_ansi_sprintf(line, "--auto-update-nat %i\n", - (int)acc_cfg->allow_contact_rewrite); - pj_strcat2(result, line); - } - -#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0) - /* SRTP */ - if (acc_cfg->use_srtp) { - int use_srtp = (int)acc_cfg->use_srtp; - if (use_srtp == PJMEDIA_SRTP_OPTIONAL && - acc_cfg->srtp_optional_dup_offer) - { - use_srtp = 3; - } - pj_ansi_sprintf(line, "--use-srtp %i\n", use_srtp); - pj_strcat2(result, line); - } - if (acc_cfg->srtp_secure_signaling != - PJSUA_DEFAULT_SRTP_SECURE_SIGNALING) - { - pj_ansi_sprintf(line, "--srtp-secure %d\n", - acc_cfg->srtp_secure_signaling); - pj_strcat2(result, line); - } -#endif - - /* Proxy */ - for (i=0; iproxy_cnt; ++i) { - pj_ansi_sprintf(line, "--proxy %.*s\n", - (int)acc_cfg->proxy[i].slen, - acc_cfg->proxy[i].ptr); - pj_strcat2(result, line); - } - - /* Credentials */ - for (i=0; icred_count; ++i) { - if (acc_cfg->cred_info[i].realm.slen) { - pj_ansi_sprintf(line, "--realm %.*s\n", - (int)acc_cfg->cred_info[i].realm.slen, - acc_cfg->cred_info[i].realm.ptr); - pj_strcat2(result, line); - } - - if (acc_cfg->cred_info[i].username.slen) { - pj_ansi_sprintf(line, "--username %.*s\n", - (int)acc_cfg->cred_info[i].username.slen, - acc_cfg->cred_info[i].username.ptr); - pj_strcat2(result, line); - } - - if (acc_cfg->cred_info[i].data.slen) { - pj_ansi_sprintf(line, "--password %.*s\n", - (int)acc_cfg->cred_info[i].data.slen, - acc_cfg->cred_info[i].data.ptr); - pj_strcat2(result, line); - } - - if (i != acc_cfg->cred_count - 1) - pj_strcat2(result, "--next-cred\n"); - } - - /* reg-use-proxy */ - if (acc_cfg->reg_use_proxy != 3) { - pj_ansi_sprintf(line, "--reg-use-proxy %d\n", - acc_cfg->reg_use_proxy); - pj_strcat2(result, line); - } - - /* rereg-delay */ - if (acc_cfg->reg_retry_interval != PJSUA_REG_RETRY_INTERVAL) { - pj_ansi_sprintf(line, "--rereg-delay %d\n", - acc_cfg->reg_retry_interval); - pj_strcat2(result, line); - } - - /* 100rel extension */ - if (acc_cfg->require_100rel) { - pj_strcat2(result, "--use-100rel\n"); - } - - /* Session Timer extension */ - if (acc_cfg->use_timer) { - pj_ansi_sprintf(line, "--use-timer %d\n", - acc_cfg->use_timer); - pj_strcat2(result, line); - } - if (acc_cfg->timer_setting.min_se != 90) { - pj_ansi_sprintf(line, "--timer-min-se %d\n", - acc_cfg->timer_setting.min_se); - pj_strcat2(result, line); - } - if (acc_cfg->timer_setting.sess_expires != PJSIP_SESS_TIMER_DEF_SE) { - pj_ansi_sprintf(line, "--timer-se %d\n", - acc_cfg->timer_setting.sess_expires); - pj_strcat2(result, line); - } - - /* Publish */ - if (acc_cfg->publish_enabled) - pj_strcat2(result, "--publish\n"); - - /* MWI */ - if (acc_cfg->mwi_enabled) - pj_strcat2(result, "--mwi\n"); - - if (acc_cfg->sip_stun_use != PJSUA_STUN_USE_DEFAULT || - acc_cfg->media_stun_use != PJSUA_STUN_USE_DEFAULT) - { - pj_strcat2(result, "--disable-stun\n"); - } - - /* Media Transport*/ - if (acc_cfg->ice_cfg.enable_ice) - pj_strcat2(result, "--use-ice\n"); - - if (acc_cfg->ice_cfg.ice_opt.aggressive == PJ_FALSE) - pj_strcat2(result, "--ice-regular\n"); - - if (acc_cfg->turn_cfg.enable_turn) - pj_strcat2(result, "--use-turn\n"); - - if (acc_cfg->ice_cfg.ice_max_host_cands >= 0) { - pj_ansi_sprintf(line, "--ice_max_host_cands %d\n", - acc_cfg->ice_cfg.ice_max_host_cands); - pj_strcat2(result, line); - } - - if (acc_cfg->ice_cfg.ice_no_rtcp) - pj_strcat2(result, "--ice-no-rtcp\n"); - - if (acc_cfg->turn_cfg.turn_server.slen) { - pj_ansi_sprintf(line, "--turn-srv %.*s\n", - (int)acc_cfg->turn_cfg.turn_server.slen, - acc_cfg->turn_cfg.turn_server.ptr); - pj_strcat2(result, line); - } - - if (acc_cfg->turn_cfg.turn_conn_type == PJ_TURN_TP_TCP) - pj_strcat2(result, "--turn-tcp\n"); - - if (acc_cfg->turn_cfg.turn_auth_cred.data.static_cred.username.slen) { - pj_ansi_sprintf(line, "--turn-user %.*s\n", - (int)acc_cfg->turn_cfg.turn_auth_cred.data.static_cred.username.slen, - acc_cfg->turn_cfg.turn_auth_cred.data.static_cred.username.ptr); - pj_strcat2(result, line); - } - - if (acc_cfg->turn_cfg.turn_auth_cred.data.static_cred.data.slen) { - pj_ansi_sprintf(line, "--turn-passwd %.*s\n", - (int)acc_cfg->turn_cfg.turn_auth_cred.data.static_cred.data.slen, - acc_cfg->turn_cfg.turn_auth_cred.data.static_cred.data.ptr); - pj_strcat2(result, line); - } -} - -/* - * Write settings. - */ -PJ_DEF(int) write_settings(pjsua_app_config *config, char *buf, pj_size_t max) -{ - unsigned acc_index; - unsigned i; - pj_str_t cfg; - char line[128]; - extern pj_bool_t pjsip_use_compact_form; - - PJ_UNUSED_ARG(max); - - cfg.ptr = buf; - cfg.slen = 0; - - /* Logging. */ - pj_strcat2(&cfg, "#\n# Logging options:\n#\n"); - pj_ansi_sprintf(line, "--log-level %d\n", - config->log_cfg.level); - pj_strcat2(&cfg, line); - - pj_ansi_sprintf(line, "--app-log-level %d\n", - config->log_cfg.console_level); - pj_strcat2(&cfg, line); - - if (config->log_cfg.log_filename.slen) { - pj_ansi_sprintf(line, "--log-file %.*s\n", - (int)config->log_cfg.log_filename.slen, - config->log_cfg.log_filename.ptr); - pj_strcat2(&cfg, line); - } - - if (config->log_cfg.log_file_flags & PJ_O_APPEND) { - pj_strcat2(&cfg, "--log-append\n"); - } - - /* Save account settings. */ - for (acc_index=0; acc_index < config->acc_cnt; ++acc_index) { - - write_account_settings(acc_index, &cfg); - - if (acc_index < config->acc_cnt-1) - pj_strcat2(&cfg, "--next-account\n"); - } - - pj_strcat2(&cfg, "\n#\n# Network settings:\n#\n"); - - /* Nameservers */ - for (i=0; icfg.nameserver_count; ++i) { - pj_ansi_sprintf(line, "--nameserver %.*s\n", - (int)config->cfg.nameserver[i].slen, - config->cfg.nameserver[i].ptr); - pj_strcat2(&cfg, line); - } - - /* Outbound proxy */ - for (i=0; icfg.outbound_proxy_cnt; ++i) { - pj_ansi_sprintf(line, "--outbound %.*s\n", - (int)config->cfg.outbound_proxy[i].slen, - config->cfg.outbound_proxy[i].ptr); - pj_strcat2(&cfg, line); - } - - /* Transport options */ - if (config->ipv6) { - pj_strcat2(&cfg, "--ipv6\n"); - } - if (config->enable_qos) { - pj_strcat2(&cfg, "--set-qos\n"); - } - - /* UDP Transport. */ - pj_ansi_sprintf(line, "--local-port %d\n", config->udp_cfg.port); - pj_strcat2(&cfg, line); - - /* IP address, if any. */ - if (config->udp_cfg.public_addr.slen) { - pj_ansi_sprintf(line, "--ip-addr %.*s\n", - (int)config->udp_cfg.public_addr.slen, - config->udp_cfg.public_addr.ptr); - pj_strcat2(&cfg, line); - } - - /* Bound IP address, if any. */ - if (config->udp_cfg.bound_addr.slen) { - pj_ansi_sprintf(line, "--bound-addr %.*s\n", - (int)config->udp_cfg.bound_addr.slen, - config->udp_cfg.bound_addr.ptr); - pj_strcat2(&cfg, line); - } - - /* No TCP ? */ - if (config->no_tcp) { - pj_strcat2(&cfg, "--no-tcp\n"); - } - - /* No UDP ? */ - if (config->no_udp) { - pj_strcat2(&cfg, "--no-udp\n"); - } - - /* STUN */ - for (i=0; icfg.stun_srv_cnt; ++i) { - pj_ansi_sprintf(line, "--stun-srv %.*s\n", - (int)config->cfg.stun_srv[i].slen, - config->cfg.stun_srv[i].ptr); - pj_strcat2(&cfg, line); - } - -#if defined(PJSIP_HAS_TLS_TRANSPORT) && (PJSIP_HAS_TLS_TRANSPORT != 0) - /* TLS */ - if (config->use_tls) - pj_strcat2(&cfg, "--use-tls\n"); - if (config->udp_cfg.tls_setting.ca_list_file.slen) { - pj_ansi_sprintf(line, "--tls-ca-file %.*s\n", - (int)config->udp_cfg.tls_setting.ca_list_file.slen, - config->udp_cfg.tls_setting.ca_list_file.ptr); - pj_strcat2(&cfg, line); - } - if (config->udp_cfg.tls_setting.cert_file.slen) { - pj_ansi_sprintf(line, "--tls-cert-file %.*s\n", - (int)config->udp_cfg.tls_setting.cert_file.slen, - config->udp_cfg.tls_setting.cert_file.ptr); - pj_strcat2(&cfg, line); - } - if (config->udp_cfg.tls_setting.privkey_file.slen) { - pj_ansi_sprintf(line, "--tls-privkey-file %.*s\n", - (int)config->udp_cfg.tls_setting.privkey_file.slen, - config->udp_cfg.tls_setting.privkey_file.ptr); - pj_strcat2(&cfg, line); - } - - if (config->udp_cfg.tls_setting.password.slen) { - pj_ansi_sprintf(line, "--tls-password %.*s\n", - (int)config->udp_cfg.tls_setting.password.slen, - config->udp_cfg.tls_setting.password.ptr); - pj_strcat2(&cfg, line); - } - - if (config->udp_cfg.tls_setting.verify_server) - pj_strcat2(&cfg, "--tls-verify-server\n"); - - if (config->udp_cfg.tls_setting.verify_client) - pj_strcat2(&cfg, "--tls-verify-client\n"); - - if (config->udp_cfg.tls_setting.timeout.sec) { - pj_ansi_sprintf(line, "--tls-neg-timeout %d\n", - (int)config->udp_cfg.tls_setting.timeout.sec); - pj_strcat2(&cfg, line); - } - - for (i=0; iudp_cfg.tls_setting.ciphers_num; ++i) { - pj_ansi_sprintf(line, "--tls-cipher 0x%06X # %s\n", - config->udp_cfg.tls_setting.ciphers[i], - pj_ssl_cipher_name(config->udp_cfg.tls_setting.ciphers[i])); - pj_strcat2(&cfg, line); - } -#endif - - pj_strcat2(&cfg, "\n#\n# Media settings:\n#\n"); - - /* Video & extra audio */ - for (i=0; ivid.vid_cnt; ++i) { - pj_strcat2(&cfg, "--video\n"); - } - for (i=1; iaud_cnt; ++i) { - pj_strcat2(&cfg, "--extra-audio\n"); - } - - /* SRTP */ -#if PJMEDIA_HAS_SRTP - if (app_config.cfg.use_srtp != PJSUA_DEFAULT_USE_SRTP) { - int use_srtp = (int)app_config.cfg.use_srtp; - if (use_srtp == PJMEDIA_SRTP_OPTIONAL && - app_config.cfg.srtp_optional_dup_offer) - { - use_srtp = 3; - } - pj_ansi_sprintf(line, "--use-srtp %d\n", use_srtp); - pj_strcat2(&cfg, line); - } - if (app_config.cfg.srtp_secure_signaling != - PJSUA_DEFAULT_SRTP_SECURE_SIGNALING) - { - pj_ansi_sprintf(line, "--srtp-secure %d\n", - app_config.cfg.srtp_secure_signaling); - pj_strcat2(&cfg, line); - } -#endif - - /* Media */ - if (config->null_audio) - pj_strcat2(&cfg, "--null-audio\n"); - if (config->auto_play) - pj_strcat2(&cfg, "--auto-play\n"); - if (config->auto_loop) - pj_strcat2(&cfg, "--auto-loop\n"); - if (config->auto_conf) - pj_strcat2(&cfg, "--auto-conf\n"); - for (i=0; iwav_count; ++i) { - pj_ansi_sprintf(line, "--play-file %s\n", - config->wav_files[i].ptr); - pj_strcat2(&cfg, line); - } - for (i=0; itone_count; ++i) { - pj_ansi_sprintf(line, "--play-tone %d,%d,%d,%d\n", - config->tones[i].freq1, config->tones[i].freq2, - config->tones[i].on_msec, config->tones[i].off_msec); - pj_strcat2(&cfg, line); - } - if (config->rec_file.slen) { - pj_ansi_sprintf(line, "--rec-file %s\n", - config->rec_file.ptr); - pj_strcat2(&cfg, line); - } - if (config->auto_rec) - pj_strcat2(&cfg, "--auto-rec\n"); - if (config->capture_dev != PJSUA_INVALID_ID) { - pj_ansi_sprintf(line, "--capture-dev %d\n", config->capture_dev); - pj_strcat2(&cfg, line); - } - if (config->playback_dev != PJSUA_INVALID_ID) { - pj_ansi_sprintf(line, "--playback-dev %d\n", config->playback_dev); - pj_strcat2(&cfg, line); - } - if (config->media_cfg.snd_auto_close_time != -1) { - pj_ansi_sprintf(line, "--snd-auto-close %d\n", - config->media_cfg.snd_auto_close_time); - pj_strcat2(&cfg, line); - } - if (config->no_tones) { - pj_strcat2(&cfg, "--no-tones\n"); - } - if (config->media_cfg.jb_max != -1) { - pj_ansi_sprintf(line, "--jb-max-size %d\n", - config->media_cfg.jb_max); - pj_strcat2(&cfg, line); - } - - /* Sound device latency */ - if (config->capture_lat != PJMEDIA_SND_DEFAULT_REC_LATENCY) { - pj_ansi_sprintf(line, "--capture-lat %d\n", config->capture_lat); - pj_strcat2(&cfg, line); - } - if (config->playback_lat != PJMEDIA_SND_DEFAULT_PLAY_LATENCY) { - pj_ansi_sprintf(line, "--playback-lat %d\n", config->playback_lat); - pj_strcat2(&cfg, line); - } - - /* Media clock rate. */ - if (config->media_cfg.clock_rate != PJSUA_DEFAULT_CLOCK_RATE) { - pj_ansi_sprintf(line, "--clock-rate %d\n", - config->media_cfg.clock_rate); - pj_strcat2(&cfg, line); - } else { - pj_ansi_sprintf(line, "#using default --clock-rate %d\n", - config->media_cfg.clock_rate); - pj_strcat2(&cfg, line); - } - - if (config->media_cfg.snd_clock_rate && - config->media_cfg.snd_clock_rate != config->media_cfg.clock_rate) - { - pj_ansi_sprintf(line, "--snd-clock-rate %d\n", - config->media_cfg.snd_clock_rate); - pj_strcat2(&cfg, line); - } - - /* Stereo mode. */ - if (config->media_cfg.channel_count == 2) { - pj_ansi_sprintf(line, "--stereo\n"); - pj_strcat2(&cfg, line); - } - - /* quality */ - if (config->media_cfg.quality != PJSUA_DEFAULT_CODEC_QUALITY) { - pj_ansi_sprintf(line, "--quality %d\n", - config->media_cfg.quality); - pj_strcat2(&cfg, line); - } else { - pj_ansi_sprintf(line, "#using default --quality %d\n", - config->media_cfg.quality); - pj_strcat2(&cfg, line); - } - - if (config->vid.vcapture_dev != PJMEDIA_VID_DEFAULT_CAPTURE_DEV) { - pj_ansi_sprintf(line, "--vcapture-dev %d\n", config->vid.vcapture_dev); - pj_strcat2(&cfg, line); - } - if (config->vid.vrender_dev != PJMEDIA_VID_DEFAULT_RENDER_DEV) { - pj_ansi_sprintf(line, "--vrender-dev %d\n", config->vid.vrender_dev); - pj_strcat2(&cfg, line); - } - for (i=0; iavi_cnt; ++i) { - pj_ansi_sprintf(line, "--play-avi %s\n", config->avi[i].path.ptr); - pj_strcat2(&cfg, line); - } - if (config->avi_auto_play) { - pj_ansi_sprintf(line, "--auto-play-avi\n"); - pj_strcat2(&cfg, line); - } - - /* ptime */ - if (config->media_cfg.ptime) { - pj_ansi_sprintf(line, "--ptime %d\n", - config->media_cfg.ptime); - pj_strcat2(&cfg, line); - } - - /* no-vad */ - if (config->media_cfg.no_vad) { - pj_strcat2(&cfg, "--no-vad\n"); - } - - /* ec-tail */ - if (config->media_cfg.ec_tail_len != PJSUA_DEFAULT_EC_TAIL_LEN) { - pj_ansi_sprintf(line, "--ec-tail %d\n", - config->media_cfg.ec_tail_len); - pj_strcat2(&cfg, line); - } else { - pj_ansi_sprintf(line, "#using default --ec-tail %d\n", - config->media_cfg.ec_tail_len); - pj_strcat2(&cfg, line); - } - - /* ec-opt */ - if (config->media_cfg.ec_options != 0) { - pj_ansi_sprintf(line, "--ec-opt %d\n", - config->media_cfg.ec_options); - pj_strcat2(&cfg, line); - } - - /* ilbc-mode */ - if (config->media_cfg.ilbc_mode != PJSUA_DEFAULT_ILBC_MODE) { - pj_ansi_sprintf(line, "--ilbc-mode %d\n", - config->media_cfg.ilbc_mode); - pj_strcat2(&cfg, line); - } else { - pj_ansi_sprintf(line, "#using default --ilbc-mode %d\n", - config->media_cfg.ilbc_mode); - pj_strcat2(&cfg, line); - } - - /* RTP drop */ - if (config->media_cfg.tx_drop_pct) { - pj_ansi_sprintf(line, "--tx-drop-pct %d\n", - config->media_cfg.tx_drop_pct); - pj_strcat2(&cfg, line); - - } - if (config->media_cfg.rx_drop_pct) { - pj_ansi_sprintf(line, "--rx-drop-pct %d\n", - config->media_cfg.rx_drop_pct); - pj_strcat2(&cfg, line); - - } - - /* Start RTP port. */ - pj_ansi_sprintf(line, "--rtp-port %d\n", - config->rtp_cfg.port); - pj_strcat2(&cfg, line); - - /* Disable codec */ - for (i=0; icodec_dis_cnt; ++i) { - pj_ansi_sprintf(line, "--dis-codec %s\n", - config->codec_dis[i].ptr); - pj_strcat2(&cfg, line); - } - /* Add codec. */ - for (i=0; icodec_cnt; ++i) { - pj_ansi_sprintf(line, "--add-codec %s\n", - config->codec_arg[i].ptr); - pj_strcat2(&cfg, line); - } - - pj_strcat2(&cfg, "\n#\n# User agent:\n#\n"); - - /* Auto-answer. */ - if (config->auto_answer != 0) { - pj_ansi_sprintf(line, "--auto-answer %d\n", - config->auto_answer); - pj_strcat2(&cfg, line); - } - - /* accept-redirect */ - if (config->redir_op != PJSIP_REDIRECT_ACCEPT_REPLACE) { - pj_ansi_sprintf(line, "--accept-redirect %d\n", - config->redir_op); - pj_strcat2(&cfg, line); - } - - /* Max calls. */ - pj_ansi_sprintf(line, "--max-calls %d\n", - config->cfg.max_calls); - pj_strcat2(&cfg, line); - - /* Uas-duration. */ - if (config->duration != PJSUA_APP_NO_LIMIT_DURATION) { - pj_ansi_sprintf(line, "--duration %d\n", - config->duration); - pj_strcat2(&cfg, line); - } - - /* norefersub ? */ - if (config->no_refersub) { - pj_strcat2(&cfg, "--norefersub\n"); - } - - if (pjsip_use_compact_form) - { - pj_strcat2(&cfg, "--use-compact-form\n"); - } - - if (!config->cfg.force_lr) { - pj_strcat2(&cfg, "--no-force-lr\n"); - } - - pj_strcat2(&cfg, "\n#\n# Buddies:\n#\n"); - - /* Add buddies. */ - for (i=0; ibuddy_cnt; ++i) { - pj_ansi_sprintf(line, "--add-buddy %.*s\n", - (int)config->buddy_cfg[i].uri.slen, - config->buddy_cfg[i].uri.ptr); - pj_strcat2(&cfg, line); - } - - /* SIP extensions. */ - pj_strcat2(&cfg, "\n#\n# SIP extensions:\n#\n"); - /* 100rel extension */ - if (config->cfg.require_100rel) { - pj_strcat2(&cfg, "--use-100rel\n"); - } - /* Session Timer extension */ - if (config->cfg.use_timer) { - pj_ansi_sprintf(line, "--use-timer %d\n", - config->cfg.use_timer); - pj_strcat2(&cfg, line); - } - if (config->cfg.timer_setting.min_se != 90) { - pj_ansi_sprintf(line, "--timer-min-se %d\n", - config->cfg.timer_setting.min_se); - pj_strcat2(&cfg, line); - } - if (config->cfg.timer_setting.sess_expires != PJSIP_SESS_TIMER_DEF_SE) { - pj_ansi_sprintf(line, "--timer-se %d\n", - config->cfg.timer_setting.sess_expires); - pj_strcat2(&cfg, line); - } - - *(cfg.ptr + cfg.slen) = '\0'; - return cfg.slen; -} diff --git a/pjsip-apps/src/pjsua/pjsua_legacy.c b/pjsip-apps/src/pjsua/pjsua_legacy.c deleted file mode 100644 index 0818aa86..00000000 --- a/pjsip-apps/src/pjsua/pjsua_legacy.c +++ /dev/null @@ -1,1927 +0,0 @@ -/* $Id$ */ -/* - * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com) - * Copyright (C) 2003-2008 Benny Prijono - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#include -#include "pjsua_common.h" - -#define THIS_FILE "pjsua_legacy.c" - -static pj_bool_t cmd_echo; - -/* - * Print buddy list. - */ -static void print_buddy_list() -{ - pjsua_buddy_id ids[64]; - int i; - unsigned count = PJ_ARRAY_SIZE(ids); - - puts("Buddy list:"); - - pjsua_enum_buddies(ids, &count); - - if (count == 0) - puts(" -none-"); - else { - for (i=0; i<(int)count; ++i) { - pjsua_buddy_info info; - - if (pjsua_buddy_get_info(ids[i], &info) != PJ_SUCCESS) - continue; - - printf(" [%2d] <%.*s> %.*s\n", - ids[i]+1, - (int)info.status_text.slen, - info.status_text.ptr, - (int)info.uri.slen, - info.uri.ptr); - } - } - puts(""); -} - -/* - * Input URL. - */ -static void ui_input_url(const char *title, char *buf, int len, - input_result *result) -{ - result->nb_result = PJSUA_APP_NO_NB; - result->uri_result = NULL; - - print_buddy_list(); - - printf("Choices:\n" - " 0 For current dialog.\n" - " -1 All %d buddies in buddy list\n" - " [1 -%2d] Select from buddy list\n" - " URL An URL\n" - " Empty input (or 'q') to cancel\n" - , pjsua_get_buddy_count(), pjsua_get_buddy_count()); - printf("%s: ", title); - - fflush(stdout); - if (fgets(buf, len, stdin) == NULL) - return; - len = strlen(buf); - - /* Left trim */ - while (pj_isspace(*buf)) { - ++buf; - --len; - } - - /* Remove trailing newlines */ - while (len && (buf[len-1] == '\r' || buf[len-1] == '\n')) - buf[--len] = '\0'; - - if (len == 0 || buf[0]=='q') - return; - - if (pj_isdigit(*buf) || *buf=='-') { - - int i; - - if (*buf=='-') - i = 1; - else - i = 0; - - for (; inb_result = my_atoi(buf); - - if (result->nb_result >= 0 && - result->nb_result <= (int)pjsua_get_buddy_count()) - { - return; - } - if (result->nb_result == -1) - return; - - puts("Invalid input"); - result->nb_result = PJSUA_APP_NO_NB; - return; - - } else { - pj_status_t status; - - if ((status=pjsua_verify_url(buf)) != PJ_SUCCESS) { - pjsua_perror(THIS_FILE, "Invalid URL", status); - return; - } - - result->uri_result = buf; - } -} - -static pj_bool_t simple_input(const char *title, char *buf, pj_size_t len) -{ - char *p; - - printf("%s (empty to cancel): ", title); fflush(stdout); - if (fgets(buf, len, stdin) == NULL) - return PJ_FALSE; - - /* Remove trailing newlines. */ - for (p=buf; ; ++p) { - if (*p=='\r' || *p=='\n') *p='\0'; - else if (!*p) break; - } - - if (!*buf) - return PJ_FALSE; - - return PJ_TRUE; -} - -/* - * Print account status. - */ -static void print_acc_status(int acc_id) -{ - char buf[80]; - pjsua_acc_info info; - - pjsua_acc_get_info(acc_id, &info); - - if (!info.has_registration) { - pj_ansi_snprintf(buf, sizeof(buf), "%.*s", - (int)info.status_text.slen, - info.status_text.ptr); - - } else { - pj_ansi_snprintf(buf, sizeof(buf), - "%d/%.*s (expires=%d)", - info.status, - (int)info.status_text.slen, - info.status_text.ptr, - info.expires); - - } - - printf(" %c[%2d] %.*s: %s\n", (acc_id==current_acc?'*':' '), - acc_id, (int)info.acc_uri.slen, info.acc_uri.ptr, buf); - printf(" Online status: %.*s\n", - (int)info.online_status_text.slen, - info.online_status_text.ptr); -} - -/* - * Show a bit of help. - */ -static void keystroke_help() -{ - pjsua_acc_id acc_ids[16]; - unsigned count = PJ_ARRAY_SIZE(acc_ids); - int i; - - printf(">>>>\n"); - - pjsua_enum_accs(acc_ids, &count); - - printf("Account list:\n"); - for (i=0; i<(int)count; ++i) - print_acc_status(acc_ids[i]); - - print_buddy_list(); - - //puts("Commands:"); - puts("+=============================================================================+"); - puts("| Call Commands: | Buddy, IM & Presence: | Account: |"); - puts("| | | |"); - puts("| m Make new call | +b Add new buddy .| +a Add new accnt |"); - puts("| M Make multiple calls | -b Delete buddy | -a Delete accnt. |"); - puts("| a Answer call | i Send IM | !a Modify accnt. |"); - puts("| h Hangup call (ha=all) | s Subscribe presence | rr (Re-)register |"); - puts("| H Hold call | u Unsubscribe presence | ru Unregister |"); - puts("| v re-inVite (release hold) | t ToGgle Online status | > Cycle next ac.|"); - puts("| U send UPDATE | T Set online status | < Cycle prev ac.|"); - puts("| ],[ Select next/prev call +--------------------------+-------------------+"); - puts("| x Xfer call | Media Commands: | Status & Config: |"); - puts("| X Xfer with Replaces | | |"); - puts("| # Send RFC 2833 DTMF | cl List ports | d Dump status |"); - puts("| * Send DTMF with INFO | cc Connect port | dd Dump detailed |"); - puts("| dq Dump curr. call quality | cd Disconnect port | dc Dump config |"); - puts("| | V Adjust audio Volume | f Save config |"); - puts("| S Send arbitrary REQUEST | Cp Codec priorities | |"); - puts("+-----------------------------------------------------------------------------+"); -#if PJSUA_HAS_VIDEO - puts("| Video: \"vid help\" for more info |"); - puts("+-----------------------------------------------------------------------------+"); -#endif - puts("| q QUIT L ReLoad sleep MS echo [0|1|txt] n: detect NAT type |"); - puts("+=============================================================================+"); - - i = pjsua_call_get_count(); - printf("You have %d active call%s\n", i, (i>1?"s":"")); - - if (current_call != PJSUA_INVALID_ID) { - pjsua_call_info ci; - if (pjsua_call_get_info(current_call, &ci)==PJ_SUCCESS) - printf("Current call id=%d to %.*s [%.*s]\n", current_call, - (int)ci.remote_info.slen, ci.remote_info.ptr, - (int)ci.state_text.slen, ci.state_text.ptr); - } -} - -/* Help screen for video */ -#if PJSUA_HAS_VIDEO -static void vid_show_help() -{ - pj_bool_t vid_enabled = (app_config.vid.vid_cnt > 0); - - puts("+=============================================================================+"); - puts("| Video commands: |"); - puts("| |"); - puts("| vid help Show this help screen |"); - puts("| vid enable|disable Enable or disable video in next offer/answer |"); - puts("| vid acc show Show current account video settings |"); - puts("| vid acc autorx on|off Automatically show incoming video on/off |"); - puts("| vid acc autotx on|off Automatically offer video on/off |"); - puts("| vid acc cap ID Set default capture device for current acc |"); - puts("| vid acc rend ID Set default renderer device for current acc |"); - puts("| vid call rx on|off N Enable/disable video RX for stream N in curr call |"); - puts("| vid call tx on|off N Enable/disable video TX for stream N in curr call |"); - puts("| vid call add Add video stream for current call |"); - puts("| vid call enable|disable N Enable/disable stream #N in current call |"); - puts("| vid call cap N ID Set capture dev ID for stream #N in current call |"); - puts("| vid dev list List all video devices |"); - puts("| vid dev refresh Refresh video device list |"); - puts("| vid dev prev on|off ID Enable/disable preview for specified device ID |"); - puts("| vid codec list List video codecs |"); - puts("| vid codec prio ID PRIO Set codec ID priority to PRIO |"); - puts("| vid codec fps ID NUM DEN Set codec ID framerate to (NUM/DEN) fps |"); - puts("| vid codec bw ID AVG MAX Set codec ID bitrate to AVG & MAX kbps |"); - puts("| vid codec size ID W H Set codec ID size/resolution to W x H |"); - puts("| vid win list List all active video windows |"); - puts("| vid win arrange Auto arrange windows |"); - puts("| vid win show|hide ID Show/hide the specified video window ID |"); - puts("| vid win move ID X Y Move window ID to position X,Y |"); - puts("| vid win resize ID w h Resize window ID to the specified width, height |"); - puts("+=============================================================================+"); - printf("| Video will be %s in the next offer/answer %s |\n", - (vid_enabled? "enabled" : "disabled"), (vid_enabled? " " : "")); - puts("+=============================================================================+"); -} - -static void vid_handle_menu(char *menuin) -{ - char *argv[8]; - int argc = 0; - - /* Tokenize */ - argv[argc] = strtok(menuin, " \t\r\n"); - while (argv[argc] && *argv[argc]) { - argc++; - argv[argc] = strtok(NULL, " \t\r\n"); - } - - if (argc == 1 || strcmp(argv[1], "help")==0) { - vid_show_help(); - } else if (argc == 2 && (strcmp(argv[1], "enable")==0 || - strcmp(argv[1], "disable")==0)) - { - pj_bool_t enabled = (strcmp(argv[1], "enable")==0); - app_config.vid.vid_cnt = (enabled ? 1 : 0); - PJ_LOG(3,(THIS_FILE, "Video will be %s in next offer/answer", - (enabled?"enabled":"disabled"))); - } else if (strcmp(argv[1], "acc")==0) { - pjsua_acc_config acc_cfg; - pj_bool_t changed = PJ_FALSE; - - pjsua_acc_get_config(current_acc, &acc_cfg); - - if (argc == 3 && strcmp(argv[2], "show")==0) { - app_config_show_video(current_acc, &acc_cfg); - } else if (argc == 4 && strcmp(argv[2], "autorx")==0) { - int on = (strcmp(argv[3], "on")==0); - acc_cfg.vid_in_auto_show = on; - changed = PJ_TRUE; - } else if (argc == 4 && strcmp(argv[2], "autotx")==0) { - int on = (strcmp(argv[3], "on")==0); - acc_cfg.vid_out_auto_transmit = on; - changed = PJ_TRUE; - } else if (argc == 4 && strcmp(argv[2], "cap")==0) { - int dev = atoi(argv[3]); - acc_cfg.vid_cap_dev = dev; - changed = PJ_TRUE; - } else if (argc == 4 && strcmp(argv[2], "rend")==0) { - int dev = atoi(argv[3]); - acc_cfg.vid_rend_dev = dev; - changed = PJ_TRUE; - } else { - goto on_error; - } - - if (changed) { - pj_status_t status = pjsua_acc_modify(current_acc, &acc_cfg); - if (status != PJ_SUCCESS) - PJ_PERROR(1,(THIS_FILE, status, "Error modifying account %d", - current_acc)); - } - - } else if (strcmp(argv[1], "call")==0) { - pjsua_call_vid_strm_op_param param; - pj_status_t status = PJ_SUCCESS; - - pjsua_call_vid_strm_op_param_default(¶m); - - if (argc == 5 && strcmp(argv[2], "rx")==0) { - pjsua_stream_info si; - pj_bool_t on = (strcmp(argv[3], "on") == 0); - - param.med_idx = atoi(argv[4]); - if (pjsua_call_get_stream_info(current_call, param.med_idx, &si) || - si.type != PJMEDIA_TYPE_VIDEO) - { - PJ_PERROR(1,(THIS_FILE, PJ_EINVAL, "Invalid stream")); - return; - } - - if (on) param.dir = (si.info.vid.dir | PJMEDIA_DIR_DECODING); - else param.dir = (si.info.vid.dir & PJMEDIA_DIR_ENCODING); - - status = pjsua_call_set_vid_strm(current_call, - PJSUA_CALL_VID_STRM_CHANGE_DIR, - ¶m); - } - else if (argc == 5 && strcmp(argv[2], "tx")==0) { - pj_bool_t on = (strcmp(argv[3], "on") == 0); - pjsua_call_vid_strm_op op = on? PJSUA_CALL_VID_STRM_START_TRANSMIT : - PJSUA_CALL_VID_STRM_STOP_TRANSMIT; - - param.med_idx = atoi(argv[4]); - - status = pjsua_call_set_vid_strm(current_call, op, ¶m); - } - else if (argc == 3 && strcmp(argv[2], "add")==0) { - status = pjsua_call_set_vid_strm(current_call, - PJSUA_CALL_VID_STRM_ADD, NULL); - } - else if (argc >= 3 && - (strcmp(argv[2], "disable")==0 || strcmp(argv[2], "enable")==0)) - { - pj_bool_t enable = (strcmp(argv[2], "enable") == 0); - pjsua_call_vid_strm_op op = enable? PJSUA_CALL_VID_STRM_CHANGE_DIR : - PJSUA_CALL_VID_STRM_REMOVE; - - param.med_idx = argc >= 4? atoi(argv[3]) : -1; - param.dir = PJMEDIA_DIR_ENCODING_DECODING; - status = pjsua_call_set_vid_strm(current_call, op, ¶m); - } - else if (argc >= 3 && strcmp(argv[2], "cap")==0) { - param.med_idx = argc >= 4? atoi(argv[3]) : -1; - param.cap_dev = argc >= 5? atoi(argv[4]) : PJMEDIA_VID_DEFAULT_CAPTURE_DEV; - status = pjsua_call_set_vid_strm(current_call, - PJSUA_CALL_VID_STRM_CHANGE_CAP_DEV, - ¶m); - } else - goto on_error; - - if (status != PJ_SUCCESS) { - PJ_PERROR(1,(THIS_FILE, status, "Error modifying video stream")); - } - - } else if (argc >= 3 && strcmp(argv[1], "dev")==0) { - if (strcmp(argv[2], "list")==0) { - vid_list_devs(); - } else if (strcmp(argv[2], "refresh")==0) { - pjmedia_vid_dev_refresh(); - } else if (strcmp(argv[2], "prev")==0) { - if (argc != 5) { - goto on_error; - } else { - pj_bool_t on = (strcmp(argv[3], "on") == 0); - int dev_id = atoi(argv[4]); - if (on) { - pjsua_vid_preview_param param; - - pjsua_vid_preview_param_default(¶m); - param.wnd_flags = PJMEDIA_VID_DEV_WND_BORDER | - PJMEDIA_VID_DEV_WND_RESIZABLE; - pjsua_vid_preview_start(dev_id, ¶m); - arrange_window(pjsua_vid_preview_get_win(dev_id)); - } else { - pjsua_vid_win_id wid; - wid = pjsua_vid_preview_get_win(dev_id); - if (wid != PJSUA_INVALID_ID) { - /* Preview window hiding once it is stopped is - * responsibility of app */ - pjsua_vid_win_set_show(wid, PJ_FALSE); - pjsua_vid_preview_stop(dev_id); - } - } - } - } else - goto on_error; - } else if (strcmp(argv[1], "win")==0) { - pj_status_t status = PJ_SUCCESS; - - if (argc==3 && strcmp(argv[2], "list")==0) { - pjsua_vid_win_id wids[PJSUA_MAX_VID_WINS]; - unsigned i, cnt = PJ_ARRAY_SIZE(wids); - - pjsua_vid_enum_wins(wids, &cnt); - - PJ_LOG(3,(THIS_FILE, "Found %d video windows:", cnt)); - PJ_LOG(3,(THIS_FILE, "WID show pos size")); - PJ_LOG(3,(THIS_FILE, "------------------------------")); - for (i = 0; i < cnt; ++i) { - pjsua_vid_win_info wi; - pjsua_vid_win_get_info(wids[i], &wi); - PJ_LOG(3,(THIS_FILE, "%3d %c (%d,%d) %dx%d", - wids[i], (wi.show?'Y':'N'), wi.pos.x, wi.pos.y, - wi.size.w, wi.size.h)); - } - } else if (argc==4 && (strcmp(argv[2], "show")==0 || - strcmp(argv[2], "hide")==0)) - { - pj_bool_t show = (strcmp(argv[2], "show")==0); - pjsua_vid_win_id wid = atoi(argv[3]); - status = pjsua_vid_win_set_show(wid, show); - } else if (argc==6 && strcmp(argv[2], "move")==0) { - pjsua_vid_win_id wid = atoi(argv[3]); - pjmedia_coord pos; - - pos.x = atoi(argv[4]); - pos.y = atoi(argv[5]); - status = pjsua_vid_win_set_pos(wid, &pos); - } else if (argc==6 && strcmp(argv[2], "resize")==0) { - pjsua_vid_win_id wid = atoi(argv[3]); - pjmedia_rect_size size; - - size.w = atoi(argv[4]); - size.h = atoi(argv[5]); - status = pjsua_vid_win_set_size(wid, &size); - } else if (argc==3 && strcmp(argv[2], "arrange")==0) { - arrange_window(PJSUA_INVALID_ID); - } else - goto on_error; - - if (status != PJ_SUCCESS) { - PJ_PERROR(1,(THIS_FILE, status, "Window operation error")); - } - - } else if (strcmp(argv[1], "codec")==0) { - pjsua_codec_info ci[PJMEDIA_CODEC_MGR_MAX_CODECS]; - unsigned count = PJ_ARRAY_SIZE(ci); - pj_status_t status; - - if (argc==3 && strcmp(argv[2], "list")==0) { - status = pjsua_vid_enum_codecs(ci, &count); - if (status != PJ_SUCCESS) { - PJ_PERROR(1,(THIS_FILE, status, "Error enumerating codecs")); - } else { - unsigned i; - PJ_LOG(3,(THIS_FILE, "Found %d video codecs:", count)); - PJ_LOG(3,(THIS_FILE, "codec id prio fps bw(kbps) size")); - PJ_LOG(3,(THIS_FILE, "------------------------------------------")); - for (i=0; ifps.num*1.0/vfd->fps.denum), - vfd->avg_bps/1000, vfd->max_bps/1000, - vfd->size.w, vfd->size.h)); - } - } - } else if (argc==5 && strcmp(argv[2], "prio")==0) { - pj_str_t cid; - int prio; - cid = pj_str(argv[3]); - prio = atoi(argv[4]); - status = pjsua_vid_codec_set_priority(&cid, (pj_uint8_t)prio); - if (status != PJ_SUCCESS) - PJ_PERROR(1,(THIS_FILE, status, "Set codec priority error")); - } else if (argc==6 && strcmp(argv[2], "fps")==0) { - pjmedia_vid_codec_param cp; - pj_str_t cid; - int M, N; - cid = pj_str(argv[3]); - M = atoi(argv[4]); - N = atoi(argv[5]); - status = pjsua_vid_codec_get_param(&cid, &cp); - if (status == PJ_SUCCESS) { - cp.enc_fmt.det.vid.fps.num = M; - cp.enc_fmt.det.vid.fps.denum = N; - status = pjsua_vid_codec_set_param(&cid, &cp); - } - if (status != PJ_SUCCESS) - PJ_PERROR(1,(THIS_FILE, status, "Set codec framerate error")); - } else if (argc==6 && strcmp(argv[2], "bw")==0) { - pjmedia_vid_codec_param cp; - pj_str_t cid; - int M, N; - cid = pj_str(argv[3]); - M = atoi(argv[4]); - N = atoi(argv[5]); - status = pjsua_vid_codec_get_param(&cid, &cp); - if (status == PJ_SUCCESS) { - cp.enc_fmt.det.vid.avg_bps = M * 1000; - cp.enc_fmt.det.vid.max_bps = N * 1000; - status = pjsua_vid_codec_set_param(&cid, &cp); - } - if (status != PJ_SUCCESS) - PJ_PERROR(1,(THIS_FILE, status, "Set codec bitrate error")); - } else if (argc==6 && strcmp(argv[2], "size")==0) { - pjmedia_vid_codec_param cp; - pj_str_t cid; - int M, N; - cid = pj_str(argv[3]); - M = atoi(argv[4]); - N = atoi(argv[5]); - status = pjsua_vid_codec_get_param(&cid, &cp); - if (status == PJ_SUCCESS) { - cp.enc_fmt.det.vid.size.w = M; - cp.enc_fmt.det.vid.size.h = N; - status = pjsua_vid_codec_set_param(&cid, &cp); - } - if (status != PJ_SUCCESS) - PJ_PERROR(1,(THIS_FILE, status, "Set codec size error")); - } else - goto on_error; - } else - goto on_error; - - return; - -on_error: - PJ_LOG(1,(THIS_FILE, "Invalid command, use 'vid help'")); -} - -#endif /* PJSUA_HAS_VIDEO */ - -/** UI Command **/ -static void ui_make_new_call() -{ - char buf[128]; - pjsua_msg_data msg_data; - input_result result; - pj_str_t tmp; - - printf("(You currently have %d calls)\n", pjsua_call_get_count()); - - ui_input_url("Make call", buf, sizeof(buf), &result); - if (result.nb_result != PJSUA_APP_NO_NB) { - - if (result.nb_result == -1 || result.nb_result == 0) { - puts("You can't do that with make call!"); - return; - } else { - pjsua_buddy_info binfo; - pjsua_buddy_get_info(result.nb_result-1, &binfo); - tmp.ptr = buf; - pj_strncpy(&tmp, &binfo.uri, sizeof(buf)); - } - - } else if (result.uri_result) { - tmp = pj_str(result.uri_result); - } else { - tmp.slen = 0; - } - - pjsua_msg_data_init(&msg_data); - TEST_MULTIPART(&msg_data); - pjsua_call_make_call(current_acc, &tmp, &call_opt, NULL, - &msg_data, ¤t_call); -} - -static void ui_make_multi_call() -{ - char menuin[32]; - int count; - char buf[128]; - input_result result; - pj_str_t tmp; - int i; - - printf("(You currently have %d calls)\n", pjsua_call_get_count()); - - if (!simple_input("Number of calls", menuin, sizeof(menuin))) - return; - - count = my_atoi(menuin); - if (count < 1) - return; - - ui_input_url("Make call", buf, sizeof(buf), &result); - if (result.nb_result != PJSUA_APP_NO_NB) { - pjsua_buddy_info binfo; - if (result.nb_result == -1 || result.nb_result == 0) { - puts("You can't do that with make call!"); - return; - } - pjsua_buddy_get_info(result.nb_result-1, &binfo); - tmp.ptr = buf; - pj_strncpy(&tmp, &binfo.uri, sizeof(buf)); - } else { - tmp = pj_str(result.uri_result); - } - - for (i=0; i= PJSIP_INV_STATE_CONNECTING) - { - puts("No pending incoming call"); - fflush(stdout); - return; - - } else { - int st_code; - char contact[120]; - pj_str_t hname = { "Contact", 7 }; - pj_str_t hvalue; - pjsip_generic_string_hdr hcontact; - - if (!simple_input("Answer with code (100-699)", buf, sizeof(buf))) - return; - - st_code = my_atoi(buf); - if (st_code < 100) - return; - - pjsua_msg_data_init(&msg_data); - - if (st_code/100 == 3) { - if (!simple_input("Enter URL to be put in Contact", - contact, sizeof(contact))) - return; - hvalue = pj_str(contact); - pjsip_generic_string_hdr_init2(&hcontact, &hname, &hvalue); - - pj_list_push_back(&msg_data.hdr_list, &hcontact); - } - - /* - * Must check again! - * Call may have been disconnected while we're waiting for - * keyboard input. - */ - if (current_call == -1) { - puts("Call has been disconnected"); - fflush(stdout); - return; - } - - pjsua_call_answer2(current_call, &call_opt, st_code, NULL, &msg_data); - } -} - -static void ui_hangup_call(char menuin[]) -{ - if (current_call == -1) { - puts("No current call"); - fflush(stdout); - return; - - } else if (menuin[1] == 'a') { - /* Hangup all calls */ - pjsua_call_hangup_all(); - } else { - /* Hangup current calls */ - pjsua_call_hangup(current_call, 0, NULL, NULL); - } -} - -static void ui_cycle_dialog(char menuin[]) -{ - if (menuin[0] == ']') { - find_next_call(); - - } else { - find_prev_call(); - } - - if (current_call != -1) { - pjsua_call_info call_info; - - pjsua_call_get_info(current_call, &call_info); - PJ_LOG(3,(THIS_FILE,"Current dialog: %.*s", - (int)call_info.remote_info.slen, - call_info.remote_info.ptr)); - - } else { - PJ_LOG(3,(THIS_FILE,"No current dialog")); - } -} - -static void ui_cycle_account() -{ - int i; - char buf[128]; - - if (!simple_input("Enter account ID to select", buf, sizeof(buf))) - return; - - i = my_atoi(buf); - if (pjsua_acc_is_valid(i)) { - pjsua_acc_set_default(i); - PJ_LOG(3,(THIS_FILE, "Current account changed to %d", i)); - } else { - PJ_LOG(3,(THIS_FILE, "Invalid account id %d", i)); - } -} - -static void ui_add_buddy() -{ - char buf[128]; - pjsua_buddy_config buddy_cfg; - pjsua_buddy_id buddy_id; - pj_status_t status; - - if (!simple_input("Enter buddy's URI:", buf, sizeof(buf))) - return; - - if (pjsua_verify_url(buf) != PJ_SUCCESS) { - printf("Invalid URI '%s'\n", buf); - return; - } - - pj_bzero(&buddy_cfg, sizeof(pjsua_buddy_config)); - - buddy_cfg.uri = pj_str(buf); - buddy_cfg.subscribe = PJ_TRUE; - - status = pjsua_buddy_add(&buddy_cfg, &buddy_id); - if (status == PJ_SUCCESS) { - printf("New buddy '%s' added at index %d\n", - buf, buddy_id+1); - } -} - -static void ui_add_account(pjsua_transport_config *rtp_cfg) -{ - char id[80], registrar[80], realm[80], uname[80], passwd[30]; - pjsua_acc_config acc_cfg; - pj_status_t status; - - if (!simple_input("Your SIP URL:", id, sizeof(id))) - return; - if (!simple_input("URL of the registrar:", registrar, sizeof(registrar))) - return; - if (!simple_input("Auth Realm:", realm, sizeof(realm))) - return; - if (!simple_input("Auth Username:", uname, sizeof(uname))) - return; - if (!simple_input("Auth Password:", passwd, sizeof(passwd))) - return; - - pjsua_acc_config_default(&acc_cfg); - acc_cfg.id = pj_str(id); - acc_cfg.reg_uri = pj_str(registrar); - acc_cfg.cred_count = 1; - acc_cfg.cred_info[0].scheme = pj_str("Digest"); - acc_cfg.cred_info[0].realm = pj_str(realm); - acc_cfg.cred_info[0].username = pj_str(uname); - acc_cfg.cred_info[0].data_type = 0; - acc_cfg.cred_info[0].data = pj_str(passwd); - - acc_cfg.rtp_cfg = *rtp_cfg; - app_config_init_video(&acc_cfg); - - status = pjsua_acc_add(&acc_cfg, PJ_TRUE, NULL); - if (status != PJ_SUCCESS) { - pjsua_perror(THIS_FILE, "Error adding new account", status); - } -} - -static void ui_delete_buddy() -{ - char buf[128]; - int i; - - if (!simple_input("Enter buddy ID to delete", buf, sizeof(buf))) - return; - - i = my_atoi(buf) - 1; - - if (!pjsua_buddy_is_valid(i)) { - printf("Invalid buddy id %d\n", i); - } else { - pjsua_buddy_del(i); - printf("Buddy %d deleted\n", i); - } -} - -static void ui_delete_account() -{ - char buf[128]; - int i; - - if (!simple_input("Enter account ID to delete", buf, sizeof(buf))) - return; - - i = my_atoi(buf); - - if (!pjsua_acc_is_valid(i)) { - printf("Invalid account id %d\n", i); - } else { - pjsua_acc_del(i); - printf("Account %d deleted\n", i); - } -} - -static void ui_call_hold() -{ - if (current_call != -1) { - pjsua_call_set_hold(current_call, NULL); - } else { - PJ_LOG(3,(THIS_FILE, "No current call")); - } -} - -static void ui_call_reinvite() -{ - call_opt.flag |= PJSUA_CALL_UNHOLD; - pjsua_call_reinvite2(current_call, &call_opt, NULL); -} - -static void ui_send_update() -{ - if (current_call != -1) { - pjsua_call_update2(current_call, &call_opt, NULL); - } else { - PJ_LOG(3,(THIS_FILE, "No current call")); - } -} - -/* - * Change codec priorities. - */ -static void ui_manage_codec_prio() -{ - pjsua_codec_info c[32]; - unsigned i, count = PJ_ARRAY_SIZE(c); - char input[32]; - char *codec, *prio; - pj_str_t id; - int new_prio; - pj_status_t status; - - printf("List of audio codecs:\n"); - pjsua_enum_codecs(c, &count); - for (i=0; i PJMEDIA_CODEC_PRIO_HIGHEST) - new_prio = PJMEDIA_CODEC_PRIO_HIGHEST; - - status = pjsua_codec_set_priority(pj_cstr(&id, codec), - (pj_uint8_t)new_prio); -#if PJSUA_HAS_VIDEO - if (status != PJ_SUCCESS) { - status = pjsua_vid_codec_set_priority(pj_cstr(&id, codec), - (pj_uint8_t)new_prio); - } -#endif - if (status != PJ_SUCCESS) - pjsua_perror(THIS_FILE, "Error setting codec priority", status); -} - -static void ui_call_transfer(pj_bool_t no_refersub) -{ - if (current_call == -1) { - PJ_LOG(3,(THIS_FILE, "No current call")); - } else { - int call = current_call; - char buf[128]; - pjsip_generic_string_hdr refer_sub; - pj_str_t STR_REFER_SUB = { "Refer-Sub", 9 }; - pj_str_t STR_FALSE = { "false", 5 }; - pjsua_call_info ci; - input_result result; - pjsua_msg_data msg_data; - - pjsua_call_get_info(current_call, &ci); - printf("Transfering current call [%d] %.*s\n", current_call, - (int)ci.remote_info.slen, ci.remote_info.ptr); - - ui_input_url("Transfer to URL", buf, sizeof(buf), &result); - - /* Check if call is still there. */ - - if (call != current_call) { - puts("Call has been disconnected"); - return; - } - - pjsua_msg_data_init(&msg_data); - if (no_refersub) { - /* Add Refer-Sub: false in outgoing REFER request */ - pjsip_generic_string_hdr_init2(&refer_sub, &STR_REFER_SUB, - &STR_FALSE); - pj_list_push_back(&msg_data.hdr_list, &refer_sub); - } - if (result.nb_result != PJSUA_APP_NO_NB) { - if (result.nb_result == -1 || result.nb_result == 0) - puts("You can't do that with transfer call!"); - else { - pjsua_buddy_info binfo; - pjsua_buddy_get_info(result.nb_result-1, &binfo); - pjsua_call_xfer( current_call, &binfo.uri, &msg_data); - } - - } else if (result.uri_result) { - pj_str_t tmp; - tmp = pj_str(result.uri_result); - pjsua_call_xfer( current_call, &tmp, &msg_data); - } - } -} - -static void ui_call_transfer_replaces(pj_bool_t no_refersub) -{ - if (current_call == -1) { - PJ_LOG(3,(THIS_FILE, "No current call")); - } else { - int call = current_call; - int dst_call; - pjsip_generic_string_hdr refer_sub; - pj_str_t STR_REFER_SUB = { "Refer-Sub", 9 }; - pj_str_t STR_FALSE = { "false", 5 }; - pjsua_call_id ids[PJSUA_MAX_CALLS]; - pjsua_call_info ci; - pjsua_msg_data msg_data; - char buf[128]; - unsigned i, count; - - count = PJ_ARRAY_SIZE(ids); - pjsua_enum_calls(ids, &count); - - if (count <= 1) { - puts("There are no other calls"); - return; - } - - pjsua_call_get_info(current_call, &ci); - printf("Transfer call [%d] %.*s to one of the following:\n", - current_call, - (int)ci.remote_info.slen, ci.remote_info.ptr); - - for (i=0; i= PJSUA_MAX_CALLS) { - puts("Invalid destination call number"); - return; - } - if (!pjsua_call_is_active(dst_call)) { - puts("Invalid destination call number"); - return; - } - - pjsua_msg_data_init(&msg_data); - if (no_refersub) { - /* Add Refer-Sub: false in outgoing REFER request */ - pjsip_generic_string_hdr_init2(&refer_sub, &STR_REFER_SUB, - &STR_FALSE); - pj_list_push_back(&msg_data.hdr_list, &refer_sub); - } - - pjsua_call_xfer_replaces(call, dst_call, - PJSUA_XFER_NO_REQUIRE_REPLACES, - &msg_data); - } -} - -static void ui_send_dtmf_2833() -{ - if (current_call == -1) { - PJ_LOG(3,(THIS_FILE, "No current call")); - } else if (!pjsua_call_has_media(current_call)) { - PJ_LOG(3,(THIS_FILE, "Media is not established yet!")); - } else { - pj_str_t digits; - int call = current_call; - pj_status_t status; - char buf[128]; - - if (!simple_input("DTMF strings to send (0-9*#A-B)", buf, - sizeof(buf))) - { - return; - } - - if (call != current_call) { - puts("Call has been disconnected"); - return; - } - - digits = pj_str(buf); - status = pjsua_call_dial_dtmf(current_call, &digits); - if (status != PJ_SUCCESS) { - pjsua_perror(THIS_FILE, "Unable to send DTMF", status); - } else { - puts("DTMF digits enqueued for transmission"); - } - } -} - -static void ui_send_dtmf_info() -{ - if (current_call == -1) { - PJ_LOG(3,(THIS_FILE, "No current call")); - } else { - const pj_str_t SIP_INFO = pj_str("INFO"); - pj_str_t digits; - int call = current_call; - int i; - pj_status_t status; - char buf[128]; - - if (!simple_input("DTMF strings to send (0-9*#A-B)", buf, - sizeof(buf))) - { - return; - } - - if (call != current_call) { - puts("Call has been disconnected"); - return; - } - - digits = pj_str(buf); - for (i=0; i= OPT_MAX) { - puts("Invalid selection"); - return; - } - - pj_bzero(&elem, sizeof(elem)); - elem.type = PJRPID_ELEMENT_TYPE_PERSON; - - online_status = PJ_TRUE; - - switch (choice) { - case AVAILABLE: - break; - case BUSY: - elem.activity = PJRPID_ACTIVITY_BUSY; - elem.note = pj_str("Busy"); - break; - case OTP: - elem.activity = PJRPID_ACTIVITY_BUSY; - elem.note = pj_str("On the phone"); - break; - case IDLE: - elem.activity = PJRPID_ACTIVITY_UNKNOWN; - elem.note = pj_str("Idle"); - break; - case AWAY: - elem.activity = PJRPID_ACTIVITY_AWAY; - elem.note = pj_str("Away"); - break; - case BRB: - elem.activity = PJRPID_ACTIVITY_UNKNOWN; - elem.note = pj_str("Be right back"); - break; - case OFFLINE: - online_status = PJ_FALSE; - break; - } - - pjsua_acc_set_online_status2(current_acc, online_status, &elem); -} - -/* - * List the ports in conference bridge - */ -static void ui_conf_list() -{ - unsigned i, count; - pjsua_conf_port_id id[PJSUA_MAX_CALLS]; - - printf("Conference ports:\n"); - - count = PJ_ARRAY_SIZE(id); - pjsua_enum_conf_ports(id, &count); - - for (i=0; i>> "); - fflush(stdout); - - if (fgets(menuin, sizeof(menuin), stdin) == NULL) { - /* - * Be friendly to users who redirect commands into - * program, when file ends, resume with kbd. - * If exit is desired end script with q for quit - */ - /* Reopen stdin/stdout/stderr to /dev/console */ -#if defined(PJ_WIN32) && PJ_WIN32!=0 && \ - (!defined(PJ_WIN32_WINCE) || PJ_WIN32_WINCE==0) - if (freopen ("CONIN$", "r", stdin) == NULL) { -#else - if (1) { -#endif - puts("Cannot switch back to console from file redirection"); - menuin[0] = 'q'; - menuin[1] = '\0'; - } else { - puts("Switched back to console from file redirection"); - continue; - } - } - - if (cmd_echo) { - printf("%s", menuin); - } - - /* Update call setting */ - pjsua_call_setting_default(&call_opt); - call_opt.aud_cnt = app_config.aud_cnt; - call_opt.vid_cnt = app_config.vid.vid_cnt; - - switch (menuin[0]) { - - case 'm': - /* Make call! : */ - ui_make_new_call(); - break; - - case 'M': - /* Make multiple calls! : */ - ui_make_multi_call(); - break; - - case 'n': - ui_detect_nat_type(); - break; - - case 'i': - /* Send instant messaeg */ - ui_send_instant_message(); - break; - - case 'a': - ui_answer_call(); - break; - - case 'h': - ui_hangup_call(menuin); - break; - - case ']': - case '[': - /* - * Cycle next/prev dialog. - */ - ui_cycle_dialog(menuin); - break; - - case '>': - case '<': - ui_cycle_account(); - break; - - case '+': - if (menuin[1] == 'b') { - ui_add_buddy(); - } else if (menuin[1] == 'a') { - ui_add_account(&app_config.rtp_cfg); - } else { - printf("Invalid input %s\n", menuin); - } - break; - - case '-': - if (menuin[1] == 'b') { - ui_delete_buddy(); - } else if (menuin[1] == 'a') { - ui_delete_account(); - } else { - printf("Invalid input %s\n", menuin); - } - break; - - case 'H': - /* - * Hold call. - */ - ui_call_hold(); - break; - - case 'v': -#if PJSUA_HAS_VIDEO - if (menuin[1]=='i' && menuin[2]=='d' && menuin[3]==' ') { - vid_handle_menu(menuin); - } else -#endif - if (current_call != -1) { - /* - * re-INVITE - */ - ui_call_reinvite(); - } else { - PJ_LOG(3,(THIS_FILE, "No current call")); - } - break; - - case 'U': - /* - * Send UPDATE - */ - ui_send_update(); - break; - - case 'C': - if (menuin[1] == 'p') { - ui_manage_codec_prio(); - } - break; - - case 'x': - /* - * Transfer call. - */ - ui_call_transfer(app_config.no_refersub); - break; - - case 'X': - /* - * Transfer call with replaces. - */ - ui_call_transfer_replaces(app_config.no_refersub); - break; - - case '#': - /* - * Send DTMF strings. - */ - ui_send_dtmf_2833(); - break; - - case '*': - /* Send DTMF with INFO */ - ui_send_dtmf_info(); - break; - - case 'S': - /* - * Send arbitrary request - */ - ui_send_arbitrary_request(); - break; - - case 'e': - ui_echo(menuin); - break; - - case 's': - ui_sleep(menuin); - break; - /* Continue below */ - - case 'u': - /* - * Subscribe/unsubscribe presence. - */ - ui_subscribe(menuin); - break; - - case 'r': - ui_register(menuin); - break; - - case 't': - ui_toggle_state(); - break; - - case 'T': - ui_change_online_status(); - break; - - case 'c': - switch (menuin[1]) { - case 'l': - ui_conf_list(); - break; - case 'c': - case 'd': - ui_conf_connect(menuin); - break; - } - break; - - case 'V': - /* Adjust audio volume */ - ui_adjust_volume(); - break; - - case 'd': - if (menuin[1] == 'c') { - ui_dump_configuration(); - } else if (menuin[1] == 'q') { - ui_dump_call_quality(); - } else { - ui_app_dump(menuin[1]=='d'); - } - break; - - case 'f': - if (simple_input("Enter output filename", buf, sizeof(buf))) { - ui_write_settings(); - } - break; - - case 'L': /* Restart */ - case 'q': - legacy_on_stopped(menuin[0]=='L'); - goto on_exit; - - case 'R': - ui_call_redirect(menuin); - break; - - default: - if (menuin[0] != '\n' && menuin[0] != '\r') { - printf("Invalid input %s", menuin); - } - keystroke_help(); - break; - } - } - -on_exit: - ; -} -- cgit v1.2.3