From 383aa6559ee06236b7600df8df17d7f3ab254ca3 Mon Sep 17 00:00:00 2001 From: midipix Date: Tue, 29 Dec 2015 04:48:00 -0500 Subject: created skeleton. --- src/apimagic.c | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/apimagic.c (limited to 'src/apimagic.c') diff --git a/src/apimagic.c b/src/apimagic.c new file mode 100644 index 0000000..4522e73 --- /dev/null +++ b/src/apimagic.c @@ -0,0 +1,66 @@ +/**********************************************************/ +/* apimagic: cparser-based API normalization utility */ +/* Copyright (C) 2015--2016 Z. Gilboa */ +/* Released under GPLv2 and GPLv3; see COPYING.APIMAGIC. */ +/**********************************************************/ + +#include +#include +#include +#include "apimagic_version.h" + +#ifndef AMGC_DRIVER_FLAGS +#define AMGC_DRIVER_FLAGS AMGC_DRIVER_VERBOSITY_ERRORS \ + | AMGC_DRIVER_VERBOSITY_USAGE +#endif + +static const char vermsg[] = "%s (git://midipix.org/apimagic): commit %s.\n"; + +static ssize_t apimagic_version(struct amgc_driver_ctx * dctx) +{ + return fprintf(stdout,vermsg,dctx->program,APIMAGIC_GIT_VERSION); +} + +static void apimagic_perform_unit_actions(struct amgc_unit_ctx * uctx) +{ +} + +static int apimagic_exit(struct amgc_driver_ctx * dctx, int nerrors) +{ + amgc_free_driver_ctx(dctx); + return nerrors ? 2 : 0; +} + +int apimagic_main(int argc, const char ** argv, const char ** envp) +{ + int ret; + struct amgc_driver_ctx * dctx; + struct amgc_unit_ctx * uctx; + const char ** unit; + + if ((ret = amgc_get_driver_ctx(argv,envp,AMGC_DRIVER_FLAGS,&dctx))) + return (ret == AMGC_USAGE) ? !--argc : 2; + + if (dctx->cctx->drvflags & AMGC_DRIVER_VERSION) + if ((apimagic_version(dctx)) < 0) + return apimagic_exit(dctx,2); + + for (unit=dctx->units; *unit; unit++) { + if (!(amgc_get_unit_ctx(dctx,*unit,&uctx))) { + apimagic_perform_unit_actions(uctx); + ret += uctx->nerrors; + amgc_free_unit_ctx(uctx); + } + } + + return apimagic_exit(dctx,ret); +} + +#ifndef APIMAGIC_IN_A_BOX + +int main(int argc, const char ** argv, const char ** envp) +{ + return apimagic_main(argc,argv,envp); +} + +#endif -- cgit v1.2.3