nspace.c 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  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. const char *help = NULL;
  69. clish_command_t *tmp = NULL;
  70. const char *str = NULL;
  71. assert(prefix);
  72. if (!ref) {
  73. assert(this->prefix_cmd);
  74. name = lub_string_dup(prefix);
  75. ref = this->prefix_cmd;
  76. help = clish_command__get_text(this->prefix_cmd);
  77. } else {
  78. lub_string_catn(&name, prefix, strlen(prefix));
  79. lub_string_catn(&name, " ", 1);
  80. lub_string_catn(&name, clish_command__get_name(ref),
  81. strlen(clish_command__get_name(ref)));
  82. help = clish_command__get_text(ref);
  83. }
  84. /* The command is cached already */
  85. if ((cmd = lub_bintree_find(&this->tree, name))) {
  86. free(name);
  87. return cmd;
  88. }
  89. cmd = clish_command_new_link(name, help, ref);
  90. free(name);
  91. assert(cmd);
  92. /* The command was created dynamically */
  93. clish_command__set_dynamic(cmd, BOOL_TRUE);
  94. /* Delete proxy commands with another prefixes */
  95. tmp = lub_bintree_findfirst(&this->tree);
  96. if (tmp)
  97. str = clish_command__get_name(tmp);
  98. if (str && (lub_string_nocasestr(str, prefix) != str)) {
  99. do {
  100. lub_bintree_remove(&this->tree, tmp);
  101. clish_command_delete(tmp);
  102. } while ((tmp = lub_bintree_findfirst(&this->tree)));
  103. }
  104. /* Insert command link into the tree */
  105. if (-1 == lub_bintree_insert(&this->tree, cmd)) {
  106. clish_command_delete(cmd);
  107. cmd = NULL;
  108. }
  109. return cmd;
  110. }
  111. /*---------------------------------------------------------
  112. * PUBLIC META FUNCTIONS
  113. *--------------------------------------------------------- */
  114. clish_nspace_t *clish_nspace_new(clish_view_t * view)
  115. {
  116. clish_nspace_t *this = malloc(sizeof(clish_nspace_t));
  117. if (this)
  118. clish_nspace_init(this, view);
  119. return this;
  120. }
  121. /*---------------------------------------------------------
  122. * PUBLIC METHODS
  123. *--------------------------------------------------------- */
  124. void clish_nspace_delete(clish_nspace_t * this)
  125. {
  126. clish_nspace_fini(this);
  127. free(this);
  128. }
  129. /*--------------------------------------------------------- */
  130. static const char *clish_nspace_after_prefix(const char *prefix,
  131. const char *line, char **real_prefix)
  132. {
  133. const char *in_line = NULL;
  134. regex_t regexp;
  135. regmatch_t pmatch[1];
  136. int res;
  137. if (!line)
  138. return NULL;
  139. /* Compile regular expression */
  140. regcomp(&regexp, prefix, REG_EXTENDED | REG_ICASE);
  141. res = regexec(&regexp, line, 1, pmatch, 0);
  142. regfree(&regexp);
  143. if (res || (0 != pmatch[0].rm_so))
  144. return NULL;
  145. /* Empty match */
  146. if (0 == pmatch[0].rm_eo)
  147. return NULL;
  148. in_line = line + pmatch[0].rm_eo;
  149. lub_string_catn(real_prefix, line, pmatch[0].rm_eo);
  150. return in_line;
  151. }
  152. /*--------------------------------------------------------- */
  153. clish_command_t *clish_nspace_find_command(clish_nspace_t * this, const char *name)
  154. {
  155. clish_command_t *cmd = NULL, *retval = NULL;
  156. clish_view_t *view = clish_nspace__get_view(this);
  157. const char *prefix = clish_nspace__get_prefix(this);
  158. const char *in_line;
  159. char *real_prefix = NULL;
  160. if (!prefix)
  161. return clish_view_find_command(view, name, this->inherit);
  162. if (!(in_line = clish_nspace_after_prefix(prefix, name, &real_prefix)))
  163. return NULL;
  164. /* If prefix is followed by space */
  165. if (in_line[0] == ' ')
  166. in_line++;
  167. if (in_line[0] != '\0') {
  168. cmd = clish_view_find_command(view, in_line, this->inherit);
  169. if (!cmd) {
  170. lub_string_free(real_prefix);
  171. return NULL;
  172. }
  173. }
  174. retval = clish_nspace_find_create_command(this, real_prefix, cmd);
  175. lub_string_free(real_prefix);
  176. return retval;
  177. }
  178. /*--------------------------------------------------------- */
  179. const clish_command_t *clish_nspace_find_next_completion(clish_nspace_t * this,
  180. const char *iter_cmd, const char *line,
  181. clish_nspace_visibility_t field)
  182. {
  183. const clish_command_t *cmd = NULL, *retval = NULL;
  184. clish_view_t *view = clish_nspace__get_view(this);
  185. const char *prefix = clish_nspace__get_prefix(this);
  186. const char *in_iter = "";
  187. const char *in_line;
  188. char *real_prefix = NULL;
  189. if (!prefix)
  190. return clish_view_find_next_completion(view, iter_cmd,
  191. line, field, this->inherit);
  192. if (!(in_line = clish_nspace_after_prefix(prefix, line, &real_prefix)))
  193. return NULL;
  194. if (in_line[0] != '\0') {
  195. /* If prefix is followed by space */
  196. if (in_line[0] == ' ')
  197. in_line++;
  198. if (iter_cmd &&
  199. (lub_string_nocasestr(iter_cmd, real_prefix) == iter_cmd) &&
  200. (lub_string_nocasecmp(iter_cmd, real_prefix)))
  201. in_iter = iter_cmd + strlen(real_prefix) + 1;
  202. cmd = clish_view_find_next_completion(view,
  203. in_iter, in_line, field, this->inherit);
  204. if (!cmd) {
  205. lub_string_free(real_prefix);
  206. return NULL;
  207. }
  208. }
  209. /* If prefix was already returned. */
  210. if (!cmd && iter_cmd && !lub_string_nocasecmp(iter_cmd, real_prefix)) {
  211. lub_string_free(real_prefix);
  212. return NULL;
  213. }
  214. retval = clish_nspace_find_create_command(this, real_prefix, cmd);
  215. lub_string_free(real_prefix);
  216. return retval;
  217. }
  218. /*--------------------------------------------------------- */
  219. void clish_nspace_clean_proxy(clish_nspace_t * this)
  220. {
  221. clish_command_t *cmd = NULL;
  222. /* Recursive proxy clean */
  223. clish_view_clean_proxy(this->view);
  224. /* Delete each command proxy held by this nspace */
  225. while ((cmd = lub_bintree_findfirst(&this->tree))) {
  226. /* remove the command from the tree */
  227. lub_bintree_remove(&this->tree, cmd);
  228. /* release the instance */
  229. clish_command_delete(cmd);
  230. }
  231. }
  232. /*---------------------------------------------------------
  233. * PUBLIC ATTRIBUTES
  234. *--------------------------------------------------------- */
  235. clish_view_t *clish_nspace__get_view(const clish_nspace_t * this)
  236. {
  237. return this->view;
  238. }
  239. /*--------------------------------------------------------- */
  240. void clish_nspace__set_prefix(clish_nspace_t * this, const char *prefix)
  241. {
  242. assert(!this->prefix);
  243. this->prefix = lub_string_dup(prefix);
  244. }
  245. /*--------------------------------------------------------- */
  246. const char *clish_nspace__get_prefix(const clish_nspace_t * this)
  247. {
  248. return this->prefix;
  249. }
  250. /*--------------------------------------------------------- */
  251. void clish_nspace__set_help(clish_nspace_t * this, bool_t help)
  252. {
  253. this->help = help;
  254. }
  255. /*--------------------------------------------------------- */
  256. bool_t clish_nspace__get_help(const clish_nspace_t * this)
  257. {
  258. return this->help;
  259. }
  260. /*--------------------------------------------------------- */
  261. void clish_nspace__set_completion(clish_nspace_t * this, bool_t completion)
  262. {
  263. this->completion = completion;
  264. }
  265. /*--------------------------------------------------------- */
  266. bool_t clish_nspace__get_completion(const clish_nspace_t * this)
  267. {
  268. return this->completion;
  269. }
  270. /*--------------------------------------------------------- */
  271. void clish_nspace__set_context_help(clish_nspace_t * this, bool_t context_help)
  272. {
  273. this->context_help = context_help;
  274. }
  275. /*--------------------------------------------------------- */
  276. bool_t clish_nspace__get_context_help(const clish_nspace_t * this)
  277. {
  278. return this->context_help;
  279. }
  280. /*--------------------------------------------------------- */
  281. void clish_nspace__set_inherit(clish_nspace_t * this, bool_t inherit)
  282. {
  283. this->inherit = inherit;
  284. }
  285. /*--------------------------------------------------------- */
  286. bool_t clish_nspace__get_inherit(const clish_nspace_t * this)
  287. {
  288. return this->inherit;
  289. }
  290. /*--------------------------------------------------------- */
  291. bool_t clish_nspace__get_visibility(const clish_nspace_t * instance,
  292. clish_nspace_visibility_t field)
  293. {
  294. bool_t result = BOOL_FALSE;
  295. switch (field) {
  296. case CLISH_NSPACE_HELP:
  297. result = clish_nspace__get_help(instance);
  298. break;
  299. case CLISH_NSPACE_COMPLETION:
  300. result = clish_nspace__get_completion(instance);
  301. break;
  302. case CLISH_NSPACE_CHELP:
  303. result = clish_nspace__get_context_help(instance);
  304. break;
  305. default:
  306. break;
  307. }
  308. return result;
  309. }
  310. /*--------------------------------------------------------- */