Asterisk - The Open Source Telephony Project GIT-master-754dea3
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Modules Pages
func_rand.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 2006, Digium, Inc.
5 * Copyright (C) 2006, Claude Patry
6 *
7 * See http://www.asterisk.org for more information about
8 * the Asterisk project. Please do not directly contact
9 * any of the maintainers of this project for assistance;
10 * the project provides a web site, mailing lists and IRC
11 * channels for your use.
12 *
13 * This program is free software, distributed under the terms of
14 * the GNU General Public License Version 2. See the LICENSE file
15 * at the top of the source tree.
16 */
17
18/*! \file
19 *
20 * \brief Generate Random Number
21 *
22 * \author Claude Patry <cpatry@gmail.com>
23 * \author Tilghman Lesher ( http://asterisk.drunkcoder.com/ )
24 * \ingroup functions
25 */
26
27/*** MODULEINFO
28 <support_level>core</support_level>
29 ***/
30
31#include "asterisk.h"
32
33#include "asterisk/module.h"
34#include "asterisk/channel.h"
35#include "asterisk/pbx.h"
36#include "asterisk/utils.h"
37#include "asterisk/app.h"
38
39/*** DOCUMENTATION
40 <function name="RAND" language="en_US">
41 <since>
42 <version>1.4.0</version>
43 </since>
44 <synopsis>
45 Choose a random number in a range.
46 </synopsis>
47 <syntax>
48 <parameter name="min" />
49 <parameter name="max" />
50 </syntax>
51 <description>
52 <para>Choose a random number between <replaceable>min</replaceable> and <replaceable>max</replaceable>.
53 <replaceable>min</replaceable> defaults to <literal>0</literal>, if not specified, while <replaceable>max</replaceable> defaults
54 to <literal>RAND_MAX</literal> (2147483647 on many systems).</para>
55 <example title="Set random number between 1 and 8, inclusive">
56 exten => s,1,Set(junky=${RAND(1,8)})
57 </example>
58 </description>
59 </function>
60 ***/
61static int acf_rand_exec(struct ast_channel *chan, const char *cmd,
62 char *parse, char *buffer, size_t buflen)
63{
64 int min_int, response_int, max_int;
68 );
69
71
72 if (ast_strlen_zero(args.min) || sscanf(args.min, "%30d", &min_int) != 1)
73 min_int = 0;
74
75 if (ast_strlen_zero(args.max) || sscanf(args.max, "%30d", &max_int) != 1)
76 max_int = RAND_MAX;
77
78 if (max_int < min_int) {
79 int tmp = max_int;
80
81 max_int = min_int;
82 min_int = tmp;
83 ast_debug(1, "max<min\n");
84 }
85
86 response_int = min_int + (ast_random() % (max_int - min_int + 1));
87 ast_debug(1, "%d was the lucky number in range [%d,%d]\n", response_int, min_int, max_int);
88 snprintf(buffer, buflen, "%d", response_int);
89
90 return 0;
91}
92
94 .name = "RAND",
95 .read = acf_rand_exec,
96 .read_max = 12,
97};
98
99static int unload_module(void)
100{
102
103 return 0;
104}
105
106static int load_module(void)
107{
109}
110
111AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Random number dialplan function");
Asterisk main include file. File version handling, generic pbx functions.
General Asterisk PBX channel definitions.
#define min(a, b)
Definition: f2c.h:197
#define max(a, b)
Definition: f2c.h:198
static int acf_rand_exec(struct ast_channel *chan, const char *cmd, char *parse, char *buffer, size_t buflen)
Definition: func_rand.c:61
static struct ast_custom_function acf_rand
Definition: func_rand.c:93
static int load_module(void)
Definition: func_rand.c:106
static int unload_module(void)
Definition: func_rand.c:99
Application convenience functions, designed to give consistent look and feel to Asterisk apps.
#define AST_APP_ARG(name)
Define an application argument.
#define AST_DECLARE_APP_ARGS(name, arglist)
Declare a structure to hold an application's arguments.
#define AST_STANDARD_APP_ARGS(args, parse)
Performs the 'standard' argument separation process for an application.
#define ast_debug(level,...)
Log a DEBUG message.
Asterisk module definitions.
#define AST_MODULE_INFO_STANDARD(keystr, desc)
Definition: module.h:581
#define ASTERISK_GPL_KEY
The text the key() function should return.
Definition: module.h:46
Core PBX routines and definitions.
#define ast_custom_function_register(acf)
Register a custom function.
Definition: pbx.h:1559
int ast_custom_function_unregister(struct ast_custom_function *acf)
Unregister a custom function.
static force_inline int attribute_pure ast_strlen_zero(const char *s)
Definition: strings.h:65
Main Channel structure associated with a channel.
Data structure associated with a custom dialplan function.
Definition: pbx.h:118
const char * name
Definition: pbx.h:119
const char * args
Utility functions.
long int ast_random(void)
Definition: utils.c:2312