123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- /*
- * 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 Standard Command Line Interface
- */
- #ifndef _ASTERISK_CLI_H
- #define _ASTERISK_CLI_H
- #if defined(__cplusplus) || defined(c_plusplus)
- extern "C" {
- #endif
- #include "asterisk/linkedlists.h"
- #include "asterisk/strings.h"
- void ast_cli(int fd, const char *fmt, ...)
- __attribute__((format(printf, 2, 3)));
- /* dont check permissions while passing this option as a 'uid'
- * to the cli_has_permissions() function. */
- #define CLI_NO_PERMS -1
- #define RESULT_SUCCESS 0
- #define RESULT_SHOWUSAGE 1
- #define RESULT_FAILURE 2
- #define CLI_SUCCESS (char *)RESULT_SUCCESS
- #define CLI_SHOWUSAGE (char *)RESULT_SHOWUSAGE
- #define CLI_FAILURE (char *)RESULT_FAILURE
- #define AST_MAX_CMD_LEN 16
- #define AST_MAX_ARGS 64
- #define AST_CLI_COMPLETE_EOF "_EOF_"
- /*!
- * In many cases we need to print singular or plural
- * words depending on a count. This macro helps us e.g.
- * printf("we have %d object%s", n, ESS(n));
- */
- #define ESS(x) ((x) == 1 ? "" : "s")
- /*!
- * \brief Return Yes or No depending on the argument.
- *
- * Note that this should probably still be used for CLI commands instead of
- * AST_YESNO(), in the off chance we someday want to translate the CLI.
- *
- * \param x Boolean value
- * \return "Yes" if x is true (non-zero)
- * \return "No" if x is false (zero)
- */
- #define AST_CLI_YESNO(x) AST_YESNO(x)
- /*! \brief return On or Off depending on the argument.
- * This is used in many places in CLI command, having a function to generate
- * this helps maintaining a consistent output (and possibly emitting the
- * output in other languages, at some point).
- */
- #define AST_CLI_ONOFF(x) (x) ? "On" : "Off"
- /*! \page CLI_command_API CLI command API
- CLI commands are described by a struct ast_cli_entry that contains
- all the components for their implementation.
- In the "old-style" format, the record must contain:
- - a NULL-terminated array of words constituting the command, e.g.
- { "set", "debug", "on", NULL },
- - a summary string (short) and a usage string (longer);
- - a handler which implements the command itself, invoked with
- a file descriptor and argc/argv as typed by the user
- - a 'generator' function which, given a partial string, can
- generate legal completions for it.
- An example is
- int old_setdebug(int fd, int argc, char *argv[]);
- char *dbg_complete(const char *line, const char *word, int pos, int n);
- { { "set", "debug", "on", NULL }, do_setdebug, "Enable debugging",
- set_debug_usage, dbg_complete },
- In the "new-style" format, all the above functionalities are implemented
- by a single function, and the arguments tell which output is required.
- The prototype is the following:
- char *new_setdebug(const struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
- ...
- // this is how we create the entry to register
- AST_CLI_DEFINE(new_setdebug, "short description")
- ...
- To help the transition, we make the pointer to the struct ast_cli_entry
- available to old-style handlers via argv[-1].
- An example of new-style handler is the following
- \code
- static char *test_new_cli(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
- {
- static const char * const choices[] = { "one", "two", "three", NULL };
- switch (cmd) {
- case CLI_INIT:
- e->command = "do this well";
- e->usage =
- "Usage: do this well <arg>\n"
- " typically multiline with body indented\n";
- return NULL;
- case CLI_GENERATE:
- if (a->pos > e->args)
- return NULL;
- return ast_cli_complete(a->word, choices, a->n);
- default:
- // we are guaranteed to be called with argc >= e->args;
- if (a->argc > e->args + 1) // we accept one extra argument
- return CLI_SHOWUSAGE;
- ast_cli(a->fd, "done this well for %s\n", e->args[argc-1]);
- return CLI_SUCCESS;
- }
- }
- \endcode
- */
- /*! \brief calling arguments for new-style handlers.
- * \arg \ref CLI_command_API
- */
- enum ast_cli_command {
- CLI_INIT = -2, /* return the usage string */
- CLI_GENERATE = -3, /* behave as 'generator', remap argv to struct ast_cli_args */
- CLI_HANDLER = -4, /* run the normal handler */
- };
- /* argument for new-style CLI handler */
- struct ast_cli_args {
- const int fd;
- const int argc;
- const char * const *argv;
- const char *line; /* the current input line */
- const char *word; /* the word we want to complete */
- const int pos; /* position of the word to complete */
- const int n; /* the iteration count (n-th entry we generate) */
- };
- /*! \brief descriptor for a cli entry.
- * \arg \ref CLI_command_API
- */
- struct ast_cli_entry {
- const char * const cmda[AST_MAX_CMD_LEN]; /*!< words making up the command.
- * set the first entry to NULL for a new-style entry.
- */
- const char * const summary; /*!< Summary of the command (< 60 characters) */
- const char * usage; /*!< Detailed usage information */
- int inuse; /*!< For keeping track of usage */
- struct module *module; /*!< module this belongs to */
- char *_full_cmd; /*!< built at load time from cmda[] */
- int cmdlen; /*!< len up to the first invalid char [<{% */
- /*! \brief This gets set in ast_cli_register()
- */
- int args; /*!< number of non-null entries in cmda */
- char *command; /*!< command, non-null for new-style entries */
- char *(*handler)(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
- /*! For linking */
- AST_LIST_ENTRY(ast_cli_entry) list;
- };
- #if defined(__cplusplus) || defined(c_plusplus)
- #define AST_CLI_DEFINE(fn, txt) { { "" }, txt, NULL, 0, NULL, NULL, 0, 0, NULL, fn }
- #else
- /* XXX the parser in gcc 2.95 gets confused if you don't put a space
- * between the last arg before VA_ARGS and the comma */
- #define AST_CLI_DEFINE(fn, txt , ... ) { .handler = fn, .summary = txt, ## __VA_ARGS__ }
- #endif
- /*!
- * Helper function to generate cli entries from a NULL-terminated array.
- * Returns the n-th matching entry from the array, or NULL if not found.
- * Can be used to implement generate() for static entries as below
- * (in this example we complete the word in position 2):
- \code
- char *my_generate(const char *line, const char *word, int pos, int n)
- {
- static const char * const choices[] = { "one", "two", "three", NULL };
- if (pos == 2)
- return ast_cli_complete(word, choices, n);
- else
- return NULL;
- }
- \endcode
- */
- char *ast_cli_complete(const char *word, const char * const choices[], int pos);
- /*!
- * \brief Interprets a command
- * Interpret a command s, sending output to fd if uid:gid has permissions
- * to run this command. uid = CLI_NO_PERMS to avoid checking user permissions
- * gid = CLI_NO_PERMS to avoid checking group permissions.
- * \param uid User ID that is trying to run the command.
- * \param gid Group ID that is trying to run the command.
- * \param fd pipe
- * \param s incoming string
- * \retval 0 on success
- * \retval -1 on failure
- */
- int ast_cli_command_full(int uid, int gid, int fd, const char *s);
- #define ast_cli_command(fd,s) ast_cli_command_full(CLI_NO_PERMS, CLI_NO_PERMS, fd, s)
- /*!
- * \brief Executes multiple CLI commands
- * Interpret strings separated by NULL and execute each one, sending output to fd
- * if uid has permissions, uid = CLI_NO_PERMS to avoid checking users permissions.
- * gid = CLI_NO_PERMS to avoid checking group permissions.
- * \param uid User ID that is trying to run the command.
- * \param gid Group ID that is trying to run the command.
- * \param fd pipe
- * \param size is the total size of the string
- * \param s incoming string
- * \retval number of commands executed
- */
- int ast_cli_command_multiple_full(int uid, int gid, int fd, size_t size, const char *s);
- #define ast_cli_command_multiple(fd,size,s) ast_cli_command_multiple_full(CLI_NO_PERMS, CLI_NO_PERMS, fd, size, s)
- /*! \brief Registers a command or an array of commands
- * \param e which cli entry to register.
- * Register your own command
- * \retval 0 on success
- * \retval -1 on failure
- */
- int ast_cli_register(struct ast_cli_entry *e);
- /*!
- * \brief Register multiple commands
- * \param e pointer to first cli entry to register
- * \param len number of entries to register
- */
- int ast_cli_register_multiple(struct ast_cli_entry *e, int len);
- /*!
- * \brief Unregisters a command or an array of commands
- * \param e which cli entry to unregister
- * Unregister your own command. You must pass a completed ast_cli_entry structure
- * \return 0
- */
- int ast_cli_unregister(struct ast_cli_entry *e);
- /*!
- * \brief Unregister multiple commands
- * \param e pointer to first cli entry to unregister
- * \param len number of entries to unregister
- */
- int ast_cli_unregister_multiple(struct ast_cli_entry *e, int len);
- /*!
- * \brief Readline madness
- * Useful for readline, that's about it
- * \retval 0 on success
- * \retval -1 on failure
- *
- * Only call this function to proxy the CLI generator to
- * another.
- */
- char *ast_cli_generator(const char *, const char *, int);
- int ast_cli_generatornummatches(const char *, const char *);
- /*!
- * \brief Generates a NULL-terminated array of strings that
- * 1) begin with the string in the second parameter, and
- * 2) are valid in a command after the string in the first parameter.
- *
- * The first entry (offset 0) of the result is the longest common substring
- * in the results, useful to extend the string that has been completed.
- * Subsequent entries are all possible values, followed by a NULL.
- * All strings and the array itself are malloc'ed and must be freed
- * by the caller.
- *
- * \warning This function cannot be called recursively so it will always
- * fail if called from a CLI_GENERATE callback.
- */
- char **ast_cli_completion_matches(const char *, const char *);
- /*!
- * \brief Generates a vector of strings for CLI completion.
- *
- * \param text Complete input being matched.
- * \param word Current word being matched
- *
- * The results contain strings that both:
- * 1) Begin with the string in \a word.
- * 2) Are valid in a command after the string in \a text.
- *
- * The first entry (offset 0) of the result is the longest common substring
- * in the results, useful to extend the string that has been completed.
- * Subsequent entries are all possible values.
- *
- * \note All strings and the vector itself are malloc'ed and must be freed
- * by the caller.
- *
- * \note The vector is sorted and does not contain any duplicates.
- *
- * \warning This function cannot be called recursively so it will always
- * fail if called from a CLI_GENERATE callback.
- */
- struct ast_vector_string *ast_cli_completion_vector(const char *text, const char *word);
- /*!
- * \brief Add a result to a request for completion options.
- *
- * \param value A completion option text.
- *
- * \retval 0 Success
- * \retval -1 Failure
- *
- * This is an alternative to returning individual values from CLI_GENERATE. Instead
- * of repeatedly being asked for the next match and having to start over, you can
- * call this function repeatedly from your own stateful loop. When all matches have
- * been added you can return NULL from the CLI_GENERATE function.
- *
- * \note This function always eventually results in calling ast_free on \a value.
- */
- int ast_cli_completion_add(char *value);
- /*!
- * \brief Command completion for the list of active channels.
- *
- * This can be called from a CLI command completion function that wants to
- * complete from the list of active channels. 'rpos' is the required
- * position in the command. This function will return NULL immediately if
- * 'rpos' is not the same as the current position, 'pos'.
- */
- char *ast_complete_channels(const char *line, const char *word, int pos, int state, int rpos);
- /*!
- * \brief Allow a CLI command to be executed while Asterisk is shutting down.
- *
- * CLI commands by defeault are disabled when Asterisk is shutting down. This is
- * to ensure the safety of the shutdown since CLI commands may attempt to access
- * resources that have been freed as a result of the shutdown.
- *
- * If a CLI command should be allowed at shutdown, then the best way to enable this
- * is to call ast_cli_allow_at_shutdown during the CLI_INIT state of the CLI handler.
- */
- int ast_cli_allow_at_shutdown(struct ast_cli_entry *e);
- #if defined(__cplusplus) || defined(c_plusplus)
- }
- #endif
- #endif /* _ASTERISK_CLI_H */
|