Skip to content
Snippets Groups Projects
say.c 283 KiB
Newer Older
  • Learn to ignore specific revisions
  • Mark Spencer's avatar
    Mark Spencer committed
    /*
    
     * Asterisk -- An open source telephony toolkit.
    
    Mark Spencer's avatar
    Mark Spencer committed
     *
    
     * Copyright (C) 1999 - 2005, Digium, Inc.
    
    Mark Spencer's avatar
    Mark Spencer committed
     *
    
     * Mark Spencer <markster@digium.com>
     * George Konstantoulakis <gkon@inaccessnetworks.com>
     *
     * See http://www.asterisk.org for more information about
     * the Asterisk project. Please do not directly contact
     * any of the maintainers of this project for assistance;
     * the project provides a web site, mailing lists and IRC
     * channels for your use.
    
    Mark Spencer's avatar
    Mark Spencer committed
     *
     * This program is free software, distributed under the terms of
    
     * the GNU General Public License Version 2. See the LICENSE file
     * at the top of the source tree.
     */
    
    
     * \brief Say numbers and dates (maybe words one day too)
    
     *
     * \author Mark Spencer <markster@digium.com>
    
     * \note 12-16-2004 : Support for Greek added by InAccess Networks (work funded by HOL, www.hol.gr) George Konstantoulakis <gkon@inaccessnetworks.com>
    
     * \note 2007-02-08 : Support for Georgian added by Alexander Shaduri <ashaduri@gmail.com>,
    
     *						Next Generation Networks (NGN).
    
     * \note 2007-03-20 : Support for Thai added by Dome C. <dome@tel.co.th>,
    
     *						IP Crossing Co., Ltd.
    
    /*** MODULEINFO
    	<support_level>core</support_level>
     ***/
    
    
    ASTERISK_REGISTER_FILE()
    
    #include <netinet/in.h>
    #include <time.h>
    
    #include <math.h>
    
    
    #ifdef SOLARIS
    #include <iso/limits_iso.h>
    #endif
    
    
    #include "asterisk/file.h"
    #include "asterisk/channel.h"
    #include "asterisk/say.h"
    #include "asterisk/lock.h"
    #include "asterisk/localtime.h"
    #include "asterisk/utils.h"
    
    #include "asterisk/app.h"
    
    static int wait_file(struct ast_channel *chan, const char *ints, const char *file, const char *lang);
    
    static int say_character_str_full(struct ast_channel *chan, const char *str, const char *ints, const char *lang, enum ast_say_case_sensitivity sensitivity, int audiofd, int ctrlfd)
    
    Mark Spencer's avatar
    Mark Spencer committed
    {
    
    	char fnbuf[10], asciibuf[20] = "letters/ascii";
    
    	char ltr;
    	int num = 0;
    	int res = 0;
    
    	int upper = 0;
    	int lower = 0;
    
    	while (str[num] && !res) {
    
    		fn = NULL;
    		switch (str[num]) {
    		case ('*'):
    			fn = "digits/star";
    			break;
    		case ('#'):
    			fn = "digits/pound";
    			break;
    		case ('!'):
    			fn = "letters/exclaimation-point";
    			break;
    		case ('@'):
    			fn = "letters/at";
    			break;
    		case ('$'):
    			fn = "letters/dollar";
    			break;
    		case ('-'):
    			fn = "letters/dash";
    			break;
    		case ('.'):
    			fn = "letters/dot";
    			break;
    		case ('='):
    			fn = "letters/equals";
    			break;
    		case ('+'):
    			fn = "letters/plus";
    			break;
    		case ('/'):
    			fn = "letters/slash";
    			break;
    		case (' '):
    			fn = "letters/space";
    			break;
    		case ('0'):
    		case ('1'):
    		case ('2'):
    		case ('3'):
    		case ('4'):
    		case ('5'):
    		case ('6'):
    		case ('7'):
    		case ('8'):
    
    Mark Spencer's avatar
    Mark Spencer committed
    		case ('9'):
    
    			strcpy(fnbuf, "digits/X");
    			fnbuf[7] = str[num];
    			fn = fnbuf;
    			break;
    
    			if ('A' <= ltr && ltr <= 'Z') {
    				ltr += 'a' - 'A';		/* file names are all lower-case */
    				switch (sensitivity) {
    				case AST_SAY_CASE_UPPER:
    				case AST_SAY_CASE_ALL:
    					upper = !upper;
    				case AST_SAY_CASE_LOWER:
    				case AST_SAY_CASE_NONE:
    					break;
    				}
    			} else if ('a' <= ltr && ltr <= 'z') {
    				switch (sensitivity) {
    				case AST_SAY_CASE_LOWER:
    				case AST_SAY_CASE_ALL:
    					lower = !lower;
    				case AST_SAY_CASE_UPPER:
    				case AST_SAY_CASE_NONE:
    					break;
    				}
    			}
    
    			if (upper) {
    				strcpy(fnbuf, "uppercase");
    			} else if (lower) {
    				strcpy(fnbuf, "lowercase");
    			} else {
    				strcpy(fnbuf, "letters/X");
    				fnbuf[8] = ltr;
    			}
    
    		if ((fn && ast_fileexists(fn, NULL, lang) > 0) ||
    			(snprintf(asciibuf + 13, sizeof(asciibuf) - 13, "%d", str[num]) > 0 && ast_fileexists(asciibuf, NULL, lang) > 0 && (fn = asciibuf))) {
    
    			res = ast_streamfile(chan, fn, lang);
    			if (!res) {
    				if ((audiofd  > -1) && (ctrlfd > -1))
    					res = ast_waitstream_full(chan, ints, audiofd, ctrlfd);
    				else
    					res = ast_waitstream(chan, ints);
    			}
    			ast_stopstream(chan);
    
    		if (upper || lower) {
    			continue;
    		}
    
    static int say_phonetic_str_full(struct ast_channel *chan, const char *str, const char *ints, const char *lang, int audiofd, int ctrlfd)
    
    	char ltr;
    	int num = 0;
    	int res = 0;
    
    	while (str[num] && !res) {
    
    		fn = NULL;
    		switch (str[num]) {
    		case ('*'):
    			fn = "digits/star";
    			break;
    		case ('#'):
    			fn = "digits/pound";
    			break;
    		case ('!'):
    			fn = "letters/exclaimation-point";
    			break;
    		case ('@'):
    			fn = "letters/at";
    			break;
    		case ('$'):
    			fn = "letters/dollar";
    			break;
    		case ('-'):
    			fn = "letters/dash";
    			break;
    		case ('.'):
    			fn = "letters/dot";
    			break;
    		case ('='):
    			fn = "letters/equals";
    			break;
    		case ('+'):
    			fn = "letters/plus";
    			break;
    		case ('/'):
    			fn = "letters/slash";
    			break;
    		case (' '):
    			fn = "letters/space";
    			break;
    		case ('0'):
    		case ('1'):
    		case ('2'):
    		case ('3'):
    		case ('4'):
    		case ('5'):
    		case ('6'):
    		case ('7'):
    		case ('8'):
    			strcpy(fnbuf, "digits/X");
    			fnbuf[7] = str[num];
    			fn = fnbuf;
    			break;
    		default:	/* '9' falls here... */
    			ltr = str[num];
    			if ('A' <= ltr && ltr <= 'Z') ltr += 'a' - 'A';		/* file names are all lower-case */
    			strcpy(fnbuf, "phonetic/X_p");
    			fnbuf[9] = ltr;
    			fn = fnbuf;
    
    		if (fn && ast_fileexists(fn, NULL, lang) > 0) {
    
    			res = ast_streamfile(chan, fn, lang);
    			if (!res) {
    				if ((audiofd  > -1) && (ctrlfd > -1))
    					res = ast_waitstream_full(chan, ints, audiofd, ctrlfd);
    				else
    					res = ast_waitstream(chan, ints);
    			}
    			ast_stopstream(chan);
    
    static int say_digit_str_full(struct ast_channel *chan, const char *str, const char *ints, const char *lang, int audiofd, int ctrlfd)
    
    	int num = 0;
    	int res = 0;
    
    	while (str[num] && !res) {
    
    		fn = NULL;
    		switch (str[num]) {
    		case ('*'):
    			fn = "digits/star";
    			break;
    		case ('#'):
    			fn = "digits/pound";
    			break;
    		case ('-'):
    			fn = "digits/minus";
    			break;
    		case '0':
    		case '1':
    		case '2':
    		case '3':
    		case '4':
    		case '5':
    		case '6':
    		case '7':
    		case '8':
    		case '9':
    			strcpy(fnbuf, "digits/X");
    			fnbuf[7] = str[num];
    			fn = fnbuf;
    			break;
    		}
    
    		if (fn && ast_fileexists(fn, NULL, lang) > 0) {
    
    			if (!res) {
    				if ((audiofd  > -1) && (ctrlfd > -1))
    
    					res = ast_waitstream_full(chan, ints, audiofd, ctrlfd);
    				else
    					res = ast_waitstream(chan, ints);
    
    /*! \page Def_syntaxlang Asterisk Language Syntaxes supported
    
        \note Not really language codes.
    
    	For these language codes, Asterisk will change the syntax when
    	saying numbers (and in some cases dates and voicemail messages
    	as well)
          \arg \b da    - Danish
          \arg \b de    - German
          \arg \b en    - English (US)
          \arg \b en_GB - English (British)
          \arg \b es    - Spanish, Mexican
          \arg \b fr    - French
          \arg \b he    - Hebrew
          \arg \b it    - Italian
          \arg \b nl    - Dutch
          \arg \b no    - Norwegian
    
          \arg \b pl    - Polish
    
          \arg \b pt    - Portuguese
    
          \arg \b pt_BR - Portuguese (Brazil)
    
          \arg \b se    - Swedish
    
          \arg \b zh    - Taiwanese / Chinese
    
          \arg \b ru    - Russian
    
          \arg \b ka    - Georgian
    
     \par Gender:
     For Some languages the numbers differ for gender and plural.
     \arg Use the option argument 'f' for female, 'm' for male and 'n' for neuter in languages like Portuguese, French, Spanish and German.
     \arg use the option argument 'c' is for commune and 'n' for neuter gender in nordic languages like Danish, Swedish and Norwegian.
    
     use the option argument 'p' for plural enumerations like in German
    
     Date/Time functions currently have less languages supported than saynumber().
    
     \todo Note that in future, we need to move to a model where we can differentiate further - e.g. between en_US & en_UK
    
    
     See contrib/i18n.testsuite.conf for some examples of the different syntaxes
    
     Portuguese sound files needed for Time/Date functions:
     pt-ah
     pt-ao
     pt-de
     pt-e
     pt-ora
     pt-meianoite
     pt-meiodia
     pt-sss
    
    
     Spanish sound files needed for Time/Date functions:
     es-de
     es-el
    
    
     Italian sound files needed for Time/Date functions:
     ore-una
     ore-mezzanotte
    
    
    /* Forward declarations of language specific variants of ast_say_number_full */
    
    static int ast_say_number_full_en(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_cs(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_da(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    static int ast_say_number_full_de(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    static int ast_say_number_full_en_GB(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd);
    static int ast_say_number_full_es(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    static int ast_say_number_full_fr(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_he(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_it(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd);
    static int ast_say_number_full_nl(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd);
    static int ast_say_number_full_no(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    static int ast_say_number_full_pl(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    static int ast_say_number_full_pt(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    static int ast_say_number_full_se(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_zh(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_gr(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_ja(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_ru(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_ka(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_hu(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_th(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_ur(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    
    static int ast_say_number_full_vi(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd);
    
    
    /* Forward declarations of language specific variants of ast_say_enumeration_full */
    static int ast_say_enumeration_full_en(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd);
    
    static int ast_say_enumeration_full_da(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    
    static int ast_say_enumeration_full_de(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    
    static int ast_say_enumeration_full_he(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd);
    
    static int ast_say_enumeration_full_vi(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd);
    
    
    /* Forward declarations of ast_say_date, ast_say_datetime and ast_say_time functions */
    
    static int ast_say_date_en(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_date_da(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_date_de(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_date_fr(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_date_nl(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_date_pt(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_date_gr(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_date_ja(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_date_ka(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_date_hu(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_date_th(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_date_he(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_date_with_format_en(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    static int ast_say_date_with_format_da(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    static int ast_say_date_with_format_de(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    static int ast_say_date_with_format_es(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    static int ast_say_date_with_format_he(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    static int ast_say_date_with_format_fr(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    static int ast_say_date_with_format_it(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    static int ast_say_date_with_format_nl(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    static int ast_say_date_with_format_pl(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    static int ast_say_date_with_format_pt(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    
    static int ast_say_date_with_format_zh(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    
    static int ast_say_date_with_format_gr(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    
    static int ast_say_date_with_format_ja(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    
    static int ast_say_date_with_format_th(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    
    static int ast_say_date_with_format_vi(struct ast_channel *chan, time_t t, const char *ints, const char *lang, const char *format, const char *tzone);
    
    
    static int ast_say_time_en(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_time_de(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_time_fr(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_time_nl(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_time_pt(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_time_pt_BR(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_time_zh(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_time_gr(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_time_ja(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_time_ka(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_time_hu(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_time_th(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_time_he(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    
    static int ast_say_datetime_en(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_datetime_de(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_datetime_fr(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_datetime_nl(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_datetime_pt(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_datetime_pt_BR(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_datetime_zh(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_datetime_gr(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_datetime_ja(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_datetime_ka(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_datetime_hu(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_datetime_th(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_datetime_he(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    
    static int ast_say_datetime_from_now_en(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_datetime_from_now_fr(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    static int ast_say_datetime_from_now_pt(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_datetime_from_now_ka(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int ast_say_datetime_from_now_he(struct ast_channel *chan, time_t t, const char *ints, const char *lang);
    
    static int wait_file(struct ast_channel *chan, const char *ints, const char *file, const char *lang)
    
    Olle Johansson's avatar
    Olle Johansson committed
    	if ((res = ast_streamfile(chan, file, lang))) {
    
    		ast_log(LOG_WARNING, "Unable to play message %s\n", file);
    
    Olle Johansson's avatar
    Olle Johansson committed
    	}
    	if (!res) {
    
    		res = ast_waitstream(chan, ints);
    
    Olle Johansson's avatar
    Olle Johansson committed
    	}
    
    /*! \brief  ast_say_number_full: call language-specific functions
    
         \note Called from AGI */
    
    static int say_number_full(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd)
    
    	ast_test_suite_event_notify("SAYNUM", "Message: saying number %d\r\nNumber: %d\r\nChannel: %s", num, num, ast_channel_name(chan));
    
    	if (!strncasecmp(language, "en_GB", 5)) {     /* British syntax */
    	   return ast_say_number_full_en_GB(chan, num, ints, language, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "en", 2)) { /* English syntax */
    	   return ast_say_number_full_en(chan, num, ints, language, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "cs", 2)) { /* Czech syntax */
    	   return ast_say_number_full_cs(chan, num, ints, language, options, audiofd, ctrlfd);
    
    	} else if (!strncasecmp(language, "cz", 2)) { /* deprecated Czech syntax */
    		static int deprecation_warning = 0;
    		if (deprecation_warning++ % 10 == 0) {
    			ast_log(LOG_WARNING, "cz is not a standard language code.  Please switch to using cs instead.\n");
    		}
    		return ast_say_number_full_cs(chan, num, ints, language, options, audiofd, ctrlfd);
    
    	} else if (!strncasecmp(language, "da", 2)) { /* Danish syntax */
    	   return ast_say_number_full_da(chan, num, ints, language, options, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "de", 2)) { /* German syntax */
    	   return ast_say_number_full_de(chan, num, ints, language, options, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "es", 2)) { /* Spanish syntax */
    	   return ast_say_number_full_es(chan, num, ints, language, options, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "fr", 2)) { /* French syntax */
    	   return ast_say_number_full_fr(chan, num, ints, language, options, audiofd, ctrlfd);
    
    	} else if (!strncasecmp(language, "ge", 2)) { /* deprecated Georgian syntax */
    		static int deprecation_warning = 0;
    		if (deprecation_warning++ % 10 == 0) {
    			ast_log(LOG_WARNING, "ge is not a standard language code.  Please switch to using ka instead.\n");
    		}
    		return ast_say_number_full_ka(chan, num, ints, language, options, audiofd, ctrlfd);
    
    	} else if (!strncasecmp(language, "gr", 2)) { /* Greek syntax */
    	   return ast_say_number_full_gr(chan, num, ints, language, audiofd, ctrlfd);
    
    	} else if (!strncasecmp(language, "ja", 2)) { /* Japanese syntax */
    	   return ast_say_number_full_ja(chan, num, ints, language, audiofd, ctrlfd);
    
    	} else if (!strncasecmp(language, "he", 2)) { /* Hebrew syntax */
    	   return ast_say_number_full_he(chan, num, ints, language, options, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "hu", 2)) { /* Hungarian syntax */
    		return ast_say_number_full_hu(chan, num, ints, language, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "it", 2)) { /* Italian syntax */
    	   return ast_say_number_full_it(chan, num, ints, language, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "ka", 2)) { /* Georgian syntax */
    	   return ast_say_number_full_ka(chan, num, ints, language, options, audiofd, ctrlfd);
    
    	} else if (!strncasecmp(language, "mx", 2)) { /* deprecated Mexican syntax */
    		static int deprecation_warning = 0;
    		if (deprecation_warning++ % 10 == 0) {
    			ast_log(LOG_WARNING, "mx is not a standard language code.  Please switch to using es_MX instead.\n");
    		}
    		return ast_say_number_full_es(chan, num, ints, language, options, audiofd, ctrlfd);
    
    	} else if (!strncasecmp(language, "nl", 2)) { /* Dutch syntax */
    	   return ast_say_number_full_nl(chan, num, ints, language, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "no", 2)) { /* Norwegian syntax */
    	   return ast_say_number_full_no(chan, num, ints, language, options, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "pl", 2)) { /* Polish syntax */
    	   return ast_say_number_full_pl(chan, num, ints, language, options, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "pt", 2)) { /* Portuguese syntax */
    	   return ast_say_number_full_pt(chan, num, ints, language, options, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "ru", 2)) { /* Russian syntax */
    	   return ast_say_number_full_ru(chan, num, ints, language, options, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "se", 2)) { /* Swedish syntax */
    	   return ast_say_number_full_se(chan, num, ints, language, options, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "th", 2)) { /* Thai syntax */
    		return ast_say_number_full_th(chan, num, ints, language, audiofd, ctrlfd);
    
    	} else if (!strncasecmp(language, "tw", 2)) { /* deprecated Taiwanese syntax */
    		static int deprecation_warning = 0;
    		if (deprecation_warning++ % 10 == 0) {
    			ast_log(LOG_WARNING, "tw is a standard language code for Twi, not Taiwanese.  Please switch to using zh_TW instead.\n");
    		}
    		return ast_say_number_full_zh(chan, num, ints, language, audiofd, ctrlfd);
    
    	} else if (!strncasecmp(language, "zh", 2)) { /* Taiwanese / Chinese syntax */
    	   return ast_say_number_full_zh(chan, num, ints, language, audiofd, ctrlfd);
    	} else if (!strncasecmp(language, "ur", 2)) { /* Urdu syntax */
    		return ast_say_number_full_ur(chan, num, ints, language, options, audiofd, ctrlfd);
    
    	} else if (!strncasecmp(language, "vi", 2)) { /* Vietnamese syntax */
    		return ast_say_number_full_vi(chan, num, ints, language, audiofd, ctrlfd);
    
    	return ast_say_number_full_en(chan, num, ints, language, audiofd, ctrlfd);
    
    /*! \brief  ast_say_number_full_en: English syntax
    
    	\note This is the default syntax, if no other syntax defined in this file is used */
    
    static int ast_say_number_full_en(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd)
    
    {
    	int res = 0;
    	int playh = 0;
    	char fn[256] = "";
    
    		return ast_say_digits_full(chan, 0, ints, language, audiofd, ctrlfd);
    
    			ast_copy_string(fn, "digits/minus", sizeof(fn));
    
    			ast_copy_string(fn, "digits/hundred", sizeof(fn));
    
    			playh = 0;
    		} else	if (num < 20) {
    			snprintf(fn, sizeof(fn), "digits/%d", num);
    			num = 0;
    		} else	if (num < 100) {
    			snprintf(fn, sizeof(fn), "digits/%d", (num /10) * 10);
    
    		} else {
    			if (num < 1000){
    				snprintf(fn, sizeof(fn), "digits/%d", (num/100));
    				playh++;
    
    				if (num < 1000000) { /* 1,000,000 */
    					res = ast_say_number_full_en(chan, num / 1000, ints, language, audiofd, ctrlfd);
    					if (res)
    						return res;
    
    					snprintf(fn, sizeof(fn), "digits/thousand");
    
    					if (num < 1000000000) {	/* 1,000,000,000 */
    						res = ast_say_number_full_en(chan, num / 1000000, ints, language, audiofd, ctrlfd);
    
    						if (res)
    							return res;
    
    						ast_copy_string(fn, "digits/million", sizeof(fn));
    
    						ast_debug(1, "Number '%d' is too big for me\n", num);
    
    			if (!ast_streamfile(chan, fn, language)) {
    
    Mark Spencer's avatar
    Mark Spencer committed
    				if ((audiofd  > -1) && (ctrlfd > -1))
    
    					res = ast_waitstream_full(chan, ints, audiofd, ctrlfd);
    				else
    					res = ast_waitstream(chan, ints);
    			}
    			ast_stopstream(chan);
    		}
    
    static int exp10_int(int power)
    {
    	int x, res= 1;
    	for (x=0;x<power;x++)
    		res *= 10;
    	return res;
    }
    
    
    /*! \brief  ast_say_number_full_cs: Czech syntax
    
     *
     * files needed:
     * - 1m,2m - gender male
     * - 1w,2w - gender female
     * - 3,4,...,20
     * - 30,40,...,90
    
     *
     * - hundereds - 100 - sto, 200 - 2ste, 300,400 3,4sta, 500,600,...,900 5,6,...9set
     *
    
     * for each number 10^(3n + 3) exist 3 files represented as:
    
     *		1 tousand = jeden tisic = 1_E3
     *		2,3,4 tousands = dva,tri,ctyri tisice = 2-3_E3
     *		5,6,... tousands = pet,sest,... tisic = 5_E3
    
     *		million = _E6
     *		miliard = _E9
     *		etc...
    
     *
     * tousand, milion are  gender male, so 1 and 2 is 1m 2m
     * miliard is gender female, so 1 and 2 is 1w 2w
     */
    
    static int ast_say_number_full_cs(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd)
    
    	int hundered = 0;
    	int left = 0;
    	int length = 0;
    
    	/* options - w = woman, m = man, n = neutral. Defaultl is woman */
    	if (!options)
    		options = "w";
    
    		return ast_say_digits_full(chan, 0, ints, language, audiofd, ctrlfd);
    
    			ast_copy_string(fn, "digits/minus", sizeof(fn));
    
    			if ( num > INT_MIN ) {
    				num = -num;
    			} else {
    				num = 0;
    
    			snprintf(fn, sizeof(fn), "digits/%d%c", num, options[0]);
    
    			snprintf(fn, sizeof(fn), "digits/%d", num);
    
    			playh = 0;
    			num = 0;
    		} else if (num < 100) {
    			snprintf(fn, sizeof(fn), "digits/%d", (num /10) * 10);
    
    		} else if (num < 1000) {
    			hundered = num / 100;
    			if ( hundered == 1 ) {
    
    				ast_copy_string(fn, "digits/1sto", sizeof(fn));
    
    				ast_copy_string(fn, "digits/2ste", sizeof(fn));
    
    				res = ast_say_number_full_cs(chan, hundered, ints, language, options, audiofd, ctrlfd);
    
    				if (hundered == 3 || hundered == 4) {
    
    					ast_copy_string(fn, "digits/sta", sizeof(fn));
    
    					ast_copy_string(fn, "digits/set", sizeof(fn));
    
    				}
    			}
    			num -= (hundered * 100);
    		} else { /* num > 1000 */
    
    			length = (int)log10(num)+1;
    
    			if ( left == 2 ) {
    
    				switch (length-1) {
    					case 9: options = "w";  /* 1,000,000,000 gender female */
    						break;
    					default : options = "m"; /* others are male */
    				}
    			}
    
    			if ( left > 1 )	{ /* we don't say "one thousand" but only thousand */
    
    				res = ast_say_number_full_cs(chan, left, ints, language, options, audiofd, ctrlfd);
    
    					return res;
    			}
    			if ( left >= 5 ) { /* >= 5 have the same declesion */
    
    				snprintf(fn, sizeof(fn), "digits/5_E%d", length - 1);
    
    			} else if ( left >= 2 && left <= 4 ) {
    
    				snprintf(fn, sizeof(fn), "digits/2-4_E%d", length - 1);
    
    				snprintf(fn, sizeof(fn), "digits/1_E%d", length - 1);
    
    			}
    			num -= left * (exp10_int(length-1));
    		}
    		if (!res) {
    
    			if (!ast_streamfile(chan, fn, language)) {
    
    				if ((audiofd > -1) && (ctrlfd > -1)) {
    
    					res = ast_waitstream_full(chan, ints, audiofd, ctrlfd);
    				} else {
    					res = ast_waitstream(chan, ints);
    				}
    			}
    			ast_stopstream(chan);
    		}
    	}
    
    	return res;
    
    /*! \brief  ast_say_number_full_da: Danish syntax
     New files:
    
     - In addition to English, the following sounds are required: "1N", "millions", "and" and "1-and" through "9-and"
    
    static int ast_say_number_full_da(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd)
    
    	int cn = 1;		/* +1 = commune; -1 = neuter */
    
    		return ast_say_digits_full(chan, 0, ints, language, audiofd, ctrlfd);
    
    	if (options && !strncasecmp(options, "n", 1)) cn = -1;
    
    	while (!res && (num || playh || playa )) {
    
    		/* The grammar for Danish numbers is the same as for English except
    		* for the following:
    
    		* - 1 exists in both commune ("en", file "1N") and neuter ("et", file "1")
    
    		* - numbers 20 through 99 are said in reverse order, i.e. 21 is
    		*   "one-and twenty" and 68 is "eight-and sixty".
    		* - "million" is different in singular and plural form
    		* - numbers > 1000 with zero as the third digit from last have an
    		*   "and" before the last two digits, i.e. 2034 is "two thousand and
    		*   four-and thirty" and 1000012 is "one million and twelve".
    		*/
    
    			ast_copy_string(fn, "digits/minus", sizeof(fn));
    
    			if ( num > INT_MIN ) {
    				num = -num;
    			} else {
    				num = 0;
    
    			ast_copy_string(fn, "digits/hundred", sizeof(fn));
    
    			ast_copy_string(fn, "digits/and", sizeof(fn));
    
    			playa = 0;
    		} else if (num == 1 && cn == -1) {
    
    			ast_copy_string(fn, "digits/1N", sizeof(fn));
    
    			num = 0;
    		} else if (num < 20) {
    			snprintf(fn, sizeof(fn), "digits/%d", num);
    			num = 0;
    		} else if (num < 100) {
    			int ones = num % 10;
    			if (ones) {
    				snprintf(fn, sizeof(fn), "digits/%d-and", ones);
    				num -= ones;
    			} else {
    				snprintf(fn, sizeof(fn), "digits/%d", num);
    
    Mark Spencer's avatar
    Mark Spencer committed
    				num = 0;
    
    			}
    		} else {
    			if (num < 1000) {
    				int hundreds = num / 100;
    				if (hundreds == 1)
    
    					ast_copy_string(fn, "digits/1N", sizeof(fn));
    
    				else
    					snprintf(fn, sizeof(fn), "digits/%d", (num / 100));
    
    				playh++;
    				num -= 100 * hundreds;
    				if (num)
    					playa++;
    
    			} else {
    				if (num < 1000000) {
    					res = ast_say_number_full_da(chan, num / 1000, ints, language, "n", audiofd, ctrlfd);
    					if (res)
    						return res;
    					num = num % 1000;
    
    					ast_copy_string(fn, "digits/thousand", sizeof(fn));
    
    				} else {
    					if (num < 1000000000) {
    						int millions = num / 1000000;
    						res = ast_say_number_full_da(chan, millions, ints, language, "c", audiofd, ctrlfd);
    						if (res)
    							return res;
    						if (millions == 1)
    
    							ast_copy_string(fn, "digits/million", sizeof(fn));
    
    							ast_copy_string(fn, "digits/millions", sizeof(fn));
    
    Mark Spencer's avatar
    Mark Spencer committed
    					} else {
    
    						ast_debug(1, "Number '%d' is too big for me\n", num);
    
    Mark Spencer's avatar
    Mark Spencer committed
    				}
    
    Mark Spencer's avatar
    Mark Spencer committed
    			}
    
    			if (!ast_streamfile(chan, fn, language)) {
    
    				if ((audiofd > -1) && (ctrlfd > -1))
    
    					res = ast_waitstream_full(chan, ints, audiofd, ctrlfd);
    
    					res = ast_waitstream(chan, ints);
    			}
    			ast_stopstream(chan);
    		}
    
    /*! \brief  ast_say_number_full_de: German syntax
    
    
     New files:
    
     In addition to English, the following sounds are required:
    
     - "millions"
    
     - "1-and" through "9-and"
    
     - "1F" (eine)
     - "1N" (ein)
     - NB "1" is recorded as 'eins'
    
    static int ast_say_number_full_de(struct ast_channel *chan, int num, const char *ints, const char *language, const char *options, int audiofd, int ctrlfd)
    
    	int res = 0, t = 0;
    	int mf = 1;                            /* +1 = male and neuter; -1 = female */
    
    	char fna[256] = "";
    
    		return ast_say_digits_full(chan, 0, ints, language, audiofd, ctrlfd);
    
    	if (options && (!strncasecmp(options, "f", 1)))
    
    		/* The grammar for German numbers is the same as for English except
    		* for the following:
    		* - numbers 20 through 99 are said in reverse order, i.e. 21 is
    		*   "one-and twenty" and 68 is "eight-and sixty".
    
    		* - "one" varies according to gender
    		* - 100 is 'hundert', however all other instances are 'ein hundert'
    		* - 1000 is 'tausend', however all other instances are 'ein tausend'
    
    		* - "million" is different in singular and plural form
    
    		* - 'and' should not go between a hundreds place value and any
    		*   tens/ones place values that follows it. i.e 136 is ein hundert
    		*   sechs und dreizig, not ein hundert und sechs und dreizig.
    
    			ast_copy_string(fn, "digits/minus", sizeof(fn));
    
    			if ( num > INT_MIN ) {
    				num = -num;
    			} else {
    				num = 0;
    
    		} else if (num == 1 && mf == -1) {
    			snprintf(fn, sizeof(fn), "digits/%dF", num);
    			num = 0;
    
    		} else if (num < 20) {
    			snprintf(fn, sizeof(fn), "digits/%d", num);
    			num = 0;
    		} else if (num < 100) {
    			int ones = num % 10;
    			if (ones) {
    				snprintf(fn, sizeof(fn), "digits/%d-and", ones);
    				num -= ones;
    			} else {
    				snprintf(fn, sizeof(fn), "digits/%d", num);
    				num = 0;
    			}
    
    			ast_copy_string(fn, "digits/hundred", sizeof(fn));
    
    		} else if (num < 1000) {
    			int hundreds = num / 100;
    
    				ast_copy_string(fn, "digits/1N", sizeof(fn));
    
    			} else {
    				snprintf(fn, sizeof(fn), "digits/%d", hundreds);
    			}
    
    			ast_copy_string(fna, "digits/hundred", sizeof(fna));
    
    		} else if (num == 1000 && t == 0) {
    
    			ast_copy_string(fn, "digits/thousand", sizeof(fn));
    
    		} else if (num < 1000000) {
    
    			int thousands = num / 1000;
    
    			if (thousands == 1) {
    
    				ast_copy_string(fn, "digits/1N", sizeof(fn));
    				ast_copy_string(fna, "digits/thousand", sizeof(fna));
    
    				res = ast_say_number_full_de(chan, thousands, ints, language, options, audiofd, ctrlfd);
    				if (res)
    					return res;
    
    				ast_copy_string(fn, "digits/thousand", sizeof(fn));
    
    			}
    		} else if (num < 1000000000) {
    			int millions = num / 1000000;
    
    			if (millions == 1) {
    
    				ast_copy_string(fn, "digits/1F", sizeof(fn));
    				ast_copy_string(fna, "digits/million", sizeof(fna));
    
    			} else {
    				res = ast_say_number_full_de(chan, millions, ints, language, options, audiofd, ctrlfd);
    				if (res)
    					return res;
    
    				ast_copy_string(fn, "digits/millions", sizeof(fn));
    
    Mark Spencer's avatar
    Mark Spencer committed
    			}
    
    		} else if (num <= INT_MAX) {
    			int billions = num / 1000000000;
    			num = num % 1000000000;
    			t = 1;
    			if (billions == 1) {
    
    				ast_copy_string(fn, "digits/1F", sizeof(fn));
    				ast_copy_string(fna, "digits/milliard", sizeof(fna));
    
    			} else {
    				res = ast_say_number_full_de(chan, billions, ints, language, options, audiofd, ctrlfd);
    				if (res) {
    					return res;
    				}
    
    				ast_copy_string(fn, "digits/milliards", sizeof(fn));
    
    			ast_debug(1, "Number '%d' is too big for me\n", num);
    
    			if (!ast_streamfile(chan, fn, language)) {
    
    				if ((audiofd > -1) && (ctrlfd > -1))
    
    					res = ast_waitstream_full(chan, ints, audiofd, ctrlfd);
    
    					res = ast_waitstream(chan, ints);
    			}
    			ast_stopstream(chan);
    
    			if (!res) {
    				if (strlen(fna) != 0 && !ast_streamfile(chan, fna, language)) {
    
    					if ((audiofd > -1) && (ctrlfd > -1))
    
    						res = ast_waitstream_full(chan, ints, audiofd, ctrlfd);
    					else
    						res = ast_waitstream(chan, ints);
    				}
    				ast_stopstream(chan);
    				strcpy(fna, "");
    
    Mark Spencer's avatar
    Mark Spencer committed
    	}
    	return res;
    }
    
    /*! \brief  ast_say_number_full_en_GB: British syntax
    
     New files:
      - In addition to American English, the following sounds are required:  "and"
    
    static int ast_say_number_full_en_GB(struct ast_channel *chan, int num, const char *ints, const char *language, int audiofd, int ctrlfd)