diff options
author | midipix <writeonce@midipix.org> | 2015-12-14 01:58:21 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2015-12-14 01:58:21 -0500 |
commit | f4603994a39431c8cee036216a6d15ab7281b0c6 (patch) | |
tree | 8fc779f0c3ec5e8f0041c89b1700ffd2120f6b42 /src/driver/sfrt_driver_ctx.c | |
parent | 668af644e512cc911a32a955078866d9151bae80 (diff) | |
download | sofort-f4603994a39431c8cee036216a6d15ab7281b0c6.tar.bz2 sofort-f4603994a39431c8cee036216a6d15ab7281b0c6.tar.xz |
initial commit.
Diffstat (limited to 'src/driver/sfrt_driver_ctx.c')
-rw-r--r-- | src/driver/sfrt_driver_ctx.c | 169 |
1 files changed, 169 insertions, 0 deletions
diff --git a/src/driver/sfrt_driver_ctx.c b/src/driver/sfrt_driver_ctx.c new file mode 100644 index 0000000..75afd0c --- /dev/null +++ b/src/driver/sfrt_driver_ctx.c @@ -0,0 +1,169 @@ +#include <stdint.h> +#include <unistd.h> +#include <fcntl.h> + +#define ARGV_DRIVER + +#include <sofort/sofort.h> +#include "sofort_driver_impl.h" +#include "argv/argv.h" + +extern const struct argv_option sfrt_default_options[]; + +struct sfrt_driver_ctx_alloc { + struct argv_meta * meta; + struct sfrt_driver_ctx_impl ctx; + uint64_t guard; + const char * units[]; +}; + +static uint32_t sfrt_argv_flags(uint32_t flags) +{ + uint32_t ret = 0; + + if (flags & SFRT_DRIVER_VERBOSITY_NONE) + ret |= ARGV_VERBOSITY_NONE; + + if (flags & SFRT_DRIVER_VERBOSITY_ERRORS) + ret |= ARGV_VERBOSITY_ERRORS; + + if (flags & SFRT_DRIVER_VERBOSITY_STATUS) + ret |= ARGV_VERBOSITY_STATUS; + + return ret; +} + +static int sfrt_driver_usage( + const char * program, + const char * arg, + const struct argv_option * options, + struct argv_meta * meta) +{ + char header[512]; + + snprintf(header,sizeof(header), + "Usage: %s [options] <file>...\n" "Options:\n", + program); + + argv_usage(stdout,header,options,arg); + argv_free(meta); + + return SFRT_USAGE; +} + +static struct sfrt_driver_ctx_impl * sfrt_driver_ctx_alloc(struct argv_meta * meta, size_t nunits) +{ + struct sfrt_driver_ctx_alloc * ictx; + size_t size; + struct argv_entry * entry; + const char ** units; + + size = sizeof(struct sfrt_driver_ctx_alloc); + size += (nunits+1)*sizeof(const char *); + + if (!(ictx = calloc(size,1))) + return 0; + + for (entry=meta->entries,units=ictx->units; entry->fopt || entry->arg; entry++) + if (!entry->fopt) + *units++ = entry->arg; + + ictx->ctx.ctx.units = ictx->units; + return &ictx->ctx; +} + +int sfrt_get_driver_ctx_fail(struct argv_meta * meta) +{ + argv_free(meta); + return -1; +} + +int sfrt_get_driver_ctx( + const char ** argv, + const char ** envp, + uint32_t flags, + struct sfrt_driver_ctx ** pctx) +{ + struct sfrt_driver_ctx_impl * ctx; + const struct argv_option * options; + struct argv_meta * meta; + struct argv_entry * entry; + size_t nunits; + uint64_t dflags; + uint64_t aflags; + const char * program; + const char * astring; + + options = sfrt_default_options; + + if (!(meta = argv_get(argv,options,sfrt_argv_flags(flags)))) + return -1; + + dflags = 0; + aflags = 0; + nunits = 0; + astring = 0; + program = argv_program_name(argv[0]); + + if (!argv[1] && (flags & SFRT_DRIVER_VERBOSITY_USAGE)) + return sfrt_driver_usage(program,0,options,meta); + + /* get options, count units */ + for (entry=meta->entries; entry->fopt || entry->arg; entry++) { + if (entry->fopt) { + switch (entry->tag) { + case TAG_HELP: + if (flags & SFRT_DRIVER_VERBOSITY_USAGE) + return sfrt_driver_usage(program,entry->arg,options,meta); + + case TAG_VERSION: + dflags |= SFRT_DRIVER_VERSION; + break; + + case TAG_OUTPUT_DUMMY: + astring = entry->arg; + break; + + case TAG_OUTPUT_PROPERTY: + if (!(strcmp(entry->arg,"name"))) + aflags |= SFRT_OUTPUT_NAME; + else if (!(strcmp(entry->arg,"address"))) + aflags |= SFRT_OUTPUT_ADDRESS; + break; + } + } else + nunits++; + } + + if (!(ctx = sfrt_driver_ctx_alloc(meta,nunits))) + return sfrt_get_driver_ctx_fail(meta); + + ctx->ctx.program = program; + ctx->cctx.drvflags = dflags; + ctx->cctx.actflags = aflags; + ctx->cctx.anystring = astring; + + ctx->ctx.cctx = &ctx->cctx; + + *pctx = &ctx->ctx; + return SFRT_OK; +} + +static void sfrt_free_driver_ctx_impl(struct sfrt_driver_ctx_alloc * ictx) +{ + argv_free(ictx->meta); + free(ictx); +} + +void sfrt_free_driver_ctx(struct sfrt_driver_ctx * ctx) +{ + struct sfrt_driver_ctx_alloc * ictx; + uintptr_t addr; + + if (ctx) { + addr = (uintptr_t)ctx - offsetof(struct sfrt_driver_ctx_alloc,ctx); + addr = addr - offsetof(struct sfrt_driver_ctx_impl,ctx); + ictx = (struct sfrt_driver_ctx_alloc *)addr; + sfrt_free_driver_ctx_impl(ictx); + } +} |