kcontext.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. struct kcontext_s {
  15. kcontext_type_e type;
  16. int retcode;
  17. kplugin_t *plugin;
  18. kpargv_t *pargv;
  19. kaction_t *action; // Current action
  20. ksym_t *sym;
  21. int stdin;
  22. int stdout;
  23. int stderr;
  24. pid_t pid;
  25. };
  26. // Simple methods
  27. // Type
  28. KGET(context, kcontext_type_e, type);
  29. FAUX_HIDDEN KSET(context, kcontext_type_e, type);
  30. // RetCode
  31. KGET(context, int, retcode);
  32. FAUX_HIDDEN KSET(context, int, retcode);
  33. // Plugin
  34. KGET(context, kplugin_t *, plugin);
  35. FAUX_HIDDEN KSET(context, kplugin_t *, plugin);
  36. // Sym
  37. KGET(context, ksym_t *, sym);
  38. FAUX_HIDDEN KSET(context, ksym_t *, sym);
  39. // Action
  40. KGET(context, kaction_t *, action);
  41. FAUX_HIDDEN KSET(context, kaction_t *, action);
  42. // Pargv
  43. KGET(context, kpargv_t *, pargv);
  44. FAUX_HIDDEN KSET(context, kpargv_t *, pargv);
  45. // STDIN
  46. KGET(context, int, stdin);
  47. FAUX_HIDDEN KSET(context, int, stdin);
  48. // STDOUT
  49. KGET(context, int, stdout);
  50. FAUX_HIDDEN KSET(context, int, stdout);
  51. // STDERR
  52. KGET(context, int, stderr);
  53. FAUX_HIDDEN KSET(context, int, stderr);
  54. // STDERR
  55. KGET(context, pid_t, pid);
  56. FAUX_HIDDEN KSET(context, pid_t, pid);
  57. kcontext_t *kcontext_new(kcontext_type_e type)
  58. {
  59. kcontext_t *context = NULL;
  60. context = faux_zmalloc(sizeof(*context));
  61. assert(context);
  62. if (!context)
  63. return NULL;
  64. // Initialize
  65. context->type = type;
  66. context->plugin = NULL;
  67. context->pargv = NULL;
  68. context->action = NULL;
  69. context->sym = NULL;
  70. // I/O
  71. context->stdin = -1;
  72. context->stdout = -1;
  73. context->stderr = -1;
  74. // PID
  75. context->pid = 0; // PID of currently executed ACTION
  76. return context;
  77. }
  78. void kcontext_free(kcontext_t *context)
  79. {
  80. if (!context)
  81. return;
  82. faux_free(context);
  83. }