mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-11 04:32:50 +00:00
add scheduler support for heartbeat
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10089 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
fc4260a98a
commit
d288630b64
@ -153,6 +153,7 @@ struct switch_core_session {
|
|||||||
switch_codec_t bug_codec;
|
switch_codec_t bug_codec;
|
||||||
uint32_t read_frame_count;
|
uint32_t read_frame_count;
|
||||||
uint32_t track_duration;
|
uint32_t track_duration;
|
||||||
|
uint32_t track_id;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct switch_media_bug {
|
struct switch_media_bug {
|
||||||
|
@ -119,6 +119,9 @@ struct switch_core_port_allocator;
|
|||||||
///\{
|
///\{
|
||||||
|
|
||||||
|
|
||||||
|
SWITCH_DECLARE(void) switch_core_session_sched_heartbeat(switch_core_session_t *session, uint32_t seconds);
|
||||||
|
SWITCH_DECLARE(void) switch_core_session_unsched_heartbeat(switch_core_session_t *session);
|
||||||
|
|
||||||
SWITCH_DECLARE(void) switch_core_session_enable_heartbeat(switch_core_session_t *session, uint32_t seconds);
|
SWITCH_DECLARE(void) switch_core_session_enable_heartbeat(switch_core_session_t *session, uint32_t seconds);
|
||||||
SWITCH_DECLARE(void) switch_core_session_disable_heartbeat(switch_core_session_t *session);
|
SWITCH_DECLARE(void) switch_core_session_disable_heartbeat(switch_core_session_t *session);
|
||||||
|
|
||||||
|
@ -2352,13 +2352,14 @@ SWITCH_STANDARD_API(help_function)
|
|||||||
return SWITCH_STATUS_SUCCESS;
|
return SWITCH_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define HEARTBEAT_SYNTAX "<uuid> <on|off|<seconds>>"
|
#define HEARTBEAT_SYNTAX "<uuid> [sched] <on|off|<seconds>>"
|
||||||
SWITCH_STANDARD_API(uuid_session_heartbeat_function)
|
SWITCH_STANDARD_API(uuid_session_heartbeat_function)
|
||||||
{
|
{
|
||||||
char *mycmd = NULL, *argv[2] = { 0 };
|
char *mycmd = NULL, *argv[3] = { 0 };
|
||||||
uint32_t seconds = 60;
|
uint32_t seconds = 60;
|
||||||
int argc, tmp;
|
int argc, tmp;
|
||||||
switch_core_session_t *l_session = NULL;
|
switch_core_session_t *l_session = NULL;
|
||||||
|
int x = 0, sched = 0;
|
||||||
|
|
||||||
if (switch_strlen_zero(cmd) || !(mycmd = strdup(cmd))) {
|
if (switch_strlen_zero(cmd) || !(mycmd = strdup(cmd))) {
|
||||||
goto error;
|
goto error;
|
||||||
@ -2366,7 +2367,7 @@ SWITCH_STANDARD_API(uuid_session_heartbeat_function)
|
|||||||
|
|
||||||
argc = switch_separate_string(mycmd, ' ', argv, (sizeof(argv) / sizeof(argv[0])));
|
argc = switch_separate_string(mycmd, ' ', argv, (sizeof(argv) / sizeof(argv[0])));
|
||||||
|
|
||||||
if (argc != 2 || !argv[0]) {
|
if (argc < 2 || !argv[0]) {
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2375,17 +2376,29 @@ SWITCH_STANDARD_API(uuid_session_heartbeat_function)
|
|||||||
return SWITCH_STATUS_SUCCESS;
|
return SWITCH_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (switch_is_number(argv[1])) {
|
if (!strcasecmp(argv[1], "sched")) {
|
||||||
tmp = atoi(argv[1]);
|
x = 2;
|
||||||
|
sched++;
|
||||||
|
} else {
|
||||||
|
x = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (switch_is_number(argv[x])) {
|
||||||
|
tmp = atoi(argv[x]);
|
||||||
if (tmp > 0) {
|
if (tmp > 0) {
|
||||||
seconds = tmp;
|
seconds = tmp;
|
||||||
}
|
}
|
||||||
} else if (!switch_true(argv[1])) {
|
} else if (!switch_true(argv[x])) {
|
||||||
seconds = 0;
|
seconds = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (seconds) {
|
if (seconds) {
|
||||||
|
if (sched) {
|
||||||
|
switch_core_session_sched_heartbeat(l_session, seconds);
|
||||||
|
} else {
|
||||||
switch_core_session_enable_heartbeat(l_session, seconds);
|
switch_core_session_enable_heartbeat(l_session, seconds);
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
switch_core_session_disable_heartbeat(l_session);
|
switch_core_session_disable_heartbeat(l_session);
|
||||||
}
|
}
|
||||||
|
@ -122,7 +122,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_session_read_frame(switch_core_sessi
|
|||||||
|
|
||||||
*frame = NULL;
|
*frame = NULL;
|
||||||
|
|
||||||
if (session->read_codec && session->track_duration) {
|
if (session->read_codec && !session->track_id && session->track_duration) {
|
||||||
if (session->read_frame_count == 0) {
|
if (session->read_frame_count == 0) {
|
||||||
switch_event_t *event;
|
switch_event_t *event;
|
||||||
session->read_frame_count = (session->read_codec->implementation->actual_samples_per_second /
|
session->read_frame_count = (session->read_codec->implementation->actual_samples_per_second /
|
||||||
|
@ -780,6 +780,39 @@ SWITCH_DECLARE(void) switch_core_session_perform_destroy(switch_core_session_t *
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SWITCH_STANDARD_SCHED_FUNC(sch_heartbeat_callback)
|
||||||
|
{
|
||||||
|
switch_event_t *event;
|
||||||
|
switch_core_session_t *session;
|
||||||
|
char *uuid = task->cmd_arg;
|
||||||
|
|
||||||
|
if ((session = switch_core_session_locate(uuid))) {
|
||||||
|
switch_event_create(&event, SWITCH_EVENT_SESSION_HEARTBEAT);
|
||||||
|
switch_channel_event_set_data(session->channel, event);
|
||||||
|
switch_event_fire(&event);
|
||||||
|
switch_core_session_rwunlock(session);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* reschedule this task */
|
||||||
|
task->runtime = switch_timestamp(NULL) + session->track_duration;
|
||||||
|
}
|
||||||
|
|
||||||
|
SWITCH_DECLARE(void) switch_core_session_unsched_heartbeat(switch_core_session_t *session)
|
||||||
|
{
|
||||||
|
if (session->track_id) {
|
||||||
|
switch_scheduler_del_task_id(session->track_id);
|
||||||
|
session->track_id = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
SWITCH_DECLARE(void) switch_core_session_sched_heartbeat(switch_core_session_t *session, uint32_t seconds)
|
||||||
|
{
|
||||||
|
|
||||||
|
switch_core_session_unsched_heartbeat(session);
|
||||||
|
session->track_id = switch_scheduler_add_task(switch_timestamp(NULL), sch_heartbeat_callback, (char *) __SWITCH_FUNC__,
|
||||||
|
switch_core_session_get_uuid(session), 0, strdup(switch_core_session_get_uuid(session)), SSHF_FREE_ARG);
|
||||||
|
}
|
||||||
|
|
||||||
SWITCH_DECLARE(void) switch_core_session_enable_heartbeat(switch_core_session_t *session, uint32_t seconds)
|
SWITCH_DECLARE(void) switch_core_session_enable_heartbeat(switch_core_session_t *session, uint32_t seconds)
|
||||||
{
|
{
|
||||||
switch_assert(session != NULL);
|
switch_assert(session != NULL);
|
||||||
@ -788,17 +821,28 @@ SWITCH_DECLARE(void) switch_core_session_enable_heartbeat(switch_core_session_t
|
|||||||
seconds = 60;
|
seconds = 60;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (switch_channel_test_flag(session->channel, CF_PROXY_MODE)) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "%s using scheduler due to bypass_media mode\n", switch_channel_get_name(session->channel));
|
||||||
|
switch_core_session_sched_heartbeat(session, seconds);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch_core_session_unsched_heartbeat(session);
|
||||||
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "%s setting session heartbeat to %u second(s).\n",
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "%s setting session heartbeat to %u second(s).\n",
|
||||||
switch_channel_get_name(session->channel), seconds);
|
switch_channel_get_name(session->channel), seconds);
|
||||||
session->track_duration = seconds;
|
session->track_duration = seconds;
|
||||||
session->read_frame_count = 0;
|
session->read_frame_count = 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SWITCH_DECLARE(void) switch_core_session_disable_heartbeat(switch_core_session_t *session)
|
SWITCH_DECLARE(void) switch_core_session_disable_heartbeat(switch_core_session_t *session)
|
||||||
{
|
{
|
||||||
|
switch_core_session_unsched_heartbeat(session);
|
||||||
switch_assert(session != NULL);
|
switch_assert(session != NULL);
|
||||||
session->read_frame_count = 0;
|
session->read_frame_count = 0;
|
||||||
session->track_duration = 0;
|
session->track_duration = 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void *SWITCH_THREAD_FUNC switch_core_session_thread(switch_thread_t *thread, void *obj)
|
static void *SWITCH_THREAD_FUNC switch_core_session_thread(switch_thread_t *thread, void *obj)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user