diff --git a/Freeswitch.2017.sln b/Freeswitch.2017.sln index abeeb4fe04a..519fd1ac32c 100644 --- a/Freeswitch.2017.sln +++ b/Freeswitch.2017.sln @@ -379,6 +379,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mod_say_pt", "src\mod\say\m EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mod_say_sv", "src\mod\say\mod_say_sv\mod_say_sv.2017.vcxproj", "{8CDA2B34-FA44-49CC-9EC2-B8F35856CD15}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mod_say_tr", "src\mod\say\mod_say_tr\mod_say_tr.2017.vcxproj", "{2B87227A-198A-4087-9418-163186548B7F}" +EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ldns", "libs\win32\ldns\ldns-lib\ldns-lib.2017.vcxproj", "{23B4D303-79FC-49E0-89E2-2280E7E28940}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mod_callcenter", "src\mod\applications\mod_callcenter\mod_callcenter.2017.vcxproj", "{47886A6C-CCA6-4F9F-A7D4-F97D06FB2B1A}" diff --git a/build/modules.conf.in b/build/modules.conf.in index 8851ded303c..5429cdb5ff0 100755 --- a/build/modules.conf.in +++ b/build/modules.conf.in @@ -126,6 +126,7 @@ say/mod_say_en #say/mod_say_ru #say/mod_say_sv #say/mod_say_th +#say/mod_say_tr #say/mod_say_zh #timers/mod_posix_timer #timers/mod_timerfd diff --git a/conf/vanilla/freeswitch.xml b/conf/vanilla/freeswitch.xml index 35f9c6bbb93..1da7ba0d414 100644 --- a/conf/vanilla/freeswitch.xml +++ b/conf/vanilla/freeswitch.xml @@ -68,5 +68,6 @@ + diff --git a/conf/vanilla/lang/tr/tr.xml b/conf/vanilla/lang/tr/tr.xml new file mode 100644 index 00000000000..31f7c83f552 --- /dev/null +++ b/conf/vanilla/lang/tr/tr.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + diff --git a/configure.ac b/configure.ac index c1c53a45746..a523b6494bf 100644 --- a/configure.ac +++ b/configure.ac @@ -2123,6 +2123,7 @@ AC_CONFIG_FILES([Makefile src/mod/say/mod_say_ru/Makefile src/mod/say/mod_say_sv/Makefile src/mod/say/mod_say_th/Makefile + src/mod/say/mod_say_tr/Makefile src/mod/say/mod_say_zh/Makefile src/mod/timers/mod_posix_timer/Makefile src/mod/timers/mod_timerfd/Makefile diff --git a/freeswitch.spec b/freeswitch.spec index 43593dd07e5..e4334156d1c 100755 --- a/freeswitch.spec +++ b/freeswitch.spec @@ -1291,7 +1291,7 @@ LOGGERS_MODULES="loggers/mod_console loggers/mod_graylog2 loggers/mod_logfile lo # Phrase engine language modules # ###################################################################################################################### -SAY_MODULES="say/mod_say_de say/mod_say_en say/mod_say_es say/mod_say_pt say/mod_say_fr say/mod_say_he say/mod_say_ru say/mod_say_sv" +SAY_MODULES="say/mod_say_de say/mod_say_en say/mod_say_es say/mod_say_pt say/mod_say_fr say/mod_say_he say/mod_say_ru say/mod_say_sv say/mod_say_tr" ###################################################################################################################### # diff --git a/src/mod/say/mod_say_tr/Makefile.am b/src/mod/say/mod_say_tr/Makefile.am new file mode 100644 index 00000000000..497a9b5d973 --- /dev/null +++ b/src/mod/say/mod_say_tr/Makefile.am @@ -0,0 +1,8 @@ +include $(top_srcdir)/build/modmake.rulesam +MODNAME=mod_say_tr + +mod_LTLIBRARIES = mod_say_tr.la +mod_say_tr_la_SOURCES = mod_say_tr.c +mod_say_tr_la_CFLAGS = $(AM_CFLAGS) +mod_say_tr_la_LIBADD = $(switch_builddir)/libfreeswitch.la +mod_say_tr_la_LDFLAGS = -avoid-version -module -no-undefined -shared diff --git a/src/mod/say/mod_say_tr/mod_say_tr.2017.vcxproj b/src/mod/say/mod_say_tr/mod_say_tr.2017.vcxproj new file mode 100644 index 00000000000..9f0a2111bdd --- /dev/null +++ b/src/mod/say/mod_say_tr/mod_say_tr.2017.vcxproj @@ -0,0 +1,139 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + mod_say_tr + {2B87227A-198A-4087-9418-163186548B7F} + mod_say_tr + Win32Proj + + + + DynamicLibrary + MultiByte + $(DefaultPlatformToolset) + + + DynamicLibrary + MultiByte + $(DefaultPlatformToolset) + + + DynamicLibrary + MultiByte + $(DefaultPlatformToolset) + + + DynamicLibrary + MultiByte + $(DefaultPlatformToolset) + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + + + + + + + + false + + + + + + + X64 + + + + + + + false + + + MachineX64 + + + + + + + + + false + + + + + + + X64 + + + + + + + false + + + MachineX64 + + + + + + + + {f6c55d93-b927-4483-bb69-15aef3dd2dff} + false + + + {202d7a4e-760d-4d0e-afa1-d7459ced30ff} + false + + + + + + \ No newline at end of file diff --git a/src/mod/say/mod_say_tr/mod_say_tr.c b/src/mod/say/mod_say_tr/mod_say_tr.c new file mode 100644 index 00000000000..8a27b89a4d1 --- /dev/null +++ b/src/mod/say/mod_say_tr/mod_say_tr.c @@ -0,0 +1,658 @@ +/* + * Copyright (c) 2007-2014, Anthony Minessale II + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * * Neither the name of the original author; nor the names of any contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER + * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The Initial Developer of the Original Code is + * Anthony Minessale II + * Portions created by the Initial Developer are Copyright (C) + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Anthony Minessale II + * Mehmet Yıldırım + * + * mod_say_tr.c -- Say for Turkish + * + */ + +#include +#include +#include + +SWITCH_MODULE_LOAD_FUNCTION(mod_say_tr_load); +SWITCH_MODULE_DEFINITION(mod_say_tr, mod_say_tr_load, NULL, NULL); + +#define say_num(_sh, num, meth) \ + { \ + char tmp[80]; \ + switch_status_t tstatus; \ + switch_say_method_t smeth = say_args->method; \ + switch_say_type_t stype = say_args->type; \ + say_args->type = SST_ITEMS; \ + say_args->method = meth; \ + switch_snprintf(tmp, sizeof(tmp), "%u", (unsigned)num); \ + if ((tstatus = tr_say_general_count(_sh, tmp, say_args)) != SWITCH_STATUS_SUCCESS) { \ + return tstatus; \ + } \ + say_args->method = smeth; \ + say_args->type = stype; \ + } + + #define say_num_goto_status(_sh, num, meth, tag) { \ + char tmp[80]; \ + switch_status_t tstatus; \ + switch_say_args_t tsay_args = *say_args; \ + tsay_args.type = SST_ITEMS; \ + tsay_args.method = meth; \ + switch_snprintf(tmp, sizeof(tmp), "%u", (unsigned)num); \ + if ((tstatus = tr_say_general_count(_sh, tmp, &tsay_args)) != \ + SWITCH_STATUS_SUCCESS) { \ + switch_goto_status(tstatus, tag); \ + } \ + } + +static switch_status_t play_group(switch_say_method_t method, int a, int b, int c, char *what, switch_say_file_handle_t *sh) +{ + if (a) { + if (a > 1) { switch_say_file(sh, "digits/%d", a); } + if (method == SSM_COUNTED && !b && !c) { + switch_say_file(sh, "digits/yuzuncu", a); + } else { + switch_say_file(sh, "digits/yuz", a); + } + } + + if (b) { + if (method == SSM_COUNTED && !c) { + switch_say_file(sh, "digits/%d0-nth", b); + } else { + switch_say_file(sh, "digits/%d0", b); + } + } + + if (c) { + if (what && !strncmp(what, "digits/bin", 10) && !a && !b && c == 1) { + /* Skip saying "Bir" for Bin */ + } else { + if (method == SSM_COUNTED) { + switch_say_file(sh, "digits/%d-nth", c); + } else { + switch_say_file(sh, "digits/%d", c); + } + } + } + + if (what && (a || b || c)) { switch_say_file(sh, what); } + + return SWITCH_STATUS_SUCCESS; +} + +static switch_status_t tr_say_general_count(switch_say_file_handle_t *sh, char *tosay, switch_say_args_t *say_args) +{ + int64_t in; + char sbuf[128] = ""; + char digits[32]; + int i; + switch_status_t status; + + if (say_args->method == SSM_ITERATED) { + if ((tosay = switch_strip_commas(tosay, sbuf, sizeof(sbuf) - 1))) { + char *p; + for (p = tosay; p && *p; p++) { switch_say_file(sh, "digits/%c", *p); } + } else { + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Parse Error!\n"); + return SWITCH_STATUS_GENERR; + } + return SWITCH_STATUS_SUCCESS; + } + + if (!(tosay = switch_strip_commas(tosay, sbuf, sizeof(sbuf) - 1)) || strlen(tosay) > 15) { + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Parse Error!\n"); + return SWITCH_STATUS_GENERR; + } + + in = atoll(tosay); + + if (in != 0) { + int places[15] = {0}; + int64_t temp_in = in; + + for (i = 0; i < 15; i++) { + places[i] = temp_in % 10; + temp_in /= 10; + } + + snprintf(digits, sizeof(digits), "%" SWITCH_INT64_T_FMT, in); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Say: %s \n", digits); + + switch (say_args->method) { + case SSM_COUNTED: + case SSM_PRONOUNCED: { + char *trilyon_file = "digits/trilyon"; + char *milyar_file = "digits/milyar"; + char *milyon_file = "digits/milyon"; + char *bin_file = "digits/bin"; + + if (say_args->method == SSM_COUNTED) { + int has_trilyon = places[14] || places[13] || places[12]; + int has_milyar = places[11] || places[10] || places[9]; + int has_milyon = places[8] || places[7] || places[6]; + int has_bin = places[5] || places[4] || places[3]; + int has_units = places[2] || places[1] || places[0]; + + if (!has_units && !has_bin && !has_milyon && !has_milyar && has_trilyon) { + trilyon_file = "digits/trilyon-nth"; + } + if (!has_units && !has_bin && !has_milyon && has_milyar) { milyar_file = "digits/milyar-nth"; } + if (!has_units && !has_bin && has_milyon) { milyon_file = "digits/milyon-nth"; } + if (!has_units && has_bin) { bin_file = "digits/bin-nth"; } + } + + if ((status = play_group(SSM_PRONOUNCED, places[14], places[13], places[12], trilyon_file, sh)) != SWITCH_STATUS_SUCCESS) { + return status; + } + if ((status = play_group(SSM_PRONOUNCED, places[11], places[10], places[9], milyar_file, sh)) != + SWITCH_STATUS_SUCCESS) { + return status; + } + if ((status = play_group(SSM_PRONOUNCED, places[8], places[7], places[6], milyon_file, sh)) != + SWITCH_STATUS_SUCCESS) { + return status; + } + if ((status = play_group(SSM_PRONOUNCED, places[5], places[4], places[3], bin_file, sh)) != + SWITCH_STATUS_SUCCESS) { + return status; + } + if ((status = play_group(say_args->method, places[2], places[1], places[0], NULL, sh)) != + SWITCH_STATUS_SUCCESS) { + return status; + } + break; + } + default: + break; + } + } else { + switch_say_file(sh, "digits/0"); + } + + return SWITCH_STATUS_SUCCESS; +} + +static switch_status_t tr_say_play_locative(switch_say_file_handle_t *sh, int number) +{ + char *suffix = "time/de"; + int last_digit = number % 10; + + if (number == 10 || number == 30 || number == 9 || number == 6 || number == 0) { + suffix = "time/da"; + } else if (number == 40) { + suffix = "time/ta"; + } else if (number == 3 || number == 4 || number == 5) { + suffix = "time/te"; + } else if (last_digit == 0) { + suffix = "time/de"; + } else { + switch (last_digit) { + case 1: + suffix = "time/de"; + break; + case 2: + suffix = "time/de"; + break; + case 3: + suffix = "time/te"; + break; + case 4: + suffix = "time/te"; + break; + case 5: + suffix = "time/te"; + break; + case 6: + suffix = "time/da"; + break; + case 7: + suffix = "time/de"; + break; + case 8: + suffix = "time/de"; + break; + case 9: + suffix = "time/da"; + break; + } + } + switch_say_file(sh, "%s", suffix); + return SWITCH_STATUS_SUCCESS; +} + +static switch_status_t tr_say_time(switch_say_file_handle_t *sh, char *tosay, switch_say_args_t *say_args) +{ + int64_t t = 0; + switch_time_t target = 0, target_now = 0; + switch_time_exp_t tm, tm_now; + uint8_t say_date = 0, say_time = 0, say_year = 0, say_month = 0, say_dow = 0, say_day = 0, say_yesterday = 0, + say_today = 0; + const char *tz = NULL; + + tz = switch_say_file_handle_get_variable(sh, "timezone"); + + if (say_args->type == SST_TIME_MEASUREMENT) { + int64_t hours = 0, minutes = 0, seconds = 0, r = 0; + + if (strchr(tosay, ':')) { + char *tme = strdup(tosay); + char *p; + switch_assert(tme); + if ((p = strrchr(tme, ':'))) { + *p++ = '\0'; + seconds = atoi(p); + if ((p = strchr(tme, ':'))) { + *p++ = '\0'; + minutes = atoi(p); + hours = atoi(tme); + } else { + minutes = atoi(tme); + } + } + free(tme); + } else { + if ((seconds = atol(tosay)) <= 0) { + seconds = (int64_t)switch_epoch_time_now(NULL); + } + if (seconds >= 60) { + minutes = seconds / 60; + r = seconds % 60; + seconds = r; + } + if (minutes >= 60) { + hours = minutes / 60; + r = minutes % 60; + minutes = r; + } + } + + if (hours) { + say_num(sh, hours, SSM_PRONOUNCED); + if (minutes || seconds) { + switch_say_file(sh, "time/saat+"); + } else { + switch_say_file(sh, "time/saat"); + } + } + if (minutes) { + say_num(sh, minutes, SSM_PRONOUNCED); + if (seconds) { + switch_say_file(sh, "time/dakika+"); + } else { + switch_say_file(sh, "time/dakika"); + } + } + if (seconds) { + say_num(sh, seconds, SSM_PRONOUNCED); + switch_say_file(sh, "time/saniye"); + } + return SWITCH_STATUS_SUCCESS; + } + + if (!t) { + if ((t = atol(tosay)) > 0) { + target = switch_time_make(t, 0); + target_now = switch_micro_time_now(); + } else { + target = switch_micro_time_now(); + target_now = switch_micro_time_now(); + } + } + + if (tz) { + int check = atoi(tz); + if (check) { + switch_time_exp_tz(&tm, target, check); + switch_time_exp_tz(&tm_now, target_now, check); + } else { + switch_time_exp_tz_name(tz, &tm, target); + switch_time_exp_tz_name(tz, &tm_now, target_now); + } + } else { + switch_time_exp_lt(&tm, target); + switch_time_exp_lt(&tm_now, target_now); + } + + switch (say_args->type) { + case SST_CURRENT_DATE_TIME: + say_date = say_time = 1; + break; + case SST_CURRENT_DATE: + say_date = 1; + break; + case SST_CURRENT_TIME: + say_time = 1; + break; + case SST_SHORT_DATE_TIME: + say_time = 1; + if ((tm.tm_year > tm_now.tm_year) || (tm.tm_year == tm_now.tm_year && tm.tm_mon > tm_now.tm_mon) || + (tm.tm_year == tm_now.tm_year && tm.tm_mon == tm_now.tm_mon && tm.tm_mday > tm_now.tm_mday)) { + say_date = 1; + break; + } + if (tm.tm_year != tm_now.tm_year) { + say_date = 1; + break; + } + if (tm.tm_yday == tm_now.tm_yday) { + say_today = 1; + break; + } + if (tm.tm_yday == tm_now.tm_yday - 1) { + say_yesterday = 1; + break; + } + if (tm.tm_yday >= tm_now.tm_yday - 5) { + say_dow = 1; + break; + } + say_month = say_day = say_dow = 1; + break; + default: + break; + } + + if (say_date) { + say_year = say_month = say_day = say_dow = 1; + say_today = say_yesterday = 0; + } + + if (say_today) switch_say_file(sh, "time/bugun"); + if (say_yesterday) switch_say_file(sh, "time/dun"); + if (say_day) say_num(sh, tm.tm_mday, SSM_PRONOUNCED); + if (say_month) switch_say_file(sh, "time/mon-%d", tm.tm_mon); + if (say_year) say_num(sh, tm.tm_year + 1900, SSM_PRONOUNCED); + if (say_dow) switch_say_file(sh, "time/day-%d", tm.tm_wday); + + if (say_time) { + switch_say_file(sh, "time/saat"); + say_num(sh, tm.tm_hour, SSM_PRONOUNCED); + if (tm.tm_min) say_num(sh, tm.tm_min, SSM_PRONOUNCED); + + if (say_date || say_today || say_yesterday || say_dow) { + int last_num = tm.tm_min ? tm.tm_min : tm.tm_hour; + tr_say_play_locative(sh, last_num); + } + } + + return SWITCH_STATUS_SUCCESS; +} + +static switch_status_t tr_say_money(switch_say_file_handle_t *sh, char *tosay, switch_say_args_t *say_args) +{ + char sbuf[16] = ""; + char *dollars = NULL; + char *cents = NULL; + + if (strlen(tosay) > 15 || !switch_strip_nonnumerics(tosay, sbuf, sizeof(sbuf) - 1)) { + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Parse Error!\n"); + return SWITCH_STATUS_GENERR; + } + + dollars = sbuf; + if ((cents = strchr(sbuf, '.'))) { + *cents++ = '\0'; + if (strlen(cents) > 2) cents[2] = '\0'; + } + + say_args->type = SST_ITEMS; + say_args->method = SSM_PRONOUNCED; + tr_say_general_count(sh, dollars, say_args); + switch_say_file(sh, "money/lira"); + + if (cents) { + tr_say_general_count(sh, cents, say_args); + switch_say_file(sh, "money/kurus"); + } + + return SWITCH_STATUS_SUCCESS; +} + +static switch_status_t tr_say_telephone_number(switch_say_file_handle_t *sh, char *tosay, switch_say_args_t *say_args) +{ + int silence = 0; + char *p; + + for (p = tosay; !zstr(p); p++) { + int a = tolower((int)*p); + if (a >= '0' && a <= '9') { + switch_say_file(sh, "digits/%c", a); + silence = 0; + } else if (a == '+' || (a >= 'a' && a <= 'z')) { + switch_say_file(sh, "ascii/%d", a); + silence = 0; + } else if (!silence) { + switch_say_file(sh, "silence_stream://100"); + silence = 1; + } + } + return SWITCH_STATUS_SUCCESS; +} + +static switch_status_t tr_say_spell(switch_say_file_handle_t *sh, char *tosay, switch_say_args_t *say_args) +{ + char *p; + + for (p = tosay; p && *p; p++) { + int a = tolower((int)*p); + if (a >= '0' && a <= '9') { + switch_say_file(sh, "digits/%c", a); + } else { + if (say_args->type == SST_NAME_SPELLED) { + switch_say_file(sh, "ascii/%d", a); + } else if (say_args->type == SST_NAME_PHONETIC) { + switch_say_file(sh, "phonetic-ascii/%d", a); + } + } + } + return SWITCH_STATUS_SUCCESS; +} + +static switch_status_t tr_say_ip(switch_say_file_handle_t *sh, char *tosay, switch_say_args_t *say_args) +{ + char *a, *b, *c, *d; + switch_status_t status = SWITCH_STATUS_FALSE; + + if (!(a = strdup(tosay))) { + abort(); + } + + if (!(b = strchr(a, '.'))) { + goto end; + } + + *b++ = '\0'; + + if (!(c = strchr(b, '.'))) { + goto end; + } + + *c++ = '\0'; + + if (!(d = strchr(c, '.'))) { + goto end; + } + + *d++ = '\0'; + + say_num_goto_status(sh, atoi(a), say_args->method, end); + switch_say_file(sh, "digits/nokta"); + say_num_goto_status(sh, atoi(b), say_args->method, end); + switch_say_file(sh, "digits/nokta"); + say_num_goto_status(sh, atoi(c), say_args->method, end); + switch_say_file(sh, "digits/nokta"); + say_num_goto_status(sh, atoi(d), say_args->method, end); + +end: + + free(a); + + return status; +} + +static switch_new_say_callback_t choose_callback(switch_say_args_t *say_args) +{ + switch_new_say_callback_t say_cb = NULL; + + switch (say_args->type) { + case SST_NUMBER: + case SST_ITEMS: + case SST_PERSONS: + case SST_MESSAGES: + say_cb = tr_say_general_count; + break; + case SST_TIME_MEASUREMENT: + case SST_CURRENT_DATE: + case SST_CURRENT_TIME: + case SST_CURRENT_DATE_TIME: + case SST_SHORT_DATE_TIME: + say_cb = tr_say_time; + break; + case SST_IP_ADDRESS: + say_cb = tr_say_ip; + break; + case SST_TELEPHONE_NUMBER: + case SST_TELEPHONE_EXTENSION: + say_cb = tr_say_telephone_number; + break; + case SST_NAME_SPELLED: + case SST_NAME_PHONETIC: + say_cb = tr_say_spell; + break; + case SST_CURRENCY: + say_cb = tr_say_money; + break; + default: + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Unknown Say type=[%d]\n", say_args->type); + break; + } + + return say_cb; +} + +static switch_status_t run_callback(switch_new_say_callback_t say_cb, char *tosay, switch_say_args_t *say_args, switch_core_session_t *session, char **rstr) +{ + switch_say_file_handle_t *sh; + switch_status_t status = SWITCH_STATUS_FALSE; + switch_event_t *var_event = NULL; + + if (session) { + switch_channel_t *channel = switch_core_session_get_channel(session); + switch_channel_get_variables(channel, &var_event); + } + + switch_say_file_handle_create(&sh, say_args->ext, &var_event); + + status = say_cb(sh, tosay, say_args); + + if ((*rstr = switch_say_file_handle_detach_path(sh))) { + status = SWITCH_STATUS_SUCCESS; + } + + switch_say_file_handle_destroy(&sh); + + return status; +} + +static switch_status_t tr_say(switch_core_session_t *session, char *tosay, switch_say_args_t *say_args, + switch_input_args_t *args) +{ + switch_new_say_callback_t say_cb = NULL; + char *string = NULL; + + switch_status_t status = SWITCH_STATUS_FALSE; + + say_cb = choose_callback(say_args); + + if (say_cb) { + status = run_callback(say_cb, tosay, say_args, session, &string); + if (session && string) { + status = switch_ivr_play_file(session, NULL, string, args); + } + + switch_safe_free(string); + } + + return status; +} + +static switch_status_t tr_say_string(switch_core_session_t *session, char *tosay, switch_say_args_t *say_args, char **rstr) +{ + switch_new_say_callback_t say_cb = NULL; + char *string = NULL; + + switch_status_t status = SWITCH_STATUS_FALSE; + + say_cb = choose_callback(say_args); + + if (say_cb) { + status = run_callback(say_cb, tosay, say_args, session, &string); + if (string) { + status = SWITCH_STATUS_SUCCESS; + *rstr = string; + } + } + + return status; +} + +SWITCH_MODULE_LOAD_FUNCTION(mod_say_tr_load) +{ + switch_say_interface_t *say_interface; + /* connect my internal structure to the blank pointer passed to me */ + *module_interface = switch_loadable_module_create_module_interface(pool, modname); + say_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_SAY_INTERFACE); + say_interface->interface_name = "tr"; + say_interface->say_function = tr_say; + say_interface->say_string_function = tr_say_string; + + /* indicate that the module should continue to be loaded */ + return SWITCH_STATUS_SUCCESS; +} + +/* For Emacs: + * Local Variables: + * mode:c + * indent-tabs-mode:t + * tab-width:4 + * c-basic-offset:4 + * End: + * For VIM: + * vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet: + */