Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
dcb416e4
提交
dcb416e4
authored
11月 02, 2010
作者:
Arnaldo Pereira
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
freetdm: ftmod_r2 non threaded working
上级
f825d1b0
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
5 行增加
和
92 行删除
+5
-92
mod_freetdm.c
libs/freetdm/mod_freetdm/mod_freetdm.c
+1
-0
ftmod_r2.c
libs/freetdm/src/ftmod/ftmod_r2/ftmod_r2.c
+4
-92
没有找到文件。
libs/freetdm/mod_freetdm/mod_freetdm.c
浏览文件 @
dcb416e4
...
@@ -2007,6 +2007,7 @@ static FIO_SIGNAL_CB_FUNCTION(on_r2_signal)
...
@@ -2007,6 +2007,7 @@ static FIO_SIGNAL_CB_FUNCTION(on_r2_signal)
break
;
break
;
case
FTDM_SIGEVENT_PROGRESS
:
case
FTDM_SIGEVENT_PROGRESS
:
case
FTDM_SIGEVENT_PROGRESS_MEDIA
:
{
{
if
((
session
=
ftdm_channel_get_session
(
sigmsg
->
channel
,
0
)))
{
if
((
session
=
ftdm_channel_get_session
(
sigmsg
->
channel
,
0
)))
{
channel
=
switch_core_session_get_channel
(
session
);
channel
=
switch_core_session_get_channel
(
session
);
...
...
libs/freetdm/src/ftmod/ftmod_r2/ftmod_r2.c
浏览文件 @
dcb416e4
...
@@ -255,7 +255,6 @@ static FIO_CHANNEL_OUTGOING_CALL_FUNCTION(r2_outgoing_call)
...
@@ -255,7 +255,6 @@ static FIO_CHANNEL_OUTGOING_CALL_FUNCTION(r2_outgoing_call)
{
{
openr2_call_status_t
callstatus
;
openr2_call_status_t
callstatus
;
ftdm_r2_data_t
*
r2data
;
ftdm_r2_data_t
*
r2data
;
int
safety
=
100
;
r2data
=
ftdmchan
->
span
->
signal_data
;
r2data
=
ftdmchan
->
span
->
signal_data
;
...
@@ -281,24 +280,6 @@ static FIO_CHANNEL_OUTGOING_CALL_FUNCTION(r2_outgoing_call)
...
@@ -281,24 +280,6 @@ static FIO_CHANNEL_OUTGOING_CALL_FUNCTION(r2_outgoing_call)
return
FTDM_FAIL
;
return
FTDM_FAIL
;
}
}
/* this waiting for flag cleared function releases the ftdmchan lock to give a chance to the monitor thread
* to process openr2 events and dial out, or see if an incoming call is arriving just now, then openr2 will
* call in the monitor thread the on_call_collision or on_call_acknowledged callbacks where this flag
* will be cleared, the lock will be re-acquired here and we continue within this function to inform the user
* whether the call is being placed or collision occurred and another channel must be hunted */
ftdm_set_flag
(
R2CALL
(
ftdmchan
),
FTDM_R2_WAITING_ACK
);
while
(
safety
--
&&
ftdm_test_flag
(
R2CALL
(
ftdmchan
),
FTDM_R2_WAITING_ACK
))
{
ftdm_mutex_unlock
(
ftdmchan
->
mutex
);
ftdm_sleep
(
10
);
ftdm_mutex_lock
(
ftdmchan
->
mutex
);
}
if
(
ftdm_test_flag
(
R2CALL
(
ftdmchan
),
FTDM_R2_WAITING_ACK
))
{
ftdm_log_chan_msg
(
ftdmchan
,
FTDM_LOG_CRIT
,
"Waiting ack flag was never cleared!
\n
"
);
ftdm_clear_flag
(
R2CALL
(
ftdmchan
),
FTDM_R2_WAITING_ACK
);
return
FTDM_FAIL
;
}
if
(
ftdmchan
->
state
!=
FTDM_CHANNEL_STATE_DIALING
)
{
if
(
ftdmchan
->
state
!=
FTDM_CHANNEL_STATE_DIALING
)
{
ftdm_log_chan
(
ftdmchan
,
FTDM_LOG_WARNING
,
"Collision after call attempt, try another channel, new state = %s
\n
"
,
ftdm_log_chan
(
ftdmchan
,
FTDM_LOG_WARNING
,
"Collision after call attempt, try another channel, new state = %s
\n
"
,
ftdm_channel_state2str
(
ftdmchan
->
state
));
ftdm_channel_state2str
(
ftdmchan
->
state
));
...
@@ -306,7 +287,6 @@ static FIO_CHANNEL_OUTGOING_CALL_FUNCTION(r2_outgoing_call)
...
@@ -306,7 +287,6 @@ static FIO_CHANNEL_OUTGOING_CALL_FUNCTION(r2_outgoing_call)
return
FTDM_BREAK
;
return
FTDM_BREAK
;
}
}
/* non-threaded implementation, we're done here */
/* non-threaded implementation, we're done here */
ftdm_log_chan_msg
(
ftdmchan
,
FTDM_LOG_DEBUG
,
"R2 call placed in non-threaded mode
\n
"
);
ftdm_log_chan_msg
(
ftdmchan
,
FTDM_LOG_DEBUG
,
"R2 call placed in non-threaded mode
\n
"
);
return
FTDM_SUCCESS
;
return
FTDM_SUCCESS
;
...
@@ -329,29 +309,6 @@ static ftdm_status_t ftdm_r2_stop(ftdm_span_t *span)
...
@@ -329,29 +309,6 @@ static ftdm_status_t ftdm_r2_stop(ftdm_span_t *span)
return
FTDM_SUCCESS
;
return
FTDM_SUCCESS
;
}
}
#if 0
static ftdm_status_t ftdm_r2_sig_write(ftdm_channel_t *ftdmchan, void *data, ftdm_size_t size)
{
ftdm_r2_call_t *r2call = R2CALL(ftdmchan);
openr2_chan_t *r2chan = r2call->r2chan;
if (openr2_chan_get_read_enabled(r2chan) && !ftdm_test_flag(r2call, FTDM_R2_PROCESSING)) {
if (r2call->txdrops < 10) {
ftdm_log_chan_msg(ftdmchan, FTDM_LOG_WARNING, "dropping user write because there is R2 processing\n");
} else if (r2call->txdrops == 10) {
ftdm_log_chan_msg(ftdmchan, FTDM_LOG_WARNING, "too may drops, not logging any more\n");
}
r2call->txdrops++;
return FTDM_BREAK;
}
if (!openr2_chan_get_read_enabled(r2chan)) {
ftdm_mutex_lock(ftdmchan->mutex);
//openr2_chan_process_output(r2chan, data, size);
ftdm_mutex_unlock(ftdmchan->mutex);
}
return FTDM_SUCCESS;
}
#endif
static
ftdm_status_t
ftdm_r2_sig_read
(
ftdm_channel_t
*
ftdmchan
,
void
*
data
,
ftdm_size_t
size
)
static
ftdm_status_t
ftdm_r2_sig_read
(
ftdm_channel_t
*
ftdmchan
,
void
*
data
,
ftdm_size_t
size
)
{
{
openr2_chan_t
*
r2chan
=
R2CALL
(
ftdmchan
)
->
r2chan
;
openr2_chan_t
*
r2chan
=
R2CALL
(
ftdmchan
)
->
r2chan
;
...
@@ -688,24 +645,6 @@ static void ftdm_r2_on_ani_digit_received(openr2_chan_t *r2chan, char digit)
...
@@ -688,24 +645,6 @@ static void ftdm_r2_on_ani_digit_received(openr2_chan_t *r2chan, char digit)
R2CALL
(
ftdmchan
)
->
ani_index
=
collected_len
;
R2CALL
(
ftdmchan
)
->
ani_index
=
collected_len
;
}
}
/* XXX missing on openr2 XXX */
#if 0
static void ftdm_r2_on_call_collision(openr2_chan_t *r2chan)
{
ftdm_channel_t *ftdmchan = openr2_chan_get_client_data(r2chan);
ftdm_log_chan(ftdmchan, FTDM_LOG_WARNING, "Call collision detected, outgoing call attempt failed, state = %s\n", ftdm_channel_state2str(ftdmchan->state));
ftdm_clear_flag(R2CALL(ftdmchan), FTDM_R2_WAITING_ACK);
ftdm_channel_close(&ftdmchan);
}
static void ftdm_r2_on_call_acknowledged(openr2_chan_t *r2chan)
{
ftdm_channel_t *ftdmchan = openr2_chan_get_client_data(r2chan);
ftdm_log_chan_msg(ftdmchan, FTDM_LOG_DEBUG, "Outgoing call proceeding\n");
ftdm_clear_flag(R2CALL(ftdmchan), FTDM_R2_WAITING_ACK);
}
#endif
static
openr2_event_interface_t
ftdm_r2_event_iface
=
{
static
openr2_event_interface_t
ftdm_r2_event_iface
=
{
.
on_call_init
=
ftdm_r2_on_call_init
,
.
on_call_init
=
ftdm_r2_on_call_init
,
.
on_call_offered
=
ftdm_r2_on_call_offered
,
.
on_call_offered
=
ftdm_r2_on_call_offered
,
...
@@ -725,12 +664,6 @@ static openr2_event_interface_t ftdm_r2_event_iface = {
...
@@ -725,12 +664,6 @@ static openr2_event_interface_t ftdm_r2_event_iface = {
.
on_ani_digit_received
=
ftdm_r2_on_ani_digit_received
,
.
on_ani_digit_received
=
ftdm_r2_on_ani_digit_received
,
/* so far we do nothing with billing pulses */
/* so far we do nothing with billing pulses */
.
on_billing_pulse_received
=
NULL
,
.
on_billing_pulse_received
=
NULL
,
/* XXX these two events are missing on openr2 XXX */
#if 0
.on_call_collision = ftdm_r2_on_call_collision,
.on_call_acknowledged = ftdm_r2_on_call_acknowledged,
#endif
};
};
static
int
ftdm_r2_io_set_cas
(
openr2_chan_t
*
r2chan
,
int
cas
)
static
int
ftdm_r2_io_set_cas
(
openr2_chan_t
*
r2chan
,
int
cas
)
...
@@ -853,22 +786,6 @@ static int ftdm_r2_io_get_oob_event(openr2_chan_t *r2chan, openr2_oob_event_t *e
...
@@ -853,22 +786,6 @@ static int ftdm_r2_io_get_oob_event(openr2_chan_t *r2chan, openr2_oob_event_t *e
*
event
=
0
;
*
event
=
0
;
ftdm_log
(
FTDM_LOG_ERROR
,
"I should not be called (I/O get oob event)!!
\n
"
);
ftdm_log
(
FTDM_LOG_ERROR
,
"I should not be called (I/O get oob event)!!
\n
"
);
return
0
;
return
0
;
#if 0
ftdm_status_t status;
ftdm_event_t *fevent = NULL;
ftdm_channel_t *ftdmchan = openr2_chan_get_fd(r2chan);
*event = OR2_OOB_EVENT_NONE;
status = ftdm_channel_read_event(ftdmchan, &fevent);
if (status != FTDM_SUCCESS) {
ftdm_log_chan_msg(ftdmchan, FTDM_LOG_ERROR, "failed to retrieve freetdm event!\n");
return -1;
}
if (fevent->e_type == FTDM_EVENT_OOB && fevent->enum_id == FTDM_OOB_CAS_BITS_CHANGE) {
*event = OR2_OOB_EVENT_CAS_CHANGE;
}
return 0;
#endif
}
}
static
openr2_io_interface_t
ftdm_r2_io_iface
=
{
static
openr2_io_interface_t
ftdm_r2_io_iface
=
{
...
@@ -1411,8 +1328,10 @@ static void *ftdm_r2_run(ftdm_thread_t *me, void *obj)
...
@@ -1411,8 +1328,10 @@ static void *ftdm_r2_run(ftdm_thread_t *me, void *obj)
}
}
}
}
/* XXX when ftdm_span_poll_event() returns FTDM_SUCCESS, means there are events pending on the span,
/* XXX
* is it possible to know on what channel there were events, without traversing the span? XXX
* when ftdm_span_poll_event() returns FTDM_SUCCESS, means there are events pending on the span.
* is it possible to know on which channels those events are pending, without trasvering the span?
* XXX
*/
*/
for
(
i
=
1
;
i
<=
span
->
chan_count
;
i
++
)
{
for
(
i
=
1
;
i
<=
span
->
chan_count
;
i
++
)
{
r2chan
=
R2CALL
(
span
->
channels
[
i
])
->
r2chan
;
r2chan
=
R2CALL
(
span
->
channels
[
i
])
->
r2chan
;
...
@@ -1627,13 +1546,6 @@ static FIO_API_FUNCTION(ftdm_r2_api)
...
@@ -1627,13 +1546,6 @@ static FIO_API_FUNCTION(ftdm_r2_api)
char
rxavg_str
[
25
];
char
rxavg_str
[
25
];
char
txavg_str
[
25
];
char
txavg_str
[
25
];
r2chan
=
R2CALL
(
span
->
channels
[
i
])
->
r2chan
;
r2chan
=
R2CALL
(
span
->
channels
[
i
])
->
r2chan
;
#if 0
openr2_chan_get_stats(r2chan, &stats);
snprintf(rx_str, sizeof(rx_str), "%lu", stats.rxcount);
snprintf(tx_str, sizeof(tx_str), "%lu", stats.txcount);
snprintf(rxavg_str, sizeof(rxavg_str), "%u", stats.rxavg);
snprintf(txavg_str, sizeof(txavg_str), "%u", stats.txavg);
#endif
stream
->
write_function
(
stream
,
"%4d %-12.12s %-12.12s %6s %6s %6s %6s
\n
"
,
stream
->
write_function
(
stream
,
"%4d %-12.12s %-12.12s %6s %6s %6s %6s
\n
"
,
span
->
channels
[
i
]
->
chan_id
,
span
->
channels
[
i
]
->
chan_id
,
openr2_chan_get_tx_cas_string
(
r2chan
),
openr2_chan_get_tx_cas_string
(
r2chan
),
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论