diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-11-26 17:35:04 +0900 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-12-08 18:09:40 +0900 |
commit | f36bb1e182a558d284db488d8cbd67c3563fe2eb (patch) | |
tree | 890bd6549f5fd60e43ee3ba036d3aadf2bafbff1 /src/journal-remote/journal-upload.c | |
parent | c9ed608679b26d05782d43a571da2979b537389e (diff) | |
download | systemd-f36bb1e182a558d284db488d8cbd67c3563fe2eb.tar.gz |
journal-upload: define main through macro
Diffstat (limited to 'src/journal-remote/journal-upload.c')
-rw-r--r-- | src/journal-remote/journal-upload.c | 53 |
1 files changed, 24 insertions, 29 deletions
diff --git a/src/journal-remote/journal-upload.c b/src/journal-remote/journal-upload.c index fd282ca19c..1e08fcc554 100644 --- a/src/journal-remote/journal-upload.c +++ b/src/journal-remote/journal-upload.c @@ -10,6 +10,7 @@ #include "alloc-util.h" #include "conf-parser.h" +#include "daemon-util.h" #include "def.h" #include "env-file.h" #include "fd-util.h" @@ -18,6 +19,7 @@ #include "glob-util.h" #include "journal-upload.h" #include "log.h" +#include "main-func.h" #include "mkdir.h" #include "parse-util.h" #include "pretty-print.h" @@ -761,10 +763,11 @@ static int open_journal(sd_journal **j) { return r; } -int main(int argc, char **argv) { +static int run(int argc, char **argv) { + _cleanup_(notify_on_cleanup) const char *notify_message = NULL; _cleanup_(destroy_uploader) Uploader u = {}; - int r; bool use_journal; + int r; log_show_color(true); log_parse_environment(); @@ -774,23 +777,23 @@ int main(int argc, char **argv) { r = parse_config(); if (r < 0) - goto finish; + return r; r = parse_argv(argc, argv); if (r <= 0) - goto finish; + return r; sigbus_install(); r = setup_uploader(&u, arg_url, arg_save_state); if (r < 0) - goto cleanup; + return r; sd_event_set_watchdog(u.events, true); r = check_cursor_updating(&u); if (r < 0) - goto cleanup; + return r; log_debug("%s running as pid "PID_FMT, program_invocation_short_name, getpid_cached()); @@ -800,59 +803,51 @@ int main(int argc, char **argv) { sd_journal *j; r = open_journal(&j); if (r < 0) - goto finish; + return r; r = open_journal_for_upload(&u, j, arg_cursor ?: u.last_cursor, arg_cursor ? arg_after_cursor : true, !!arg_follow); if (r < 0) - goto finish; + return r; } - sd_notify(false, - "READY=1\n" - "STATUS=Processing input..."); + notify_message = notify_start("READY=1\n" + "STATUS=Processing input...", + NOTIFY_STOPPING); for (;;) { r = sd_event_get_state(u.events); if (r < 0) - break; + return r; if (r == SD_EVENT_FINISHED) - break; + return 0; if (use_journal) { if (!u.journal) - break; + return 0; r = check_journal_input(&u); } else if (u.input < 0 && !use_journal) { if (optind >= argc) - break; + return 0; log_debug("Using %s as input.", argv[optind]); r = open_file_for_upload(&u, argv[optind++]); } if (r < 0) - goto cleanup; + return r; if (u.uploading) { r = perform_upload(&u); if (r < 0) - break; + return r; } r = sd_event_run(u.events, u.timeout); - if (r < 0) { - log_error_errno(r, "Failed to run event loop: %m"); - break; - } + if (r < 0) + return log_error_errno(r, "Failed to run event loop: %m"); } - -cleanup: - sd_notify(false, - "STOPPING=1\n" - "STATUS=Shutting down..."); - -finish: - return r >= 0 ? EXIT_SUCCESS : EXIT_FAILURE; } + +DEFINE_MAIN_FUNCTION(run); |