command.h 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * command.h
  3. */
  4. #ifndef _clish_command_h
  5. #define _clish_command_h
  6. typedef struct clish_command_s clish_command_t;
  7. #include "lub/bintree.h"
  8. #include "lub/argv.h"
  9. #include "clish/pargv.h"
  10. #include "clish/view.h"
  11. #include "clish/param.h"
  12. typedef enum {
  13. CLISH_CONFIG_NONE,
  14. CLISH_CONFIG_SET,
  15. CLISH_CONFIG_UNSET,
  16. CLISH_CONFIG_DUMP,
  17. CLISH_CONFIG_COPY
  18. } clish_config_operation_t;
  19. /*=====================================
  20. * COMMAND INTERFACE
  21. *===================================== */
  22. /*-----------------
  23. * meta functions
  24. *----------------- */
  25. clish_command_t *clish_command_new(const char *name, const char *text);
  26. clish_command_t *clish_command_new_link(const char *name,
  27. const clish_command_t * ref);
  28. int clish_command_bt_compare(const void *clientnode, const void *clientkey);
  29. void clish_command_bt_getkey(const void *clientnode, lub_bintree_key_t * key);
  30. size_t clish_command_bt_offset(void);
  31. clish_command_t *clish_command_choose_longest(clish_command_t * cmd1,
  32. clish_command_t * cmd2);
  33. int
  34. clish_command_diff(const clish_command_t * cmd1, const clish_command_t * cmd2);
  35. /*-----------------
  36. * methods
  37. *----------------- */
  38. void clish_command_delete(clish_command_t * instance);
  39. void
  40. clish_command_insert_param(clish_command_t * instance, clish_param_t * param);
  41. void clish_command_help(const clish_command_t * instance, const char *line);
  42. void clish_command_dump(const clish_command_t * instance);
  43. /*-----------------
  44. * attributes
  45. *----------------- */
  46. const char *clish_command__get_name(const clish_command_t * instance);
  47. const char *clish_command__get_suffix(const clish_command_t * instance);
  48. const char *clish_command__get_text(const clish_command_t * instance);
  49. const char *clish_command__get_detail(const clish_command_t * instance);
  50. const char *clish_command__get_builtin(const clish_command_t * instance);
  51. const char *clish_command__get_escape_chars(const clish_command_t * instance);
  52. const clish_param_t *clish_command__get_args(const clish_command_t * instance);
  53. char *clish_command__get_action(const clish_command_t * instance,
  54. const char *viewid, clish_pargv_t * pargv);
  55. clish_view_t *clish_command__get_view(const clish_command_t * instance);
  56. char *clish_command__get_viewid(const clish_command_t * instance,
  57. const char *viewid, clish_pargv_t * pargv);
  58. const unsigned clish_command__get_param_count(const clish_command_t * instance);
  59. const clish_param_t *clish_command__get_param(const clish_command_t * instance,
  60. unsigned index);
  61. clish_paramv_t *clish_command__get_paramv(const clish_command_t * instance);
  62. void clish_command__set_action(clish_command_t * instance, const char *action);
  63. void
  64. clish_command__set_builtin(clish_command_t * instance, const char *builtin);
  65. void
  66. clish_command__set_escape_chars(clish_command_t * instance,
  67. const char *escape_chars);
  68. void clish_command__set_args(clish_command_t * instance, clish_param_t * args);
  69. void clish_command__set_detail(clish_command_t * instance, const char *detail);
  70. void clish_command__set_view(clish_command_t * instance, clish_view_t * view);
  71. void clish_command__set_viewid(clish_command_t * instance, const char *viewid);
  72. void clish_command__set_pview(clish_command_t * instance, clish_view_t * view);
  73. clish_view_t *clish_command__get_pview(const clish_command_t * instance);
  74. unsigned clish_command__get_depth(const clish_command_t * instance);
  75. void
  76. clish_command__set_cfg_op(clish_command_t * instance,
  77. clish_config_operation_t operation);
  78. clish_config_operation_t
  79. clish_command__get_cfg_op(const clish_command_t * instance);
  80. void clish_command__set_priority(clish_command_t * instance, unsigned short priority);
  81. unsigned short clish_command__get_priority(const clish_command_t * instance);
  82. void
  83. clish_command__set_pattern(clish_command_t * instance, const char *pattern);
  84. char *clish_command__get_pattern(const clish_command_t * instance,
  85. clish_pargv_t * pargv);
  86. void clish_command__set_file(clish_command_t * instance, const char *file);
  87. char *clish_command__get_file(const clish_command_t * instance,
  88. clish_pargv_t * pargv);
  89. void clish_command__set_splitter(clish_command_t * instance, bool_t splitter);
  90. bool_t clish_command__get_splitter(const clish_command_t * instance);
  91. #endif /* _clish_command_h */