summaryrefslogtreecommitdiffhomepage
path: root/src/driver
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-12-08 04:26:32 -0500
committermidipix <writeonce@midipix.org>2016-11-10 23:35:31 -0500
commit2495909f9888df0fba7d9192bc63c1dc3e0d29ca (patch)
treeabc6c2c8d9e980366dcd6e627b574b76a1ffa91e /src/driver
parent44d7e6e04a6c6fa6cc03b36d42ac3b7856fe0184 (diff)
downloadperk-2495909f9888df0fba7d9192bc63c1dc3e0d29ca.tar.bz2
perk-2495909f9888df0fba7d9192bc63c1dc3e0d29ca.tar.xz
program driver: adjust source tree to support multiple skins.
Diffstat (limited to 'src/driver')
-rw-r--r--src/driver/pe_driver_ctx.c47
1 files changed, 10 insertions, 37 deletions
diff --git a/src/driver/pe_driver_ctx.c b/src/driver/pe_driver_ctx.c
index e5df2a5..016302e 100644
--- a/src/driver/pe_driver_ctx.c
+++ b/src/driver/pe_driver_ctx.c
@@ -2,46 +2,15 @@
#include <unistd.h>
#include <fcntl.h>
+#define ARGV_DRIVER
+
#include <perk/perk.h>
#include <perk/perk_output.h>
+#include "perk_driver_impl.h"
#include "perk_impl.h"
#include "argv/argv.h"
-enum app_tags {
- TAG_HELP,
- TAG_VERSION,
- TAG_OUTPUT,
- TAG_PRETTY,
- TAG_EXPSYMS,
- TAG_IMPLIBS,
- TAG_IMPSYMS,
-};
-
-static const struct argv_option options[] = {
- {"version", 'v',TAG_VERSION,ARGV_OPTARG_NONE, 0,0,
- "show version information"},
-
- {"help", 'h',TAG_HELP, ARGV_OPTARG_OPTIONAL, "short|long",0,
- "show usage information "
- "[listing %s options only]"},
-
- {"output", 'o',TAG_OUTPUT, ARGV_OPTARG_REQUIRED, 0,"<file>",
- "write output to %s"},
-
- {"pretty", 'p',TAG_PRETTY, ARGV_OPTARG_REQUIRED, "yaml",0,
- "format output for parsing by %s"},
-
- {"expsyms", 'e',TAG_EXPSYMS,ARGV_OPTARG_NONE, 0,0,
- "print exported symbols" },
-
- {"implibs", 'i',TAG_IMPLIBS,ARGV_OPTARG_NONE, 0,0,
- "list direct dependency libraries"},
-
- {"impsyms", 'I',TAG_IMPSYMS,ARGV_OPTARG_NONE, 0,0,
- "list direct dependency libraries "
- "along with required symbols"},
- {0}
-};
+extern const struct argv_option pe_default_options[];
struct pe_driver_ctx_alloc {
struct argv_meta * meta;
@@ -69,6 +38,7 @@ static uint32_t pe_argv_flags(uint32_t flags)
static int pe_driver_usage(
const char * program,
const char * arg,
+ const struct argv_option * options,
struct argv_meta * meta)
{
char header[512];
@@ -124,6 +94,7 @@ int pe_get_driver_ctx(
struct pe_driver_ctx ** pctx)
{
struct pe_driver_ctx_impl * ctx;
+ const struct argv_option * options;
struct argv_meta * meta;
struct argv_entry * entry;
size_t nunits;
@@ -134,6 +105,8 @@ int pe_get_driver_ctx(
const char * pretty;
int fdout;
+ options = pe_default_options;
+
if (!(meta = argv_get(argv,options,pe_argv_flags(flags))))
return -1;
@@ -146,7 +119,7 @@ int pe_get_driver_ctx(
program = argv_program_name(argv[0]);
if (!argv[1] && (flags & PERK_DRIVER_VERBOSITY_USAGE))
- return pe_driver_usage(program,0,meta);
+ return pe_driver_usage(program,0,options,meta);
/* get options, count units */
for (entry=meta->entries; entry->fopt || entry->arg; entry++) {
@@ -154,7 +127,7 @@ int pe_get_driver_ctx(
switch (entry->tag) {
case TAG_HELP:
if (flags & PERK_DRIVER_VERBOSITY_USAGE)
- return pe_driver_usage(program,entry->arg,meta);
+ return pe_driver_usage(program,entry->arg,options,meta);
case TAG_VERSION:
dflags |= PERK_DRIVER_VERSION;