123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- #include <assert.h>
- #include <sys/types.h>
- #include <unistd.h>
- #include <faux/str.h>
- #include <faux/conv.h>
- #include <faux/list.h>
- #include <klish/khelper.h>
- #include <klish/kpargv.h>
- #include <klish/kcontext.h>
- #include <klish/kscheme.h>
- struct kcontext_s {
- kcontext_type_e type;
- int retcode;
- kplugin_t *plugin;
- kpargv_t *pargv;
- kaction_t *action; // Current action
- ksym_t *sym;
- int stdin;
- int stdout;
- int stderr;
- pid_t pid;
- };
- // Simple methods
- // Type
- KGET(context, kcontext_type_e, type);
- FAUX_HIDDEN KSET(context, kcontext_type_e, type);
- // RetCode
- KGET(context, int, retcode);
- FAUX_HIDDEN KSET(context, int, retcode);
- // Plugin
- KGET(context, kplugin_t *, plugin);
- FAUX_HIDDEN KSET(context, kplugin_t *, plugin);
- // Sym
- KGET(context, ksym_t *, sym);
- FAUX_HIDDEN KSET(context, ksym_t *, sym);
- // Action
- KGET(context, kaction_t *, action);
- FAUX_HIDDEN KSET(context, kaction_t *, action);
- // Pargv
- KGET(context, kpargv_t *, pargv);
- FAUX_HIDDEN KSET(context, kpargv_t *, pargv);
- // STDIN
- KGET(context, int, stdin);
- FAUX_HIDDEN KSET(context, int, stdin);
- // STDOUT
- KGET(context, int, stdout);
- FAUX_HIDDEN KSET(context, int, stdout);
- // STDERR
- KGET(context, int, stderr);
- FAUX_HIDDEN KSET(context, int, stderr);
- // STDERR
- KGET(context, pid_t, pid);
- FAUX_HIDDEN KSET(context, pid_t, pid);
- kcontext_t *kcontext_new(kcontext_type_e type)
- {
- kcontext_t *context = NULL;
- context = faux_zmalloc(sizeof(*context));
- assert(context);
- if (!context)
- return NULL;
- // Initialize
- context->type = type;
- context->plugin = NULL;
- context->pargv = NULL;
- context->action = NULL;
- context->sym = NULL;
- // I/O
- context->stdin = -1;
- context->stdout = -1;
- context->stderr = -1;
- // PID
- context->pid = 0; // PID of currently executed ACTION
- return context;
- }
- void kcontext_free(kcontext_t *context)
- {
- if (!context)
- return;
- faux_free(context);
- }
|