mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-30 02:26:23 +00:00
* Added the "since" element to the XML configObject and configOption elements in appdocsxml.dtd. * Added the "Since" section to the following CLI output: ``` config show help <module> <object> config show help <module> <object> <option> core show application <app> core show function <func> manager show command <command> manager show event <event> agi show commands topic <topic> ``` * Refactored the commands above to output their sections in the same order: Synopsis, Since, Description, Syntax, Arguments, SeeAlso * Refactored the commands above so they all use the same pattern for writing the output to the CLI. * Fixed several memory leaks caused by failure to free temporary output buffers. * Added a "since" array to the mustache template for the top-level resources (Channel, Endpoint, etc.) and to the paths/methods underneath them. These will be added to the generated markdown if present. Example: ``` "resourcePath": "/api-docs/channels.{format}", "requiresModules": [ "res_stasis_answer", "res_stasis_playback", "res_stasis_recording", "res_stasis_snoop" ], "since": [ "18.0.0", "21.0.0" ], "apis": [ { "path": "/channels", "description": "Active channels", "operations": [ { "httpMethod": "GET", "since": [ "18.6.0", "21.8.0" ], "summary": "List all active channels in Asterisk.", "nickname": "list", "responseClass": "List[Channel]" }, ``` NOTE: No versioning information is actually added in this commit. Those will be added separately and instructions for adding and maintaining them will be published on the documentation site at a later date.
153 lines
5.0 KiB
C
153 lines
5.0 KiB
C
/*
|
|
* Asterisk -- An open source telephony toolkit.
|
|
*
|
|
* Copyright (C) 1999 - 2005, Digium, Inc.
|
|
*
|
|
* Mark Spencer <markster@digium.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.
|
|
*
|
|
* 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 AGI Extension interfaces - Asterisk Gateway Interface
|
|
*/
|
|
|
|
#ifndef _ASTERISK_AGI_H
|
|
#define _ASTERISK_AGI_H
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "asterisk/cli.h"
|
|
#include "asterisk/xmldoc.h"
|
|
#include "asterisk/optional_api.h"
|
|
|
|
typedef struct agi_state {
|
|
int fd; /*!< FD for general output */
|
|
int audio; /*!< FD for audio output */
|
|
int ctrl; /*!< FD for input control */
|
|
unsigned int fast:1; /*!< flag for fast agi or not */
|
|
struct ast_speech *speech; /*!< Speech structure for speech recognition */
|
|
} AGI;
|
|
|
|
typedef struct agi_command {
|
|
const char * const cmda[AST_MAX_CMD_LEN]; /*!< Null terminated list of the words of the command */
|
|
/*! Handler for the command (channel, AGI state, # of arguments, argument list).
|
|
Returns RESULT_SHOWUSAGE for improper arguments */
|
|
int (* const handler)(struct ast_channel *chan, AGI *agi, int argc, const char * const argv[]);
|
|
/*! Summary of the command (< 60 characters) */
|
|
const char * const summary;
|
|
/*! Detailed usage information */
|
|
const char * const usage;
|
|
/*! Does this application run dead */
|
|
const int dead;
|
|
/*! AGI command syntax description */
|
|
const char * const syntax;
|
|
/*! See also content */
|
|
const char * const seealso;
|
|
/*! Where the documentation come from. */
|
|
const enum ast_doc_src docsrc;
|
|
/*! Pointer to module that registered the agi command */
|
|
struct ast_module *mod;
|
|
/*! Linked list pointer */
|
|
AST_LIST_ENTRY(agi_command) list;
|
|
/*! Since content */
|
|
const char * const since;
|
|
/*! Syntax arguments content */
|
|
const char * const arguments;
|
|
} agi_command;
|
|
|
|
/*!
|
|
* \brief
|
|
*
|
|
* Registers an AGI command.
|
|
*
|
|
* \param mod Pointer to the module_info structure for the module that is registering the command
|
|
* \param cmd Pointer to the descriptor for the command
|
|
* \retval 1 on success
|
|
* \retval 0 the command is already registered
|
|
* \retval AST_OPTIONAL_API_UNAVAILABLE the module is not loaded.
|
|
*/
|
|
AST_OPTIONAL_API(int, ast_agi_register,
|
|
(struct ast_module *mod, agi_command *cmd),
|
|
{ return AST_OPTIONAL_API_UNAVAILABLE; });
|
|
|
|
/*!
|
|
* \brief
|
|
*
|
|
* Unregisters an AGI command.
|
|
*
|
|
* \param cmd Pointer to the descriptor for the command
|
|
* \return 1 on success, 0 if the command was not already registered
|
|
*
|
|
*/
|
|
AST_OPTIONAL_API(int, ast_agi_unregister,
|
|
(agi_command *cmd),
|
|
{ return AST_OPTIONAL_API_UNAVAILABLE; });
|
|
|
|
/*!
|
|
* \brief
|
|
*
|
|
* Registers a group of AGI commands, provided as an array of struct agi_command
|
|
* entries.
|
|
*
|
|
* \param mod Pointer to the module_info structure for the module that is registering the commands
|
|
* \param cmd Pointer to the first entry in the array of command descriptors
|
|
* \param len Length of the array (use the ARRAY_LEN macro to determine this easily)
|
|
* \return 0 on success, -1 on failure, AST_OPTIONAL_API_UNAVAILABLE if res_agi is not loaded
|
|
*
|
|
* \note If any command fails to register, all commands previously registered during the operation
|
|
* will be unregistered. In other words, this function registers all the provided commands, or none
|
|
* of them.
|
|
*/
|
|
AST_OPTIONAL_API(int, ast_agi_register_multiple,
|
|
(struct ast_module *mod, struct agi_command *cmd, unsigned int len),
|
|
{ return AST_OPTIONAL_API_UNAVAILABLE; });
|
|
|
|
/*!
|
|
* \brief
|
|
*
|
|
* Unregisters a group of AGI commands, provided as an array of struct agi_command
|
|
* entries.
|
|
*
|
|
* \param cmd Pointer to the first entry in the array of command descriptors
|
|
* \param len Length of the array (use the ARRAY_LEN macro to determine this easily)
|
|
* \return 0 on success, -1 on failure, AST_OPTIONAL_API_UNAVAILABLE if res_agi is not loaded
|
|
*
|
|
* \note If any command fails to unregister, this function will continue to unregister the
|
|
* remaining commands in the array; it will not reregister the already-unregistered commands.
|
|
*/
|
|
AST_OPTIONAL_API(int, ast_agi_unregister_multiple,
|
|
(struct agi_command *cmd, unsigned int len),
|
|
{ return AST_OPTIONAL_API_UNAVAILABLE; });
|
|
|
|
/*!
|
|
* \brief
|
|
*
|
|
* Sends a string of text to an application connected via AGI.
|
|
*
|
|
* \param fd The file descriptor for the AGI session (from struct agi_state)
|
|
* \param chan Pointer to an associated Asterisk channel, if any
|
|
* \param fmt printf-style format string
|
|
* \return 0 for success, -1 for failure, AST_OPTIONAL_API_UNAVAILABLE if res_agi is not loaded
|
|
*
|
|
*/
|
|
AST_OPTIONAL_API_ATTR(int, format(printf, 3, 4), ast_agi_send,
|
|
(int fd, struct ast_channel *chan, char *fmt, ...),
|
|
{ return AST_OPTIONAL_API_UNAVAILABLE; });
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif /* _ASTERISK_AGI_H */
|