123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- #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>
- #include <klish/ksession.h>
- #include <klish/kaction.h>
- #include <klish/kscheme.h>
- struct kcontext_s {
- kcontext_type_e type;
- kscheme_t *scheme;
- int retcode;
- ksession_t *session;
- kplugin_t *plugin;
- kpargv_t *pargv;
- const kpargv_t *parent_pargv; // Parent
- faux_list_node_t *action_iter; // Current action
- ksym_t *sym;
- int stdin;
- int stdout;
- int stderr;
- pid_t pid;
- bool_t done; // If all actions are done
- char *pts_fname; // Pseudo Terminal Slave file name
- };
- // Simple methods
- // Type
- KGET(context, kcontext_type_e, type);
- FAUX_HIDDEN KSET(context, kcontext_type_e, type);
- // Scheme
- KGET(context, kscheme_t *, scheme);
- KSET(context, kscheme_t *, scheme);
- // RetCode
- KGET(context, int, retcode);
- FAUX_HIDDEN KSET(context, int, retcode);
- // Plugin
- FAUX_HIDDEN KSET(context, kplugin_t *, plugin);
- // Sym
- KGET(context, ksym_t *, sym);
- FAUX_HIDDEN KSET(context, ksym_t *, sym);
- // Pargv
- KGET(context, kpargv_t *, pargv);
- FAUX_HIDDEN KSET(context, kpargv_t *, pargv);
- // Parent pargv
- KGET(context, const kpargv_t *, parent_pargv);
- FAUX_HIDDEN KSET(context, const kpargv_t *, parent_pargv);
- // Action iterator
- KGET(context, faux_list_node_t *, action_iter);
- FAUX_HIDDEN KSET(context, faux_list_node_t *, action_iter);
- // 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);
- // PID
- KGET(context, pid_t, pid);
- FAUX_HIDDEN KSET(context, pid_t, pid);
- // Session
- KGET(context, ksession_t *, session);
- FAUX_HIDDEN KSET(context, ksession_t *, session);
- // Done
- KGET_BOOL(context, done);
- FAUX_HIDDEN KSET_BOOL(context, done);
- // PTS file name (Pseudo Terminal Slave)
- KSET_STR(context, pts_fname);
- KGET_STR(context, pts_fname);
- 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->scheme = NULL;
- context->retcode = 0;
- context->plugin = NULL;
- context->pargv = NULL;
- context->parent_pargv = NULL; // Don't free
- context->action_iter = NULL;
- context->sym = NULL;
- context->stdin = -1;
- context->stdout = -1;
- context->stderr = -1;
- context->pid = -1; // PID of currently executed ACTION
- context->session = NULL; // Don't free
- context->done = BOOL_FALSE;
- context->pts_fname = NULL;
- return context;
- }
- void kcontext_free(kcontext_t *context)
- {
- if (!context)
- return;
- kpargv_free(context->pargv);
- if (context->stdin != -1)
- close(context->stdin);
- if (context->stdout != -1)
- close(context->stdout);
- if (context->stderr != -1)
- close(context->stderr);
- faux_str_free(context->pts_fname);
- faux_free(context);
- }
- kparg_t *kcontext_candidate_parg(const kcontext_t *context)
- {
- const kpargv_t *pargv = NULL;
- assert(context);
- if (!context)
- return NULL;
- pargv = kcontext_parent_pargv(context);
- if (!pargv)
- return NULL;
- return kpargv_candidate_parg(pargv);
- }
- const kentry_t *kcontext_candidate_entry(const kcontext_t *context)
- {
- kparg_t *parg = NULL;
- assert(context);
- if (!context)
- return NULL;
- parg = kcontext_candidate_parg(context);
- if (!parg)
- return NULL;
- return kparg_entry(parg);
- }
- const char *kcontext_candidate_value(const kcontext_t *context)
- {
- kparg_t *parg = NULL;
- assert(context);
- if (!context)
- return NULL;
- parg = kcontext_candidate_parg(context);
- if (!parg)
- return NULL;
- return kparg_value(parg);
- }
- const kaction_t *kcontext_action(const kcontext_t *context)
- {
- faux_list_node_t *node = NULL;
- assert(context);
- if (!context)
- return NULL;
- node = kcontext_action_iter(context);
- if (!node)
- return NULL;
- return (const kaction_t *)faux_list_data(node);
- }
- const char *kcontext_script(const kcontext_t *context)
- {
- const kaction_t *action = NULL;
- assert(context);
- if (!context)
- return NULL;
- action = kcontext_action(context);
- if (!action)
- return NULL;
- return kaction_script(action);
- }
- bool_t kcontext_named_udata_new(kcontext_t *context,
- const char *name, void *data, kudata_data_free_fn free_fn)
- {
- assert(context);
- if (!context)
- return BOOL_FALSE;
- return kscheme_named_udata_new(context->scheme, name, data, free_fn);
- }
- void *kcontext_named_udata(const kcontext_t *context, const char *name)
- {
- assert(context);
- if (!context)
- return NULL;
- return kscheme_named_udata(context->scheme, name);
- }
- void *kcontext_udata(const kcontext_t *context)
- {
- kplugin_t *plugin = NULL;
- assert(context);
- if (!context)
- return NULL;
- plugin = kcontext_plugin(context);
- if (!plugin)
- return NULL;
- return kplugin_udata(plugin);
- }
- const kentry_t *kcontext_command(const kcontext_t *context)
- {
- kpargv_t *pargv = NULL;
- assert(context);
- if (!context)
- return NULL;
- pargv = kcontext_pargv(context);
- if (!pargv)
- return NULL;
- return kpargv_command(pargv);
- }
- kplugin_t *kcontext_plugin(const kcontext_t *context)
- {
- const kaction_t *action = NULL;
- assert(context);
- if (!context)
- return NULL;
- // If plugin field is specified then return it. It is specified for
- // plugin's init() and fini() functions.
- if (context->plugin)
- return context->plugin;
- // If plugin is not explicitly specified then return parent plugin for
- // currently executed sym (ACTION structure contains it).
- action = kcontext_action(context);
- if (!action)
- return NULL;
- return kaction_plugin(action);
- }
|