*/
SWITCH_DECLARE(void) switch_console_printf(switch_text_channel_t channel, char *file, const char *func, int line, char *fmt, ...);
+/*!
+ \brief A method akin to printf for dealing with api streams
+*/
+SWITCH_DECLARE(switch_status_t) switch_console_stream_write(switch_stream_handle_t *handle, char *fmt, ...);
END_EXTERN_C
#endif
\brief Execute a registered API command
\param cmd the name of the API command to execute
\param arg the optional arguement to the command
- \param retbuf a buffer to write output to
- \param len the length in bytes of retbuf
+ \param stream stream for output
\return the status returned by the API call
*/
-SWITCH_DECLARE(switch_status_t) switch_api_execute(char *cmd, char *arg, char *retbuf, switch_size_t len);
+SWITCH_DECLARE(switch_status_t) switch_api_execute(char *cmd, char *arg, switch_stream_handle_t *stream);
+
/*!
switch_state_handler_t on_hold;
};
+struct switch_stream_handle {
+ switch_stream_handle_write_function_t write_function;
+ void *data;
+ void *end;
+ switch_size_t data_size;
+ switch_size_t data_len;
+};
+
/*! \brief Node in which to store custom outgoing channel callback hooks */
struct switch_io_event_hook_outgoing_channel {
/*! the outgoing channel callback hook*/
typedef switch_status_t (*switch_waitfor_read_hook_t)(switch_core_session_t *, int, int);
typedef switch_status_t (*switch_waitfor_write_hook_t)(switch_core_session_t *, int, int);
typedef switch_status_t (*switch_send_dtmf_hook_t)(switch_core_session_t *, char *);
-typedef switch_status_t (*switch_api_function_t)(char *in, char *out, switch_size_t outlen);
+typedef struct switch_stream_handle switch_stream_handle_t;
+typedef switch_status_t (*switch_stream_handle_write_function_t)(switch_stream_handle_t *handle, char *fmt, ...);
+typedef switch_status_t (*switch_api_function_t)(char *in, switch_stream_handle_t *stream);
typedef switch_status_t (*switch_dtmf_callback_function_t)(switch_core_session_t *session, char *dtmf, void *buf, unsigned int buflen);
typedef int (*switch_core_db_callback_func_t)(void *pArg, int argc, char **argv, char **columnNames);
typedef switch_status_t (*switch_module_load_t) (switch_loadable_module_interface_t **, char *);
typedef switch_xml_t (*switch_xml_search_function_t)(char *section,
char *tag_name,
char *key_name,
- char *key_value);
+ char *key_value,
+ char *params);
-/* things we don't deserve to know about */
+/* things we don't deserve to know about */
/*! \brief A channel */
struct switch_channel;
/*! \brief A core session representing a call and all of it's resources */
SWITCH_DECLARE(switch_status_t) switch_string_match(const char *string, size_t string_len, const char *search, size_t search_len);
#define SWITCH_READ_ACCEPTABLE(status) status == SWITCH_STATUS_SUCCESS || status == SWITCH_STATUS_BREAK
-
+SWITCH_DECLARE(int) switch_url_encode(char *url, char *buf, size_t len);
+SWITCH_DECLARE(char *) switch_url_decode(char *s);
END_EXTERN_C
#endif
char *key_name,
char *key_value,
switch_xml_t *root,
- switch_xml_t *node);
+ switch_xml_t *node,
+ char *params);
-SWITCH_DECLARE(switch_xml_t) switch_xml_open_cfg(char *file_path, switch_xml_t *node);
+SWITCH_DECLARE(switch_xml_t) switch_xml_open_cfg(char *file_path, switch_xml_t *node, char *params);
SWITCH_DECLARE(switch_status_t) switch_xml_bind_search_function(switch_xml_search_function_t function);
END_EXTERN_C
static const char modname[] = "mod_commands";
+static switch_status_t status_function(char *cmd, switch_stream_handle_t *stream)
+{
+ switch_core_time_duration_t duration;
+ switch_core_measure_time(switch_core_uptime(), &duration);
-static switch_status_t load_function(char *mod, char *out, size_t outlen)
+ stream->write_function(stream, "<b>UP %u year(s), %u day(s), %u hour(s), %u minute(s), %u second(s), %u millisecond(s), %u microsecond(s)</b>\n",
+ duration.yr,
+ duration.day,
+ duration.hr,
+ duration.min,
+ duration.sec,
+ duration.ms,
+ duration.mms
+ );
+ return SWITCH_STATUS_SUCCESS;
+}
+
+static switch_status_t load_function(char *mod, switch_stream_handle_t *stream)
{
switch_loadable_module_load_module((char *) SWITCH_GLOBAL_dirs.mod_dir, (char *) mod);
- snprintf(out, outlen, "OK\n");
+ stream->write_function(stream, "OK\n");
return SWITCH_STATUS_SUCCESS;
}
-static switch_status_t kill_function(char *dest, char *out, size_t outlen)
+static switch_status_t kill_function(char *dest, switch_stream_handle_t *stream)
{
switch_core_session_t *session = NULL;
switch_core_session_kill_channel(session, SWITCH_SIG_KILL);
switch_channel_hangup(channel, SWITCH_CAUSE_NORMAL_CLEARING);
switch_core_session_rwunlock(session);
- snprintf(out, outlen, "OK\n");
+ stream->write_function(stream, "OK\n");
} else {
- snprintf(out, outlen, "No Such Channel!\n");
+ stream->write_function(stream, "No Such Channel!\n");
}
return SWITCH_STATUS_SUCCESS;
}
-static switch_status_t transfer_function(char *cmd, char *out, size_t outlen)
+static switch_status_t transfer_function(char *cmd, switch_stream_handle_t *stream)
{
switch_core_session_t *session = NULL;
char *argv[4] = {0};
argc = switch_separate_string(cmd, ' ', argv, (sizeof(argv) / sizeof(argv[0])));
if (argc < 2 || argc > 4) {
- snprintf(out, outlen, "Invalid Parameters\n");
+ stream->write_function(stream, "Invalid Parameters\n");
} else {
char *uuid = argv[0];
char *dest = argv[1];
if ((session = switch_core_session_locate(uuid))) {
if (switch_ivr_session_transfer(session, dest, dp, context) == SWITCH_STATUS_SUCCESS) {
- snprintf(out, outlen, "OK\n");
+ stream->write_function(stream, "OK\n");
} else {
- snprintf(out, outlen, "ERROR\n");
+ stream->write_function(stream, "ERROR\n");
}
switch_core_session_rwunlock(session);
} else {
- snprintf(out, outlen, "No Such Channel!\n");
+ stream->write_function(stream, "No Such Channel!\n");
}
}
-static switch_status_t pause_function(char *cmd, char *out, size_t outlen)
+static switch_status_t pause_function(char *cmd, switch_stream_handle_t *stream)
{
switch_core_session_t *session = NULL;
char *argv[4] = {0};
argc = switch_separate_string(cmd, ' ', argv, (sizeof(argv) / sizeof(argv[0])));
if (argc < 2) {
- snprintf(out, outlen, "Invalid Parameters\n");
+ stream->write_function(stream, "Invalid Parameters\n");
} else {
char *uuid = argv[0];
char *dest = argv[1];
switch_core_session_rwunlock(session);
} else {
- snprintf(out, outlen, "No Such Channel!\n");
+ stream->write_function(stream, "No Such Channel!\n");
}
}
return SWITCH_STATUS_SUCCESS;
}
-struct show_return {
- char *out;
- size_t remaining;
-};
-
static int show_callback(void *pArg, int argc, char **argv, char **columnNames){
- struct show_return *returnval = (struct show_return *) pArg;
- char temp[1024];
- size_t len;
-
- sprintf(temp, "%s\n", argv[1]);
- len = strlen(temp);
+ switch_stream_handle_t *stream = (switch_stream_handle_t *) pArg;
- if (len < returnval->remaining) {
- strcpy(returnval->out, temp);
- returnval->remaining -= len;
- returnval->out += len;
- }
+ stream->write_function(stream, "%s\n", argv[1]);
return 0;
}
-static switch_status_t status_function(char *cmd, char *out, size_t outlen)
-{
- switch_core_time_duration_t duration;
- switch_core_measure_time(switch_core_uptime(), &duration);
- snprintf(out, outlen, "<b>UP %u year(s), %u day(s), %u hour(s), %u minute(s), %u second(s), %u millisecond(s), %u microsecond(s)</b>\n",
- duration.yr,
- duration.day,
- duration.hr,
- duration.min,
- duration.sec,
- duration.ms,
- duration.mms
- );
- return SWITCH_STATUS_SUCCESS;
-}
-
-static switch_status_t show_function(char *cmd, char *out, size_t outlen)
+static switch_status_t show_function(char *cmd, switch_stream_handle_t *stream)
{
char sql[1024];
char *errmsg;
- struct show_return returnval;
switch_core_db_t *db = switch_core_db_handle();
sprintf (sql, "select * from interfaces");
- returnval.out = out;
- returnval.remaining = outlen;
-
- switch_core_db_exec(db, sql, show_callback, &returnval, &errmsg);
+ switch_core_db_exec(db, sql, show_callback, stream, &errmsg);
if (errmsg) {
- snprintf(out, outlen, "SQL ERR [%s]\n",errmsg);
+ stream->write_function(stream, "SQL ERR [%s]\n",errmsg);
switch_core_db_free(errmsg);
errmsg = NULL;
}
/*.next */ &load_api_interface
};
-
static const switch_loadable_module_interface_t mod_commands_module_interface = {
/*.module_name */ modname,
/*.endpoint_interface */ NULL,
switch_xml_t cfg, xml, settings, param;
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return;
}
char *exten_name = NULL;
switch_xml_t cfg, xml, xcontext, xexten, xaction, xcond;
char *context = NULL;
-
+ char params[1024];
channel = switch_core_session_get_channel(session);
if ((caller_profile = switch_channel_get_caller_profile(channel))) {
}
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Processing %s->%s!\n", caller_profile->caller_id_name,
- caller_profile->destination_number);
-
+ caller_profile->destination_number);
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ snprintf(params, sizeof(params), "dest=%s", caller_profile->destination_number);
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, params))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
switch_channel_hangup(channel, SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER);
return NULL;
SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_codec_string, globals.codec_string);
SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_codec_rates_string, globals.codec_rates_string);
-static switch_status_t dl_login(char *arg, char *out, size_t outlen);
-static switch_status_t dl_logout(char *profile_name, char *out, size_t outlen);
+static switch_status_t dl_login(char *arg, switch_stream_handle_t *stream);
+static switch_status_t dl_logout(char *profile_name, switch_stream_handle_t *stream);
static switch_status_t channel_on_init(switch_core_session_t *session);
static switch_status_t channel_on_hangup(switch_core_session_t *session);
static switch_status_t channel_on_ring(switch_core_session_t *session);
}
}
-static switch_status_t dl_logout(char *profile_name, char *out, size_t outlen)
+static switch_status_t dl_logout(char *profile_name, switch_stream_handle_t *stream)
{
struct mdl_profile *profile;
if ((profile = switch_core_hash_find(globals.profile_hash, profile_name))) {
ldl_handle_stop(profile->handle);
- snprintf(out, outlen, "OK\n");
+ stream->write_function(stream, "OK\n");
} else {
- snprintf(out, outlen, "NO SUCH PROFILE %s\n", profile_name);
+ stream->write_function(stream, "NO SUCH PROFILE %s\n", profile_name);
}
return SWITCH_STATUS_SUCCESS;
}
-static switch_status_t dl_login(char *arg, char *out, size_t outlen)
+static switch_status_t dl_login(char *arg, switch_stream_handle_t *stream)
{
char *argv[10] = {0};
int argc = 0;
int x;
if (switch_strlen_zero(arg)) {
- snprintf(out, outlen, "FAIL\n");
+ stream->write_function(stream, "FAIL\n");
return SWITCH_STATUS_SUCCESS;
}
if (profile) {
if (switch_test_flag(profile, TFLAG_IO)) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Profile already exists.");
- snprintf(out, outlen, "Profile already exists\n");
+ stream->write_function(stream, "Profile already exists\n");
return SWITCH_STATUS_SUCCESS;
}
}
if (profile && init_profile(profile, 1) == SWITCH_STATUS_SUCCESS) {
- snprintf(out, outlen, "OK\n");
+ stream->write_function(stream, "OK\n");
} else {
- snprintf(out, outlen, "FAIL\n");
+ stream->write_function(stream, "FAIL\n");
}
return SWITCH_STATUS_SUCCESS;
switch_core_hash_init(&globals.profile_hash, module_pool);
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return SWITCH_STATUS_TERM;
}
globals.bytes_per_frame = DEFAULT_BYTES_PER_FRAME;
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return SWITCH_STATUS_TERM;
}
memset(&globals, 0, sizeof(globals));
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return SWITCH_STATUS_TERM;
}
memset(&globals, 0, sizeof(globals));
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return SWITCH_STATUS_TERM;
}
static int dump_info(void);
static switch_status_t load_config(void);
static int get_dev_by_name(char *name, int in);
- static switch_status_t place_call(char *dest, char *out, size_t outlen);
- static switch_status_t hup_call(char *callid, char *out, size_t outlen);
- static switch_status_t call_info(char *callid, char *out, size_t outlen);
- static switch_status_t send_dtmf(char *callid, char *out, size_t outlen);
- static switch_status_t answer_call(char *callid, char *out, size_t outlen);
+ static switch_status_t place_call(char *dest, switch_stream_handle_t *stream);
+ static switch_status_t hup_call(char *callid, switch_stream_handle_t *stream);
+ static switch_status_t call_info(char *callid, switch_stream_handle_t *stream);
+ static switch_status_t send_dtmf(char *callid, switch_stream_handle_t *stream);
+ static switch_status_t answer_call(char *callid, switch_stream_handle_t *stream);
/*
State methods they get called when the state changes to the specific state
memset(&globals, 0, sizeof(globals));
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return SWITCH_STATUS_TERM;
}
return SWITCH_STATUS_FALSE;
}
-static switch_status_t place_call(char *dest, char *out, size_t outlen)
+static switch_status_t place_call(char *dest, switch_stream_handle_t *stream)
{
switch_core_session_t *session;
switch_status_t status = SWITCH_STATUS_FALSE;
return SWITCH_STATUS_FALSE;
}
- strncpy(out, "FAIL", outlen - 1);
-
+ stream->write_function(stream, "FAIL");
+
if ((session = switch_core_session_request(&channel_endpoint_interface, NULL)) != 0) {
struct private_object *tech_pvt;
switch_channel_t *channel;
if ((status = engage_device(tech_pvt)) == SWITCH_STATUS_SUCCESS) {
switch_channel_set_state(channel, CS_INIT);
switch_core_session_thread_launch(tech_pvt->session);
- snprintf(out, outlen, "SUCCESS:%s:%s", tech_pvt->call_id, switch_core_session_get_uuid(tech_pvt->session));
+ stream->write_function(stream, "SUCCESS:%s:%s", tech_pvt->call_id, switch_core_session_get_uuid(tech_pvt->session));
}
}
return status;
}
-static switch_status_t hup_call(char *callid, char *out, size_t outlen)
+static switch_status_t hup_call(char *callid, switch_stream_handle_t *stream)
{
struct private_object *tech_pvt;
switch_channel_t *channel = NULL;
i++;
}
- snprintf(out, outlen, "HUNGUP: %d", i);
+ stream->write_function(stream, "HUNGUP: %d", i);
return SWITCH_STATUS_SUCCESS;
}
assert(channel != NULL);
switch_channel_hangup(channel, SWITCH_CAUSE_NORMAL_CLEARING);
- strncpy(out, "OK", outlen - 1);
+ stream->write_function(stream, "OK");
} else {
- strncpy(out, "NO SUCH CALL", outlen - 1);
+ stream->write_function(stream, "NO SUCH CALL");
}
return SWITCH_STATUS_SUCCESS;
}
-static switch_status_t send_dtmf(char *callid, char *out, size_t outlen)
+static switch_status_t send_dtmf(char *callid, switch_stream_handle_t *stream)
{
struct private_object *tech_pvt = NULL;
switch_channel_t *channel = NULL;
channel = switch_core_session_get_channel(tech_pvt->session);
assert(channel != NULL);
switch_channel_queue_dtmf(channel, dtmf);
- strncpy(out, "OK", outlen - 1);
+ stream->write_function(stream, "OK");
} else {
- strncpy(out, "NO SUCH CALL", outlen - 1);
+ stream->write_function(stream, "NO SUCH CALL");
}
return SWITCH_STATUS_SUCCESS;
}
-static switch_status_t answer_call(char *callid, char *out, size_t outlen)
+static switch_status_t answer_call(char *callid, switch_stream_handle_t *stream)
{
struct private_object *tech_pvt = NULL;
switch_channel_t *channel = NULL;
switch_set_flag(tech_pvt, TFLAG_ANSWER);
switch_channel_answer(channel);
} else {
- strncpy(out, "NO SUCH CALL", outlen - 1);
+ stream->write_function(stream, "NO SUCH CALL");
}
return SWITCH_STATUS_SUCCESS;
}
-static void print_info(struct private_object *tech_pvt, char *out, size_t outlen)
+static void print_info(struct private_object *tech_pvt, switch_stream_handle_t *stream)
{
switch_channel_t *channel = NULL;
channel = switch_core_session_get_channel(tech_pvt->session);
assert(channel != NULL);
- snprintf(out, outlen, "CALL %s\t%s\t%s\t%s\t%s\n",
- tech_pvt->call_id,
+ stream->write_function(stream, "CALL %s\t%s\t%s\t%s\t%s\n",
+ tech_pvt->call_id,
tech_pvt->caller_profile->caller_id_name ? tech_pvt->caller_profile->caller_id_name : "n/a",
tech_pvt->caller_profile->caller_id_number ? tech_pvt->caller_profile->caller_id_number : "n/a",
tech_pvt->caller_profile->destination_number ? tech_pvt->caller_profile->destination_number : "n/a",
}
-static switch_status_t call_info(char *callid, char *out, size_t outlen)
+static switch_status_t call_info(char *callid, switch_stream_handle_t *stream)
{
struct private_object *tech_pvt;
switch_hash_index_t *hi;
for (hi = apr_hash_first(module_pool, globals.call_hash); hi; hi = switch_hash_next(hi)) {
switch_hash_this(hi, NULL, NULL, &val);
tech_pvt = val;
- print_info(tech_pvt, out + strlen(out), outlen - strlen(out));
+ print_info(tech_pvt, stream);
}
} else if (callid && (tech_pvt = switch_core_hash_find(globals.call_hash, callid)) != 0) {
print_info(tech_pvt, out, outlen);
} else {
- strncpy(out, "NO SUCH CALL", outlen - 1);
+ stream->write_function(stream, "NO SUCH CALL");
}
return SWITCH_STATUS_SUCCESS;
globals.dtmf_off = 50;
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return SWITCH_STATUS_TERM;
}
memset(&globals, 0, sizeof(globals));
globals.next_woomera_port = WOOMERA_MIN_PORT;
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return SWITCH_STATUS_TERM;
}
char *cf = "event_multicast.conf";
switch_xml_t cfg, xml, settings, param;
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return SWITCH_STATUS_TERM;
}
memset(&globals, 0, sizeof(globals));
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return SWITCH_STATUS_TERM;
}
sw_discovery_oid *oid;
switch_xml_t cfg, xml, settings, param;
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return SWITCH_STATUS_TERM;
}
if (argc > 1) {
char *cmd = JS_GetStringBytes(JS_ValueToString(cx, argv[0]));
char *arg = JS_GetStringBytes(JS_ValueToString(cx, argv[1]));
+ switch_stream_handle_t stream = {0};
char retbuf[2048] = "";
- switch_api_execute(cmd, arg, retbuf, sizeof(retbuf));
+
+ stream.data = retbuf;
+ stream.end = stream.data;
+ stream.data_size = sizeof(retbuf);
+ switch_api_execute(cmd, arg, &stream);
*rval = STRING_TO_JSVAL (JS_NewStringCopyZ(cx, retbuf));
} else {
*rval = STRING_TO_JSVAL (JS_NewStringCopyZ(cx, ""));
}
-static switch_status_t launch_async(char *text, char *out, size_t outlen)
+static switch_status_t launch_async(char *text, switch_stream_handle_t *stream)
{
if (switch_strlen_zero(text)) {
- switch_copy_string(out, "INVALID", outlen);
+ stream->write_function(stream, "INVALID");
return SWITCH_STATUS_SUCCESS;
}
js_thread_launch(text);
- switch_copy_string(out, "OK", outlen);
+ stream->write_function(stream, "OK");
return SWITCH_STATUS_SUCCESS;
}
char *cf = "console.conf";
switch_xml_t cfg, xml, settings, param;
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return SWITCH_STATUS_TERM;
}
static const char modname[] = "mod_xml_rpc";
+
static struct {
int port;
uint8_t running;
static switch_xml_t xml_url_fetch(char *section,
- char *tag_name,
- char *key_name,
- char *key_value)
+ char *tag_name,
+ char *key_name,
+ char *key_value,
+ char *params)
{
char url[1024] = "", filename[1024] = "";
CURL *curl_handle = NULL;
struct config_data config_data;
switch_xml_t xml;
-
- snprintf(url, sizeof(url), "%s?section=%s&tag_name=%s&key_name=%s&key_value=%s\n", globals.url, section, tag_name, key_name, key_value);
+
+ snprintf(url, sizeof(url), "%s?section=%s&tag_name=%s&key_name=%s&key_value=%s%s%s\n",
+ globals.url, section, tag_name, key_name, key_value, params ? "&" : "", params ? params : "");
srand(time(NULL) + strlen(url));
snprintf(filename, sizeof(filename), "%s%04x.tmp", SWITCH_GLOBAL_dirs.temp_dir, (rand() & 0xffff));
curl_global_init(CURL_GLOBAL_ALL);
char *cf = "xml_rpc.conf";
switch_xml_t cfg, xml, settings, param;
- if (!(xml = switch_xml_open_cfg(cf, &cfg))) {
+ if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "open of %s failed\n", cf);
return SWITCH_STATUS_TERM;
}
}
-#define CMDLEN 10240
+static switch_status_t http_stream_write(switch_stream_handle_t *handle, char *fmt, ...)
+{
+ va_list ap;
+ TSession *r = handle->data;
+ int ret = 0;
+ char *data;
+
+ va_start(ap, fmt);
+#ifdef HAVE_VASPRINTF
+ ret = vasprintf(&data, fmt, ap);
+#else
+ if ((data = (char *) malloc(2048))) {
+ vsnprintf(data, 2048, fmt, ap);
+ }
+#endif
+ va_end(ap);
+
+ if (data) {
+ ret = 0;
+ HTTPWrite(r, data, strlen(data));
+ free(data);
+ }
+
+ return ret ? SWITCH_STATUS_FALSE : SWITCH_STATUS_SUCCESS;
+}
+
abyss_bool HandleHook(TSession *r)
{
char *m = "text/html";
- char *retbuf = malloc(CMDLEN);
char *command, *arg;
- char *ret = NULL;
+ switch_stream_handle_t stream = {0};
if(strncmp(r->uri, "/api/", 5)) {
return FALSE;
}
ResponseChunked(r);
ResponseStatus(r,200);
- memset(retbuf, 0, CMDLEN);
- switch_api_execute(command, arg, retbuf, CMDLEN);
- if (!strncasecmp(retbuf, "content-type: ", 14)) {
-
- m = retbuf + 14;
- if ((ret = strchr(m, '\n'))) {
- *ret++ = '\0';
- }
- }
-
- if (!ret) {
- ret = retbuf;
- }
ResponseContentType(r, m);
ResponseWrite(r);
- HTTPWrite(r, ret , strlen(ret));
+ stream.data = r;
+ stream.write_function = http_stream_write;
+ switch_api_execute(command, arg, &stream);
HTTPWriteEnd(r);
free(command);
- free(retbuf);
return TRUE;
}
-
+#define CMDLEN 1024 * 256
static xmlrpc_value *freeswitch_api(xmlrpc_env *const envP, xmlrpc_value *const paramArrayP, void *const userData)
{
char *command, *arg;
char *retbuf = malloc(CMDLEN);
+ switch_stream_handle_t stream = {0};
xmlrpc_value *val;
/* Parse our argument array. */
}
memset(retbuf, 0, CMDLEN);
- switch_api_execute(command, arg, retbuf, CMDLEN);
+ stream.data = retbuf;
+ stream.end = stream.data;
+ stream.data_size = CMDLEN;
+ stream.write_function = switch_console_stream_write;
+ switch_api_execute(command, arg, &stream);
/* Return our result. */
val = xmlrpc_build_value(envP, "s", retbuf);
#include <switch_console.h>
#define CMD_BUFLEN 1024 * 1000
+
+SWITCH_DECLARE(switch_status_t) switch_console_stream_write(switch_stream_handle_t *handle, char *fmt, ...)
+{
+ va_list ap;
+ char *buf = handle->data;
+ char *end = handle->end;
+ int ret = 0;
+ char *data;
+
+ if (handle->data_len >= handle->data_size) {
+ return SWITCH_STATUS_FALSE;
+ }
+
+ va_start(ap, fmt);
+#ifdef HAVE_VASPRINTF
+ ret = vasprintf(&data, fmt, ap);
+#else
+ if ((data = (char *) malloc(2048))) {
+ vsnprintf(data, 2048, fmt, ap);
+ }
+#endif
+ va_end(ap);
+
+ if (data) {
+ uint32_t len = handle->data_size - handle->data_len;
+
+ if (len <= strlen(data)) {
+ ret = -1;
+ } else {
+ ret = 0;
+ snprintf(end, len, data);
+ handle->data_len = strlen(buf);
+ handle->end = handle->data + handle->data_len;
+ }
+ free(data);
+ }
+
+ return ret ? SWITCH_STATUS_FALSE : SWITCH_STATUS_SUCCESS;
+}
+
+
static int switch_console_process(char *cmd, char *retbuf, int retlen)
{
char *arg = NULL;
-
+ switch_stream_handle_t stream = {0};
if (!strcmp(cmd, "shutdown") || !strcmp(cmd, "...")) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, "Bye!\n");
*arg++ = '\0';
}
- if (switch_api_execute(cmd, arg, retbuf, retlen) == SWITCH_STATUS_SUCCESS) {
+ stream.data = retbuf;
+ stream.end = stream.data;
+ stream.data_size = retlen;
+ stream.write_function = switch_console_stream_write;
+ if (switch_api_execute(cmd, arg, &stream) == SWITCH_STATUS_SUCCESS) {
switch_log_printf(SWITCH_CHANNEL_LOG_CLEAN, SWITCH_LOG_CONSOLE, "API CALL [%s(%s)] output:\n%s\n", cmd, arg ? arg : "", retbuf);
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, "Unknown Command: %s\n", cmd);
switch_core_hash_init(&loadable_modules.directory_hash, loadable_modules.pool);
switch_core_hash_init(&loadable_modules.dialplan_hash, loadable_modules.pool);
- if ((xml = switch_xml_open_cfg(cf, &cfg))) {
+ if ((xml = switch_xml_open_cfg(cf, &cfg, NULL))) {
switch_xml_t mods, ld;
if ((mods = switch_xml_child(cfg, "modules"))) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, "open of %s failed\n", cf);
}
- if ((xml = switch_xml_open_cfg(pcf, &cfg))) {
+ if ((xml = switch_xml_open_cfg(pcf, &cfg, NULL))) {
switch_xml_t mods, ld;
if ((mods = switch_xml_child(cfg, "modules"))) {
return i;
}
-SWITCH_DECLARE(switch_status_t) switch_api_execute(char *cmd, char *arg, char *retbuf, switch_size_t len)
+SWITCH_DECLARE(switch_status_t) switch_api_execute(char *cmd, char *arg, switch_stream_handle_t *stream)
{
switch_api_interface_t *api;
switch_status_t status;
switch_event_t *event;
+ assert(stream != NULL);
+ assert(stream->data != NULL);
+ assert(stream->write_function != NULL);
+
if ((api = switch_loadable_module_get_api_interface(cmd)) != 0) {
- status = api->function(arg, retbuf, len);
+ status = api->function(arg, stream);
} else {
status = SWITCH_STATUS_FALSE;
- snprintf(retbuf, len, "INVALID COMMAND [%s]", cmd);
+ stream->write_function(stream, "INVALID COMMAND [%s]", cmd);
+ //snprintf(retbuf, len, "INVALID COMMAND [%s]", cmd);
}
if (switch_event_create(&event, SWITCH_EVENT_API) == SWITCH_STATUS_SUCCESS) {
if (arg) {
switch_event_add_header(event, SWITCH_STACK_BOTTOM, "API-Command-Arguement", arg);
}
- switch_event_add_body(event, retbuf);
+ //switch_event_add_body(event, retbuf);
switch_event_fire(&event);
}
return nsds;
}
+
+SWITCH_DECLARE(int) switch_url_encode(char *url, char *buf, size_t len)
+{
+ char *p;
+ int x = 0;
+ const char urlunsafe[] = " \"#%&+:;<=>?@[\\]^`{|}";
+ const char hex[] = "0123456789ABCDEF";
+
+ memset(buf, 0, len);
+ for( p = url ; *p ; p++) {
+ if (*p < ' ' || *p > '~' || strchr(urlunsafe, *p)) {
+ if ((x + 3) > len) {
+ break;
+ }
+ buf[x++] = '%';
+ buf[x++] = hex[*p >> 4];
+ buf[x++] = hex[*p & 0x0f];
+ } else {
+ buf[x++] = *p;
+ }
+ if (x == len) {
+ break;
+ }
+ }
+ return x;
+}
+
+SWITCH_DECLARE(char *) switch_url_decode(char *s)
+{
+ char *o;
+ unsigned int tmp;
+
+ for (o = s; *s; s++, o++) {
+ if (*s == '%' && strlen(s) > 2 && sscanf(s + 1, "%2x", &tmp) == 1) {
+ *o = tmp;
+ s += 2;
+ } else {
+ *o = *s;
+ }
+ }
+ *o = '\0';
+ return s;
+}
+
+
#ifdef WIN32
//this forces certain symbols to not be optimized out of the dll
void include_me(void)
char *key_name,
char *key_value,
switch_xml_t *root,
- switch_xml_t *node)
+ switch_xml_t *node,
+ char *params)
{
switch_xml_t conf = NULL;
switch_xml_t tag = NULL;
switch_mutex_lock(XML_LOCK);
for(binding = BINDINGS; binding; binding = binding->next) {
- if ((xml = binding->function(section, tag_name, key_name, key_value))) {
+ if ((xml = binding->function(section, tag_name, key_name, key_value, params))) {
const char *err = NULL;
err = switch_xml_error(xml);
return SWITCH_STATUS_FALSE;
}
-SWITCH_DECLARE(switch_xml_t) switch_xml_open_cfg(char *file_path, switch_xml_t *node)
+SWITCH_DECLARE(switch_xml_t) switch_xml_open_cfg(char *file_path, switch_xml_t *node, char *params)
{
switch_xml_t xml = NULL, cfg = NULL;
assert(MAIN_XML_ROOT != NULL);
- if (switch_xml_locate("configuration", "configuration", "name", file_path, &xml, &cfg) == SWITCH_STATUS_SUCCESS) {
+ if (switch_xml_locate("configuration", "configuration", "name", file_path, &xml, &cfg, params) == SWITCH_STATUS_SUCCESS) {
*node = cfg;
}