nspace.c 9.4 KB

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