aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-21 05:10:06 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-21 05:10:06 +0000
commit4c84c7f85db1da7bc8f3a7bf4731592d7d2a5e64 (patch)
tree5c923e2d71d0012dd99d806153467bfaf35c077e /apps
parentdeebb3f0ddbcf0720c0698987b54523101f5ef0a (diff)
Add new application for declining counting words in multiple languages.
(closes issue #16869) Reported by: chappell Patches: app_say_counted-20100317.c uploaded by chappell (license 8) Tested by: chappell git-svn-id: http://svn.digium.com/svn/asterisk/trunk@271520 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_saycounted.c202
1 files changed, 202 insertions, 0 deletions
diff --git a/apps/app_saycounted.c b/apps/app_saycounted.c
new file mode 100644
index 000000000..c840d8bb0
--- /dev/null
+++ b/apps/app_saycounted.c
@@ -0,0 +1,202 @@
+/*
+ * Asterisk -- An open source telephony toolkit.
+ *
+ * Copyright (C) 2008, Trinity College Computing Center
+ * Written by David Chappell
+ *
+ * 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.
+ *
+ * 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.
+ */
+
+/*! \file
+ *
+ * \brief Applications to decline words according to current language
+ *
+ * \author David Chappell <David.Chappell@trincoll.edu>
+ *
+ * \ingroup applications
+ */
+
+/*** MODULEINFO
+ <defaultenabled>no</defaultenabled>
+ ***/
+
+/*** DOCUMENTATION
+ <application name="SayCountedNoun" language="en_US">
+ <synopsis>
+ Say a noun in declined form in order to count things
+ </synopsis>
+ <syntax>
+ <parameter name="number" required="true">
+ <para>The number of things</para>
+ </parameter>
+ <parameter name="filename" required="true">
+ <para>File name stem for the noun that is the the name of the things</para>
+ </parameter>
+ </syntax>
+ <description>
+ <para>Selects and plays the proper singular or plural form of a noun
+ when saying things such as "five calls". English has simple rules
+ for deciding when to say "call" and when to say "calls", but other
+ languages have complicated rules which would be extremely difficult
+ to implement in the Asterisk dialplan language.</para>
+ <para>The correct sound file is selected by examining the
+ <replaceable>number</replaceable> and adding the appropriate suffix
+ to <replaceable>filename</replaceable>. If the channel language is
+ English, then the suffix will be either empty or "s". If the channel
+ language is Russian or some other Slavic language, then the suffix
+ will be empty for nominative, "x1" for genative singular, and "x2"
+ for genative plural.</para>
+ <para>Note that combining <replaceable>filename</replaceable> with
+ a suffix will not necessarily produce a correctly spelled plural
+ form. For example, SayCountedNoun(2,man) will play the sound file
+ "mans" rather than "men". This behavior is intentional. Since the
+ file name is never seen by the end user, there is no need to
+ implement complicated spelling rules. We simply record the word
+ "men" in the sound file named "mans".</para>
+ </description>
+ <see-also>
+ <ref type="application">SayCountedAdj</ref>
+ <ref type="application">SayNumber</ref>
+ </see-also>
+ </application>
+ <application name="SayCountedAdj" language="en_US">
+ <synopsis>
+ Say a adjective in declined form in order to count things
+ </synopsis>
+ <syntax>
+ <parameter name="number" required="true">
+ <para>The number of things</para>
+ </parameter>
+ <parameter name="filename" required="true">
+ <para>File name stem for the adjective</para>
+ </parameter>
+ <parameter name="gender">
+ <para>The gender of the noun modified, one of 'm', 'f', 'n', or 'c'</para>
+ </parameter>
+ </syntax>
+ <description>
+ <para>Selects and plays the proper form of an adjective according to
+ the gender and of the noun which it modifies and the number of
+ objects named by the noun-verb combination which have been counted.
+ Used when saying things such as "5 new messages". The various
+ singular and plural forms of the adjective are selected by adding
+ suffixes to <replaceable>filename</replaceable>.</para>
+ <para>If the channel language is English, then no suffix will ever
+ be added (since, in English, adjectives are not declined). If the
+ channel language is Russian or some other slavic language, then the
+ suffix will the specified <replaceable>gender</replaceable> for
+ nominative, and "x" for genative plural. (The genative singular is
+ not used when counting things.) For example, SayCountedAdj(1,new,f)
+ will play sound file "newa" (containing the word "novaya"), but
+ SayCountedAdj(5,new,f) will play sound file "newx" (containing the
+ word "novikh").</para>
+ </description>
+ <see-also>
+ <ref type="application">SayCountedNoun</ref>
+ <ref type="application">SayNumber</ref>
+ </see-also>
+ </application>
+ ***/
+
+#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
+#include "asterisk/logger.h"
+#include "asterisk/module.h"
+#include "asterisk/app.h"
+#include "asterisk/say.h"
+
+static int saycountednoun_exec(struct ast_channel *chan, const char *data)
+{
+ char *parse;
+ int number;
+ AST_DECLARE_APP_ARGS(args,
+ AST_APP_ARG(number);
+ AST_APP_ARG(noun);
+ );
+
+ if (ast_strlen_zero(data)) {
+ ast_log(LOG_WARNING, "SayCountedNoun requires two arguments (<number>,<noun>)\n");
+ return -1;
+ }
+
+ parse = ast_strdupa(data);
+ AST_STANDARD_APP_ARGS(args, parse);
+
+ if (args.argc != 2) {
+ ast_log(LOG_WARNING, "SayCountedNoun requires two arguments\n");
+ return -1;
+ }
+
+ if (sscanf(args.number, "%d", &number) != 1) {
+ ast_log(LOG_WARNING, "First argument must be a number between 0 and 2,147,483,647.\n");
+ return -1;
+ }
+
+ return ast_say_counted_noun(chan, number, args.noun);
+}
+
+static int saycountedadj_exec(struct ast_channel *chan, const char *data)
+{
+ char *parse;
+ int number;
+ AST_DECLARE_APP_ARGS(args,
+ AST_APP_ARG(number);
+ AST_APP_ARG(adjective);
+ AST_APP_ARG(gender);
+ );
+
+ if (ast_strlen_zero(data)) {
+ ast_log(LOG_WARNING, "SayCountedAdj requires two or three arguments (<number>,<adjective>[,<gender>])\n");
+ return -1;
+ }
+
+ parse = ast_strdupa(data);
+ AST_STANDARD_APP_ARGS(args, parse);
+
+ if (args.argc < 2) {
+ ast_log(LOG_WARNING, "SayCountedAdj requires at least two arguments\n");
+ return -1;
+ }
+
+ if (sscanf(args.number, "%d", &number) != 1) {
+ ast_log(LOG_WARNING, "First argument must be a number between 0 and 2,147,483,647.\n");
+ return -1;
+ }
+
+ if (!ast_strlen_zero(args.gender)) {
+ if (strchr("cCfFmMnN", args.gender[0])) {
+ ast_log(LOG_WARNING, "SayCountedAdj gender option must be one of 'f', 'm', 'c', or 'n'.\n");
+ return -1;
+ }
+ }
+
+ return ast_say_counted_adjective(chan, number, args.adjective, args.gender);
+}
+
+static int load_module(void)
+{
+ int res;
+ res = ast_register_application_xml("SayCountedNoun", saycountednoun_exec);
+ res |= ast_register_application_xml("SayCountedAdj", saycountedadj_exec);
+ return res;
+}
+
+static int unload_module(void)
+{
+ int res;
+ res = ast_unregister_application("SayCountedNoun");
+ res |= ast_unregister_application("SayCountedAdj");
+ return res;
+}
+
+AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Decline words according to channel language");