private.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. * shell.h - private interface to the shell class
  3. */
  4. #include "lub/bintree.h"
  5. #include "tinyrl/tinyrl.h"
  6. #include "clish/shell.h"
  7. #include "clish/pargv.h"
  8. #include "clish/var.h"
  9. #include "clish/action.h"
  10. /*-------------------------------------
  11. * PRIVATE TYPES
  12. *------------------------------------- */
  13. /*-------------------------------------------------------- */
  14. /*
  15. * iterate around commands
  16. */
  17. typedef struct {
  18. const char *last_cmd;
  19. clish_nspace_visibility_t field;
  20. } clish_shell_iterator_t;
  21. /* this is used to maintain a stack of file handles */
  22. typedef struct clish_shell_file_s clish_shell_file_t;
  23. struct clish_shell_file_s {
  24. clish_shell_file_t *next;
  25. FILE *file;
  26. char *fname;
  27. unsigned int line;
  28. bool_t stop_on_error; /* stop on error for file input */
  29. };
  30. typedef struct {
  31. char *line;
  32. clish_view_t *view;
  33. lub_bintree_t viewid;
  34. } clish_shell_pwd_t;
  35. struct clish_shell_s {
  36. lub_bintree_t view_tree; /* Maintain a tree of views */
  37. lub_bintree_t ptype_tree; /* Maintain a tree of ptypes */
  38. lub_bintree_t var_tree; /* Maintain a tree of global variables */
  39. const clish_shell_hooks_t *client_hooks; /* Client callback hooks */
  40. void *client_cookie; /* Client callback cookie */
  41. clish_view_t *global; /* Reference to the global view. */
  42. clish_command_t *startup; /* This is the startup command */
  43. unsigned int idle_timeout; /* This is the idle timeout */
  44. clish_command_t *wdog; /* This is the watchdog command */
  45. unsigned int wdog_timeout; /* This is the watchdog timeout */
  46. bool_t wdog_active; /* If watchdog is active now */
  47. clish_shell_state_t state; /* The current state */
  48. char *overview; /* Overview text for this shell */
  49. tinyrl_t *tinyrl; /* Tiny readline instance */
  50. clish_shell_file_t *current_file; /* file currently in use for input */
  51. clish_shell_pwd_t **pwdv; /* Levels for the config file structure */
  52. unsigned int pwdc;
  53. int depth;
  54. konf_client_t *client;
  55. char *lockfile;
  56. char *default_shebang;
  57. char *fifo_name; /* The name of temporary fifo file. */
  58. bool_t interactive; /* Is shell interactive. */
  59. bool_t log; /* If command logging is enabled */
  60. /* Static params for var expanding. The refactoring is needed. */
  61. clish_param_t *param_depth;
  62. clish_param_t *param_pwd;
  63. };
  64. /**
  65. * Initialise a command iterator structure
  66. */
  67. void
  68. clish_shell_iterator_init(clish_shell_iterator_t * iter,
  69. clish_nspace_visibility_t field);
  70. /**
  71. * get the next command which is an extension of the specified line
  72. */
  73. const clish_command_t *clish_shell_find_next_completion(const clish_shell_t *
  74. instance, const char *line, clish_shell_iterator_t * iter);
  75. /**
  76. * Pop the current file handle from the stack of file handles, shutting
  77. * the file down and freeing any associated memory. The next file handle
  78. * in the stack becomes associated with the input stream for this shell.
  79. *
  80. * \return
  81. * BOOL_TRUE - the current file handle has been replaced.
  82. * BOOL_FALSE - there is only one handle on the stack which cannot be replaced.
  83. */
  84. int clish_shell_pop_file(clish_shell_t * instance);
  85. clish_view_t *clish_shell_find_view(clish_shell_t * instance, const char *name);
  86. void clish_shell_insert_view(clish_shell_t * instance, clish_view_t * view);
  87. clish_pargv_status_t clish_shell_parse(clish_shell_t * instance,
  88. const char *line, const clish_command_t ** cmd, clish_pargv_t ** pargv);
  89. clish_pargv_status_t clish_shell_parse_pargv(clish_pargv_t *pargv,
  90. const clish_command_t *cmd,
  91. void *context,
  92. clish_paramv_t *paramv,
  93. const lub_argv_t *argv,
  94. unsigned *idx, clish_pargv_t *last, unsigned need_index);
  95. char *clish_shell_word_generator(clish_shell_t * instance,
  96. const char *line, unsigned offset, unsigned state);
  97. const clish_command_t *clish_shell_resolve_command(const clish_shell_t *
  98. instance, const char *line);
  99. const clish_command_t *clish_shell_resolve_prefix(const clish_shell_t *
  100. instance, const char *line);
  101. void clish_shell_insert_ptype(clish_shell_t * instance, clish_ptype_t * ptype);
  102. void clish_shell_tinyrl_history(clish_shell_t * instance, unsigned int *limit);
  103. tinyrl_t *clish_shell_tinyrl_new(FILE * instream,
  104. FILE * outstream, unsigned stifle);
  105. void clish_shell_tinyrl_delete(tinyrl_t * instance);
  106. void clish_shell_param_generator(clish_shell_t * instance, lub_argv_t *matches,
  107. const clish_command_t * cmd, const char *line, unsigned offset);
  108. char **clish_shell_tinyrl_completion(tinyrl_t * tinyrl,
  109. const char *line, unsigned start, unsigned end);
  110. void clish_shell__expand_viewid(const char *viewid, lub_bintree_t *tree,
  111. clish_context_t *context);
  112. void clish_shell__init_pwd(clish_shell_pwd_t *pwd);
  113. void clish_shell__fini_pwd(clish_shell_pwd_t *pwd);
  114. int clish_shell_timeout_fn(tinyrl_t *tinyrl);
  115. int clish_shell_keypress_fn(tinyrl_t *tinyrl, int key);