2000-04-26 04:03:38 -04:00
|
|
|
/*
|
2001-05-17 12:50:52 -04:00
|
|
|
args.c : small frontend to libPopt command line argument parser
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2001-05-17 12:50:52 -04:00
|
|
|
Copyright (C) 1999-2001 Timo Sirainen
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
2007-05-08 14:41:10 -04:00
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2000-04-26 04:03:38 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "module.h"
|
|
|
|
#include "args.h"
|
|
|
|
|
2008-01-25 07:43:16 -05:00
|
|
|
static GArray *iopt_tables = NULL;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
void args_register(struct poptOption *options)
|
|
|
|
{
|
2000-07-16 16:18:05 -04:00
|
|
|
if (iopt_tables == NULL) {
|
|
|
|
iopt_tables = g_array_new(TRUE, TRUE,
|
|
|
|
sizeof(struct poptOption));
|
|
|
|
}
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-07-16 16:18:05 -04:00
|
|
|
while (options->longName != NULL || options->shortName != '\0' ||
|
|
|
|
options->arg != NULL) {
|
2000-04-26 04:03:38 -04:00
|
|
|
g_array_append_val(iopt_tables, *options);
|
|
|
|
options = options+1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void args_execute(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
poptContext con;
|
|
|
|
int nextopt;
|
|
|
|
|
|
|
|
if (iopt_tables == NULL)
|
|
|
|
return;
|
|
|
|
|
2007-08-07 10:55:14 -04:00
|
|
|
con = poptGetContext(PACKAGE_TARNAME, argc, argv,
|
2000-07-16 16:18:05 -04:00
|
|
|
(struct poptOption *) (iopt_tables->data), 0);
|
2000-04-26 04:03:38 -04:00
|
|
|
poptReadDefaultConfig(con, TRUE);
|
|
|
|
|
|
|
|
while ((nextopt = poptGetNextOpt(con)) > 0) ;
|
|
|
|
|
|
|
|
if (nextopt != -1) {
|
2001-05-17 16:13:59 -04:00
|
|
|
printf("Error on option %s: %s.\n"
|
|
|
|
"Run '%s --help' to see a full list of "
|
|
|
|
"available command line options.\n",
|
|
|
|
poptBadOption(con, 0), poptStrerror(nextopt), argv[0]);
|
2000-04-26 04:03:38 -04:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_array_free(iopt_tables, TRUE);
|
|
|
|
iopt_tables = NULL;
|
2001-10-14 10:14:54 -04:00
|
|
|
|
|
|
|
poptFreeContext(con);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|