app_skel.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) <Year>, <Your Name Here>
  5. *
  6. * <Your Name Here> <<Your Email Here>>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. *
  18. * Please follow coding guidelines
  19. * https://wiki.asterisk.org/wiki/display/AST/Coding+Guidelines
  20. */
  21. /*! \file
  22. *
  23. * \brief Skeleton application
  24. *
  25. * \author\verbatim <Your Name Here> <<Your Email Here>> \endverbatim
  26. *
  27. * This is a skeleton for development of an Asterisk application
  28. * \ingroup applications
  29. */
  30. /*** MODULEINFO
  31. <defaultenabled>no</defaultenabled>
  32. <support_level>core</support_level>
  33. ***/
  34. #include "asterisk.h"
  35. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  36. #include <math.h> /* log10 */
  37. #include "asterisk/file.h"
  38. #include "asterisk/channel.h"
  39. #include "asterisk/pbx.h"
  40. #include "asterisk/module.h"
  41. #include "asterisk/lock.h"
  42. #include "asterisk/app.h"
  43. #include "asterisk/config.h"
  44. #include "asterisk/config_options.h"
  45. #include "asterisk/say.h"
  46. #include "asterisk/astobj2.h"
  47. #include "asterisk/acl.h"
  48. #include "asterisk/netsock2.h"
  49. #include "asterisk/strings.h"
  50. #include "asterisk/cli.h"
  51. /*** DOCUMENTATION
  52. <application name="SkelGuessNumber" language="en_US">
  53. <synopsis>
  54. An example number guessing game
  55. </synopsis>
  56. <syntax>
  57. <parameter name="level" required="true"/>
  58. <parameter name="options">
  59. <optionlist>
  60. <option name="c">
  61. <para>The computer should cheat</para>
  62. </option>
  63. <option name="n">
  64. <para>How many games to play before hanging up</para>
  65. </option>
  66. </optionlist>
  67. </parameter>
  68. </syntax>
  69. <description>
  70. <para>This simple number guessing application is a template to build other applications
  71. from. It shows you the basic structure to create your own Asterisk applications.</para>
  72. </description>
  73. </application>
  74. ***/
  75. static char *app = "SkelGuessNumber";
  76. enum option_flags {
  77. OPTION_CHEAT = (1 << 0),
  78. OPTION_NUMGAMES = (1 << 1),
  79. };
  80. enum option_args {
  81. OPTION_ARG_NUMGAMES,
  82. /* This *must* be the last value in this enum! */
  83. OPTION_ARG_ARRAY_SIZE,
  84. };
  85. AST_APP_OPTIONS(app_opts,{
  86. AST_APP_OPTION('c', OPTION_CHEAT),
  87. AST_APP_OPTION_ARG('n', OPTION_NUMGAMES, OPTION_ARG_NUMGAMES),
  88. });
  89. /*! \brief A structure to hold global configuration-related options */
  90. struct skel_global_config {
  91. AST_DECLARE_STRING_FIELDS(
  92. AST_STRING_FIELD(prompt); /*!< The comma-separated list of sounds to prompt to enter a number */
  93. AST_STRING_FIELD(wrong); /*!< The comma-separated list of sounds to indicate a wrong guess */
  94. AST_STRING_FIELD(right); /*!< The comma-separated list of sounds to indicate a right guess */
  95. AST_STRING_FIELD(high); /*!< The comma-separated list of sounds to indicate a high guess */
  96. AST_STRING_FIELD(low); /*!< The comma-separated list of sounds to indicate a low guess */
  97. AST_STRING_FIELD(lose); /*!< The comma-separated list of sounds to indicate a lost game */
  98. );
  99. uint32_t num_games; /*!< The number of games to play before hanging up */
  100. unsigned char cheat:1; /*!< Whether the computer can cheat or not */
  101. };
  102. /*! \brief A structure to maintain level state across reloads */
  103. struct skel_level_state {
  104. uint32_t wins; /*!< How many wins for this level */
  105. uint32_t losses; /*!< How many losses for this level */
  106. double avg_guesses; /*!< The average number of guesses to win for this level */
  107. };
  108. /*! \brief Object to hold level config information.
  109. * \note This object should hold a reference to an an object that holds state across reloads.
  110. * The other fields are just examples of the kind of data that might be stored in an level.
  111. */
  112. struct skel_level {
  113. AST_DECLARE_STRING_FIELDS(
  114. AST_STRING_FIELD(name); /*!< The name of the level */
  115. );
  116. uint32_t max_num; /*!< The upper value on th range of numbers to guess */
  117. uint32_t max_guesses; /*!< The maximum number of guesses before losing */
  118. struct skel_level_state *state; /*!< A pointer to level state that must exist across all reloads */
  119. };
  120. /*! \brief Information about a currently running set of games
  121. * \note Because we want to be able to show true running information about the games
  122. * regardless of whether or not a reload has modified what the level looks like, it
  123. * is important to either copy the information we need from the level to the
  124. * current_game struct, or as we do here, store a reference to the level as it is for
  125. * the running game.
  126. */
  127. struct skel_current_game {
  128. uint32_t total_games; /*! The total number of games for this call to to the app */
  129. uint32_t games_left; /*! How many games are left to play in this set */
  130. uint32_t cheat; /*! Whether or not cheating was enabled for the game */
  131. struct skel_level *level_info; /*! The level information for the running game */
  132. };
  133. /* Treat the levels as an array--there won't be many and this will maintain the order */
  134. #define LEVEL_BUCKETS 1
  135. /*! \brief A container that holds all config-related information
  136. * \note This object should contain a pointer to structs for global data and containers for
  137. * any levels that are configured. Objects of this type will be swapped out on reload. If an
  138. * level needs to maintain state across reloads, it needs to allocate a refcounted object to
  139. * hold that state and ensure that a reference is passed to that state when creating a new
  140. * level for reload. */
  141. struct skel_config {
  142. struct skel_global_config *global;
  143. struct ao2_container *levels;
  144. };
  145. /* Config Options API callbacks */
  146. /*! \brief Allocate a skel_config to hold a snapshot of the complete results of parsing a config
  147. * \internal
  148. * \returns A void pointer to a newly allocated skel_config
  149. */
  150. static void *skel_config_alloc(void);
  151. /*! \brief Allocate a skel_level based on a category in a configuration file
  152. * \param cat The category to base the level on
  153. * \returns A void pointer to a newly allocated skel_level
  154. */
  155. static void *skel_level_alloc(const char *cat);
  156. /*! \brief Find a skel level in the specified container
  157. * \note This function *does not* look for a skel_level in the active container. It is used
  158. * internally by the Config Options code to check if an level has already been added to the
  159. * container that will be swapped for the live container on a successul reload.
  160. *
  161. * \param container A non-active container to search for a level
  162. * \param category The category associated with the level to check for
  163. * \retval non-NULL The level from the container
  164. * \retval NULL The level does not exist in the container
  165. */
  166. static void *skel_level_find(struct ao2_container *tmp_container, const char *category);
  167. /*! \brief An aco_type structure to link the "general" category to the skel_global_config type */
  168. static struct aco_type global_option = {
  169. .type = ACO_GLOBAL,
  170. .item_offset = offsetof(struct skel_config, global),
  171. .category_match = ACO_WHITELIST,
  172. .category = "^general$",
  173. };
  174. struct aco_type *global_options[] = ACO_TYPES(&global_option);
  175. /*! \brief An aco_type structure to link the "sounds" category to the skel_global_config type */
  176. static struct aco_type sound_option = {
  177. .type = ACO_GLOBAL,
  178. .item_offset = offsetof(struct skel_config, global),
  179. .category_match = ACO_WHITELIST,
  180. .category = "^sounds$",
  181. };
  182. struct aco_type *sound_options[] = ACO_TYPES(&sound_option);
  183. /*! \brief An aco_type structure to link the everything but the "general" and "sounds" categories to the skel_level type */
  184. static struct aco_type level_option = {
  185. .type = ACO_ITEM,
  186. .category_match = ACO_BLACKLIST,
  187. .category = "^(general|sounds)$",
  188. .item_alloc = skel_level_alloc,
  189. .item_find = skel_level_find,
  190. .item_offset = offsetof(struct skel_config, levels),
  191. };
  192. struct aco_type *level_options[] = ACO_TYPES(&level_option);
  193. struct aco_file app_skel_conf = {
  194. .filename = "app_skel.conf",
  195. .types = ACO_TYPES(&global_option, &sound_option, &level_option),
  196. };
  197. /*! \brief A global object container that will contain the skel_config that gets swapped out on reloads */
  198. static AO2_GLOBAL_OBJ_STATIC(globals);
  199. /*! \brief The container of active games */
  200. static struct ao2_container *games;
  201. /*! \brief Register information about the configs being processed by this module */
  202. CONFIG_INFO_STANDARD(cfg_info, globals, skel_config_alloc,
  203. .files = ACO_FILES(&app_skel_conf),
  204. );
  205. static void skel_global_config_destructor(void *obj)
  206. {
  207. struct skel_global_config *global = obj;
  208. ast_string_field_free_memory(global);
  209. }
  210. static void skel_game_destructor(void *obj)
  211. {
  212. struct skel_current_game *game = obj;
  213. ao2_cleanup(game->level_info);
  214. }
  215. static void skel_state_destructor(void *obj)
  216. {
  217. return;
  218. }
  219. static struct skel_current_game *skel_game_alloc(struct skel_level *level)
  220. {
  221. struct skel_current_game *game;
  222. if (!(game = ao2_alloc(sizeof(struct skel_current_game), skel_game_destructor))) {
  223. return NULL;
  224. }
  225. ao2_ref(level, +1);
  226. game->level_info = level;
  227. return game;
  228. }
  229. static void skel_level_destructor(void *obj)
  230. {
  231. struct skel_level *level = obj;
  232. ast_string_field_free_memory(level);
  233. ao2_cleanup(level->state);
  234. }
  235. static int skel_level_hash(const void *obj, const int flags)
  236. {
  237. const struct skel_level *level = obj;
  238. const char *name = (flags & OBJ_KEY) ? obj : level->name;
  239. return ast_str_case_hash(name);
  240. }
  241. static int skel_level_cmp(void *obj, void *arg, int flags)
  242. {
  243. struct skel_level *one = obj, *two = arg;
  244. const char *match = (flags & OBJ_KEY) ? arg : two->name;
  245. return strcasecmp(one->name, match) ? 0 : (CMP_MATCH | CMP_STOP);
  246. }
  247. /*! \brief A custom bitfield handler
  248. * \internal
  249. * \note It is not possible to take the address of a bitfield, therefor all
  250. * bitfields in the config struct will have to use a custom handler
  251. * \param opt The opaque config option
  252. * \param var The ast_variable containing the option name and value
  253. * \param obj The object registerd for this option type
  254. * \retval 0 Success
  255. * \retval non-zero Failure
  256. */
  257. static int custom_bitfield_handler(const struct aco_option *opt, struct ast_variable *var, void *obj)
  258. {
  259. struct skel_global_config *global = obj;
  260. if (!strcasecmp(var->name, "cheat")) {
  261. global->cheat = ast_true(var->value);
  262. } else {
  263. return -1;
  264. }
  265. return 0;
  266. }
  267. static void play_files_helper(struct ast_channel *chan, const char *prompts)
  268. {
  269. char *prompt, *rest = ast_strdupa(prompts);
  270. ast_stopstream(chan);
  271. while ((prompt = strsep(&rest, "&")) && !ast_stream_and_wait(chan, prompt, "")) {
  272. ast_stopstream(chan);
  273. }
  274. }
  275. static int app_exec(struct ast_channel *chan, const char *data)
  276. {
  277. int win = 0;
  278. uint32_t guesses;
  279. RAII_VAR(struct skel_config *, cfg, ao2_global_obj_ref(globals), ao2_cleanup);
  280. RAII_VAR(struct skel_level *, level, NULL, ao2_cleanup);
  281. RAII_VAR(struct skel_current_game *, game, NULL, ao2_cleanup);
  282. char *parse, *opts[OPTION_ARG_ARRAY_SIZE];
  283. struct ast_flags flags;
  284. AST_DECLARE_APP_ARGS(args,
  285. AST_APP_ARG(level);
  286. AST_APP_ARG(options);
  287. );
  288. if (!cfg) {
  289. ast_log(LOG_ERROR, "Couldn't access configuratino data!\n");
  290. return -1;
  291. }
  292. if (ast_strlen_zero(data)) {
  293. ast_log(LOG_WARNING, "%s requires an argument (level[,options])\n", app);
  294. return -1;
  295. }
  296. /* We need to make a copy of the input string if we are going to modify it! */
  297. parse = ast_strdupa(data);
  298. AST_STANDARD_APP_ARGS(args, parse);
  299. if (args.argc == 2) {
  300. ast_app_parse_options(app_opts, &flags, opts, args.options);
  301. }
  302. if (ast_strlen_zero(args.level)) {
  303. ast_log(LOG_ERROR, "%s requires a level argument\n", app);
  304. return -1;
  305. }
  306. if (!(level = ao2_find(cfg->levels, args.level, OBJ_KEY))) {
  307. ast_log(LOG_ERROR, "Unknown level: %s\n", args.level);
  308. return -1;
  309. }
  310. if (!(game = skel_game_alloc(level))) {
  311. return -1;
  312. }
  313. ao2_link(games, game);
  314. /* Use app-specified values, or the options specified in [general] if they aren't passed to the app */
  315. if (!ast_test_flag(&flags, OPTION_NUMGAMES) ||
  316. ast_strlen_zero(opts[OPTION_ARG_NUMGAMES]) ||
  317. ast_parse_arg(opts[OPTION_ARG_NUMGAMES], PARSE_UINT32, &game->total_games)) {
  318. game->total_games = cfg->global->num_games;
  319. }
  320. game->games_left = game->total_games;
  321. game->cheat = ast_test_flag(&flags, OPTION_CHEAT) || cfg->global->cheat;
  322. for (game->games_left = game->total_games; game->games_left; game->games_left--) {
  323. uint32_t num = ast_random() % level->max_num; /* random number between 0 and level->max_num */
  324. ast_debug(1, "They should totally should guess %u\n", num);
  325. /* Play the prompt */
  326. play_files_helper(chan, cfg->global->prompt);
  327. ast_say_number(chan, level->max_num, "", ast_channel_language(chan), "");
  328. for (guesses = 0; guesses < level->max_guesses; guesses++) {
  329. size_t buflen = log10(level->max_num) + 1;
  330. char buf[buflen];
  331. int guess;
  332. buf[buflen] = '\0';
  333. /* Read the number pressed */
  334. ast_readstring(chan, buf, buflen - 1, 2000, 10000, "");
  335. if (ast_parse_arg(buf, PARSE_INT32 | PARSE_IN_RANGE, &guess, 0, level->max_num)) {
  336. if (guesses < level->max_guesses - 1) {
  337. play_files_helper(chan, cfg->global->wrong);
  338. }
  339. continue;
  340. }
  341. /* Inform whether the guess was right, low, or high */
  342. if (guess == num && !game->cheat) {
  343. /* win */
  344. win = 1;
  345. play_files_helper(chan, cfg->global->right);
  346. guesses++;
  347. break;
  348. } else if (guess < num) {
  349. play_files_helper(chan, cfg->global->low);
  350. } else {
  351. play_files_helper(chan, cfg->global->high);
  352. }
  353. if (guesses < level->max_guesses - 1) {
  354. play_files_helper(chan, cfg->global->wrong);
  355. }
  356. }
  357. /* Process game stats */
  358. ao2_lock(level->state);
  359. if (win) {
  360. ++level->state->wins;
  361. level->state->avg_guesses = ((level->state->wins - 1) * level->state->avg_guesses + guesses) / level->state->wins;
  362. } else {
  363. /* lose */
  364. level->state->losses++;
  365. play_files_helper(chan, cfg->global->lose);
  366. }
  367. ao2_unlock(level->state);
  368. }
  369. ao2_unlink(games, game);
  370. return 0;
  371. }
  372. static struct skel_level *skel_state_alloc(const char *name)
  373. {
  374. struct skel_level *level;
  375. if (!(level = ao2_alloc(sizeof(*level), skel_state_destructor))) {
  376. return NULL;
  377. }
  378. return level;
  379. }
  380. static void *skel_level_find(struct ao2_container *tmp_container, const char *category)
  381. {
  382. return ao2_find(tmp_container, category, OBJ_KEY);
  383. }
  384. /*! \brief Look up an existing state object, or create a new one
  385. * \internal
  386. * \note Since the reload code will create a new level from scratch, it
  387. * is important for any state that must persist between reloads to be
  388. * in a separate refcounted object. This function allows the level alloc
  389. * function to get a ref to an existing state object if it exists,
  390. * otherwise it will return a reference to a newly allocated state object.
  391. */
  392. static void *skel_find_or_create_state(const char *category)
  393. {
  394. RAII_VAR(struct skel_config *, cfg, ao2_global_obj_ref(globals), ao2_cleanup);
  395. RAII_VAR(struct skel_level *, level, NULL, ao2_cleanup);
  396. if (!cfg || !cfg->levels || !(level = ao2_find(cfg->levels, category, OBJ_KEY))) {
  397. return skel_state_alloc(category);
  398. }
  399. ao2_ref(level->state, +1);
  400. return level->state;
  401. }
  402. static void *skel_level_alloc(const char *cat)
  403. {
  404. struct skel_level *level;
  405. if (!(level = ao2_alloc(sizeof(*level), skel_level_destructor))) {
  406. return NULL;
  407. }
  408. if (ast_string_field_init(level, 128)) {
  409. ao2_ref(level, -1);
  410. return NULL;
  411. }
  412. /* Since the level has state information that needs to persist between reloads,
  413. * it is important to handle that here in the level's allocation function.
  414. * If not separated out into its own object, the data would be destroyed on
  415. * reload. */
  416. if (!(level->state = skel_find_or_create_state(cat))) {
  417. ao2_ref(level, -1);
  418. return NULL;
  419. }
  420. ast_string_field_set(level, name, cat);
  421. return level;
  422. }
  423. static void skel_config_destructor(void *obj)
  424. {
  425. struct skel_config *cfg = obj;
  426. ao2_cleanup(cfg->global);
  427. ao2_cleanup(cfg->levels);
  428. }
  429. static void *skel_config_alloc(void)
  430. {
  431. struct skel_config *cfg;
  432. if (!(cfg = ao2_alloc(sizeof(*cfg), skel_config_destructor))) {
  433. return NULL;
  434. }
  435. /* Allocate/initialize memory */
  436. if (!(cfg->global = ao2_alloc(sizeof(*cfg->global), skel_global_config_destructor))) {
  437. goto error;
  438. }
  439. if (ast_string_field_init(cfg->global, 128)) {
  440. goto error;
  441. }
  442. if (!(cfg->levels = ao2_container_alloc(LEVEL_BUCKETS, skel_level_hash, skel_level_cmp))) {
  443. goto error;
  444. }
  445. return cfg;
  446. error:
  447. ao2_ref(cfg, -1);
  448. return NULL;
  449. }
  450. static char *handle_skel_show_config(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
  451. {
  452. RAII_VAR(struct skel_config *, cfg, NULL, ao2_cleanup);
  453. switch(cmd) {
  454. case CLI_INIT:
  455. e->command = "skel show config";
  456. e->usage =
  457. "Usage: skel show config\n"
  458. " List app_skel global config\n";
  459. return NULL;
  460. case CLI_GENERATE:
  461. return NULL;
  462. }
  463. if (!(cfg = ao2_global_obj_ref(globals)) || !cfg->global) {
  464. return NULL;
  465. }
  466. ast_cli(a->fd, "games per call: %u\n", cfg->global->num_games);
  467. ast_cli(a->fd, "computer cheats: %s\n", AST_CLI_YESNO(cfg->global->cheat));
  468. ast_cli(a->fd, "\n");
  469. ast_cli(a->fd, "Sounds\n");
  470. ast_cli(a->fd, " prompt: %s\n", cfg->global->prompt);
  471. ast_cli(a->fd, " wrong guess: %s\n", cfg->global->wrong);
  472. ast_cli(a->fd, " right guess: %s\n", cfg->global->right);
  473. return CLI_SUCCESS;
  474. }
  475. static char *handle_skel_show_games(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
  476. {
  477. struct ao2_iterator iter;
  478. struct skel_current_game *game;
  479. switch(cmd) {
  480. case CLI_INIT:
  481. e->command = "skel show games";
  482. e->usage =
  483. "Usage: skel show games\n"
  484. " List app_skel active games\n";
  485. return NULL;
  486. case CLI_GENERATE:
  487. return NULL;
  488. }
  489. #define SKEL_FORMAT "%-15.15s %-15.15s %-15.15s\n"
  490. #define SKEL_FORMAT1 "%-15.15s %-15u %-15u\n"
  491. ast_cli(a->fd, SKEL_FORMAT, "Level", "Total Games", "Games Left");
  492. iter = ao2_iterator_init(games, 0);
  493. while ((game = ao2_iterator_next(&iter))) {
  494. ast_cli(a->fd, SKEL_FORMAT1, game->level_info->name, game->total_games, game->games_left);
  495. ao2_ref(game, -1);
  496. }
  497. ao2_iterator_destroy(&iter);
  498. #undef SKEL_FORMAT
  499. #undef SKEL_FORMAT1
  500. return CLI_SUCCESS;
  501. }
  502. static char *handle_skel_show_levels(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
  503. {
  504. RAII_VAR(struct skel_config *, cfg, NULL, ao2_cleanup);
  505. struct ao2_iterator iter;
  506. struct skel_level *level;
  507. switch(cmd) {
  508. case CLI_INIT:
  509. e->command = "skel show levels";
  510. e->usage =
  511. "Usage: skel show levels\n"
  512. " List the app_skel levels\n";
  513. return NULL;
  514. case CLI_GENERATE:
  515. return NULL;
  516. }
  517. if (!(cfg = ao2_global_obj_ref(globals)) || !cfg->levels) {
  518. return NULL;
  519. }
  520. #define SKEL_FORMAT "%-15.15s %-11.11s %-12.12s %-8.8s %-8.8s %-12.12s\n"
  521. #define SKEL_FORMAT1 "%-15.15s %-11u %-12u %-8u %-8u %-8f\n"
  522. ast_cli(a->fd, SKEL_FORMAT, "Name", "Max number", "Max Guesses", "Wins", "Losses", "Avg Guesses");
  523. iter = ao2_iterator_init(cfg->levels, 0);
  524. while ((level = ao2_iterator_next(&iter))) {
  525. ast_cli(a->fd, SKEL_FORMAT1, level->name, level->max_num, level->max_guesses, level->state->wins, level->state->losses, level->state->avg_guesses);
  526. ao2_ref(level, -1);
  527. }
  528. ao2_iterator_destroy(&iter);
  529. #undef SKEL_FORMAT
  530. #undef SKEL_FORMAT1
  531. return CLI_SUCCESS;
  532. }
  533. static struct ast_cli_entry skel_cli[] = {
  534. AST_CLI_DEFINE(handle_skel_show_config, "Show app_skel global config options"),
  535. AST_CLI_DEFINE(handle_skel_show_levels, "Show app_skel levels"),
  536. AST_CLI_DEFINE(handle_skel_show_games, "Show app_skel active games"),
  537. };
  538. static int reload_module(void)
  539. {
  540. if (aco_process_config(&cfg_info, 1) == ACO_PROCESS_ERROR) {
  541. return AST_MODULE_LOAD_DECLINE;
  542. }
  543. return 0;
  544. }
  545. static int unload_module(void)
  546. {
  547. ast_cli_unregister_multiple(skel_cli, ARRAY_LEN(skel_cli));
  548. aco_info_destroy(&cfg_info);
  549. ao2_global_obj_release(globals);
  550. ao2_cleanup(games);
  551. return ast_unregister_application(app);
  552. }
  553. static int load_module(void)
  554. {
  555. if (aco_info_init(&cfg_info)) {
  556. goto error;
  557. }
  558. if (!(games = ao2_container_alloc(1, NULL, NULL))) {
  559. goto error;
  560. }
  561. /* Global options */
  562. aco_option_register(&cfg_info, "games", ACO_EXACT, global_options, "3", OPT_UINT_T, 0, FLDSET(struct skel_global_config, num_games));
  563. aco_option_register_custom(&cfg_info, "cheat", ACO_EXACT, global_options, "no", custom_bitfield_handler, 0);
  564. /* Sound options */
  565. aco_option_register(&cfg_info, "prompt", ACO_EXACT, sound_options, "please-enter-your&number&queue-less-than", OPT_STRINGFIELD_T, 0, STRFLDSET(struct skel_global_config, prompt));
  566. aco_option_register(&cfg_info, "wrong_guess", ACO_EXACT, sound_options, "vm-pls-try-again", OPT_STRINGFIELD_T, 0, STRFLDSET(struct skel_global_config, wrong));
  567. aco_option_register(&cfg_info, "right_guess", ACO_EXACT, sound_options, "auth-thankyou", OPT_STRINGFIELD_T, 0, STRFLDSET(struct skel_global_config, right));
  568. aco_option_register(&cfg_info, "too_high", ACO_EXACT, sound_options, "high", OPT_STRINGFIELD_T, 0, STRFLDSET(struct skel_global_config, high));
  569. aco_option_register(&cfg_info, "too_low", ACO_EXACT, sound_options, "low", OPT_STRINGFIELD_T, 0, STRFLDSET(struct skel_global_config, low));
  570. aco_option_register(&cfg_info, "lose", ACO_EXACT, sound_options, "vm-goodbye", OPT_STRINGFIELD_T, 0, STRFLDSET(struct skel_global_config, lose));
  571. /* Level options */
  572. aco_option_register(&cfg_info, "max_number", ACO_EXACT, level_options, NULL, OPT_UINT_T, 0, FLDSET(struct skel_level, max_num));
  573. aco_option_register(&cfg_info, "max_guesses", ACO_EXACT, level_options, NULL, OPT_UINT_T, 1, FLDSET(struct skel_level, max_guesses));
  574. if (aco_process_config(&cfg_info, 0) == ACO_PROCESS_ERROR) {
  575. goto error;
  576. }
  577. ast_cli_register_multiple(skel_cli, ARRAY_LEN(skel_cli));
  578. if (ast_register_application_xml(app, app_exec)) {
  579. goto error;
  580. }
  581. return AST_MODULE_LOAD_SUCCESS;
  582. error:
  583. aco_info_destroy(&cfg_info);
  584. ao2_cleanup(games);
  585. return AST_MODULE_LOAD_DECLINE;
  586. }
  587. AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "Skeleton (sample) Application",
  588. .load = load_module,
  589. .unload = unload_module,
  590. .reload = reload_module,
  591. .load_pri = AST_MODPRI_DEFAULT,
  592. );