mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-13 05:32:23 +00:00
302 lines
7.1 KiB
C++
302 lines
7.1 KiB
C++
/*
|
|
* Copyright 2008-2010 Arsen Chaloyan
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
* $Id: umcconsole.cpp 1785 2010-09-22 06:14:29Z achaloyan $
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <apr_getopt.h>
|
|
#include "umcconsole.h"
|
|
#include "umcframework.h"
|
|
#include "apt_pool.h"
|
|
|
|
|
|
UmcConsole::UmcConsole() :
|
|
m_pFramework(NULL)
|
|
{
|
|
m_pFramework = new UmcFramework;
|
|
}
|
|
|
|
UmcConsole::~UmcConsole()
|
|
{
|
|
delete m_pFramework;
|
|
}
|
|
|
|
bool UmcConsole::Run(int argc, const char * const *argv)
|
|
{
|
|
apr_pool_t* pool = NULL;
|
|
apt_dir_layout_t* pDirLayout = NULL;
|
|
const char *logConfPath;
|
|
|
|
/* APR global initialization */
|
|
if(apr_initialize() != APR_SUCCESS)
|
|
{
|
|
apr_terminate();
|
|
return false;
|
|
}
|
|
|
|
/* create APR pool */
|
|
pool = apt_pool_create();
|
|
if(!pool)
|
|
{
|
|
apr_terminate();
|
|
return false;
|
|
}
|
|
|
|
/* load options */
|
|
if(!LoadOptions(argc,argv,pool))
|
|
{
|
|
apr_pool_destroy(pool);
|
|
apr_terminate();
|
|
return false;
|
|
}
|
|
|
|
/* create the structure of default directories layout */
|
|
pDirLayout = apt_default_dir_layout_create(m_Options.m_RootDirPath,pool);
|
|
|
|
/* get path to logger configuration file */
|
|
logConfPath = apt_confdir_filepath_get(pDirLayout,"logger.xml",pool);
|
|
/* create and load singleton logger */
|
|
apt_log_instance_load(logConfPath,pool);
|
|
|
|
if(m_Options.m_LogPriority)
|
|
{
|
|
/* override the log priority, if specified in command line */
|
|
apt_log_priority_set((apt_log_priority_e)atoi(m_Options.m_LogPriority));
|
|
}
|
|
if(m_Options.m_LogOutput)
|
|
{
|
|
/* override the log output mode, if specified in command line */
|
|
apt_log_output_mode_set((apt_log_output_e)atoi(m_Options.m_LogOutput));
|
|
}
|
|
|
|
if(apt_log_output_mode_check(APT_LOG_OUTPUT_FILE) == TRUE)
|
|
{
|
|
/* open the log file */
|
|
apt_log_file_open(pDirLayout->log_dir_path,"unimrcpclient",MAX_LOG_FILE_SIZE,MAX_LOG_FILE_COUNT,FALSE,pool);
|
|
}
|
|
|
|
/* create demo framework */
|
|
if(m_pFramework->Create(pDirLayout,pool))
|
|
{
|
|
/* run command line */
|
|
RunCmdLine();
|
|
/* destroy demo framework */
|
|
m_pFramework->Destroy();
|
|
}
|
|
|
|
/* destroy singleton logger */
|
|
apt_log_instance_destroy();
|
|
/* destroy APR pool */
|
|
apr_pool_destroy(pool);
|
|
/* APR global termination */
|
|
apr_terminate();
|
|
return true;
|
|
}
|
|
|
|
bool UmcConsole::ProcessCmdLine(char* pCmdLine)
|
|
{
|
|
bool running = true;
|
|
char *name;
|
|
char *last;
|
|
name = apr_strtok(pCmdLine, " ", &last);
|
|
|
|
if(strcasecmp(name,"run") == 0)
|
|
{
|
|
char* pScenarioName = apr_strtok(NULL, " ", &last);
|
|
if(pScenarioName)
|
|
{
|
|
const char* pProfileName = apr_strtok(NULL, " ", &last);
|
|
if(!pProfileName)
|
|
{
|
|
pProfileName = "uni2";
|
|
}
|
|
m_pFramework->RunSession(pScenarioName,pProfileName);
|
|
}
|
|
}
|
|
else if(strcasecmp(name,"kill") == 0)
|
|
{
|
|
char* pID = apr_strtok(NULL, " ", &last);
|
|
if(pID)
|
|
{
|
|
m_pFramework->KillSession(pID);
|
|
}
|
|
}
|
|
else if(strcasecmp(name,"stop") == 0)
|
|
{
|
|
char* pID = apr_strtok(NULL, " ", &last);
|
|
if(pID)
|
|
{
|
|
m_pFramework->StopSession(pID);
|
|
}
|
|
}
|
|
else if(strcasecmp(name,"show") == 0)
|
|
{
|
|
char* pWhat = apr_strtok(NULL, " ", &last);
|
|
if(pWhat)
|
|
{
|
|
if(strcasecmp(pWhat,"sessions") == 0)
|
|
m_pFramework->ShowSessions();
|
|
else if(strcasecmp(pWhat,"scenarios") == 0)
|
|
m_pFramework->ShowScenarios();
|
|
}
|
|
}
|
|
else if(strcasecmp(name,"loglevel") == 0)
|
|
{
|
|
char* pPriority = apr_strtok(NULL, " ", &last);
|
|
if(pPriority)
|
|
{
|
|
apt_log_priority_set((apt_log_priority_e)atol(pPriority));
|
|
}
|
|
}
|
|
else if(strcasecmp(name,"exit") == 0 || strcmp(name,"quit") == 0)
|
|
{
|
|
running = false;
|
|
}
|
|
else if(strcasecmp(name,"help") == 0)
|
|
{
|
|
printf("usage:\n"
|
|
"\n- run [scenario] [profile] (run new session)\n"
|
|
" scenario is one of 'synth', 'recog', ... (use 'show scenarios')\n"
|
|
" profile is one of 'uni2', 'uni1', ... (see unimrcpclient.xml)\n"
|
|
"\n examples: \n"
|
|
" run synth\n"
|
|
" run recog\n"
|
|
" run synth uni1\n"
|
|
" run recog uni1\n"
|
|
"\n- kill [id] (kill session)\n"
|
|
" id is a session identifier: 1, 2, ... (use 'show sessions')\n"
|
|
"\n example: \n"
|
|
" kill 1\n"
|
|
"\n- show [what] (show either available scenarios or in-progress sessions)\n"
|
|
"\n examples: \n"
|
|
" show scenarios\n"
|
|
" show sessions\n"
|
|
"\n- loglevel [level] (set loglevel, one of 0,1...7)\n"
|
|
"\n- quit, exit\n");
|
|
}
|
|
else
|
|
{
|
|
printf("unknown command: %s (input help for usage)\n",name);
|
|
}
|
|
return running;
|
|
}
|
|
|
|
bool UmcConsole::RunCmdLine()
|
|
{
|
|
apt_bool_t running = true;
|
|
char cmdline[1024];
|
|
int i;
|
|
do
|
|
{
|
|
printf(">");
|
|
memset(&cmdline, 0, sizeof(cmdline));
|
|
for(i = 0; i < sizeof(cmdline); i++)
|
|
{
|
|
cmdline[i] = (char) getchar();
|
|
if(cmdline[i] == '\n')
|
|
{
|
|
cmdline[i] = '\0';
|
|
break;
|
|
}
|
|
}
|
|
if(*cmdline)
|
|
{
|
|
running = ProcessCmdLine(cmdline);
|
|
}
|
|
}
|
|
while(running != 0);
|
|
return true;
|
|
}
|
|
|
|
void UmcConsole::Usage() const
|
|
{
|
|
printf(
|
|
"\n"
|
|
"Usage:\n"
|
|
"\n"
|
|
" umc [options]\n"
|
|
"\n"
|
|
" Available options:\n"
|
|
"\n"
|
|
" -r [--root-dir] path : Set the project root directory path.\n"
|
|
"\n"
|
|
" -l [--log-prio] priority : Set the log priority.\n"
|
|
" (0-emergency, ..., 7-debug)\n"
|
|
"\n"
|
|
" -o [--log-output] mode : Set the log output mode.\n"
|
|
" (0-none, 1-console only, 2-file only, 3-both)\n"
|
|
"\n"
|
|
" -h [--help] : Show the help.\n"
|
|
"\n");
|
|
}
|
|
|
|
bool UmcConsole::LoadOptions(int argc, const char * const *argv, apr_pool_t *pool)
|
|
{
|
|
apr_status_t rv;
|
|
apr_getopt_t* opt = NULL;
|
|
int optch;
|
|
const char* optarg;
|
|
|
|
const apr_getopt_option_t opt_option[] =
|
|
{
|
|
/* long-option, short-option, has-arg flag, description */
|
|
{ "root-dir", 'r', TRUE, "path to root dir" }, /* -r arg or --root-dir arg */
|
|
{ "log-prio", 'l', TRUE, "log priority" }, /* -l arg or --log-prio arg */
|
|
{ "log-output", 'o', TRUE, "log output mode" }, /* -o arg or --log-output arg */
|
|
{ "help", 'h', FALSE, "show help" }, /* -h or --help */
|
|
{ NULL, 0, 0, NULL }, /* end */
|
|
};
|
|
|
|
/* set the default options */
|
|
m_Options.m_RootDirPath = "../";
|
|
m_Options.m_LogPriority = NULL;
|
|
m_Options.m_LogOutput = NULL;
|
|
|
|
rv = apr_getopt_init(&opt, pool , argc, argv);
|
|
if(rv != APR_SUCCESS)
|
|
return false;
|
|
|
|
while((rv = apr_getopt_long(opt, opt_option, &optch, &optarg)) == APR_SUCCESS)
|
|
{
|
|
switch(optch)
|
|
{
|
|
case 'r':
|
|
m_Options.m_RootDirPath = optarg;
|
|
break;
|
|
case 'l':
|
|
if(optarg)
|
|
m_Options.m_LogPriority = optarg;
|
|
break;
|
|
case 'o':
|
|
if(optarg)
|
|
m_Options.m_LogOutput = optarg;
|
|
break;
|
|
case 'h':
|
|
Usage();
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
if(rv != APR_EOF)
|
|
{
|
|
Usage();
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|