diff options
author | Kay Sievers <kay.sievers@suse.de> | 2006-08-21 02:38:20 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@suse.de> | 2006-08-21 02:38:20 +0200 |
commit | e3396a2d383cf19092911a4643e092f6a825b2aa (patch) | |
tree | 8b002d91b5af5b243d1bb623c22309a2e3c96cf4 /udevtest.c | |
parent | c4edd0adb55ebf625a0f190071b930b469c58dd8 (diff) |
cleanup commandline argument handling
Print and log failure, but don't fail for tools which are
usually not used iteractively. Add '--help' to all tools.
Diffstat (limited to 'udevtest.c')
-rw-r--r-- | udevtest.c | 38 |
1 files changed, 23 insertions, 15 deletions
diff --git a/udevtest.c b/udevtest.c index 22627c05a7..f8010ca5b8 100644 --- a/udevtest.c +++ b/udevtest.c @@ -2,6 +2,7 @@ * udevtest.c * * Copyright (C) 2003-2004 Greg Kroah-Hartman <greg@kroah.com> + * Copyright (C) 2004-2006 Kay Sievers <kay.sievers@vrfy.org> * * 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 @@ -50,45 +51,52 @@ void log_message (int priority, const char *format, ...) int main(int argc, char *argv[], char *envp[]) { - struct udev_rules rules; - char *devpath; + struct udev_rules rules = {}; + char *devpath = NULL; struct udevice *udev; struct sysfs_device *dev; + int i; int retval; int rc = 0; info("version %s", UDEV_VERSION); - - /* initialize our configuration */ udev_config_init(); if (udev_log_priority < LOG_INFO) udev_log_priority = LOG_INFO; - if (argc != 2) { - info("Usage: udevtest <devpath>"); - return 1; + for (i = 1 ; i < argc; i++) { + char *arg = argv[i]; + + if (strcmp(arg, "--help") == 0 || strcmp(arg, "-h") == 0) { + printf("Usage: udevtest [--help] <devpath>\n"); + goto exit; + } else + devpath = arg; + } + + if (devpath == NULL) { + fprintf(stderr, "devpath parameter missing\n"); + rc = 1; + goto exit; } sysfs_init(); + udev_rules_init(&rules, 0); /* remove /sys if given */ - if (strncmp(argv[1], sysfs_path, strlen(sysfs_path)) == 0) - devpath = &argv[1][strlen(sysfs_path)]; - else - devpath = argv[1]; - - udev_rules_init(&rules, 0); + if (strncmp(devpath, sysfs_path, strlen(sysfs_path)) == 0) + devpath = &devpath[strlen(sysfs_path)]; dev = sysfs_device_get(devpath); if (dev == NULL) { - info("unable to open '%s'", devpath); + fprintf(stderr, "unable to open device '%s'\n", devpath); rc = 2; goto exit; } udev = udev_device_init(); if (udev == NULL) { - info("can't open device"); + fprintf(stderr, "error initializing device\n"); rc = 3; goto exit; } |