| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /*
- * libcsync -- a library to sync a directory with another
- *
- * Copyright (c) 2008-2013 by Andreas Schneider <asn@cryptomilk.org>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
- #include "config_csync.h"
- #include "torture.h"
- #ifdef HAVE_ARGP_H
- #include <argp.h>
- const char *argp_program_version = "csync test 0.2";
- const char *argp_program_bug_address = "<csync-devel@csync.org>";
- static char **cmdline;
- /* Program documentation. */
- static char doc[] = "csync test";
- /* The options we understand. */
- static struct argp_option options[] = {
- {
- .name = "verbose",
- .key = 'v',
- .arg = NULL,
- .flags = 0,
- .doc = "Make csync test more verbose",
- .group = 0
- },
- {NULL, 0, NULL, 0, NULL, 0}
- };
- /* Parse a single option. */
- static error_t parse_opt (int key, char *arg, struct argp_state *state) {
- /* Get the input argument from argp_parse, which we
- * know is a pointer to our arguments structure.
- */
- struct argument_s *arguments = state->input;
- /* arg is currently not used */
- (void) arg;
- switch (key) {
- case 'v':
- arguments->verbose++;
- break;
- case ARGP_KEY_ARG:
- /* End processing here. */
- cmdline = &state->argv [state->next - 1];
- state->next = state->argc;
- break;
- default:
- return ARGP_ERR_UNKNOWN;
- }
- return 0;
- }
- /* Our argp parser. */
- /* static struct argp argp = {options, parse_opt, args_doc, doc, NULL, NULL, NULL}; */
- static struct argp argp = {options, parse_opt, NULL, doc, NULL, NULL, NULL};
- #endif /* HAVE_ARGP_H */
- void torture_cmdline_parse(int argc, char **argv, struct argument_s *arguments) {
- /*
- * Parse our arguments; every option seen by parse_opt will
- * be reflected in arguments.
- */
- #ifdef HAVE_ARGP_H
- argp_parse(&argp, argc, argv, 0, 0, arguments);
- #else
- (void) argc;
- (void) argv;
- (void) arguments;
- #endif /* HAVE_ARGP_H */
- }
|