X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafm-system-daemon.c;h=501a61c79e3d1c91bb523326ee1ccbf21e72f114;hb=c41158288f76b4809d01f3ec5028d8be609bb613;hp=ace6dc4cb3bf0b68096af525fc336440940e32a5;hpb=4d72f7da11f6c3ff3e5885ee51c415c119f0ace3;p=src%2Fapp-framework-main.git diff --git a/src/afm-system-daemon.c b/src/afm-system-daemon.c index ace6dc4..501a61c 100644 --- a/src/afm-system-daemon.c +++ b/src/afm-system-daemon.c @@ -1,5 +1,5 @@ /* - Copyright 2015 IoT.bzh + Copyright 2015, 2016, 2017 IoT.bzh author: José Bollo @@ -29,8 +29,8 @@ #include "verbose.h" #include "utils-jbus.h" #include "utils-json.h" +#include "utils-systemd.h" #include "afm.h" -#include "afm-db.h" #include "wgt-info.h" #include "wgtpkg-install.h" #include "wgtpkg-uninstall.h" @@ -38,6 +38,20 @@ static const char appname[] = "afm-system-daemon"; static const char *rootdir = NULL; +static void version() +{ + printf( + "\n" + " %s version="AFM_VERSION"\n" + "\n" + " Copyright (C) 2015, 2016, 2017 \"IoT.bzh\"\n" + " AFB comes with ABSOLUTELY NO WARRANTY.\n" + " Licence Apache 2\n" + "\n", + appname + ); +} + static void usage() { printf( @@ -47,6 +61,7 @@ static void usage() " -d run as a daemon\n" " -q quiet\n" " -v verbose\n" + " -V version\n" "\n", appname ); @@ -58,6 +73,7 @@ static struct option options[] = { { "quiet", no_argument, NULL, 'q' }, { "verbose", no_argument, NULL, 'v' }, { "help", no_argument, NULL, 'h' }, + { "version", no_argument, NULL, 'V' }, { NULL, 0, NULL, 0 } }; @@ -68,11 +84,19 @@ const char error_bad_request[] = "\"bad request\""; const char error_not_found[] = "\"not found\""; const char error_cant_start[] = "\"can't start\""; +static void do_reloads() +{ + /* enforce daemon reload */ + systemd_daemon_reload(0); + systemd_unit_restart_name(0, "sockets.target"); +} + static void on_install(struct sd_bus_message *smsg, struct json_object *req, void *unused) { const char *wgtfile; const char *root; int force; + int reload; struct wgt_info *ifo; struct json_object *resp; @@ -82,14 +106,17 @@ static void on_install(struct sd_bus_message *smsg, struct json_object *req, voi wgtfile = json_object_get_string(req); root = rootdir; force = 0; + reload = 1; break; case json_type_object: wgtfile = j_string_at(req, "wgt", NULL); if (wgtfile != NULL) { root = j_string_at(req, "root", rootdir); force = j_boolean_at(req, "force", 0); + reload = j_boolean_at(req, "reload", 1); break; } + /*@fallthrough@*/ default: jbus_reply_error_s(smsg, error_bad_request); return; @@ -100,6 +127,10 @@ static void on_install(struct sd_bus_message *smsg, struct json_object *req, voi if (ifo == NULL) jbus_reply_error_s(smsg, "\"installation failed\""); else { + /* reload if needed */ + if (reload) + do_reloads(); + /* build the response */ resp = json_object_new_object(); if(!resp || !j_add_string(resp, "added", wgt_info_desc(ifo)->idaver)) @@ -133,6 +164,7 @@ static void on_uninstall(struct sd_bus_message *smsg, struct json_object *req, v root = j_string_at(req, "root", rootdir); break; } + /*@fallthrough@*/ default: jbus_reply_error_s(smsg, error_bad_request); return; @@ -167,11 +199,14 @@ int main(int ac, char **av) LOGAUTH(appname); /* interpretation of arguments */ - while ((i = getopt_long(ac, av, "hdqvr:", options, NULL)) >= 0) { + while ((i = getopt_long(ac, av, "hdqvVr:", options, NULL)) >= 0) { switch (i) { case 'h': usage(); return 0; + case 'V': + version(); + return 0; case 'q': if (verbosity) verbosity--;