kcontext.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <assert.h>
  5. #include <sys/types.h>
  6. #include <unistd.h>
  7. #include <faux/str.h>
  8. #include <faux/conv.h>
  9. #include <faux/list.h>
  10. #include <klish/khelper.h>
  11. #include <klish/kpargv.h>
  12. #include <klish/kcontext.h>
  13. #include <klish/kscheme.h>
  14. #include <klish/ksession.h>
  15. #include <klish/kaction.h>
  16. #include <klish/kscheme.h>
  17. struct kcontext_s {
  18. kcontext_type_e type;
  19. kscheme_t *scheme;
  20. int retcode;
  21. ksession_t *session;
  22. kplugin_t *plugin;
  23. kpargv_t *pargv;
  24. const kpargv_t *parent_pargv; // Parent
  25. faux_list_node_t *action_iter; // Current action
  26. ksym_t *sym;
  27. int stdin;
  28. int stdout;
  29. int stderr;
  30. pid_t pid;
  31. bool_t done; // If all actions are done
  32. char *pts_fname; // Pseudo Terminal Slave file name
  33. };
  34. // Simple methods
  35. // Type
  36. KGET(context, kcontext_type_e, type);
  37. FAUX_HIDDEN KSET(context, kcontext_type_e, type);
  38. // Scheme
  39. KGET(context, kscheme_t *, scheme);
  40. KSET(context, kscheme_t *, scheme);
  41. // RetCode
  42. KGET(context, int, retcode);
  43. FAUX_HIDDEN KSET(context, int, retcode);
  44. // Plugin
  45. FAUX_HIDDEN KSET(context, kplugin_t *, plugin);
  46. // Sym
  47. KGET(context, ksym_t *, sym);
  48. FAUX_HIDDEN KSET(context, ksym_t *, sym);
  49. // Pargv
  50. KGET(context, kpargv_t *, pargv);
  51. FAUX_HIDDEN KSET(context, kpargv_t *, pargv);
  52. // Parent pargv
  53. KGET(context, const kpargv_t *, parent_pargv);
  54. FAUX_HIDDEN KSET(context, const kpargv_t *, parent_pargv);
  55. // Action iterator
  56. KGET(context, faux_list_node_t *, action_iter);
  57. FAUX_HIDDEN KSET(context, faux_list_node_t *, action_iter);
  58. // STDIN
  59. KGET(context, int, stdin);
  60. FAUX_HIDDEN KSET(context, int, stdin);
  61. // STDOUT
  62. KGET(context, int, stdout);
  63. FAUX_HIDDEN KSET(context, int, stdout);
  64. // STDERR
  65. KGET(context, int, stderr);
  66. FAUX_HIDDEN KSET(context, int, stderr);
  67. // PID
  68. KGET(context, pid_t, pid);
  69. FAUX_HIDDEN KSET(context, pid_t, pid);
  70. // Session
  71. KGET(context, ksession_t *, session);
  72. FAUX_HIDDEN KSET(context, ksession_t *, session);
  73. // Done
  74. KGET_BOOL(context, done);
  75. FAUX_HIDDEN KSET_BOOL(context, done);
  76. // PTS file name (Pseudo Terminal Slave)
  77. KSET_STR(context, pts_fname);
  78. KGET_STR(context, pts_fname);
  79. kcontext_t *kcontext_new(kcontext_type_e type)
  80. {
  81. kcontext_t *context = NULL;
  82. context = faux_zmalloc(sizeof(*context));
  83. assert(context);
  84. if (!context)
  85. return NULL;
  86. // Initialize
  87. context->type = type;
  88. context->scheme = NULL;
  89. context->retcode = 0;
  90. context->plugin = NULL;
  91. context->pargv = NULL;
  92. context->parent_pargv = NULL; // Don't free
  93. context->action_iter = NULL;
  94. context->sym = NULL;
  95. context->stdin = -1;
  96. context->stdout = -1;
  97. context->stderr = -1;
  98. context->pid = -1; // PID of currently executed ACTION
  99. context->session = NULL; // Don't free
  100. context->done = BOOL_FALSE;
  101. context->pts_fname = NULL;
  102. return context;
  103. }
  104. void kcontext_free(kcontext_t *context)
  105. {
  106. if (!context)
  107. return;
  108. kpargv_free(context->pargv);
  109. if (context->stdin != -1)
  110. close(context->stdin);
  111. if (context->stdout != -1)
  112. close(context->stdout);
  113. if (context->stderr != -1)
  114. close(context->stderr);
  115. faux_str_free(context->pts_fname);
  116. faux_free(context);
  117. }
  118. kparg_t *kcontext_candidate_parg(const kcontext_t *context)
  119. {
  120. const kpargv_t *pargv = NULL;
  121. assert(context);
  122. if (!context)
  123. return NULL;
  124. pargv = kcontext_parent_pargv(context);
  125. if (!pargv)
  126. return NULL;
  127. return kpargv_candidate_parg(pargv);
  128. }
  129. const kentry_t *kcontext_candidate_entry(const kcontext_t *context)
  130. {
  131. kparg_t *parg = NULL;
  132. assert(context);
  133. if (!context)
  134. return NULL;
  135. parg = kcontext_candidate_parg(context);
  136. if (!parg)
  137. return NULL;
  138. return kparg_entry(parg);
  139. }
  140. const char *kcontext_candidate_value(const kcontext_t *context)
  141. {
  142. kparg_t *parg = NULL;
  143. assert(context);
  144. if (!context)
  145. return NULL;
  146. parg = kcontext_candidate_parg(context);
  147. if (!parg)
  148. return NULL;
  149. return kparg_value(parg);
  150. }
  151. const kaction_t *kcontext_action(const kcontext_t *context)
  152. {
  153. faux_list_node_t *node = NULL;
  154. assert(context);
  155. if (!context)
  156. return NULL;
  157. node = kcontext_action_iter(context);
  158. if (!node)
  159. return NULL;
  160. return (const kaction_t *)faux_list_data(node);
  161. }
  162. const char *kcontext_script(const kcontext_t *context)
  163. {
  164. const kaction_t *action = NULL;
  165. assert(context);
  166. if (!context)
  167. return NULL;
  168. action = kcontext_action(context);
  169. if (!action)
  170. return NULL;
  171. return kaction_script(action);
  172. }
  173. bool_t kcontext_named_udata_new(kcontext_t *context,
  174. const char *name, void *data, kudata_data_free_fn free_fn)
  175. {
  176. assert(context);
  177. if (!context)
  178. return BOOL_FALSE;
  179. return kscheme_named_udata_new(context->scheme, name, data, free_fn);
  180. }
  181. void *kcontext_named_udata(const kcontext_t *context, const char *name)
  182. {
  183. assert(context);
  184. if (!context)
  185. return NULL;
  186. return kscheme_named_udata(context->scheme, name);
  187. }
  188. void *kcontext_udata(const kcontext_t *context)
  189. {
  190. kplugin_t *plugin = NULL;
  191. assert(context);
  192. if (!context)
  193. return NULL;
  194. plugin = kcontext_plugin(context);
  195. if (!plugin)
  196. return NULL;
  197. return kplugin_udata(plugin);
  198. }
  199. const kentry_t *kcontext_command(const kcontext_t *context)
  200. {
  201. kpargv_t *pargv = NULL;
  202. assert(context);
  203. if (!context)
  204. return NULL;
  205. pargv = kcontext_pargv(context);
  206. if (!pargv)
  207. return NULL;
  208. return kpargv_command(pargv);
  209. }
  210. kplugin_t *kcontext_plugin(const kcontext_t *context)
  211. {
  212. const kaction_t *action = NULL;
  213. assert(context);
  214. if (!context)
  215. return NULL;
  216. // If plugin field is specified then return it. It is specified for
  217. // plugin's init() and fini() functions.
  218. if (context->plugin)
  219. return context->plugin;
  220. // If plugin is not explicitly specified then return parent plugin for
  221. // currently executed sym (ACTION structure contains it).
  222. action = kcontext_action(context);
  223. if (!action)
  224. return NULL;
  225. return kaction_plugin(action);
  226. }