private.h 4.2 KB

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