Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
09a734bb
提交
09a734bb
authored
4月 26, 2010
作者:
Michael Jerris
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
factor out timecheck function from Moc
上级
d0a74dd5
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
104 行增加
和
88 行删除
+104
-88
switch_xml.h
src/include/switch_xml.h
+2
-0
mod_dialplan_xml.c
src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c
+1
-88
switch_xml.c
src/switch_xml.c
+101
-0
没有找到文件。
src/include/switch_xml.h
浏览文件 @
09a734bb
...
...
@@ -413,6 +413,8 @@ SWITCH_DECLARE(switch_status_t) switch_xml_unbind_search_function_ptr(_In_ switc
///\return the section mask
SWITCH_DECLARE
(
switch_xml_section_t
)
switch_xml_parse_section_string
(
_In_opt_z_
const
char
*
str
);
SWITCH_DECLARE
(
int
)
switch_xml_std_datetime_check
(
switch_xml_t
xcond
);
SWITCH_END_EXTERN_C
///\}
#endif // _SWITCH_XML_H
...
...
src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c
浏览文件 @
09a734bb
...
...
@@ -101,19 +101,7 @@ static int parse_exten(switch_core_session_t *session, switch_caller_profile_t *
switch_bool_t
anti_action
=
SWITCH_TRUE
;
break_t
do_break_i
=
BREAK_ON_FALSE
;
const
char
*
xyear
=
switch_xml_attr
(
xcond
,
"year"
);
const
char
*
xyday
=
switch_xml_attr
(
xcond
,
"yday"
);
const
char
*
xmon
=
switch_xml_attr
(
xcond
,
"mon"
);
const
char
*
xmday
=
switch_xml_attr
(
xcond
,
"mday"
);
const
char
*
xweek
=
switch_xml_attr
(
xcond
,
"week"
);
const
char
*
xmweek
=
switch_xml_attr
(
xcond
,
"mweek"
);
const
char
*
xwday
=
switch_xml_attr
(
xcond
,
"wday"
);
const
char
*
xhour
=
switch_xml_attr
(
xcond
,
"hour"
);
const
char
*
xminute
=
switch_xml_attr
(
xcond
,
"minute"
);
const
char
*
xminday
=
switch_xml_attr
(
xcond
,
"minute-of-day"
);
switch_time_t
ts
=
switch_micro_time_now
();
int
time_match
=
-
1
;
switch_time_exp_t
tm
;
int
time_match
=
switch_xml_std_datetime_check
(
xcond
);
switch_safe_free
(
field_expanded
);
switch_safe_free
(
expression_expanded
);
...
...
@@ -124,81 +112,6 @@ static int parse_exten(switch_core_session_t *session, switch_caller_profile_t *
goto
done
;
}
switch_time_exp_lt
(
&
tm
,
ts
);
if
(
time_match
&&
xyear
)
{
int
test
=
tm
.
tm_year
+
1900
;
time_match
=
switch_number_cmp
(
xyear
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG_CLEAN
(
session
),
SWITCH_LOG_DEBUG
,
"Dialplan: year[%d] =~ %s (%s)
\n
"
,
test
,
xyear
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xyday
)
{
int
test
=
tm
.
tm_yday
+
1
;
time_match
=
switch_number_cmp
(
xyday
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG_CLEAN
(
session
),
SWITCH_LOG_DEBUG
,
"Dialplan: day of year[%d] =~ %s (%s)
\n
"
,
test
,
xyday
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xmon
)
{
int
test
=
tm
.
tm_mon
+
1
;
time_match
=
switch_number_cmp
(
xmon
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG_CLEAN
(
session
),
SWITCH_LOG_DEBUG
,
"Dialplan: month[%d] =~ %s (%s)
\n
"
,
test
,
xmon
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xmday
)
{
int
test
=
tm
.
tm_mday
;
time_match
=
switch_number_cmp
(
xmday
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG_CLEAN
(
session
),
SWITCH_LOG_DEBUG
,
"Dialplan: day of month[%d] =~ %s (%s)
\n
"
,
test
,
xmday
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xweek
)
{
int
test
=
(
int
)
(
tm
.
tm_yday
/
7
+
1
);
time_match
=
switch_number_cmp
(
xweek
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG_CLEAN
(
session
),
SWITCH_LOG_DEBUG
,
"Dialplan: week of year[%d] =~ %s (%s)
\n
"
,
test
,
xweek
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xmweek
)
{
/* calculate the day of the week of the first of the month (0-6) */
int
firstdow
=
(
int
)
(
7
-
(
tm
.
tm_mday
-
(
tm
.
tm_wday
+
1
))
%
7
)
%
7
;
/* calculate the week of the month (1-6) */
int
test
=
(
int
)
ceil
((
tm
.
tm_mday
+
firstdow
)
/
7
.
0
);
time_match
=
switch_number_cmp
(
xmweek
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG_CLEAN
(
session
),
SWITCH_LOG_DEBUG
,
"Dialplan: week of month[%d] =~ %s (%s)
\n
"
,
test
,
xmweek
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xwday
)
{
int
test
=
tm
.
tm_wday
+
1
;
time_match
=
switch_number_cmp
(
xwday
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG_CLEAN
(
session
),
SWITCH_LOG_DEBUG
,
"Dialplan: day of week[%d] =~ %s (%s)
\n
"
,
test
,
xwday
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xhour
)
{
int
test
=
tm
.
tm_hour
;
time_match
=
switch_number_cmp
(
xhour
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG_CLEAN
(
session
),
SWITCH_LOG_DEBUG
,
"Dialplan: hour[%d] =~ %s (%s)
\n
"
,
test
,
xhour
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xminute
)
{
int
test
=
tm
.
tm_min
;
time_match
=
switch_number_cmp
(
xminute
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG_CLEAN
(
session
),
SWITCH_LOG_DEBUG
,
"Dialplan: minute[%d] =~ %s (%s)
\n
"
,
test
,
xminute
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xminday
)
{
int
test
=
(
tm
.
tm_hour
*
60
)
+
(
tm
.
tm_min
+
1
);
time_match
=
switch_number_cmp
(
xminday
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG_CLEAN
(
session
),
SWITCH_LOG_DEBUG
,
"Dialplan: minute of day[%d] =~ %s (%s)
\n
"
,
test
,
xminday
,
time_match
?
"PASS"
:
"FAIL"
);
}
field
=
(
char
*
)
switch_xml_attr
(
xcond
,
"field"
);
if
((
xexpression
=
switch_xml_child
(
xcond
,
"expression"
)))
{
...
...
src/switch_xml.c
浏览文件 @
09a734bb
...
...
@@ -2601,6 +2601,107 @@ SWITCH_DECLARE(switch_xml_t) switch_xml_cut(switch_xml_t xml)
return
xml
;
}
SWITCH_DECLARE
(
int
)
switch_xml_std_datetime_check
(
switch_xml_t
xcond
)
{
const
char
*
xyear
=
switch_xml_attr
(
xcond
,
"year"
);
const
char
*
xyday
=
switch_xml_attr
(
xcond
,
"yday"
);
const
char
*
xmon
=
switch_xml_attr
(
xcond
,
"mon"
);
const
char
*
xmday
=
switch_xml_attr
(
xcond
,
"mday"
);
const
char
*
xweek
=
switch_xml_attr
(
xcond
,
"week"
);
const
char
*
xmweek
=
switch_xml_attr
(
xcond
,
"mweek"
);
const
char
*
xwday
=
switch_xml_attr
(
xcond
,
"wday"
);
const
char
*
xhour
=
switch_xml_attr
(
xcond
,
"hour"
);
const
char
*
xminute
=
switch_xml_attr
(
xcond
,
"minute"
);
const
char
*
xminday
=
switch_xml_attr
(
xcond
,
"minute-of-day"
);
switch_time_t
ts
=
switch_micro_time_now
();
int
time_match
=
-
1
;
switch_time_exp_t
tm
;
switch_time_exp_lt
(
&
tm
,
ts
);
if
(
time_match
&&
xyear
)
{
int
test
=
tm
.
tm_year
+
1900
;
time_match
=
switch_number_cmp
(
xyear
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG9
,
"XML DateTime Check: year[%d] =~ %s (%s)
\n
"
,
test
,
xyear
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xyday
)
{
int
test
=
tm
.
tm_yday
+
1
;
time_match
=
switch_number_cmp
(
xyday
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG9
,
"XML DateTime Check: day of year[%d] =~ %s (%s)
\n
"
,
test
,
xyday
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xmon
)
{
int
test
=
tm
.
tm_mon
+
1
;
time_match
=
switch_number_cmp
(
xmon
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG9
,
"XML DateTime Check: month[%d] =~ %s (%s)
\n
"
,
test
,
xmon
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xmday
)
{
int
test
=
tm
.
tm_mday
;
time_match
=
switch_number_cmp
(
xmday
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG9
,
"XML DateTime Check: day of month[%d] =~ %s (%s)
\n
"
,
test
,
xmday
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xweek
)
{
int
test
=
(
int
)
(
tm
.
tm_yday
/
7
+
1
);
time_match
=
switch_number_cmp
(
xweek
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG9
,
"XML DateTime Check: week of year[%d] =~ %s (%s)
\n
"
,
test
,
xweek
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xweek
)
{
int
test
=
(
int
)
(
tm
.
tm_yday
/
7
+
1
);
time_match
=
switch_number_cmp
(
xweek
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG9
,
"XML DateTime Check: week of year[%d] =~ %s (%s)
\n
"
,
test
,
xweek
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xmweek
)
{
/* calculate the day of the week of the first of the month (0-6) */
int
firstdow
=
(
int
)
(
7
-
(
tm
.
tm_mday
-
(
tm
.
tm_wday
+
1
))
%
7
)
%
7
;
/* calculate the week of the month (1-6)*/
int
test
=
(
int
)
ceil
((
tm
.
tm_mday
+
firstdow
)
/
7
.
0
);
time_match
=
switch_number_cmp
(
xmweek
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG9
,
"XML DateTime: week of month[%d] =~ %s (%s)
\n
"
,
test
,
xmweek
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xwday
)
{
int
test
=
tm
.
tm_wday
+
1
;
time_match
=
switch_number_cmp
(
xwday
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG9
,
"XML DateTime Check: day of week[%d] =~ %s (%s)
\n
"
,
test
,
xwday
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xhour
)
{
int
test
=
tm
.
tm_hour
;
time_match
=
switch_number_cmp
(
xhour
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG9
,
"XML DateTime Check: hour[%d] =~ %s (%s)
\n
"
,
test
,
xhour
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xminute
)
{
int
test
=
tm
.
tm_min
;
time_match
=
switch_number_cmp
(
xminute
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG9
,
"XML DateTime Check: minute[%d] =~ %s (%s)
\n
"
,
test
,
xminute
,
time_match
?
"PASS"
:
"FAIL"
);
}
if
(
time_match
&&
xminday
)
{
int
test
=
(
tm
.
tm_hour
*
60
)
+
(
tm
.
tm_min
+
1
);
time_match
=
switch_number_cmp
(
xminday
,
test
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG9
,
"XML DateTime Check: minute of day[%d] =~ %s (%s)
\n
"
,
test
,
xminday
,
time_match
?
"PASS"
:
"FAIL"
);
}
return
time_match
;
}
#ifdef WIN32
/*
* globbing functions for windows, part of libc on unix, this code was cut and paste from
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论