]> git.ozlabs.org Git - petitboot/blobdiff - discover/pb-discover.c
lib/efi: Cleanup read/write routines
[petitboot] / discover / pb-discover.c
index ccd1c7daba597441c9df3dac3e67f89ed2aeab50..c494eeb31ba5e595a15b7df387270c6e1d7b1781 100644 (file)
@@ -7,18 +7,19 @@
 #include <getopt.h>
 #include <stdlib.h>
 #include <signal.h>
+#include <locale.h>
 #include <string.h>
 
 #include <waiter/waiter.h>
 #include <log/log.h>
-#include <pb-config/pb-config.h>
 #include <process/process.h>
+#include <talloc/talloc.h>
+#include <i18n/i18n.h>
 
-#include "udev.h"
-#include "user-event.h"
 #include "discover-server.h"
 #include "device-handler.h"
-#include "network.h"
+#include "sysinfo.h"
+#include "platform.h"
 
 static void print_version(void)
 {
@@ -30,7 +31,7 @@ static void print_usage(void)
        print_version();
        printf(
 "Usage: pb-discover [-a, --no-autoboot] [-h, --help] [-l, --log log-file]\n"
-"                   [-n, --dry-run] [-V, --version]\n");
+"                   [-n, --dry-run] [-v, --verbose] [-V, --version]\n");
 }
 
 /**
@@ -49,6 +50,7 @@ struct opts {
        const char *log_file;
        enum opt_value dry_run;
        enum opt_value show_version;
+       enum opt_value verbose;
 };
 
 /**
@@ -62,14 +64,16 @@ static int opts_parse(struct opts *opts, int argc, char *argv[])
                {"help",           no_argument,       NULL, 'h'},
                {"log",            required_argument, NULL, 'l'},
                {"dry-run",        no_argument,       NULL, 'n'},
+               {"verbose",        no_argument,       NULL, 'v'},
                {"version",        no_argument,       NULL, 'V'},
                { NULL, 0, NULL, 0},
        };
-       static const char short_options[] = "ahl:nV";
+       static const char short_options[] = "ahl:nvV";
        static const struct opts default_values = {
                .no_autoboot = opt_no,
                .log_file = "/var/log/petitboot/pb-discover.log",
                .dry_run = opt_no,
+               .verbose = opt_no,
        };
 
        *opts = default_values;
@@ -94,6 +98,9 @@ static int opts_parse(struct opts *opts, int argc, char *argv[])
                case 'n':
                        opts->dry_run = opt_yes;
                        break;
+               case 'v':
+                       opts->verbose = opt_yes;
+                       break;
                case 'V':
                        opts->show_version = opt_yes;
                        break;
@@ -117,14 +124,15 @@ int main(int argc, char *argv[])
 {
        struct device_handler *handler;
        struct discover_server *server;
-       struct network *network;
        struct waitset *waitset;
        struct procset *procset;
        struct opts opts;
-       struct pb_udev *udev;
-       struct user_event *uev;
        FILE *log;
 
+       setlocale(LC_ALL, "");
+       bindtextdomain(PACKAGE, LOCALEDIR);
+       textdomain(PACKAGE);
+
        if (opts_parse(&opts, argc, argv)) {
                print_usage();
                return EXIT_FAILURE;
@@ -151,6 +159,9 @@ int main(int argc, char *argv[])
        }
        pb_log_init(log);
 
+       if (opts.verbose == opt_yes)
+               pb_log_set_debug(true);
+
        pb_log("--- pb-discover ---\n");
 
        /* we look for closed sockets when we write, so ignore SIGPIPE */
@@ -168,28 +179,23 @@ int main(int argc, char *argv[])
        if (!procset)
                return EXIT_FAILURE;
 
-       config_init(NULL);
+       platform_init(NULL);
        if (opts.no_autoboot == opt_yes)
                config_set_autoboot(false);
 
-       handler = device_handler_init(server, waitset, opts.dry_run == opt_yes);
-       if (!handler)
-               return EXIT_FAILURE;
+       if (config_get()->lang)
+               setlocale(LC_ALL, config_get()->lang);
 
-       discover_server_set_device_source(server, handler);
+       if (config_get()->debug)
+               pb_log_set_debug(true);
 
-       /* init our device sources: udev, network and user events */
-       udev = udev_init(waitset, handler);
-       if (!udev)
-               return EXIT_FAILURE;
+       system_info_init(server);
 
-       network = network_init(handler, waitset, opts.dry_run == opt_yes);
-       if (!network)
+       handler = device_handler_init(server, waitset, opts.dry_run == opt_yes);
+       if (!handler)
                return EXIT_FAILURE;
 
-       uev = user_event_init(waitset, handler);
-       if (!uev)
-               return EXIT_FAILURE;
+       discover_server_set_device_source(server, handler);
 
        for (running = 1; running;) {
                if (waiter_poll(waitset))
@@ -197,10 +203,14 @@ int main(int argc, char *argv[])
        }
 
        device_handler_destroy(handler);
-       udev_destroy(udev);
-       config_fini();
+       discover_server_destroy(server);
+       platform_fini();
+       talloc_free(waitset);
 
        pb_log("--- end ---\n");
 
+       if (log != stderr)
+               fclose(log);
+
        return EXIT_SUCCESS;
 }