00001 /* 00002 * Asterisk -- An open source telephony toolkit. 00003 * 00004 * Copyright (C) 1999 - 2005, Digium, Inc. 00005 * 00006 * Mark Spencer <markster@digium.com> 00007 * See http://www.asterisk.org for more information about 00008 * the Asterisk project. Please do not directly contact 00009 * any of the maintainers of this project for assistance; 00010 * the project provides a web site, mailing lists and IRC 00011 * channels for your use. 00012 * 00013 * This program is free software, distributed under the terms of 00014 * the GNU General Public License Version 2. See the LICENSE file 00015 * at the top of the source tree. 00016 */ 00017 00018 /*! \file 00019 * \brief Application convenience functions, designed to give consistent 00020 * look and feel to Asterisk apps. 00021 */ 00022 00023 #ifndef _ASTERISK_APP_H 00024 #define _ASTERISK_APP_H 00025 00026 #include "asterisk/strings.h" 00027 #include "asterisk/threadstorage.h" 00028 00029 struct ast_flags64; 00030 00031 #if defined(__cplusplus) || defined(c_plusplus) 00032 extern "C" { 00033 #endif 00034 00035 AST_THREADSTORAGE_EXTERNAL(ast_str_thread_global_buf); 00036 00037 /* IVR stuff */ 00038 00039 /*! \brief Callback function for IVR 00040 \return returns 0 on completion, -1 on hangup or digit if interrupted 00041 */ 00042 typedef int (*ast_ivr_callback)(struct ast_channel *chan, char *option, void *cbdata); 00043 00044 typedef enum { 00045 AST_ACTION_UPONE, /*!< adata is unused */ 00046 AST_ACTION_EXIT, /*!< adata is the return value for ast_ivr_menu_run if channel was not hungup */ 00047 AST_ACTION_CALLBACK, /*!< adata is an ast_ivr_callback */ 00048 AST_ACTION_PLAYBACK, /*!< adata is file to play */ 00049 AST_ACTION_BACKGROUND, /*!< adata is file to play */ 00050 AST_ACTION_PLAYLIST, /*!< adata is list of files, separated by ; to play */ 00051 AST_ACTION_MENU, /*!< adata is a pointer to an ast_ivr_menu */ 00052 AST_ACTION_REPEAT, /*!< adata is max # of repeats, cast to a pointer */ 00053 AST_ACTION_RESTART, /*!< adata is like repeat, but resets repeats to 0 */ 00054 AST_ACTION_TRANSFER, /*!< adata is a string with exten\verbatim[@context]\endverbatim */ 00055 AST_ACTION_WAITOPTION, /*!< adata is a timeout, or 0 for defaults */ 00056 AST_ACTION_NOOP, /*!< adata is unused */ 00057 AST_ACTION_BACKLIST, /*!< adata is list of files separated by ; allows interruption */ 00058 } ast_ivr_action; 00059 00060 /*! 00061 Special "options" are: 00062 \arg "s" - "start here (one time greeting)" 00063 \arg "g" - "greeting/instructions" 00064 \arg "t" - "timeout" 00065 \arg "h" - "hangup" 00066 \arg "i" - "invalid selection" 00067 00068 */ 00069 struct ast_ivr_option { 00070 char *option; 00071 ast_ivr_action action; 00072 void *adata; 00073 }; 00074 00075 struct ast_ivr_menu { 00076 char *title; /*!< Title of menu */ 00077 unsigned int flags; /*!< Flags */ 00078 struct ast_ivr_option *options; /*!< All options */ 00079 }; 00080 00081 #define AST_IVR_FLAG_AUTORESTART (1 << 0) 00082 00083 #define AST_IVR_DECLARE_MENU(holder, title, flags, foo...) \ 00084 static struct ast_ivr_option __options_##holder[] = foo;\ 00085 static struct ast_ivr_menu holder = { title, flags, __options_##holder } 00086 00087 enum ast_timelen { 00088 TIMELEN_HOURS, 00089 TIMELEN_MINUTES, 00090 TIMELEN_SECONDS, 00091 TIMELEN_MILLISECONDS, 00092 }; 00093 00094 /*! \brief Runs an IVR menu 00095 \return returns 0 on successful completion, -1 on hangup, or -2 on user error in menu */ 00096 int ast_ivr_menu_run(struct ast_channel *c, struct ast_ivr_menu *menu, void *cbdata); 00097 00098 /*! \brief Plays a stream and gets DTMF data from a channel 00099 * \param c Which channel one is interacting with 00100 * \param prompt File to pass to ast_streamfile (the one that you wish to play). 00101 * It is also valid for this to be multiple files concatenated by "&". 00102 * For example, "file1&file2&file3". 00103 * \param s The location where the DTMF data will be stored 00104 * \param maxlen Max Length of the data 00105 * \param timeout Timeout length waiting for data(in milliseconds). Set to 0 for standard timeout(six seconds), or -1 for no time out. 00106 * 00107 * This function was designed for application programmers for situations where they need 00108 * to play a message and then get some DTMF data in response to the message. If a digit 00109 * is pressed during playback, it will immediately break out of the message and continue 00110 * execution of your code. 00111 */ 00112 int ast_app_getdata(struct ast_channel *c, const char *prompt, char *s, int maxlen, int timeout); 00113 00114 /*! \brief Full version with audiofd and controlfd. NOTE: returns '2' on ctrlfd available, not '1' like other full functions */ 00115 int ast_app_getdata_full(struct ast_channel *c, const char *prompt, char *s, int maxlen, int timeout, int audiofd, int ctrlfd); 00116 00117 /*! 00118 * \since 1.6.3 00119 * \brief Run a macro on a channel, placing a second channel into autoservice. 00120 * 00121 * This is a shorthand method that makes it very easy to run a macro on any given 00122 * channel. It is perfectly reasonable to supply a NULL autoservice_chan here in case 00123 * there is no channel to place into autoservice. It is very important that the 00124 * autoservice_chan parameter is not locked prior to calling ast_app_run_macro. A 00125 * deadlock could result, otherwise. 00126 * 00127 * \param autoservice_chan A channel to place into autoservice while the macro is run 00128 * \param macro_chan The channel to run the macro on 00129 * \param macro_name The name of the macro to run 00130 * \param macro_args The arguments to pass to the macro 00131 * \retval 0 success 00132 * \retval -1 failure 00133 */ 00134 int ast_app_run_macro(struct ast_channel *autoservice_chan, struct ast_channel 00135 *macro_chan, const char * const macro_name, const char * const macro_args); 00136 00137 /*! 00138 * \brief Set voicemail function callbacks 00139 * \param[in] inboxcount2_func set function pointer 00140 * \param[in] sayname_func set function pointer 00141 * \param[in] inboxcount_func set function pointer 00142 * \param[in] messagecount_func set function pointer 00143 * \version 1.6.1 Added inboxcount2_func, sayname_func 00144 */ 00145 void ast_install_vm_functions(int (*has_voicemail_func)(const char *mailbox, const char *folder), 00146 int (*inboxcount_func)(const char *mailbox, int *newmsgs, int *oldmsgs), 00147 int (*inboxcount2_func)(const char *mailbox, int *urgentmsgs, int *newmsgs, int *oldmsgs), 00148 int (*messagecount_func)(const char *context, const char *mailbox, const char *folder), 00149 int (*sayname_func)(struct ast_channel *chan, const char *mailbox, const char *context)); 00150 00151 void ast_uninstall_vm_functions(void); 00152 00153 /*! \brief Determine if a given mailbox has any voicemail */ 00154 int ast_app_has_voicemail(const char *mailbox, const char *folder); 00155 00156 /*! \brief Determine number of new/old messages in a mailbox */ 00157 int ast_app_inboxcount(const char *mailbox, int *newmsgs, int *oldmsgs); 00158 00159 /*! 00160 * \brief Determine number of urgent/new/old messages in a mailbox 00161 * \param[in] mailbox the mailbox context to use 00162 * \param[out] urgentmsgs the urgent message count 00163 * \param[out] newmsgs the new message count 00164 * \param[out] oldmsgs the old message count 00165 * \return Returns 0 for success, negative upon error 00166 * \since 1.6.1 00167 */ 00168 int ast_app_inboxcount2(const char *mailbox, int *urgentmsgs, int *newmsgs, int *oldmsgs); 00169 00170 /*! 00171 * \brief Given a mailbox and context, play that mailbox owner's name to the channel specified 00172 * \param[in] chan channel to announce name to 00173 * \param[in] mailbox mailbox to retrieve name for 00174 * \param[in] context context to retrieve name for 00175 * \return Returns 0 for success, negative upon error 00176 * \since 1.6.1 00177 */ 00178 int ast_app_sayname(struct ast_channel *chan, const char *mailbox, const char *context); 00179 00180 /*! \brief Determine number of messages in a given mailbox and folder */ 00181 int ast_app_messagecount(const char *context, const char *mailbox, const char *folder); 00182 00183 /*! \brief Safely spawn an external program while closing file descriptors 00184 \note This replaces the \b system call in all Asterisk modules 00185 */ 00186 int ast_safe_system(const char *s); 00187 00188 /*! 00189 * \brief Replace the SIGCHLD handler 00190 * 00191 * Normally, Asterisk has a SIGCHLD handler that is cleaning up all zombie 00192 * processes from forking elsewhere in Asterisk. However, if you want to 00193 * wait*() on the process to retrieve information about it's exit status, 00194 * then this signal handler needs to be temporarily replaced. 00195 * 00196 * Code that executes this function *must* call ast_unreplace_sigchld() 00197 * after it is finished doing the wait*(). 00198 */ 00199 void ast_replace_sigchld(void); 00200 00201 /*! 00202 * \brief Restore the SIGCHLD handler 00203 * 00204 * This function is called after a call to ast_replace_sigchld. It restores 00205 * the SIGCHLD handler that cleans up any zombie processes. 00206 */ 00207 void ast_unreplace_sigchld(void); 00208 00209 /*! 00210 \brief Send DTMF to a channel 00211 00212 \param chan The channel that will receive the DTMF frames 00213 \param peer (optional) Peer channel that will be autoserviced while the 00214 primary channel is receiving DTMF 00215 \param digits This is a string of characters representing the DTMF digits 00216 to be sent to the channel. Valid characters are 00217 "0123456789*#abcdABCD". Note: You can pass arguments 'f' or 00218 'F', if you want to Flash the channel (if supported by the 00219 channel), or 'w' to add a 500 millisecond pause to the DTMF 00220 sequence. 00221 \param between This is the number of milliseconds to wait in between each 00222 DTMF digit. If zero milliseconds is specified, then the 00223 default value of 100 will be used. 00224 \param duration This is the duration that each DTMF digit should have. 00225 */ 00226 int ast_dtmf_stream(struct ast_channel *chan, struct ast_channel *peer, const char *digits, int between, unsigned int duration); 00227 00228 /*! \brief Stream a filename (or file descriptor) as a generator. */ 00229 int ast_linear_stream(struct ast_channel *chan, const char *filename, int fd, int allowoverride); 00230 00231 /*! 00232 * \brief Stream a file with fast forward, pause, reverse, restart. 00233 * \param chan 00234 * \param file filename 00235 * \param fwd, rev, stop, pause, restart, skipms, offsetms 00236 * 00237 * Before calling this function, set this to be the number 00238 * of ms to start from the beginning of the file. When the function 00239 * returns, it will be the number of ms from the beginning where the 00240 * playback stopped. Pass NULL if you don't care. 00241 */ 00242 int ast_control_streamfile(struct ast_channel *chan, const char *file, const char *fwd, const char *rev, const char *stop, const char *pause, const char *restart, int skipms, long *offsetms); 00243 00244 /*! \brief Play a stream and wait for a digit, returning the digit that was pressed */ 00245 int ast_play_and_wait(struct ast_channel *chan, const char *fn); 00246 00247 int ast_play_and_record_full(struct ast_channel *chan, const char *playfile, const char *recordfile, int maxtime_sec, const char *fmt, int *duration, int silencethreshold, int maxsilence_ms, const char *path, const char *acceptdtmf, const char *canceldtmf); 00248 00249 /*! \brief Record a file for a max amount of time (in seconds), in a given list of formats separated by '|', outputting the duration of the recording, and with a maximum 00250 \n 00251 permitted silence time in milliseconds of 'maxsilence' under 'silencethreshold' or use '-1' for either or both parameters for defaults. 00252 calls ast_unlock_path() on 'path' if passed */ 00253 int ast_play_and_record(struct ast_channel *chan, const char *playfile, const char *recordfile, int maxtime_sec, const char *fmt, int *duration, int silencethreshold, int maxsilence_ms, const char *path); 00254 00255 /*! \brief Record a message and prepend the message to the given record file after 00256 playing the optional playfile (or a beep), storing the duration in 00257 'duration' and with a maximum permitted silence time in milliseconds of 'maxsilence' under 00258 'silencethreshold' or use '-1' for either or both parameters for defaults. */ 00259 int ast_play_and_prepend(struct ast_channel *chan, char *playfile, char *recordfile, int maxtime_sec, char *fmt, int *duration, int beep, int silencethreshold, int maxsilence_ms); 00260 00261 enum ast_getdata_result { 00262 AST_GETDATA_FAILED = -1, 00263 AST_GETDATA_COMPLETE = 0, 00264 AST_GETDATA_TIMEOUT = 1, 00265 AST_GETDATA_INTERRUPTED = 2, 00266 /*! indicates a user terminated empty string rather than an empty string resulting 00267 * from a timeout or other factors */ 00268 AST_GETDATA_EMPTY_END_TERMINATED = 3, 00269 }; 00270 00271 enum AST_LOCK_RESULT { 00272 AST_LOCK_SUCCESS = 0, 00273 AST_LOCK_TIMEOUT = -1, 00274 AST_LOCK_PATH_NOT_FOUND = -2, 00275 AST_LOCK_FAILURE = -3, 00276 }; 00277 00278 /*! \brief Type of locking to use in ast_lock_path / ast_unlock_path */ 00279 enum AST_LOCK_TYPE { 00280 AST_LOCK_TYPE_LOCKFILE = 0, 00281 AST_LOCK_TYPE_FLOCK = 1, 00282 }; 00283 00284 /*! 00285 * \brief Set the type of locks used by ast_lock_path() 00286 * \param type the locking type to use 00287 */ 00288 void ast_set_lock_type(enum AST_LOCK_TYPE type); 00289 00290 /*! 00291 * \brief Lock a filesystem path. 00292 * \param path the path to be locked 00293 * \return one of \ref AST_LOCK_RESULT values 00294 */ 00295 enum AST_LOCK_RESULT ast_lock_path(const char *path); 00296 00297 /*! \brief Unlock a path */ 00298 int ast_unlock_path(const char *path); 00299 00300 /*! \brief Read a file into asterisk*/ 00301 char *ast_read_textfile(const char *file); 00302 00303 struct ast_group_info; 00304 00305 /*! \brief Split a group string into group and category, returning a default category if none is provided. */ 00306 int ast_app_group_split_group(const char *data, char *group, int group_max, char *category, int category_max); 00307 00308 /*! \brief Set the group for a channel, splitting the provided data into group and category, if specified. */ 00309 int ast_app_group_set_channel(struct ast_channel *chan, const char *data); 00310 00311 /*! \brief Get the current channel count of the specified group and category. */ 00312 int ast_app_group_get_count(const char *group, const char *category); 00313 00314 /*! \brief Get the current channel count of all groups that match the specified pattern and category. */ 00315 int ast_app_group_match_get_count(const char *groupmatch, const char *category); 00316 00317 /*! \brief Discard all group counting for a channel */ 00318 int ast_app_group_discard(struct ast_channel *chan); 00319 00320 /*! \brief Update all group counting for a channel to a new one */ 00321 int ast_app_group_update(struct ast_channel *oldchan, struct ast_channel *newchan); 00322 00323 /*! \brief Write Lock the group count list */ 00324 int ast_app_group_list_wrlock(void); 00325 00326 /*! \brief Read Lock the group count list */ 00327 int ast_app_group_list_rdlock(void); 00328 00329 /*! \brief Get the head of the group count list */ 00330 struct ast_group_info *ast_app_group_list_head(void); 00331 00332 /*! \brief Unlock the group count list */ 00333 int ast_app_group_list_unlock(void); 00334 00335 /*! 00336 \brief Define an application argument 00337 \param name The name of the argument 00338 */ 00339 #define AST_APP_ARG(name) char *name 00340 00341 /*! 00342 \brief Declare a structure to hold an application's arguments. 00343 \param name The name of the structure 00344 \param arglist The list of arguments, defined using AST_APP_ARG 00345 00346 This macro declares a structure intended to be used in a call 00347 to ast_app_separate_args(). The structure includes all the 00348 arguments specified, plus an argv array that overlays them and an 00349 argc argument counter. The arguments must be declared using AST_APP_ARG, 00350 and they will all be character pointers (strings). 00351 00352 \note The structure is <b>not</b> initialized, as the call to 00353 ast_app_separate_args() will perform that function before parsing 00354 the arguments. 00355 */ 00356 #define AST_DECLARE_APP_ARGS(name, arglist) AST_DEFINE_APP_ARGS_TYPE(, arglist) name 00357 00358 /*! 00359 \brief Define a structure type to hold an application's arguments. 00360 \param type The name of the structure type 00361 \param arglist The list of arguments, defined using AST_APP_ARG 00362 00363 This macro defines a structure type intended to be used in a call 00364 to ast_app_separate_args(). The structure includes all the 00365 arguments specified, plus an argv array that overlays them and an 00366 argc argument counter. The arguments must be declared using AST_APP_ARG, 00367 and they will all be character pointers (strings). 00368 00369 \note This defines a structure type, but does not declare an instance 00370 of the structure. That must be done separately. 00371 */ 00372 #define AST_DEFINE_APP_ARGS_TYPE(type, arglist) \ 00373 struct type { \ 00374 unsigned int argc; \ 00375 char *argv[0]; \ 00376 arglist \ 00377 } 00378 00379 /*! 00380 \brief Performs the 'standard' argument separation process for an application. 00381 \param args An argument structure defined using AST_DECLARE_APP_ARGS 00382 \param parse A modifiable buffer containing the input to be parsed 00383 00384 This function will separate the input string using the standard argument 00385 separator character ',' and fill in the provided structure, including 00386 the argc argument counter field. 00387 */ 00388 #define AST_STANDARD_APP_ARGS(args, parse) \ 00389 args.argc = __ast_app_separate_args(parse, ',', 1, args.argv, ((sizeof(args) - offsetof(typeof(args), argv)) / sizeof(args.argv[0]))) 00390 #define AST_STANDARD_RAW_ARGS(args, parse) \ 00391 args.argc = __ast_app_separate_args(parse, ',', 0, args.argv, ((sizeof(args) - offsetof(typeof(args), argv)) / sizeof(args.argv[0]))) 00392 00393 /*! 00394 \brief Performs the 'nonstandard' argument separation process for an application. 00395 \param args An argument structure defined using AST_DECLARE_APP_ARGS 00396 \param parse A modifiable buffer containing the input to be parsed 00397 \param sep A nonstandard separator character 00398 00399 This function will separate the input string using the nonstandard argument 00400 separator character and fill in the provided structure, including 00401 the argc argument counter field. 00402 */ 00403 #define AST_NONSTANDARD_APP_ARGS(args, parse, sep) \ 00404 args.argc = __ast_app_separate_args(parse, sep, 1, args.argv, ((sizeof(args) - offsetof(typeof(args), argv)) / sizeof(args.argv[0]))) 00405 #define AST_NONSTANDARD_RAW_ARGS(args, parse, sep) \ 00406 args.argc = __ast_app_separate_args(parse, sep, 0, args.argv, ((sizeof(args) - offsetof(typeof(args), argv)) / sizeof(args.argv[0]))) 00407 00408 /*! 00409 \brief Separate a string into arguments in an array 00410 \param buf The string to be parsed (this must be a writable copy, as it will be modified) 00411 \param delim The character to be used to delimit arguments 00412 \param remove_chars Remove backslashes and quote characters, while parsing 00413 \param array An array of 'char *' to be filled in with pointers to the found arguments 00414 \param arraylen The number of elements in the array (i.e. the number of arguments you will accept) 00415 00416 Note: if there are more arguments in the string than the array will hold, the last element of 00417 the array will contain the remaining arguments, not separated. 00418 00419 The array will be completely zeroed by this function before it populates any entries. 00420 00421 \return The number of arguments found, or zero if the function arguments are not valid. 00422 */ 00423 unsigned int __ast_app_separate_args(char *buf, char delim, int remove_chars, char **array, int arraylen); 00424 #define ast_app_separate_args(a,b,c,d) __ast_app_separate_args(a,b,1,c,d) 00425 00426 /*! 00427 \brief A structure to hold the description of an application 'option'. 00428 00429 Application 'options' are single-character flags that can be supplied 00430 to the application to affect its behavior; they can also optionally 00431 accept arguments enclosed in parenthesis. 00432 00433 These structures are used by the ast_app_parse_options function, uses 00434 this data to fill in a flags structure (to indicate which options were 00435 supplied) and array of argument pointers (for those options that had 00436 arguments supplied). 00437 */ 00438 struct ast_app_option { 00439 /*! \brief The flag bit that represents this option. */ 00440 uint64_t flag; 00441 /*! \brief The index of the entry in the arguments array 00442 that should be used for this option's argument. */ 00443 unsigned int arg_index; 00444 }; 00445 00446 #define BEGIN_OPTIONS { 00447 #define END_OPTIONS } 00448 00449 /*! 00450 \brief Declares an array of options for an application. 00451 \param holder The name of the array to be created 00452 \param options The actual options to be placed into the array 00453 \sa ast_app_parse_options 00454 00455 This macro declares a 'static const' array of \c struct \c ast_option 00456 elements to hold the list of available options for an application. 00457 Each option must be declared using either the AST_APP_OPTION() 00458 or AST_APP_OPTION_ARG() macros. 00459 00460 Example usage: 00461 \code 00462 enum my_app_option_flags { 00463 OPT_JUMP = (1 << 0), 00464 OPT_BLAH = (1 << 1), 00465 OPT_BLORT = (1 << 2), 00466 }; 00467 00468 enum my_app_option_args { 00469 OPT_ARG_BLAH = 0, 00470 OPT_ARG_BLORT, 00471 !! this entry tells how many possible arguments there are, 00472 and must be the last entry in the list 00473 OPT_ARG_ARRAY_SIZE, 00474 }; 00475 00476 AST_APP_OPTIONS(my_app_options, { 00477 AST_APP_OPTION('j', OPT_JUMP), 00478 AST_APP_OPTION_ARG('b', OPT_BLAH, OPT_ARG_BLAH), 00479 AST_APP_OPTION_BLORT('B', OPT_BLORT, OPT_ARG_BLORT), 00480 }); 00481 00482 static int my_app_exec(struct ast_channel *chan, void *data) 00483 { 00484 char *options; 00485 struct ast_flags opts = { 0, }; 00486 char *opt_args[OPT_ARG_ARRAY_SIZE]; 00487 00488 ... do any argument parsing here ... 00489 00490 if (ast_parseoptions(my_app_options, &opts, opt_args, options)) { 00491 ast_module_user_remove(u); 00492 return -1; 00493 } 00494 } 00495 \endcode 00496 */ 00497 #define AST_APP_OPTIONS(holder, options...) \ 00498 static const struct ast_app_option holder[128] = options 00499 00500 /*! 00501 \brief Declares an application option that does not accept an argument. 00502 \param option The single character representing the option 00503 \param flagno The flag index to be set if this option is present 00504 \sa AST_APP_OPTIONS, ast_app_parse_options 00505 */ 00506 #define AST_APP_OPTION(option, flagno) \ 00507 [option] = { .flag = flagno } 00508 00509 /*! 00510 \brief Declares an application option that accepts an argument. 00511 \param option The single character representing the option 00512 \param flagno The flag index to be set if this option is present 00513 \param argno The index into the argument array where the argument should 00514 be placed 00515 \sa AST_APP_OPTIONS, ast_app_parse_options 00516 */ 00517 #define AST_APP_OPTION_ARG(option, flagno, argno) \ 00518 [option] = { .flag = flagno, .arg_index = argno + 1 } 00519 00520 /*! 00521 \brief Parses a string containing application options and sets flags/arguments. 00522 \param options The array of possible options declared with AST_APP_OPTIONS 00523 \param flags The flag structure to have option flags set 00524 \param args The array of argument pointers to hold arguments found 00525 \param optstr The string containing the options to be parsed 00526 \return zero for success, non-zero if an error occurs 00527 \sa AST_APP_OPTIONS 00528 */ 00529 int ast_app_parse_options(const struct ast_app_option *options, struct ast_flags *flags, char **args, char *optstr); 00530 00531 /*! 00532 \brief Parses a string containing application options and sets flags/arguments. 00533 \param options The array of possible options declared with AST_APP_OPTIONS 00534 \param flags The 64-bit flag structure to have option flags set 00535 \param args The array of argument pointers to hold arguments found 00536 \param optstr The string containing the options to be parsed 00537 \return zero for success, non-zero if an error occurs 00538 \sa AST_APP_OPTIONS 00539 */ 00540 int ast_app_parse_options64(const struct ast_app_option *options, struct ast_flags64 *flags, char **args, char *optstr); 00541 00542 /*! \brief Given a list of options array, return an option string based on passed flags 00543 \param options The array of possible options declared with AST_APP_OPTIONS 00544 \param flags The flags of the options that you wish to populate the buffer with 00545 \param buf The buffer to fill with the string of options 00546 \param len The maximum length of buf 00547 */ 00548 void ast_app_options2str64(const struct ast_app_option *options, struct ast_flags64 *flags, char *buf, size_t len); 00549 00550 /*! \brief Present a dialtone and collect a certain length extension. 00551 \return Returns 1 on valid extension entered, -1 on hangup, or 0 on invalid extension. 00552 \note Note that if 'collect' holds digits already, new digits will be appended, so be sure it's initialized properly */ 00553 int ast_app_dtget(struct ast_channel *chan, const char *context, char *collect, size_t size, int maxlen, int timeout); 00554 00555 /*! \brief Allow to record message and have a review option */ 00556 int ast_record_review(struct ast_channel *chan, const char *playfile, const char *recordfile, int maxtime, const char *fmt, int *duration, const char *path); 00557 00558 /*! \brief Decode an encoded control or extended ASCII character 00559 \return Returns a pointer to the result string 00560 */ 00561 int ast_get_encoded_char(const char *stream, char *result, size_t *consumed); 00562 00563 /*! \brief Decode a stream of encoded control or extended ASCII characters */ 00564 char *ast_get_encoded_str(const char *stream, char *result, size_t result_len); 00565 00566 /*! \brief Decode a stream of encoded control or extended ASCII characters */ 00567 int ast_str_get_encoded_str(struct ast_str **str, int maxlen, const char *stream); 00568 00569 /*! 00570 * \brief Common routine for child processes, to close all fds prior to exec(2) 00571 * \param[in] n starting file descriptor number for closing all higher file descriptors 00572 * \since 1.6.1 00573 */ 00574 void ast_close_fds_above_n(int n); 00575 00576 /*! 00577 * \brief Common routine to safely fork without a chance of a signal handler firing badly in the child 00578 * \param[in] stop_reaper flag to determine if sigchld handler is replaced or not 00579 * \since 1.6.1 00580 */ 00581 int ast_safe_fork(int stop_reaper); 00582 00583 /*! 00584 * \brief Common routine to cleanup after fork'ed process is complete (if reaping was stopped) 00585 * \since 1.6.1 00586 */ 00587 void ast_safe_fork_cleanup(void); 00588 00589 /*! 00590 * \brief Common routine to parse time lengths, with optional time unit specifier 00591 * \param[in] timestr String to parse 00592 * \param[in] defunit Default unit type 00593 * \param[out] result Resulting value, specified in milliseconds 00594 * \retval 0 Success 00595 * \retval -1 Failure 00596 * \since 1.8 00597 */ 00598 int ast_app_parse_timelen(const char *timestr, int *result, enum ast_timelen defunit); 00599 00600 #if defined(__cplusplus) || defined(c_plusplus) 00601 } 00602 #endif 00603 00604 #endif /* _ASTERISK_APP_H */
1.5.6