shell.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /*
  2. * shell.h
  3. */
  4. /**
  5. \ingroup clish
  6. \defgroup clish_shell shell
  7. @{
  8. \brief This class represents the top level container for a CLI session.
  9. */
  10. #ifndef _clish_shell_h
  11. #define _clish_shell_h
  12. #include <stdio.h>
  13. #include <sys/types.h>
  14. #include <pwd.h>
  15. #include "lub/c_decl.h"
  16. #include "lub/types.h"
  17. #include "lub/argv.h"
  18. #include "tinyrl/tinyrl.h"
  19. #include "clish/view.h"
  20. #include "clish/ptype.h"
  21. #include "clish/var.h"
  22. #include "clish/plugin.h"
  23. #include "konf/net.h"
  24. #define CLISH_LOCK_PATH "/tmp/clish.lock"
  25. #define CLISH_LOCK_WAIT 20
  26. typedef struct clish_shell_s clish_shell_t;
  27. typedef struct clish_context_s clish_context_t;
  28. /* Context functions */
  29. _BEGIN_C_DECL
  30. clish_context_t *clish_context_new(clish_shell_t *shell);
  31. int clish_context_init(clish_context_t *instance, clish_shell_t *shell);
  32. void clish_context_free(clish_context_t *instance);
  33. clish_shell_t *clish_context__get_shell(const void *instance);
  34. void clish_context__set_cmd(void *instance, const clish_command_t *cmd);
  35. const clish_command_t *clish_context__get_cmd(const void *instance);
  36. void clish_context__set_pargv(void *instance, clish_pargv_t *pargv);
  37. clish_pargv_t *clish_context__get_pargv(const void *instance);
  38. void clish_context__set_action(void *instance, const clish_action_t *action);
  39. const clish_action_t *clish_context__get_action(const void *instance);
  40. _END_C_DECL
  41. /* Shell */
  42. typedef enum {
  43. SHELL_STATE_OK = 0,
  44. SHELL_STATE_UNKNOWN = 1,
  45. SHELL_STATE_IO_ERROR = 2,
  46. SHELL_STATE_SCRIPT_ERROR = 3,/* Script execution error */
  47. SHELL_STATE_SYNTAX_ERROR = 4, /* Illegal line entered */
  48. SHELL_STATE_SYSTEM_ERROR = 5, /* Some internal system error */
  49. SHELL_STATE_INITIALISING = 6,
  50. SHELL_STATE_HELPING = 7,
  51. SHELL_STATE_EOF = 8, /* EOF of input stream */
  52. SHELL_STATE_CLOSING = 9
  53. } clish_shell_state_t;
  54. typedef enum {
  55. SHELL_VAR_NONE, /* Nothing to escape */
  56. SHELL_VAR_ACTION, /* Variable expanding for ACTION script */
  57. SHELL_VAR_REGEX /* Variable expanding for regex usage */
  58. } clish_shell_var_t;
  59. _BEGIN_C_DECL
  60. /*-----------------
  61. * meta functions
  62. *----------------- */
  63. clish_shell_t *clish_shell_new(FILE * istream, FILE * ostream,
  64. bool_t stop_on_error);
  65. /*-----------------
  66. * methods
  67. *----------------- */
  68. /*
  69. * Called to invoke the startup command for this shell
  70. */
  71. int clish_shell_startup(clish_shell_t * instance);
  72. void clish_shell_delete(clish_shell_t * instance);
  73. clish_view_t *clish_shell_find_create_view(clish_shell_t * instance,
  74. const char *name,
  75. const char *prompt);
  76. clish_ptype_t *clish_shell_find_create_ptype(clish_shell_t * instance,
  77. const char *name,
  78. const char *text,
  79. const char *pattern,
  80. clish_ptype_method_e method,
  81. clish_ptype_preprocess_e preprocess);
  82. clish_ptype_t *clish_shell_find_ptype(clish_shell_t *instance,
  83. const char *name);
  84. int clish_shell_xml_read(clish_shell_t * instance, const char *filename);
  85. void clish_shell_help(clish_shell_t * instance, const char *line);
  86. int clish_shell_exec_action(clish_context_t *context, char **out);
  87. int clish_shell_execute(clish_context_t *context, char **out);
  88. int clish_shell_forceline(clish_shell_t *instance, const char *line, char ** out);
  89. int clish_shell_readline(clish_shell_t *instance, char ** out);
  90. void clish_shell_dump(clish_shell_t * instance);
  91. void clish_shell_close(clish_shell_t * instance);
  92. /**
  93. * Push the specified file handle on to the stack of file handles
  94. * for this shell. The specified file will become the source of
  95. * commands, until it is exhausted.
  96. *
  97. * \return
  98. * BOOL_TRUE - the file was successfully associated with the shell.
  99. * BOOL_FALSE - there was insufficient resource to associate this file.
  100. */
  101. int clish_shell_push_file(clish_shell_t * instance, const char * fname,
  102. bool_t stop_on_error);
  103. int clish_shell_push_fd(clish_shell_t * instance, FILE * file,
  104. bool_t stop_on_error);
  105. void clish_shell_insert_var(clish_shell_t *instance, clish_var_t *var);
  106. clish_var_t *clish_shell_find_var(clish_shell_t *instance, const char *name);
  107. char *clish_shell_expand_var(const char *name, clish_context_t *context);
  108. char *clish_shell_expand(const char *str, clish_shell_var_t vtype, clish_context_t *context);
  109. /*-----------------
  110. * attributes
  111. *----------------- */
  112. clish_view_t *clish_shell__get_view(const clish_shell_t * instance);
  113. unsigned int clish_shell__get_depth(const clish_shell_t * instance);
  114. void clish_shell__set_depth(clish_shell_t *instance, unsigned int depth);
  115. const char *clish_shell__get_viewid(const clish_shell_t * instance);
  116. const char *clish_shell__get_overview(const clish_shell_t * instance);
  117. tinyrl_t *clish_shell__get_tinyrl(const clish_shell_t * instance);
  118. void clish_shell__set_pwd(clish_shell_t *instance, const char * line,
  119. clish_view_t * view, char * viewid, clish_context_t *context);
  120. char *clish_shell__get_pwd_line(const clish_shell_t * instance,
  121. unsigned int index);
  122. char *clish_shell__get_pwd_full(const clish_shell_t * instance,
  123. unsigned int depth);
  124. clish_view_t *clish_shell__get_pwd_view(const clish_shell_t * instance,
  125. unsigned int index);
  126. konf_client_t *clish_shell__get_client(const clish_shell_t * instance);
  127. FILE *clish_shell__get_istream(const clish_shell_t * instance);
  128. FILE *clish_shell__get_ostream(const clish_shell_t * instance);
  129. void clish_shell__set_lockfile(clish_shell_t * instance, const char * path);
  130. char * clish_shell__get_lockfile(clish_shell_t * instance);
  131. int clish_shell__set_socket(clish_shell_t * instance, const char * path);
  132. int clish_shell_load_scheme(clish_shell_t * instance, const char * xml_path);
  133. int clish_shell_loop(clish_shell_t * instance);
  134. clish_shell_state_t clish_shell__get_state(const clish_shell_t * instance);
  135. void clish_shell__set_state(clish_shell_t * instance,
  136. clish_shell_state_t state);
  137. void clish_shell__set_startup_view(clish_shell_t * instance, const char * viewname);
  138. void clish_shell__set_startup_viewid(clish_shell_t * instance, const char * viewid);
  139. void clish_shell__set_default_shebang(clish_shell_t * instance, const char * shebang);
  140. const char * clish_shell__get_default_shebang(const clish_shell_t * instance);
  141. const char * clish_shell__get_fifo(clish_shell_t * instance);
  142. void clish_shell__set_interactive(clish_shell_t * instance, bool_t interactive);
  143. bool_t clish_shell__get_interactive(const clish_shell_t * instance);
  144. bool_t clish_shell__get_utf8(const clish_shell_t * instance);
  145. void clish_shell__set_utf8(clish_shell_t * instance, bool_t utf8);
  146. void clish_shell__set_timeout(clish_shell_t *instance, int timeout);
  147. char *clish_shell__get_line(clish_context_t *context);
  148. char *clish_shell__get_full_line(clish_context_t *context);
  149. char *clish_shell__get_params(clish_context_t *context);
  150. /* Log functions */
  151. void clish_shell__set_log(clish_shell_t *instance, bool_t log);
  152. bool_t clish_shell__get_log(const clish_shell_t *instance);
  153. void clish_shell__set_facility(clish_shell_t *instance, int facility);
  154. int clish_shell__get_facility(clish_shell_t *instance);
  155. int clish_shell_wdog(clish_shell_t *instance);
  156. void clish_shell__set_wdog_timeout(clish_shell_t *instance,
  157. unsigned int timeout);
  158. unsigned int clish_shell__get_wdog_timeout(const clish_shell_t *instance);
  159. int clish_shell__save_history(const clish_shell_t *instance, const char *fname);
  160. int clish_shell__restore_history(clish_shell_t *instance, const char *fname);
  161. void clish_shell__stifle_history(clish_shell_t *instance, unsigned int stifle);
  162. struct passwd *clish_shell__get_user(clish_shell_t *instance);
  163. void clish_shell__set_dryrun(clish_shell_t *instance, bool_t dryrun);
  164. bool_t clish_shell__get_dryrun(const clish_shell_t *instance);
  165. /* Plugin functions */
  166. int clish_shell_load_plugins(clish_shell_t *instance);
  167. int clish_shell_link_plugins(clish_shell_t *instance);
  168. /* Unresolved symbols functions */
  169. clish_sym_t *clish_shell_find_sym(clish_shell_t *instance,
  170. const char *name, int type);
  171. clish_sym_t *clish_shell_add_sym(clish_shell_t *instance,
  172. void *func, const char *name, int type);
  173. clish_sym_t *clish_shell_add_unresolved_sym(clish_shell_t *instance,
  174. const char *name, int type);
  175. clish_sym_t *clish_shell_get_hook(const clish_shell_t *instance, int type);
  176. /* Hook wrappers */
  177. void *clish_shell_check_hook(const clish_context_t *clish_context, int type);
  178. CLISH_HOOK_ACCESS(clish_shell_exec_access);
  179. CLISH_HOOK_CONFIG(clish_shell_exec_config);
  180. CLISH_HOOK_LOG(clish_shell_exec_log);
  181. /* User data functions */
  182. void *clish_shell__get_udata(const clish_shell_t *instance, const char *name);
  183. void *clish_shell__del_udata(clish_shell_t *instance, const char *name);
  184. int clish_shell__set_udata(clish_shell_t *instance,
  185. const char *name, void *data);
  186. _END_C_DECL
  187. #endif /* _clish_shell_h */
  188. /** @} clish_shell */