nspace.c 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. /*
  2. * nspace.c
  3. *
  4. * This file provides the implementation of the "nspace" class
  5. */
  6. #include "private.h"
  7. #include "lub/string.h"
  8. #include <assert.h>
  9. #include <stdlib.h>
  10. #include <string.h>
  11. #include <stdio.h>
  12. #include <sys/types.h>
  13. #include <regex.h>
  14. /*---------------------------------------------------------
  15. * PRIVATE METHODS
  16. *--------------------------------------------------------- */
  17. static void clish_nspace_init(clish_nspace_t * this, clish_view_t * view)
  18. {
  19. this->view = view;
  20. /* set up defaults */
  21. this->prefix = NULL;
  22. this->help = BOOL_FALSE;
  23. this->completion = BOOL_TRUE;
  24. this->context_help = BOOL_FALSE;
  25. this->inherit = BOOL_TRUE;
  26. this->prefix_cmd = NULL;
  27. /* initialise the tree of commands links for this nspace */
  28. lub_bintree_init(&this->tree,
  29. clish_command_bt_offset(),
  30. clish_command_bt_compare, clish_command_bt_getkey);
  31. }
  32. /*--------------------------------------------------------- */
  33. static void clish_nspace_fini(clish_nspace_t * this)
  34. {
  35. clish_command_t *cmd;
  36. /* deallocate the memory for this instance */
  37. lub_string_free(this->prefix);
  38. this->prefix = NULL;
  39. /* delete each command link held by this nspace */
  40. while ((cmd = lub_bintree_findfirst(&this->tree))) {
  41. /* remove the command from the tree */
  42. lub_bintree_remove(&this->tree, cmd);
  43. /* release the instance */
  44. clish_command_delete(cmd);
  45. }
  46. /* Delete prefix pseudo-command */
  47. if (this->prefix_cmd) {
  48. clish_command_delete(this->prefix_cmd);
  49. this->prefix_cmd = NULL;
  50. }
  51. }
  52. /*--------------------------------------------------------- */
  53. clish_command_t * clish_nspace_create_prefix_cmd(clish_nspace_t * this,
  54. const char * name, const char * help)
  55. {
  56. if (this->prefix_cmd) {
  57. clish_command_delete(this->prefix_cmd);
  58. this->prefix_cmd = NULL;
  59. }
  60. return (this->prefix_cmd = clish_command_new(name, help));
  61. }
  62. /*--------------------------------------------------------- */
  63. static clish_command_t *clish_nspace_find_create_command(clish_nspace_t * this,
  64. const char *prefix, const clish_command_t * ref)
  65. {
  66. clish_command_t *cmd;
  67. char *name = NULL;
  68. assert(prefix);
  69. if (!ref) {
  70. assert(this->prefix_cmd);
  71. name = lub_string_dup(prefix);
  72. ref = this->prefix_cmd;
  73. } else {
  74. lub_string_catn(&name, prefix, strlen(prefix));
  75. lub_string_catn(&name, " ", 1);
  76. lub_string_catn(&name, clish_command__get_name(ref),
  77. strlen(clish_command__get_name(ref)));
  78. }
  79. /* The command is cached already */
  80. if (cmd = lub_bintree_find(&this->tree, name)) {
  81. free(name);
  82. return cmd;
  83. }
  84. cmd = clish_command_new_link(name, ref);
  85. free(name);
  86. assert(cmd);
  87. /* Insert command link into the tree */
  88. if (-1 == lub_bintree_insert(&this->tree, cmd)) {
  89. clish_command_delete(cmd);
  90. cmd = NULL;
  91. }
  92. return cmd;
  93. }
  94. /*---------------------------------------------------------
  95. * PUBLIC META FUNCTIONS
  96. *--------------------------------------------------------- */
  97. clish_nspace_t *clish_nspace_new(clish_view_t * view)
  98. {
  99. clish_nspace_t *this = malloc(sizeof(clish_nspace_t));
  100. if (this) {
  101. clish_nspace_init(this, view);
  102. }
  103. return this;
  104. }
  105. /*---------------------------------------------------------
  106. * PUBLIC METHODS
  107. *--------------------------------------------------------- */
  108. void clish_nspace_delete(clish_nspace_t * this)
  109. {
  110. clish_nspace_fini(this);
  111. free(this);
  112. }
  113. /*--------------------------------------------------------- */
  114. static const char *clish_nspace_after_prefix(const char *prefix,
  115. const char *line, char **real_prefix)
  116. {
  117. const char *in_line = NULL;
  118. regex_t regexp;
  119. regmatch_t pmatch[1];
  120. int res;
  121. if (!line)
  122. return NULL;
  123. /* Compile regular expression */
  124. regcomp(&regexp, prefix, REG_EXTENDED | REG_ICASE);
  125. res = regexec(&regexp, line, 1, pmatch, 0);
  126. regfree(&regexp);
  127. if (res || (-1 == pmatch[0].rm_so))
  128. return NULL;
  129. /* Empty match */
  130. if (pmatch[0].rm_so == pmatch[0].rm_eo)
  131. return NULL;
  132. in_line = line + pmatch[0].rm_eo;
  133. lub_string_catn(real_prefix, line + pmatch[0].rm_so,
  134. pmatch[0].rm_eo - pmatch[0].rm_so);
  135. return in_line;
  136. }
  137. /*--------------------------------------------------------- */
  138. clish_command_t *clish_nspace_find_command(clish_nspace_t * this, const char *name)
  139. {
  140. clish_command_t *cmd = NULL, *retval = NULL;
  141. clish_view_t *view = clish_nspace__get_view(this);
  142. const char *prefix = clish_nspace__get_prefix(this);
  143. const char *in_line;
  144. char *real_prefix = NULL;
  145. if (!prefix)
  146. return clish_view_find_command(view, name, this->inherit);
  147. if (!(in_line = clish_nspace_after_prefix(prefix, name, &real_prefix)))
  148. return NULL;
  149. /* If prefix is followed by space */
  150. if (in_line[0] == ' ')
  151. in_line++;
  152. if (in_line[0] != '\0') {
  153. cmd = clish_view_find_command(view, in_line, this->inherit);
  154. if (!cmd) {
  155. lub_string_free(real_prefix);
  156. return NULL;
  157. }
  158. }
  159. retval = clish_nspace_find_create_command(this, real_prefix, cmd);
  160. lub_string_free(real_prefix);
  161. return retval;
  162. }
  163. /*--------------------------------------------------------- */
  164. const clish_command_t *clish_nspace_find_next_completion(clish_nspace_t * this,
  165. const char *iter_cmd, const char *line,
  166. clish_nspace_visibility_t field)
  167. {
  168. const clish_command_t *cmd = NULL, *retval = NULL;
  169. clish_view_t *view = clish_nspace__get_view(this);
  170. const char *prefix = clish_nspace__get_prefix(this);
  171. const char *in_iter = "";
  172. const char *in_line;
  173. char *real_prefix = NULL;
  174. if (!prefix)
  175. return clish_view_find_next_completion(view, iter_cmd,
  176. line, field, this->inherit);
  177. if (!(in_line = clish_nspace_after_prefix(prefix, line, &real_prefix)))
  178. return NULL;
  179. if (in_line[0] != '\0') {
  180. /* If prefix is followed by space */
  181. if (in_line[0] == ' ')
  182. in_line++;
  183. if (iter_cmd &&
  184. (lub_string_nocasestr(iter_cmd, real_prefix) == iter_cmd) &&
  185. (lub_string_nocasecmp(iter_cmd, real_prefix)))
  186. in_iter = iter_cmd + strlen(real_prefix) + 1;
  187. cmd = clish_view_find_next_completion(view,
  188. in_iter, in_line, field, this->inherit);
  189. if (!cmd) {
  190. lub_string_free(real_prefix);
  191. return NULL;
  192. }
  193. }
  194. /* If prefix was already returned. */
  195. if (!cmd && iter_cmd && !lub_string_nocasecmp(iter_cmd, real_prefix)) {
  196. lub_string_free(real_prefix);
  197. return NULL;
  198. }
  199. retval = clish_nspace_find_create_command(this, real_prefix, cmd);
  200. lub_string_free(real_prefix);
  201. return retval;
  202. }
  203. /*--------------------------------------------------------- */
  204. void clish_nspace_clean_proxy(clish_nspace_t * this)
  205. {
  206. clish_command_t *cmd = NULL;
  207. /* Recursive proxy clean */
  208. clish_view_clean_proxy(this->view);
  209. /* Delete each command proxy held by this nspace */
  210. while ((cmd = lub_bintree_findfirst(&this->tree))) {
  211. /* remove the command from the tree */
  212. lub_bintree_remove(&this->tree, cmd);
  213. /* release the instance */
  214. clish_command_delete(cmd);
  215. }
  216. }
  217. /*---------------------------------------------------------
  218. * PUBLIC ATTRIBUTES
  219. *--------------------------------------------------------- */
  220. clish_view_t *clish_nspace__get_view(const clish_nspace_t * this)
  221. {
  222. return this->view;
  223. }
  224. /*--------------------------------------------------------- */
  225. void clish_nspace__set_prefix(clish_nspace_t * this, const char *prefix)
  226. {
  227. assert(NULL == this->prefix);
  228. this->prefix = lub_string_dup(prefix);
  229. }
  230. /*--------------------------------------------------------- */
  231. const char *clish_nspace__get_prefix(const clish_nspace_t * this)
  232. {
  233. return this->prefix;
  234. }
  235. /*--------------------------------------------------------- */
  236. void clish_nspace__set_help(clish_nspace_t * this, bool_t help)
  237. {
  238. this->help = help;
  239. }
  240. /*--------------------------------------------------------- */
  241. bool_t clish_nspace__get_help(const clish_nspace_t * this)
  242. {
  243. return this->help;
  244. }
  245. /*--------------------------------------------------------- */
  246. void clish_nspace__set_completion(clish_nspace_t * this, bool_t completion)
  247. {
  248. this->completion = completion;
  249. }
  250. /*--------------------------------------------------------- */
  251. bool_t clish_nspace__get_completion(const clish_nspace_t * this)
  252. {
  253. return this->completion;
  254. }
  255. /*--------------------------------------------------------- */
  256. void clish_nspace__set_context_help(clish_nspace_t * this, bool_t context_help)
  257. {
  258. this->context_help = context_help;
  259. }
  260. /*--------------------------------------------------------- */
  261. bool_t clish_nspace__get_context_help(const clish_nspace_t * this)
  262. {
  263. return this->context_help;
  264. }
  265. /*--------------------------------------------------------- */
  266. void clish_nspace__set_inherit(clish_nspace_t * this, bool_t inherit)
  267. {
  268. this->inherit = inherit;
  269. }
  270. /*--------------------------------------------------------- */
  271. bool_t clish_nspace__get_inherit(const clish_nspace_t * this)
  272. {
  273. return this->inherit;
  274. }
  275. /*--------------------------------------------------------- */
  276. bool_t
  277. clish_nspace__get_visibility(const clish_nspace_t * instance,
  278. clish_nspace_visibility_t field)
  279. {
  280. bool_t result = BOOL_FALSE;
  281. switch (field) {
  282. case CLISH_NSPACE_HELP:
  283. result = clish_nspace__get_help(instance);
  284. break;
  285. case CLISH_NSPACE_COMPLETION:
  286. result = clish_nspace__get_completion(instance);
  287. break;
  288. case CLISH_NSPACE_CHELP:
  289. result = clish_nspace__get_context_help(instance);
  290. break;
  291. }
  292. return result;
  293. }
  294. /*--------------------------------------------------------- */