/* * Copyright © 2014 Red Hat, Inc * * This program 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 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, see . * * Authors: * Alexander Larsson */ #include "config.h" #include #include #include #include #include "libgsystem.h" #include "libglnx/libglnx.h" #include "xdg-app-builtins.h" #include "xdg-app-utils.h" static char *opt_arch; static char *opt_commit; static gboolean opt_force_remove; static gboolean opt_no_pull; static gboolean opt_no_deploy; static gboolean opt_runtime; static gboolean opt_app; static gboolean opt_appstream; static GOptionEntry options[] = { { "arch", 0, 0, G_OPTION_ARG_STRING, &opt_arch, "Arch to update for", "ARCH" }, { "commit", 0, 0, G_OPTION_ARG_STRING, &opt_commit, "Commit to deploy", "COMMIT" }, { "force-remove", 0, 0, G_OPTION_ARG_NONE, &opt_force_remove, "Remove old files even if running", NULL }, { "no-pull", 0, 0, G_OPTION_ARG_NONE, &opt_no_pull, "Don't pull, only update from local cache", }, { "no-deploy", 0, 0, G_OPTION_ARG_NONE, &opt_no_deploy, "Don't deploy, only download to local cache", }, { "runtime", 0, 0, G_OPTION_ARG_NONE, &opt_runtime, "Look for runtime with the specified name", }, { "app", 0, 0, G_OPTION_ARG_NONE, &opt_app, "Look for app with the specified name", }, { "appstream", 0, 0, G_OPTION_ARG_NONE, &opt_appstream, "Update appstream for remote", }, { NULL } }; static gboolean update_appstream (XdgAppDir *dir, const char *remote, GCancellable *cancellable, GError **error) { gboolean changed; if (!xdg_app_dir_update_appstream (dir, remote, opt_arch, &changed, NULL, cancellable, error)) return FALSE; return TRUE; } gboolean xdg_app_builtin_update (int argc, char **argv, GCancellable *cancellable, GError **error) { g_autoptr(GOptionContext) context = NULL; g_autoptr(XdgAppDir) dir = NULL; const char *name; const char *branch = NULL; g_autofree char *ref = NULL; g_autofree char *repository = NULL; gboolean was_updated = FALSE; gboolean is_app; g_auto(GLnxLockFile) lock = GLNX_LOCK_FILE_INIT; context = g_option_context_new ("NAME [BRANCH] - Update an application or runtime"); if (!xdg_app_option_context_parse (context, options, &argc, &argv, 0, &dir, cancellable, error)) return FALSE; if (argc < 2) return usage_error (context, "NAME must be specified", error); name = argv[1]; if (argc >= 3) branch = argv[2]; if (!opt_app && !opt_runtime) opt_app = opt_runtime = TRUE; if (opt_appstream) return update_appstream (dir, name, cancellable, error); ref = xdg_app_dir_find_installed_ref (dir, name, branch, opt_arch, opt_app, opt_runtime, &is_app, error); if (ref == NULL) return FALSE; repository = xdg_app_dir_get_origin (dir, ref, cancellable, error); if (repository == NULL) return FALSE; if (!opt_no_pull) { if (!xdg_app_dir_pull (dir, repository, ref, NULL, cancellable, error)) return FALSE; } if (!opt_no_deploy) { if (!xdg_app_dir_lock (dir, &lock, cancellable, error)) return FALSE; if (!xdg_app_dir_deploy_update (dir, ref, opt_commit, &was_updated, cancellable, error)) return FALSE; if (was_updated && is_app) { if (!xdg_app_dir_update_exports (dir, name, cancellable, error)) return FALSE; } glnx_release_lock_file (&lock); } if (was_updated) { if (!xdg_app_dir_prune (dir, cancellable, error)) return FALSE; if (!xdg_app_dir_mark_changed (dir, error)) return FALSE; } xdg_app_dir_cleanup_removed (dir, cancellable, NULL); return TRUE; } gboolean xdg_app_builtin_update_runtime (int argc, char **argv, GCancellable *cancellable, GError **error) { opt_runtime = TRUE; opt_app = FALSE; return xdg_app_builtin_update (argc, argv, cancellable, error); } gboolean xdg_app_builtin_update_app (int argc, char **argv, GCancellable *cancellable, GError **error) { opt_runtime = FALSE; opt_app = TRUE; return xdg_app_builtin_update (argc, argv, cancellable, error); }