#include <sys/select.h>
#include <histedit.h>
+
static char prompt_str[512] = "";
static char hostname[512] = "";
-char *prompt(EditLine * e)
+static char *prompt(EditLine * e)
{
- if (*prompt_str == '\0') {
- gethostname(hostname, sizeof(hostname));
- snprintf(prompt_str, sizeof(prompt_str), "freeswitch@%s> ", hostname);
- }
-
return prompt_str;
-
}
static EditLine *el;
static History *myhistory;
static HistEvent ev;
-static char *hfile = NULL;
static int running = 1;
static int thread_running = 0;
-
static void handle_SIGINT(int sig)
{
if (sig);
usleep(1000);
}
- done:
-
thread_running = 0;
esl_log(ESL_LOG_DEBUG, "Thread Done\n");
}
typedef struct {
+ char name[128];
char host[128];
- char pass[128];
esl_port_t port;
+ char pass[128];
} cli_profile_t;
-static cli_profile_t profiles[128] = { 0 };
+static cli_profile_t profiles[128] = {{{0}}};
static int pcount;
+
+static int get_profile(const char *name, cli_profile_t **profile)
+{
+ int x;
+
+ for (x = 0; x < pcount; x++) {
+ if (!strcmp(profiles[x].name, name)) {
+ *profile = &profiles[x];
+ return 0;
+ }
+ }
+
+ return -1;
+}
+
int main(int argc, char *argv[])
{
- esl_handle_t handle = {0};
+ esl_handle_t handle = {{0}};
int count;
const char *line;
char cmd_str[1024] = "";
char *home = getenv("HOME");
esl_config_t cfg;
cli_profile_t *profile = &profiles[0];
+ int cur = 0;
strncpy(profiles[0].host, "localhost", sizeof(profiles[0].host));
strncpy(profiles[0].pass, "ClueCon", sizeof(profiles[0].pass));
+ strncpy(profiles[0].name, "default", sizeof(profiles[0].name));
profiles[0].port = 8021;
- pcount = 1;
+ pcount++;
if (home) {
snprintf(hfile, sizeof(hfile), "%s/.fs_cli_history", home);
gethostname(hostname, sizeof(hostname));
handle.debug = 0;
-
+ esl_global_set_default_logger(7);
if (esl_config_open_file(&cfg, cfile)) {
char *var, *val;
+ char cur_cat[128] = "";
+
while (esl_config_next_pair(&cfg, &var, &val)) {
+ if (strcmp(cur_cat, cfg.category)) {
+ cur++;
+ esl_set_string(cur_cat, cfg.category);
+ esl_set_string(profiles[cur].name, cur_cat);
+ esl_set_string(profiles[cur].host, "localhost");
+ esl_set_string(profiles[cur].pass, "ClueCon");
+ profiles[cur].port = 8021;
+ esl_log(ESL_LOG_INFO, "Found Profile [%s]\n", profiles[cur].name);
+ pcount++;
+ }
+ if (!strcasecmp(var, "host")) {
+ esl_set_string(profiles[cur].host, val);
+ } else if (!strcasecmp(var, "password")) {
+ esl_set_string(profiles[cur].pass, val);
+ } else if (!strcasecmp(var, "port")) {
+ int pt = atoi(val);
+ if (pt > 0) {
+ profiles[cur].port = pt;
+ }
+ }
}
esl_config_close_file(&cfg);
}
-
- if (esl_connect(&handle, profile->host, profile->port, profile->pass)) {
- printf("Error Connecting [%s]\n", handle.err);
- return -1;
+ if (argv[1]) {
+ if (get_profile(argv[1], &profile)) {
+ esl_log(ESL_LOG_INFO, "Chosen profile %s does not exist using builtin default\n", argv[1]);
+ profile = &profiles[0];
+ } else {
+ esl_log(ESL_LOG_INFO, "Chosen profile %s\n", profile->name);
+ }
}
+ esl_log(ESL_LOG_INFO, "Using profile %s\n", profile->name);
+
+ gethostname(hostname, sizeof(hostname));
+ snprintf(prompt_str, sizeof(prompt_str), "freeswitch@%s> ", profile->name);
- if (handle.debug) {
- esl_global_set_default_logger(7);
+
+ if (esl_connect(&handle, profile->host, profile->port, profile->pass)) {
+ esl_log(ESL_LOG_ERROR, "Error Connecting [%s]\n", handle.err);
+ return -1;
}
-
+
esl_thread_create_detached(msg_thread_run, &handle);
el = el_init(__FILE__, stdout, stdout, stdout);
myhistory = history_init();
if (myhistory == 0) {
- fprintf(stderr, "history could not be initialized\n");
+ esl_log(ESL_LOG_ERROR, "history could not be initialized\n");
goto done;
}
el_set(el, EL_HIST, history, myhistory);
history(myhistory, &ev, H_LOAD, hfile);
-
snprintf(cmd_str, sizeof(cmd_str), "log info\n\n");
esl_send_recv(&handle, cmd_str);
+ esl_log(ESL_LOG_INFO, "FS CLI Ready.\n");
+
while (running) {
line = el_gets(el, &count);
*/
#include <esl.h>
-#include <sys/signal.h>
#ifndef HAVE_GETHOSTBYNAME_R
extern int gethostbyname_r (const char *__name,
send(handle->sock, "\n\n", 2, 0);
free(txt);
+
+ return ESL_SUCCESS;
}
esl_status_t esl_execute(esl_handle_t *handle, const char *app, const char *arg, const char *uuid)
snprintf(send_buf, sizeof(send_buf), "%s\ncall-command: execute\n%s%s\n", cmd_buf, app_buf, arg_buf);
- esl_send_recv(handle, send_buf);
+ return esl_send_recv(handle, send_buf);
}
esl_status_t esl_listen(const char *host, esl_port_t port, esl_listen_callback_t callback)
struct hostent *result;
char sendbuf[256];
- char recvbuf[256];
int rval;
const char *hval;
{
fd_set rfds, efds;
struct timeval tv = { 0, ms * 1000 };
- int max, activity, i = 0;
+ int max, activity;
esl_status_t status = ESL_SUCCESS;
esl_mutex_lock(handle->mutex);
esl_log(ESL_LOG_DEBUG, "SEND\n%s\n", cmd);
}
- send(handle->sock, cmd, strlen(cmd), 0);
+ if (send(handle->sock, cmd, strlen(cmd), 0)) {
+ strerror_r(handle->errno, handle->err, sizeof(handle->err));
+ return ESL_FAIL;
+ }
if (!(*e == '\n' && *(e-1) == '\n')) {
- send(handle->sock, "\n\n", 2, 0);
+ if (send(handle->sock, "\n\n", 2, 0)) {
+ strerror_r(handle->errno, handle->err, sizeof(handle->err));
+ return ESL_FAIL;
+ }
}
+
+ return ESL_SUCCESS;
+
}
esl_status_t esl_send_recv(esl_handle_t *handle, const char *cmd)
{
const char *hval;
-
+ esl_status_t status;
+
esl_mutex_lock(handle->mutex);
esl_send(handle, cmd);
- esl_recv_event(handle, &handle->last_sr_event);
+ status = esl_recv_event(handle, &handle->last_sr_event);
if (handle->last_sr_event) {
hval = esl_event_get_header(handle->last_sr_event, "reply-text");
}
esl_mutex_unlock(handle->mutex);
+
+ return status;
}