mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-05-28 09:38:30 +00:00
lang fixes
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8449 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
6ccacdff83
commit
c4657914eb
@ -191,6 +191,13 @@ $(libfreeswitch_la_SOURCES): $(CORE_LIBS) $(switch_builddir)/quiet_libtool modul
|
|||||||
$(switch_builddir)/quiet_libtool: $(switch_builddir)/libtool
|
$(switch_builddir)/quiet_libtool: $(switch_builddir)/libtool
|
||||||
@cat libtool | sed -e 's|$$show "$$command"|if test -z "$$suppress_output" ; then $$show "Compiling $$srcfile ..." ; fi|' > quiet_libtool
|
@cat libtool | sed -e 's|$$show "$$command"|if test -z "$$suppress_output" ; then $$show "Compiling $$srcfile ..." ; fi|' > quiet_libtool
|
||||||
|
|
||||||
|
vm-sync:
|
||||||
|
test -d $(DESTDIR)$(prefix)/conf || $(mkinstalldirs) $(DESTDIR)$(prefix)/conf
|
||||||
|
test -d $(DESTDIR)$(prefix)/conf/lang || $(mkinstalldirs) $(DESTDIR)$(prefix)/conf/lang
|
||||||
|
test -d $(DESTDIR)$(prefix)/conf/lang/en || $(mkinstalldirs) $(DESTDIR)$(prefix)/conf/lang/en
|
||||||
|
test -d $(DESTDIR)$(prefix)/conf/lang/en/vm || $(mkinstalldirs) $(DESTDIR)$(prefix)/conf/lang/en/vm
|
||||||
|
$(INSTALL) -m 644 conf/lang/en/vm/* $(DESTDIR)$(prefix)/conf/lang/en/vm
|
||||||
|
|
||||||
samples-conf:
|
samples-conf:
|
||||||
test -d $(DESTDIR)$(prefix)/conf || $(mkinstalldirs) $(DESTDIR)$(prefix)/conf
|
test -d $(DESTDIR)$(prefix)/conf || $(mkinstalldirs) $(DESTDIR)$(prefix)/conf
|
||||||
test -d $(DESTDIR)$(prefix)/conf/dialplan/extensions || $(mkinstalldirs) $(DESTDIR)$(prefix)/conf/dialplan/extensions
|
test -d $(DESTDIR)$(prefix)/conf/dialplan/extensions || $(mkinstalldirs) $(DESTDIR)$(prefix)/conf/dialplan/extensions
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
</macro>
|
</macro>
|
||||||
|
|
||||||
<macro name="voicemail_message_count">
|
<macro name="voicemail_message_count">
|
||||||
<input pattern="^(1):(.*)$">
|
<input pattern="^(1):(.*)$" break_on_match="true">
|
||||||
<match>
|
<match>
|
||||||
<action function="play-file" data="voicemail/vm-you_have.wav"/>
|
<action function="play-file" data="voicemail/vm-you_have.wav"/>
|
||||||
<action function="say" data="$1" method="pronounced" type="items"/>
|
<action function="say" data="$1" method="pronounced" type="items"/>
|
||||||
@ -59,7 +59,7 @@
|
|||||||
<action function="play-file" data="voicemail/vm-in_folder.wav"/>
|
<action function="play-file" data="voicemail/vm-in_folder.wav"/>
|
||||||
</match>
|
</match>
|
||||||
</input>
|
</input>
|
||||||
<input pattern="^([0,2-9]+):(.*)$">
|
<input pattern="^(\d+):(.*)$">
|
||||||
<match>
|
<match>
|
||||||
<action function="play-file" data="voicemail/vm-you_have.wav"/>
|
<action function="play-file" data="voicemail/vm-you_have.wav"/>
|
||||||
<action function="say" data="$1" method="pronounced" type="items"/>
|
<action function="say" data="$1" method="pronounced" type="items"/>
|
||||||
|
@ -48,12 +48,12 @@
|
|||||||
</macro>
|
</macro>
|
||||||
|
|
||||||
<macro name="voicemail_message_count">
|
<macro name="voicemail_message_count">
|
||||||
<input pattern="^1:(.*)$">
|
<input pattern="^1:(.*)$" break_on_match="true">
|
||||||
<match>
|
<match>
|
||||||
<action function="speak-text" data="you have 1 $1 message in folder ${voicemail_current_folder}."/>
|
<action function="speak-text" data="you have 1 $1 message in folder ${voicemail_current_folder}."/>
|
||||||
</match>
|
</match>
|
||||||
</input>
|
</input>
|
||||||
<input pattern="^([0,2-9]+):(.*)$">
|
<input pattern="^(\d+):(.*)$">
|
||||||
<match>
|
<match>
|
||||||
<action function="speak-text" data="you have $1 $2 messages in folder ${voicemail_current_folder}."/>
|
<action function="speak-text" data="you have $1 $2 messages in folder ${voicemail_current_folder}."/>
|
||||||
</match>
|
</match>
|
||||||
|
@ -310,7 +310,7 @@ class CoreSession {
|
|||||||
|
|
||||||
SWITCH_DECLARE(bool) ready();
|
SWITCH_DECLARE(bool) ready();
|
||||||
|
|
||||||
SWITCH_DECLARE(void) execute(char *app, char *data);
|
SWITCH_DECLARE(void) execute(char *app, char *data=NULL);
|
||||||
|
|
||||||
SWITCH_DECLARE(void) sendEvent(Event *sendME);
|
SWITCH_DECLARE(void) sendEvent(Event *sendME);
|
||||||
|
|
||||||
|
@ -226,7 +226,11 @@ public class CoreSession {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void execute(String app, String data) {
|
public void execute(String app, String data) {
|
||||||
freeswitchJNI.CoreSession_execute(swigCPtr, this, app, data);
|
freeswitchJNI.CoreSession_execute__SWIG_0(swigCPtr, this, app, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void execute(String app) {
|
||||||
|
freeswitchJNI.CoreSession_execute__SWIG_1(swigCPtr, this, app);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void sendEvent(Event sendME) {
|
public void sendEvent(Event sendME) {
|
||||||
|
@ -107,7 +107,8 @@ class freeswitchJNI {
|
|||||||
public final static native int CoreSession_setAutoHangup(long jarg1, CoreSession jarg1_, boolean jarg2);
|
public final static native int CoreSession_setAutoHangup(long jarg1, CoreSession jarg1_, boolean jarg2);
|
||||||
public final static native void CoreSession_setHangupHook(long jarg1, CoreSession jarg1_, long jarg2);
|
public final static native void CoreSession_setHangupHook(long jarg1, CoreSession jarg1_, long jarg2);
|
||||||
public final static native boolean CoreSession_ready(long jarg1, CoreSession jarg1_);
|
public final static native boolean CoreSession_ready(long jarg1, CoreSession jarg1_);
|
||||||
public final static native void CoreSession_execute(long jarg1, CoreSession jarg1_, String jarg2, String jarg3);
|
public final static native void CoreSession_execute__SWIG_0(long jarg1, CoreSession jarg1_, String jarg2, String jarg3);
|
||||||
|
public final static native void CoreSession_execute__SWIG_1(long jarg1, CoreSession jarg1_, String jarg2);
|
||||||
public final static native void CoreSession_sendEvent(long jarg1, CoreSession jarg1_, long jarg2, Event jarg2_);
|
public final static native void CoreSession_sendEvent(long jarg1, CoreSession jarg1_, long jarg2, Event jarg2_);
|
||||||
public final static native void CoreSession_setEventData(long jarg1, CoreSession jarg1_, long jarg2, Event jarg2_);
|
public final static native void CoreSession_setEventData(long jarg1, CoreSession jarg1_, long jarg2, Event jarg2_);
|
||||||
public final static native String CoreSession_getXMLCDR(long jarg1, CoreSession jarg1_);
|
public final static native String CoreSession_getXMLCDR(long jarg1, CoreSession jarg1_);
|
||||||
|
@ -2119,7 +2119,7 @@ SWIGEXPORT jboolean JNICALL Java_org_freeswitch_swig_freeswitchJNI_CoreSession_1
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
SWIGEXPORT void JNICALL Java_org_freeswitch_swig_freeswitchJNI_CoreSession_1execute(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jstring jarg2, jstring jarg3) {
|
SWIGEXPORT void JNICALL Java_org_freeswitch_swig_freeswitchJNI_CoreSession_1execute_1_1SWIG_10(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jstring jarg2, jstring jarg3) {
|
||||||
CoreSession *arg1 = (CoreSession *) 0 ;
|
CoreSession *arg1 = (CoreSession *) 0 ;
|
||||||
char *arg2 = (char *) 0 ;
|
char *arg2 = (char *) 0 ;
|
||||||
char *arg3 = (char *) 0 ;
|
char *arg3 = (char *) 0 ;
|
||||||
@ -2144,6 +2144,24 @@ SWIGEXPORT void JNICALL Java_org_freeswitch_swig_freeswitchJNI_CoreSession_1exec
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
SWIGEXPORT void JNICALL Java_org_freeswitch_swig_freeswitchJNI_CoreSession_1execute_1_1SWIG_11(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jstring jarg2) {
|
||||||
|
CoreSession *arg1 = (CoreSession *) 0 ;
|
||||||
|
char *arg2 = (char *) 0 ;
|
||||||
|
|
||||||
|
(void)jenv;
|
||||||
|
(void)jcls;
|
||||||
|
(void)jarg1_;
|
||||||
|
arg1 = *(CoreSession **)&jarg1;
|
||||||
|
arg2 = 0;
|
||||||
|
if (jarg2) {
|
||||||
|
arg2 = (char *)jenv->GetStringUTFChars(jarg2, 0);
|
||||||
|
if (!arg2) return ;
|
||||||
|
}
|
||||||
|
(arg1)->execute(arg2);
|
||||||
|
if (arg2) jenv->ReleaseStringUTFChars(jarg2, (const char *)arg2);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
SWIGEXPORT void JNICALL Java_org_freeswitch_swig_freeswitchJNI_CoreSession_1sendEvent(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jlong jarg2, jobject jarg2_) {
|
SWIGEXPORT void JNICALL Java_org_freeswitch_swig_freeswitchJNI_CoreSession_1sendEvent(JNIEnv *jenv, jclass jcls, jlong jarg1, jobject jarg1_, jlong jarg2, jobject jarg2_) {
|
||||||
CoreSession *arg1 = (CoreSession *) 0 ;
|
CoreSession *arg1 = (CoreSession *) 0 ;
|
||||||
Event *arg2 = (Event *) 0 ;
|
Event *arg2 = (Event *) 0 ;
|
||||||
|
@ -4907,7 +4907,7 @@ fail:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int _wrap_CoreSession_execute(lua_State* L) {
|
static int _wrap_CoreSession_execute__SWIG_0(lua_State* L) {
|
||||||
int SWIG_arg = -1;
|
int SWIG_arg = -1;
|
||||||
CoreSession *arg1 = (CoreSession *) 0 ;
|
CoreSession *arg1 = (CoreSession *) 0 ;
|
||||||
char *arg2 = (char *) 0 ;
|
char *arg2 = (char *) 0 ;
|
||||||
@ -4937,6 +4937,89 @@ fail:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int _wrap_CoreSession_execute__SWIG_1(lua_State* L) {
|
||||||
|
int SWIG_arg = -1;
|
||||||
|
CoreSession *arg1 = (CoreSession *) 0 ;
|
||||||
|
char *arg2 = (char *) 0 ;
|
||||||
|
|
||||||
|
SWIG_check_num_args("execute",2,2)
|
||||||
|
if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("execute",1,"CoreSession *");
|
||||||
|
if(!lua_isstring(L,2)) SWIG_fail_arg("execute",2,"char *");
|
||||||
|
|
||||||
|
if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_CoreSession,0))){
|
||||||
|
SWIG_fail_ptr("CoreSession_execute",1,SWIGTYPE_p_CoreSession);
|
||||||
|
}
|
||||||
|
|
||||||
|
arg2 = (char *)lua_tostring(L, 2);
|
||||||
|
(arg1)->execute(arg2);
|
||||||
|
SWIG_arg=0;
|
||||||
|
|
||||||
|
return SWIG_arg;
|
||||||
|
|
||||||
|
if(0) SWIG_fail;
|
||||||
|
|
||||||
|
fail:
|
||||||
|
lua_error(L);
|
||||||
|
return SWIG_arg;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int _wrap_CoreSession_execute(lua_State* L) {
|
||||||
|
int argc;
|
||||||
|
int argv[4]={
|
||||||
|
1,2,3,4
|
||||||
|
};
|
||||||
|
|
||||||
|
argc = lua_gettop(L);
|
||||||
|
if (argc == 2) {
|
||||||
|
int _v;
|
||||||
|
{
|
||||||
|
void *ptr;
|
||||||
|
if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_CoreSession, 0)) {
|
||||||
|
_v = 0;
|
||||||
|
} else {
|
||||||
|
_v = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (_v) {
|
||||||
|
{
|
||||||
|
_v = lua_isstring(L,argv[1]);
|
||||||
|
}
|
||||||
|
if (_v) {
|
||||||
|
return _wrap_CoreSession_execute__SWIG_1(L);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (argc == 3) {
|
||||||
|
int _v;
|
||||||
|
{
|
||||||
|
void *ptr;
|
||||||
|
if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_CoreSession, 0)) {
|
||||||
|
_v = 0;
|
||||||
|
} else {
|
||||||
|
_v = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (_v) {
|
||||||
|
{
|
||||||
|
_v = lua_isstring(L,argv[1]);
|
||||||
|
}
|
||||||
|
if (_v) {
|
||||||
|
{
|
||||||
|
_v = lua_isstring(L,argv[2]);
|
||||||
|
}
|
||||||
|
if (_v) {
|
||||||
|
return _wrap_CoreSession_execute__SWIG_0(L);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
lua_pushstring(L,"No matching function for overloaded 'CoreSession_execute'");
|
||||||
|
lua_error(L);return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static int _wrap_CoreSession_sendEvent(lua_State* L) {
|
static int _wrap_CoreSession_sendEvent(lua_State* L) {
|
||||||
int SWIG_arg = -1;
|
int SWIG_arg = -1;
|
||||||
CoreSession *arg1 = (CoreSession *) 0 ;
|
CoreSession *arg1 = (CoreSession *) 0 ;
|
||||||
|
@ -6547,7 +6547,7 @@ XS(_wrap_CoreSession_ready) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
XS(_wrap_CoreSession_execute) {
|
XS(_wrap_CoreSession_execute__SWIG_0) {
|
||||||
{
|
{
|
||||||
CoreSession *arg1 = (CoreSession *) 0 ;
|
CoreSession *arg1 = (CoreSession *) 0 ;
|
||||||
char *arg2 = (char *) 0 ;
|
char *arg2 = (char *) 0 ;
|
||||||
@ -6596,6 +6596,130 @@ XS(_wrap_CoreSession_execute) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
XS(_wrap_CoreSession_execute__SWIG_1) {
|
||||||
|
{
|
||||||
|
CoreSession *arg1 = (CoreSession *) 0 ;
|
||||||
|
char *arg2 = (char *) 0 ;
|
||||||
|
void *argp1 = 0 ;
|
||||||
|
int res1 = 0 ;
|
||||||
|
int res2 ;
|
||||||
|
char *buf2 = 0 ;
|
||||||
|
int alloc2 = 0 ;
|
||||||
|
int argvi = 0;
|
||||||
|
dXSARGS;
|
||||||
|
|
||||||
|
if ((items < 2) || (items > 2)) {
|
||||||
|
SWIG_croak("Usage: CoreSession_execute(self,app);");
|
||||||
|
}
|
||||||
|
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_CoreSession, 0 | 0 );
|
||||||
|
if (!SWIG_IsOK(res1)) {
|
||||||
|
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CoreSession_execute" "', argument " "1"" of type '" "CoreSession *""'");
|
||||||
|
}
|
||||||
|
arg1 = reinterpret_cast< CoreSession * >(argp1);
|
||||||
|
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
|
||||||
|
if (!SWIG_IsOK(res2)) {
|
||||||
|
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CoreSession_execute" "', argument " "2"" of type '" "char *""'");
|
||||||
|
}
|
||||||
|
arg2 = reinterpret_cast< char * >(buf2);
|
||||||
|
(arg1)->execute(arg2);
|
||||||
|
|
||||||
|
|
||||||
|
if (alloc2 == SWIG_NEWOBJ) delete[] buf2;
|
||||||
|
XSRETURN(argvi);
|
||||||
|
fail:
|
||||||
|
|
||||||
|
if (alloc2 == SWIG_NEWOBJ) delete[] buf2;
|
||||||
|
SWIG_croak_null();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
XS(_wrap_CoreSession_execute) {
|
||||||
|
dXSARGS;
|
||||||
|
|
||||||
|
{
|
||||||
|
unsigned long _index = 0;
|
||||||
|
SWIG_TypeRank _rank = 0;
|
||||||
|
if (items == 2) {
|
||||||
|
SWIG_TypeRank _ranki = 0;
|
||||||
|
SWIG_TypeRank _rankm = 0;
|
||||||
|
SWIG_TypeRank _pi = 1;
|
||||||
|
int _v = 0;
|
||||||
|
{
|
||||||
|
void *vptr = 0;
|
||||||
|
int res = SWIG_ConvertPtr(ST(0), &vptr, SWIGTYPE_p_CoreSession, 0);
|
||||||
|
_v = SWIG_CheckState(res);
|
||||||
|
}
|
||||||
|
if (!_v) goto check_1;
|
||||||
|
_ranki += _v*_pi;
|
||||||
|
_rankm += _pi;
|
||||||
|
_pi *= SWIG_MAXCASTRANK;
|
||||||
|
{
|
||||||
|
int res = SWIG_AsCharPtrAndSize(ST(1), 0, NULL, 0);
|
||||||
|
_v = SWIG_CheckState(res);
|
||||||
|
}
|
||||||
|
if (!_v) goto check_1;
|
||||||
|
_ranki += _v*_pi;
|
||||||
|
_rankm += _pi;
|
||||||
|
_pi *= SWIG_MAXCASTRANK;
|
||||||
|
if (!_index || (_ranki < _rank)) {
|
||||||
|
_rank = _ranki; _index = 1;
|
||||||
|
if (_rank == _rankm) goto dispatch;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
check_1:
|
||||||
|
|
||||||
|
if (items == 3) {
|
||||||
|
SWIG_TypeRank _ranki = 0;
|
||||||
|
SWIG_TypeRank _rankm = 0;
|
||||||
|
SWIG_TypeRank _pi = 1;
|
||||||
|
int _v = 0;
|
||||||
|
{
|
||||||
|
void *vptr = 0;
|
||||||
|
int res = SWIG_ConvertPtr(ST(0), &vptr, SWIGTYPE_p_CoreSession, 0);
|
||||||
|
_v = SWIG_CheckState(res);
|
||||||
|
}
|
||||||
|
if (!_v) goto check_2;
|
||||||
|
_ranki += _v*_pi;
|
||||||
|
_rankm += _pi;
|
||||||
|
_pi *= SWIG_MAXCASTRANK;
|
||||||
|
{
|
||||||
|
int res = SWIG_AsCharPtrAndSize(ST(1), 0, NULL, 0);
|
||||||
|
_v = SWIG_CheckState(res);
|
||||||
|
}
|
||||||
|
if (!_v) goto check_2;
|
||||||
|
_ranki += _v*_pi;
|
||||||
|
_rankm += _pi;
|
||||||
|
_pi *= SWIG_MAXCASTRANK;
|
||||||
|
{
|
||||||
|
int res = SWIG_AsCharPtrAndSize(ST(2), 0, NULL, 0);
|
||||||
|
_v = SWIG_CheckState(res);
|
||||||
|
}
|
||||||
|
if (!_v) goto check_2;
|
||||||
|
_ranki += _v*_pi;
|
||||||
|
_rankm += _pi;
|
||||||
|
_pi *= SWIG_MAXCASTRANK;
|
||||||
|
if (!_index || (_ranki < _rank)) {
|
||||||
|
_rank = _ranki; _index = 2;
|
||||||
|
if (_rank == _rankm) goto dispatch;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
check_2:
|
||||||
|
|
||||||
|
dispatch:
|
||||||
|
switch(_index) {
|
||||||
|
case 1:
|
||||||
|
++PL_markstack_ptr; SWIG_CALLXS(_wrap_CoreSession_execute__SWIG_1); return;
|
||||||
|
case 2:
|
||||||
|
++PL_markstack_ptr; SWIG_CALLXS(_wrap_CoreSession_execute__SWIG_0); return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
croak("No matching function for overloaded 'CoreSession_execute'");
|
||||||
|
XSRETURN(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
XS(_wrap_CoreSession_sendEvent) {
|
XS(_wrap_CoreSession_sendEvent) {
|
||||||
{
|
{
|
||||||
CoreSession *arg1 = (CoreSession *) 0 ;
|
CoreSession *arg1 = (CoreSession *) 0 ;
|
||||||
|
@ -6760,7 +6760,7 @@ fail:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
SWIGINTERN PyObject *_wrap_CoreSession_execute(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
SWIGINTERN PyObject *_wrap_CoreSession_execute__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||||
PyObject *resultobj = 0;
|
PyObject *resultobj = 0;
|
||||||
CoreSession *arg1 = (CoreSession *) 0 ;
|
CoreSession *arg1 = (CoreSession *) 0 ;
|
||||||
char *arg2 = (char *) 0 ;
|
char *arg2 = (char *) 0 ;
|
||||||
@ -6805,6 +6805,89 @@ fail:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
SWIGINTERN PyObject *_wrap_CoreSession_execute__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||||
|
PyObject *resultobj = 0;
|
||||||
|
CoreSession *arg1 = (CoreSession *) 0 ;
|
||||||
|
char *arg2 = (char *) 0 ;
|
||||||
|
void *argp1 = 0 ;
|
||||||
|
int res1 = 0 ;
|
||||||
|
int res2 ;
|
||||||
|
char *buf2 = 0 ;
|
||||||
|
int alloc2 = 0 ;
|
||||||
|
PyObject * obj0 = 0 ;
|
||||||
|
PyObject * obj1 = 0 ;
|
||||||
|
|
||||||
|
if (!PyArg_ParseTuple(args,(char *)"OO:CoreSession_execute",&obj0,&obj1)) SWIG_fail;
|
||||||
|
res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CoreSession, 0 | 0 );
|
||||||
|
if (!SWIG_IsOK(res1)) {
|
||||||
|
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CoreSession_execute" "', argument " "1"" of type '" "CoreSession *""'");
|
||||||
|
}
|
||||||
|
arg1 = reinterpret_cast< CoreSession * >(argp1);
|
||||||
|
res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
|
||||||
|
if (!SWIG_IsOK(res2)) {
|
||||||
|
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CoreSession_execute" "', argument " "2"" of type '" "char *""'");
|
||||||
|
}
|
||||||
|
arg2 = reinterpret_cast< char * >(buf2);
|
||||||
|
(arg1)->execute(arg2);
|
||||||
|
resultobj = SWIG_Py_Void();
|
||||||
|
if (alloc2 == SWIG_NEWOBJ) delete[] buf2;
|
||||||
|
return resultobj;
|
||||||
|
fail:
|
||||||
|
if (alloc2 == SWIG_NEWOBJ) delete[] buf2;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
SWIGINTERN PyObject *_wrap_CoreSession_execute(PyObject *self, PyObject *args) {
|
||||||
|
int argc;
|
||||||
|
PyObject *argv[4];
|
||||||
|
int ii;
|
||||||
|
|
||||||
|
if (!PyTuple_Check(args)) SWIG_fail;
|
||||||
|
argc = (int)PyObject_Length(args);
|
||||||
|
for (ii = 0; (ii < argc) && (ii < 3); ii++) {
|
||||||
|
argv[ii] = PyTuple_GET_ITEM(args,ii);
|
||||||
|
}
|
||||||
|
if (argc == 2) {
|
||||||
|
int _v;
|
||||||
|
void *vptr = 0;
|
||||||
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CoreSession, 0);
|
||||||
|
_v = SWIG_CheckState(res);
|
||||||
|
if (_v) {
|
||||||
|
int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0);
|
||||||
|
_v = SWIG_CheckState(res);
|
||||||
|
if (_v) {
|
||||||
|
return _wrap_CoreSession_execute__SWIG_1(self, args);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (argc == 3) {
|
||||||
|
int _v;
|
||||||
|
void *vptr = 0;
|
||||||
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CoreSession, 0);
|
||||||
|
_v = SWIG_CheckState(res);
|
||||||
|
if (_v) {
|
||||||
|
int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0);
|
||||||
|
_v = SWIG_CheckState(res);
|
||||||
|
if (_v) {
|
||||||
|
int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0);
|
||||||
|
_v = SWIG_CheckState(res);
|
||||||
|
if (_v) {
|
||||||
|
return _wrap_CoreSession_execute__SWIG_0(self, args);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fail:
|
||||||
|
SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CoreSession_execute'.\n"
|
||||||
|
" Possible C/C++ prototypes are:\n"
|
||||||
|
" execute(CoreSession *,char *,char *)\n"
|
||||||
|
" execute(CoreSession *,char *)\n");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
SWIGINTERN PyObject *_wrap_CoreSession_sendEvent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
SWIGINTERN PyObject *_wrap_CoreSession_sendEvent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||||
PyObject *resultobj = 0;
|
PyObject *resultobj = 0;
|
||||||
CoreSession *arg1 = (CoreSession *) 0 ;
|
CoreSession *arg1 = (CoreSession *) 0 ;
|
||||||
|
@ -209,6 +209,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro(switch_core_session_t *s
|
|||||||
|
|
||||||
while (input && !done) {
|
while (input && !done) {
|
||||||
char *pattern = (char *) switch_xml_attr(input, "pattern");
|
char *pattern = (char *) switch_xml_attr(input, "pattern");
|
||||||
|
const char *do_break = switch_xml_attr_soft(input, "break_on_match");
|
||||||
|
|
||||||
if (pattern) {
|
if (pattern) {
|
||||||
switch_regex_t *re = NULL;
|
switch_regex_t *re = NULL;
|
||||||
@ -313,6 +314,12 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro(switch_core_session_t *s
|
|||||||
switch_regex_safe_free(re);
|
switch_regex_safe_free(re);
|
||||||
switch_safe_free(expanded);
|
switch_safe_free(expanded);
|
||||||
switch_safe_free(substituted);
|
switch_safe_free(substituted);
|
||||||
|
|
||||||
|
|
||||||
|
if (match && do_break && switch_true(do_break)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (status != SWITCH_STATUS_SUCCESS) {
|
if (status != SWITCH_STATUS_SUCCESS) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user