mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-24 03:47:39 +00:00
refactor some unneeded code and move artoo code into the core
This commit is contained in:
parent
16d483f113
commit
3efcf91983
@ -8045,6 +8045,13 @@ void sofia_handle_sip_i_invite(switch_core_session_t *session, nua_t *nua, sofia
|
|||||||
nua_handle_t *bnh = NULL;
|
nua_handle_t *bnh = NULL;
|
||||||
char sip_acl_authed_by[512] = "";
|
char sip_acl_authed_by[512] = "";
|
||||||
char sip_acl_token[512] = "";
|
char sip_acl_token[512] = "";
|
||||||
|
const char *dialog_from_user = "", *dialog_from_host = "", *to_user = "", *to_host = "", *contact_user = "", *contact_host = "";
|
||||||
|
const char *user_agent = "", *call_id = "";
|
||||||
|
url_t *from = NULL, *to = NULL, *contact = NULL;
|
||||||
|
const char *to_tag = "";
|
||||||
|
const char *from_tag = "";
|
||||||
|
char *sql = NULL;
|
||||||
|
|
||||||
|
|
||||||
profile->ib_calls++;
|
profile->ib_calls++;
|
||||||
|
|
||||||
@ -9047,15 +9054,6 @@ void sofia_handle_sip_i_invite(switch_core_session_t *session, nua_t *nua, sofia
|
|||||||
sofia_presence_set_chat_hash(tech_pvt, sip);
|
sofia_presence_set_chat_hash(tech_pvt, sip);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (sip && session) {
|
|
||||||
const char *dialog_from_user = "", *dialog_from_host = "", *to_user = "", *to_host = "", *contact_user = "", *contact_host = "";
|
|
||||||
const char *user_agent = "", *call_id = "";
|
|
||||||
url_t *from = NULL, *to = NULL, *contact = NULL;
|
|
||||||
const char *to_tag = "";
|
|
||||||
const char *from_tag = "";
|
|
||||||
char *sql = NULL;
|
|
||||||
|
|
||||||
if (sip->sip_to) {
|
if (sip->sip_to) {
|
||||||
to = sip->sip_to->a_url;
|
to = sip->sip_to->a_url;
|
||||||
}
|
}
|
||||||
@ -9138,36 +9136,10 @@ void sofia_handle_sip_i_invite(switch_core_session_t *session, nua_t *nua, sofia
|
|||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
if (sess_count > 110) {
|
|
||||||
switch_mutex_lock(profile->flag_mutex);
|
|
||||||
switch_core_session_limit(sess_count - 10);
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_CRIT, "LUKE: I'm hit, but not bad.\n");
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_CRIT,
|
|
||||||
"LUKE'S VOICE: Artoo, see what you can do with it. Hang on back there....\n"
|
|
||||||
"Green laserfire moves past the beeping little robot as his head turns. "
|
|
||||||
"After a few beeps and a twist of his mechanical arm,\n"
|
|
||||||
"Artoo reduces the max sessions to %d thus, saving the switch from certain doom.\n", sess_count - 10);
|
|
||||||
switch_mutex_unlock(profile->flag_mutex);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (tech_pvt->hash_key) {
|
|
||||||
switch_mutex_lock(tech_pvt->profile->flag_mutex);
|
|
||||||
switch_core_hash_delete(tech_pvt->profile->chat_hash, tech_pvt->hash_key);
|
|
||||||
switch_mutex_unlock(tech_pvt->profile->flag_mutex);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!switch_core_session_running(session)) {
|
|
||||||
nua_handle_bind(nh, NULL);
|
|
||||||
sofia_private_free(sofia_private);
|
|
||||||
switch_core_session_destroy(&session);
|
|
||||||
nua_respond(nh, 503, "Maximum Calls In Progress", SIPTAG_RETRY_AFTER_STR("300"), TAG_END());
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
|
|
||||||
fail:
|
fail:
|
||||||
profile->ib_failed_calls++;
|
profile->ib_failed_calls++;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1518,6 +1518,28 @@ static void *SWITCH_THREAD_FUNC switch_core_session_thread_pool_worker(switch_th
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void thread_launch_failure(void)
|
||||||
|
{
|
||||||
|
uint32_t sess_count;
|
||||||
|
|
||||||
|
switch_mutex_lock(session_manager.mutex);
|
||||||
|
|
||||||
|
sess_count = switch_core_session_count();
|
||||||
|
|
||||||
|
if (sess_count > 110) {
|
||||||
|
|
||||||
|
switch_core_session_limit(sess_count - 10);
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "LUKE: I'm hit, but not bad.\n");
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT,
|
||||||
|
"LUKE'S VOICE: Artoo, see what you can do with it. Hang on back there....\n"
|
||||||
|
"Green laserfire moves past the beeping little robot as his head turns. "
|
||||||
|
"After a few beeps and a twist of his mechanical arm,\n"
|
||||||
|
"Artoo reduces the max sessions to %d thus, saving the switch from certain doom.\n", sess_count - 10);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
switch_mutex_unlock(session_manager.mutex);
|
||||||
|
}
|
||||||
|
|
||||||
static switch_status_t check_queue(void)
|
static switch_status_t check_queue(void)
|
||||||
{
|
{
|
||||||
@ -1550,6 +1572,7 @@ static switch_status_t check_queue(void)
|
|||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Thread Failure!\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Thread Failure!\n");
|
||||||
switch_core_destroy_memory_pool(&pool);
|
switch_core_destroy_memory_pool(&pool);
|
||||||
status = SWITCH_STATUS_GENERR;
|
status = SWITCH_STATUS_GENERR;
|
||||||
|
thread_launch_failure();
|
||||||
} else {
|
} else {
|
||||||
status = SWITCH_STATUS_SUCCESS;
|
status = SWITCH_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
@ -1638,6 +1661,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_session_thread_launch(switch_core_se
|
|||||||
switch_clear_flag(session, SSF_THREAD_RUNNING);
|
switch_clear_flag(session, SSF_THREAD_RUNNING);
|
||||||
switch_clear_flag(session, SSF_THREAD_STARTED);
|
switch_clear_flag(session, SSF_THREAD_STARTED);
|
||||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_CRIT, "Cannot create thread!\n");
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_CRIT, "Cannot create thread!\n");
|
||||||
|
thread_launch_failure();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1656,7 +1680,10 @@ SWITCH_DECLARE(void) switch_core_session_launch_thread(switch_core_session_t *se
|
|||||||
switch_threadattr_detach_set(thd_attr, 1);
|
switch_threadattr_detach_set(thd_attr, 1);
|
||||||
|
|
||||||
switch_threadattr_stacksize_set(thd_attr, SWITCH_THREAD_STACKSIZE);
|
switch_threadattr_stacksize_set(thd_attr, SWITCH_THREAD_STACKSIZE);
|
||||||
switch_thread_create(&thread, thd_attr, func, obj, session->pool);
|
if (switch_thread_create(&thread, thd_attr, func, obj, session->pool) != SWITCH_STATUS_SUCCESS) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_CRIT, "Cannot create thread!\n");
|
||||||
|
thread_launch_failure();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user