/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * Copyright (C) 2014 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * 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 Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include #include #include #include #include "as-cleanup.h" #define AS_ERROR 1 #define AS_ERROR_INVALID_ARGUMENTS 0 #define AS_ERROR_NO_SUCH_CMD 1 #define AS_ERROR_FAILED 2 typedef struct { GOptionContext *context; GPtrArray *cmd_array; gboolean nonet; } AsUtilPrivate; typedef gboolean (*AsUtilPrivateCb) (AsUtilPrivate *util, gchar **values, GError **error); typedef struct { gchar *name; gchar *arguments; gchar *description; AsUtilPrivateCb callback; } AsUtilItem; /** * as_util_item_free: **/ static void as_util_item_free (AsUtilItem *item) { g_free (item->name); g_free (item->arguments); g_free (item->description); g_free (item); } /** * as_sort_command_name_cb: **/ static gint as_sort_command_name_cb (AsUtilItem **item1, AsUtilItem **item2) { return g_strcmp0 ((*item1)->name, (*item2)->name); } /** * as_util_add: **/ static void as_util_add (GPtrArray *array, const gchar *name, const gchar *arguments, const gchar *description, AsUtilPrivateCb callback) { AsUtilItem *item; guint i; _cleanup_strv_free_ gchar **names = NULL; g_return_if_fail (name != NULL); g_return_if_fail (description != NULL); g_return_if_fail (callback != NULL); /* add each one */ names = g_strsplit (name, ",", -1); for (i = 0; names[i] != NULL; i++) { item = g_new0 (AsUtilItem, 1); item->name = g_strdup (names[i]); if (i == 0) { item->description = g_strdup (description); } else { /* TRANSLATORS: this is a command alias */ item->description = g_strdup_printf (_("Alias to %s"), names[0]); } item->arguments = g_strdup (arguments); item->callback = callback; g_ptr_array_add (array, item); } } /** * as_util_get_descriptions: **/ static gchar * as_util_get_descriptions (GPtrArray *array) { guint i; guint j; guint len; const guint max_len = 35; AsUtilItem *item; GString *string; /* print each command */ string = g_string_new (""); for (i = 0; i < array->len; i++) { item = g_ptr_array_index (array, i); g_string_append (string, " "); g_string_append (string, item->name); len = strlen (item->name) + 2; if (item->arguments != NULL) { g_string_append (string, " "); g_string_append (string, item->arguments); len += strlen (item->arguments) + 1; } if (len < max_len) { for (j = len; j < max_len + 1; j++) g_string_append_c (string, ' '); g_string_append (string, item->description); g_string_append_c (string, '\n'); } else { g_string_append_c (string, '\n'); for (j = 0; j < max_len + 1; j++) g_string_append_c (string, ' '); g_string_append (string, item->description); g_string_append_c (string, '\n'); } } /* remove trailing newline */ if (string->len > 0) g_string_set_size (string, string->len - 1); return g_string_free (string, FALSE); } /** * as_util_run: **/ static gboolean as_util_run (AsUtilPrivate *priv, const gchar *command, gchar **values, GError **error) { AsUtilItem *item; guint i; _cleanup_string_free_ GString *string = NULL; /* for bash completion */ if (g_strcmp0 (command, "list-commands") == 0) { string = g_string_new (""); for (i = 0; i < priv->cmd_array->len; i++) { item = g_ptr_array_index (priv->cmd_array, i); g_string_append_printf (string, "%s ", item->name); } g_string_truncate (string, string->len - 1); g_print ("%s\n", string->str); return TRUE; } /* find command */ for (i = 0; i < priv->cmd_array->len; i++) { item = g_ptr_array_index (priv->cmd_array, i); if (g_strcmp0 (item->name, command) == 0) return item->callback (priv, values, error); } /* not found */ string = g_string_new (""); /* TRANSLATORS: error message */ g_string_append_printf (string, "%s\n", _("Command not found, valid commands are:")); for (i = 0; i < priv->cmd_array->len; i++) { item = g_ptr_array_index (priv->cmd_array, i); g_string_append_printf (string, " * %s %s\n", item->name, item->arguments ? item->arguments : ""); } g_set_error_literal (error, AS_ERROR, AS_ERROR_NO_SUCH_CMD, string->str); return FALSE; } /** * as_util_convert_appdata: **/ static gboolean as_util_convert_appdata (GFile *file_input, GFile *file_output, gdouble new_version, GError **error) { AsNodeInsertFlags flags_translate = AS_NODE_INSERT_FLAG_NONE; GNode *n; GNode *n2; GNode *n3; const gchar *tmp; const gchar *project_group = NULL; gboolean action_required = FALSE; _cleanup_node_unref_ GNode *root = NULL; /* load to GNode */ root = as_node_from_file (file_input, AS_NODE_FROM_XML_FLAG_LITERAL_TEXT | AS_NODE_FROM_XML_FLAG_KEEP_COMMENTS, NULL, error); if (root == NULL) return FALSE; /* convert from to */ n = as_node_find (root, "application"); if (n != NULL) { as_node_set_name (n, "component"); n2 = as_node_find (n, "id"); if (n2 != NULL) { tmp = as_node_get_attribute (n2, "type"); if (tmp != NULL) as_node_add_attribute (n, "type", tmp, -1); as_node_remove_attribute (n2, "type"); } } /* anything translatable */ n = as_node_find (root, "component"); if (as_node_find (n, "_name") != NULL || as_node_find (n, "_summary") != NULL || as_node_find (n, "screenshots/_caption") != NULL || as_node_find (n, "description/_p") != NULL) { flags_translate = AS_NODE_INSERT_FLAG_MARK_TRANSLATABLE; } /* convert from to */ n2 = as_node_find (n, "licence"); if (n2 != NULL) as_node_set_name (n2, "metadata_license"); /* ensure this exists */ n2 = as_node_find (n, "metadata_license"); if (n2 == NULL) { action_required = TRUE; n2 = as_node_insert (n, "metadata_license", "FIXME: Insert SPDX ID Here", AS_NODE_INSERT_FLAG_NONE, NULL); } else { tmp = as_node_get_data (n2); /* convert the old license defines */ if (g_strcmp0 (tmp, "CC0") == 0) as_node_set_data (n2, "CC0-1.0", -1, AS_NODE_INSERT_FLAG_NONE); else if (g_strcmp0 (tmp, "CC-BY") == 0) as_node_set_data (n2, "CC-BY-3.0", -1, AS_NODE_INSERT_FLAG_NONE); else if (g_strcmp0 (tmp, "CC-BY-SA") == 0) as_node_set_data (n2, "CC-BY-SA-3.0", -1, AS_NODE_INSERT_FLAG_NONE); else if (g_strcmp0 (tmp, "GFDL") == 0) as_node_set_data (n2, "GFDL-1.3", -1, AS_NODE_INSERT_FLAG_NONE); /* ensure in SPDX format */ if (!as_utils_is_spdx_license_id (as_node_get_data (n2))) { action_required = TRUE; as_node_set_comment (n2, "FIXME: convert to an SPDX ID", -1); } } /* ensure this exists */ n2 = as_node_find (n, "project_license"); if (n2 == NULL) { action_required = TRUE; n2 = as_node_insert (n, "project_license", "FIXME: Insert SPDX ID Here", AS_NODE_INSERT_FLAG_NONE, NULL); } else { /* ensure in SPDX format */ if (!as_utils_is_spdx_license_id (as_node_get_data (n2))) { action_required = TRUE; as_node_set_comment (n2, "FIXME: convert to an SPDX ID", -1); } } /* ensure exists for */ n2 = as_node_find (n, "compulsory_for_desktop"); if (n2 != NULL && as_node_find (n, "project_group") == NULL) { as_node_insert (n, "project_group", as_node_get_data (n2), AS_NODE_INSERT_FLAG_NONE, NULL); } /* add */ n2 = as_node_find (n, "_developer_name"); if (n2 == NULL) { n3 = as_node_find (n, "project_group"); if (n3 != NULL) { if (g_strcmp0 (as_node_get_data (n3), "GNOME") == 0) { as_node_insert (n, "developer_name", "The GNOME Project", flags_translate, NULL); } else if (g_strcmp0 (as_node_get_data (n3), "KDE") == 0) { as_node_insert (n, "developer_name", "KDE e.V.", AS_NODE_INSERT_FLAG_NONE, NULL); } else if (g_strcmp0 (as_node_get_data (n3), "XFCE") == 0) { as_node_insert (n, "developer_name", "Xfce Development Team", flags_translate, NULL); } else if (g_strcmp0 (as_node_get_data (n3), "MATE") == 0) { as_node_insert (n, "developer_name", "The MATE Project", flags_translate, NULL); } else { action_required = TRUE; n3 = as_node_insert (n, "developer_name", "FIXME: Company Name", AS_NODE_INSERT_FLAG_NONE, NULL); as_node_set_comment (n3, "FIXME: compulsory_for_desktop was not recognised", -1); } } else { action_required = TRUE; n3 = as_node_insert (n, "developer_name", "FIXME: Company Name", AS_NODE_INSERT_FLAG_NONE, NULL); as_node_set_comment (n3, "FIXME: You can use a project or " "developer name if there's no company", -1); } } n3 = as_node_find (n, "project_group"); if (n3 != NULL) project_group = as_node_get_data (n3); /* ensure each URL type exists */ if (as_node_find_with_attribute (n, "url", "type", "homepage") == NULL) { if (g_strcmp0 (project_group, "GNOME") == 0) { n3 = as_node_insert (n, "url", "FIXME: https://wiki.gnome.org/Apps/FIXME", AS_NODE_INSERT_FLAG_NONE, "type", "homepage", NULL); } else { n3 = as_node_insert (n, "url", "FIXME: http://www.homepage.com/", AS_NODE_INSERT_FLAG_NONE, "type", "homepage", NULL); as_node_set_comment (n3, "FIXME: homepage for the application", -1); } } if (as_node_find_with_attribute (n, "url", "type", "bugtracker") == NULL) { if (g_strcmp0 (project_group, "GNOME") == 0) { n3 = as_node_insert (n, "url", "FIXME: https://bugzilla.gnome.org/enter_bug.cgi?product=FIXME", AS_NODE_INSERT_FLAG_NONE, "type", "bugtracker", NULL); } else if (g_strcmp0 (project_group, "KDE") == 0) { n3 = as_node_insert (n, "url", "FIXME: https://bugs.kde.org/enter_bug.cgi?format=guided", AS_NODE_INSERT_FLAG_NONE, "type", "bugtracker", NULL); } else if (g_strcmp0 (project_group, "XFCE") == 0) { n3 = as_node_insert (n, "url", "FIXME: https://bugzilla.xfce.org/enter_bug.cgi", AS_NODE_INSERT_FLAG_NONE, "type", "bugtracker", NULL); } else { n3 = as_node_insert (n, "url", "FIXME: http://www.homepage.com/where-to-report_bug.html", AS_NODE_INSERT_FLAG_NONE, "type", "bugtracker", NULL); as_node_set_comment (n3, "FIXME: where to report bugs for " "the application, or empty for none", -1); } } if (as_node_find_with_attribute (n, "url", "type", "donation") == NULL) { if (g_strcmp0 (project_group, "GNOME") == 0) { n3 = as_node_insert (n, "url", "http://www.gnome.org/friends/", AS_NODE_INSERT_FLAG_NONE, "type", "donation", NULL); as_node_set_comment (n3, "GNOME Projects usually have no per-app donation page", -1); } else { n3 = as_node_insert (n, "url", "FIXME: http://www.homepage.com/donation.html", AS_NODE_INSERT_FLAG_NONE, "type", "donation", NULL); as_node_set_comment (n3, "FIXME: where to donate to the application", -1); } } if (as_node_find_with_attribute (n, "url", "type", "help") == NULL) { if (g_strcmp0 (project_group, "GNOME") == 0) { n3 = as_node_insert (n, "url", "FIXME: https://help.gnome.org/users/FIXME/stable/", AS_NODE_INSERT_FLAG_NONE, "type", "help", NULL); as_node_set_comment (n3, "FIXME: where on the internet users " "can find help or empty for none", -1); } else { n3 = as_node_insert (n, "url", "FIXME: http://www.homepage.com/docs/", AS_NODE_INSERT_FLAG_NONE, "type", "help", NULL); as_node_set_comment (n3, "FIXME: where to report bugs for " "the application, or empty for none", -1); } } /* add */ n2 = as_node_find (n, "updatecontact"); if (n2 == NULL) { action_required = TRUE; n3 = as_node_insert (n, "updatecontact", "FIXME: upstream_contact_at_email.com", AS_NODE_INSERT_FLAG_NONE, NULL); as_node_set_comment (n3, "FIXME: this is optional, but recommended", -1); } /* convert from url to: * * * XXX: Describe this screenshot * url * */ n = as_node_find (n, "screenshots"); if (n != NULL) { for (n2 = n->children; n2 != NULL; n2 = n2->next) { tmp = as_node_get_data (n2); if (tmp == NULL) continue; n3 = as_node_insert (n2, "image", tmp, AS_NODE_INSERT_FLAG_NONE, NULL); as_node_set_data (n3, tmp, -1, AS_NODE_INSERT_FLAG_NONE); as_node_set_data (n2, NULL, -1, AS_NODE_INSERT_FLAG_NONE); action_required = TRUE; as_node_insert (n2, "caption", "FIXME: Describe this " "screenshot in less than ~10 words", flags_translate, NULL); } } /* save to file */ if (!as_node_to_file (root, file_output, AS_NODE_TO_XML_FLAG_ADD_HEADER | AS_NODE_TO_XML_FLAG_FORMAT_INDENT | AS_NODE_TO_XML_FLAG_FORMAT_MULTILINE, NULL, error)) return FALSE; /* TRANSLATORS: any manual changes required? */ if (action_required) { g_print (_("Please review the file and fix any '%s' items"), "FIXME"); g_print ("\n"); } return TRUE; } /** * as_util_convert_appstream: **/ static gboolean as_util_convert_appstream (GFile *file_input, GFile *file_output, gdouble new_version, GError **error) { _cleanup_object_unref_ AsStore *store = NULL; store = as_store_new (); if (!as_store_from_file (store, file_input, NULL, NULL, error)) return FALSE; /* TRANSLATORS: information message */ g_print ("Old API version: %.2f\n", as_store_get_api_version (store)); /* save file */ as_store_set_api_version (store, new_version); if (!as_store_to_file (store, file_output, AS_NODE_TO_XML_FLAG_FORMAT_MULTILINE | AS_NODE_TO_XML_FLAG_ADD_HEADER, NULL, error)) return FALSE; /* TRANSLATORS: information message */ g_print (_("New API version: %.2f\n"), as_store_get_api_version (store)); return TRUE; } /** * as_util_convert: **/ static gboolean as_util_convert (AsUtilPrivate *priv, gchar **values, GError **error) { AsAppSourceKind input_kind; AsAppSourceKind output_kind; gdouble new_version; _cleanup_object_unref_ GFile *file_input = NULL; _cleanup_object_unref_ GFile *file_output = NULL; /* check args */ if (g_strv_length (values) != 3) { /* TRANSLATORS: error message */ g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, _("Not enough arguments, " "expected old.xml new.xml version")); return FALSE; } /* work out what to do */ input_kind = as_app_guess_source_kind (values[0]); output_kind = as_app_guess_source_kind (values[1]); file_input = g_file_new_for_path (values[0]); file_output = g_file_new_for_path (values[1]); new_version = g_ascii_strtod (values[2], NULL); /* AppData -> AppData */ if (input_kind == AS_APP_SOURCE_KIND_APPDATA && output_kind == AS_APP_SOURCE_KIND_APPDATA) { return as_util_convert_appdata (file_input, file_output, new_version, error); } /* AppStream -> AppStream */ if (input_kind == AS_APP_SOURCE_KIND_APPSTREAM && output_kind == AS_APP_SOURCE_KIND_APPSTREAM) { return as_util_convert_appstream (file_input, file_output, new_version, error); } /* don't know what to do */ g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "Format not recognised"); return FALSE; } /** * as_util_upgrade: **/ static gboolean as_util_upgrade (AsUtilPrivate *priv, gchar **values, GError **error) { /* check args */ if (g_strv_length (values) != 1) { /* TRANSLATORS: error message */ g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, _("Not enough arguments, " "expected file.xml")); return FALSE; } /* AppData */ if (as_app_guess_source_kind (values[0]) == AS_APP_SOURCE_KIND_APPDATA) { _cleanup_object_unref_ GFile *file = NULL; file = g_file_new_for_path (values[0]); return as_util_convert_appdata (file, file, 1.0, error); } /* don't know what to do */ g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "Format not recognised"); return FALSE; } /** * as_util_appdata_from_desktop: **/ static gboolean as_util_appdata_from_desktop (AsUtilPrivate *priv, gchar **values, GError **error) { gchar *instr = NULL; _cleanup_free_ gchar *id_new = NULL; _cleanup_object_unref_ AsApp *app = NULL; _cleanup_object_unref_ AsImage *im1 = NULL; _cleanup_object_unref_ AsImage *im2 = NULL; _cleanup_object_unref_ AsScreenshot *ss1 = NULL; _cleanup_object_unref_ AsScreenshot *ss2 = NULL; _cleanup_object_unref_ GFile *file = NULL; /* check args */ if (g_strv_length (values) != 2) { g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "Not enough arguments, " "expected app.desktop new.appdata.xml"); return FALSE; } /* check types */ if (as_app_guess_source_kind (values[0]) != AS_APP_SOURCE_KIND_DESKTOP || as_app_guess_source_kind (values[1]) != AS_APP_SOURCE_KIND_APPDATA) { g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "Format not recognised"); return FALSE; } /* import the .desktop file */ app = as_app_new (); if (!as_app_parse_file (app, values[0], AS_APP_PARSE_FLAG_USE_HEURISTICS, error)) return FALSE; /* set some initial values */ as_app_set_description (app, NULL, "\n

\n This should be long prose.\n

\n" "

\n This should a second paragraph.\n

\n", -1); as_app_set_developer_name (app, NULL, "XXX: Insert Company or Developer Name", -1); as_app_set_project_group (app, "XXX: Values valid are none, GNOME, KDE or XFCE", -1); /* fix the ID */ id_new = g_strdup (as_app_get_id_full (app)); instr = g_strstr_len (id_new, -1, ".desktop.in"); if (instr != NULL) { instr[8] = '\0'; as_app_set_id_full (app, id_new, -1); } /* set things that don't belong in the AppData file */ as_app_set_icon (app, NULL, -1); g_ptr_array_set_size (as_app_get_keywords (app), 0); g_ptr_array_set_size (as_app_get_categories (app), 0); g_ptr_array_set_size (as_app_get_mimetypes (app), 0); /* add urls */ as_app_add_url (app, AS_URL_KIND_HOMEPAGE, "XXX: http://www.homepage.com/", -1); as_app_add_url (app, AS_URL_KIND_BUGTRACKER, "XXX: http://www.homepage.com/where-to-report_bug.html", -1); as_app_add_url (app, AS_URL_KIND_FAQ, "XXX: http://www.homepage.com/faq.html", -1); as_app_add_url (app, AS_URL_KIND_DONATION, "XXX: http://www.homepage.com/donation.html", -1); as_app_add_url (app, AS_URL_KIND_HELP, "XXX: http://www.homepage.com/docs/", -1); as_app_set_project_license (app, "XXX: Insert SPDX value here", -1); as_app_set_metadata_license (app, "XXX: Insert SPDX value here", -1); /* add first screenshot */ ss1 = as_screenshot_new (); as_screenshot_set_kind (ss1, AS_SCREENSHOT_KIND_DEFAULT); as_screenshot_set_caption (ss1, NULL, "XXX: Describe the default screenshot", -1); im1 = as_image_new (); as_image_set_url (im1, "XXX: http://www.my-screenshot-default.png", -1); as_image_set_width (im1, 1120); as_image_set_height (im1, 630); as_screenshot_add_image (ss1, im1); as_app_add_screenshot (app, ss1); /* add second screenshot */ ss2 = as_screenshot_new (); as_screenshot_set_kind (ss2, AS_SCREENSHOT_KIND_NORMAL); as_screenshot_set_caption (ss2, NULL, "XXX: Describe another screenshot", -1); im2 = as_image_new (); as_image_set_url (im2, "XXX: http://www.my-screenshot.png", -1); as_image_set_width (im2, 1120); as_image_set_height (im2, 630); as_screenshot_add_image (ss2, im2); as_app_add_screenshot (app, ss2); /* save to disk */ file = g_file_new_for_path (values[1]); return as_app_to_file (app, file, NULL, error); } /** * as_util_add_file_to_store: **/ static gboolean as_util_add_file_to_store (AsStore *store, const gchar *filename, GError **error) { _cleanup_object_unref_ AsApp *app = NULL; _cleanup_object_unref_ GFile *file_input = NULL; switch (as_app_guess_source_kind (filename)) { case AS_APP_SOURCE_KIND_APPDATA: case AS_APP_SOURCE_KIND_METAINFO: case AS_APP_SOURCE_KIND_DESKTOP: app = as_app_new (); if (!as_app_parse_file (app, filename, AS_APP_PARSE_FLAG_USE_HEURISTICS, error)) return FALSE; as_store_add_app (store, app); break; case AS_APP_SOURCE_KIND_APPSTREAM: /* load file */ file_input = g_file_new_for_path (filename); if (!as_store_from_file (store, file_input, NULL, NULL, error)) return FALSE; break; default: g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "Format not recognised"); return FALSE; } return TRUE; } /** * as_util_dump: **/ static gboolean as_util_dump (AsUtilPrivate *priv, gchar **values, GError **error) { guint i; _cleanup_string_free_ GString *xml = NULL; _cleanup_object_unref_ AsStore *store = NULL; /* check args */ if (g_strv_length (values) < 1) { g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "Not enough arguments, " "expected data.xml"); return FALSE; } /* magic value */ store = as_store_new (); if (g_strcmp0 (values[0], "installed") == 0) { if (!as_store_load (store, AS_STORE_LOAD_FLAG_APPDATA | AS_STORE_LOAD_FLAG_DESKTOP, NULL, error)) { return FALSE; } } else { for (i = 0; values[i] != NULL; i++) { if (!as_util_add_file_to_store (store, values[i], error)) return FALSE; } } /* dump to screen */ as_store_set_api_version (store, 1.0); xml = as_store_to_xml (store, AS_NODE_TO_XML_FLAG_FORMAT_MULTILINE | AS_NODE_TO_XML_FLAG_FORMAT_INDENT | AS_NODE_TO_XML_FLAG_ADD_HEADER); g_print ("%s", xml->str); return TRUE; } /** * as_util_install_icons: **/ static gboolean as_util_install_icons (const gchar *filename, const gchar *origin, GError **error) { const gchar *destdir; const gchar *tmp; gboolean ret = TRUE; gchar buf[PATH_MAX]; gsize len; int r; struct archive *arch = NULL; struct archive_entry *entry; _cleanup_free_ gchar *data = NULL; _cleanup_free_ gchar *dir = NULL; destdir = g_getenv ("DESTDIR"); dir = g_strdup_printf ("%s/usr/share/app-info/icons/%s", destdir != NULL ? destdir : "", origin); /* load file at once to avoid seeking */ ret = g_file_get_contents (filename, &data, &len, error); if (!ret) goto out; /* read anything */ arch = archive_read_new (); archive_read_support_format_all (arch); archive_read_support_filter_all (arch); r = archive_read_open_memory (arch, data, len); if (r) { ret = FALSE; g_set_error (error, AS_ERROR, AS_ERROR_FAILED, "Cannot open: %s", archive_error_string (arch)); goto out; } /* decompress each file */ for (;;) { r = archive_read_next_header (arch, &entry); if (r == ARCHIVE_EOF) break; if (r != ARCHIVE_OK) { ret = FALSE; g_set_error (error, AS_ERROR, AS_ERROR_FAILED, "Cannot read header: %s", archive_error_string (arch)); goto out; } /* no output file */ if (archive_entry_pathname (entry) == NULL) continue; /* update output path */ g_snprintf (buf, PATH_MAX, "%s/%s", dir, archive_entry_pathname (entry)); archive_entry_update_pathname_utf8 (entry, buf); /* update hardlinks */ tmp = archive_entry_hardlink (entry); if (tmp != NULL) { g_snprintf (buf, PATH_MAX, "%s/%s", dir, tmp); archive_entry_update_hardlink_utf8 (entry, buf); } /* update symlinks */ tmp = archive_entry_symlink (entry); if (tmp != NULL) { g_snprintf (buf, PATH_MAX, "%s/%s", dir, tmp); archive_entry_update_symlink_utf8 (entry, buf); } r = archive_read_extract (arch, entry, 0); if (r != ARCHIVE_OK) { ret = FALSE; g_set_error (error, AS_ERROR, AS_ERROR_FAILED, "Cannot extract: %s", archive_error_string (arch)); goto out; } } out: if (arch != NULL) { archive_read_close (arch); archive_read_free (arch); } return ret; } /** * as_util_install_xml: **/ static gboolean as_util_install_xml (const gchar *filename, const gchar *dir, GError **error) { const gchar *destdir; _cleanup_free_ gchar *basename = NULL; _cleanup_free_ gchar *path_dest = NULL; _cleanup_free_ gchar *path_parent = NULL; _cleanup_object_unref_ GFile *file_dest = NULL; _cleanup_object_unref_ GFile *file_src = NULL; /* create directory structure */ destdir = g_getenv ("DESTDIR"); path_parent = g_strdup_printf ("%s%s", destdir != NULL ? destdir : "", dir); if (g_mkdir_with_parents (path_parent, 0777) != 0) { g_set_error (error, AS_ERROR, AS_ERROR_FAILED, "Failed to create %s", path_parent); return FALSE; } /* copy XML file */ file_src = g_file_new_for_path (filename); basename = g_path_get_basename (filename); path_dest = g_build_filename (path_parent, basename, NULL); file_dest = g_file_new_for_path (path_dest); return g_file_copy (file_src, file_dest, G_FILE_COPY_OVERWRITE, NULL, NULL, NULL, error); } /** * as_util_install_filename: **/ static gboolean as_util_install_filename (const gchar *filename, GError **error) { gboolean ret = FALSE; gchar *tmp; _cleanup_free_ gchar *basename = NULL; switch (as_app_guess_source_kind (filename)) { case AS_APP_SOURCE_KIND_APPSTREAM: ret = as_util_install_xml (filename, "/usr/share/app-info/xmls", error); break; case AS_APP_SOURCE_KIND_APPDATA: case AS_APP_SOURCE_KIND_METAINFO: ret = as_util_install_xml (filename, "/usr/share/appdata", error); break; default: /* icons */ basename = g_path_get_basename (filename); tmp = g_strstr_len (basename, -1, "-icons.tar.gz"); if (tmp != NULL) { *tmp = '\0'; ret = as_util_install_icons (filename, basename, error); break; } /* unrecognised */ g_set_error_literal (error, AS_ERROR, AS_ERROR_FAILED, "No idea how to process files of this type"); break; } return ret; } /** * as_util_install: **/ static gboolean as_util_install (AsUtilPrivate *priv, gchar **values, GError **error) { guint i; /* check args */ if (g_strv_length (values) < 1) { g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "Not enough arguments, " "expected filename(s)"); return FALSE; } /* for each item on the command line, install the xml files and * explode the icon files */ for (i = 0; values[i] != NULL; i++) { if (!as_util_install_filename (values[i], error)) return FALSE; } return TRUE; } /** * as_util_rmtree: **/ static gboolean as_util_rmtree (const gchar *directory, GError **error) { const gchar *filename; _cleanup_dir_close_ GDir *dir = NULL; /* try to open */ dir = g_dir_open (directory, 0, error); if (dir == NULL) return FALSE; /* find each */ while ((filename = g_dir_read_name (dir))) { _cleanup_free_ gchar *src = NULL; src = g_build_filename (directory, filename, NULL); if (g_file_test (src, G_FILE_TEST_IS_DIR)) { if (!as_util_rmtree (src, error)) return FALSE; } else { if (g_unlink (src) != 0) { g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "Failed to delete %s", src); return FALSE; } } } /* remove directory */ if (g_remove (directory) != 0) { g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "Failed to delete %s", directory); return FALSE; } return TRUE; } /** * as_util_uninstall: **/ static gboolean as_util_uninstall (AsUtilPrivate *priv, gchar **values, GError **error) { const gchar *destdir; _cleanup_free_ gchar *path_icons = NULL; _cleanup_free_ gchar *path_xml = NULL; _cleanup_object_unref_ GFile *file_xml = NULL; /* check args */ if (g_strv_length (values) != 1) { g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "Not enough arguments, " "expected appstream-id"); return FALSE; } /* remove XML file */ destdir = g_getenv ("DESTDIR"); path_xml = g_strdup_printf ("%s/usr/share/app-info/xmls/%s.xml.gz", destdir != NULL ? destdir : "", values[0]); if (!g_file_test (path_xml, G_FILE_TEST_EXISTS)) { g_set_error (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "AppStream file with that ID not found: %s", path_xml); return FALSE; } file_xml = g_file_new_for_path (path_xml); if (!g_file_delete (file_xml, NULL, error)) { g_prefix_error (error, "Failed to remove %s: ", path_xml); return FALSE; } /* remove icons */ path_icons = g_strdup_printf ("%s/usr/share/app-info/icons/%s", destdir != NULL ? destdir : "", values[0]); if (g_file_test (path_icons, G_FILE_TEST_EXISTS)) { if (!as_util_rmtree (path_icons, error)) return FALSE; } return TRUE; } /** * as_util_status_html_join: */ static gchar * as_util_status_html_join (GPtrArray *array) { const gchar *tmp; guint i; GString *txt; if (array == NULL) return NULL; if (array->len == 0) return NULL; txt = g_string_new (""); for (i = 0; i < array->len; i++) { tmp = g_ptr_array_index (array, i); if (txt->len > 0) g_string_append (txt, ", "); g_string_append (txt, tmp); } return g_string_free (txt, FALSE); } /** * as_util_status_html_write_app: */ static void as_util_status_html_write_app (AsApp *app, GString *html) { GPtrArray *images; GPtrArray *screenshots; AsImage *im; AsImage *im_thumb; AsImage *im_scaled; AsScreenshot *ss; const gchar *pkgname; gchar *tmp; guint i; guint j; GPtrArray *kudos; g_string_append_printf (html, "

%s

\n", as_app_get_id (app), as_app_get_id (app)); /* print the screenshot thumbnails */ screenshots = as_app_get_screenshots (app); for (i = 0; i < screenshots->len; i++) { ss = g_ptr_array_index (screenshots, i); images = as_screenshot_get_images (ss); im_thumb = NULL; im_scaled = NULL; for (j = 0; j < images->len; j++) { im = g_ptr_array_index (images, j); if (as_image_get_width (im) == 112) im_thumb = im; else if (as_image_get_width (im) == 624) im_scaled = im; } if (im_thumb == NULL || im_scaled == NULL) continue; if (as_screenshot_get_caption (ss, "C") != NULL) { g_string_append_printf (html, "
" "\"%s\"/\n", as_image_get_url (im_scaled), as_image_get_url (im_thumb), as_screenshot_get_caption (ss, "C")); } else { g_string_append_printf (html, "" "\n", as_image_get_url (im_scaled), as_image_get_url (im_thumb)); } } g_string_append (html, "\n"); /* summary */ g_string_append_printf (html, "\n", "Type", as_id_kind_to_string (as_app_get_id_kind (app))); g_string_append_printf (html, "\n", "Name", as_app_get_name (app, "C")); g_string_append_printf (html, "\n", "Comment", as_app_get_comment (app, "C")); if (as_app_get_description (app, "C") != NULL) { g_string_append_printf (html, "\n", "Description", as_app_get_description (app, "C")); } /* packages */ tmp = as_util_status_html_join (as_app_get_pkgnames (app)); if (tmp != NULL) { pkgname = g_ptr_array_index (as_app_get_pkgnames(app), 0); g_string_append_printf (html, "\n", "Package", pkgname, tmp); } g_free (tmp); /* categories */ tmp = as_util_status_html_join (as_app_get_categories (app)); if (tmp != NULL) { g_string_append_printf (html, "\n", "Categories", tmp); } g_free (tmp); /* keywords */ tmp = as_util_status_html_join (as_app_get_keywords (app)); if (tmp != NULL) { g_string_append_printf (html, "\n", "Keywords", tmp); } g_free (tmp); /* homepage */ pkgname = as_app_get_url_item (app, AS_URL_KIND_HOMEPAGE); if (pkgname != NULL) { g_string_append_printf (html, "\n", "Homepage", pkgname, pkgname); } /* project */ if (as_app_get_project_group (app) != NULL) { g_string_append_printf (html, "\n", "Project", as_app_get_project_group (app)); } /* desktops */ tmp = as_util_status_html_join (as_app_get_compulsory_for_desktops (app)); if (tmp != NULL) { g_string_append_printf (html, "\n", "Compulsory for", tmp); } g_free (tmp); /* add all possible Kudo's for desktop files */ if (as_app_get_id_kind (app) == AS_ID_KIND_DESKTOP) { kudos = as_app_get_kudos (app); for (i = 0; i < kudos->len; i++) { pkgname = g_ptr_array_index (kudos, i); g_string_append_printf (html, "\n", pkgname, "Yes"); } } g_string_append (html, "
%s%s
%s%s
%s%s
%s%s
%s" "" "%s
%s%s
%s%s
%s" "%s
%s%s
%s%s
%s%s
\n"); g_string_append (html, "
\n"); } /** * as_util_status_html_write_exec_summary: */ static gboolean as_util_status_html_write_exec_summary (GPtrArray *apps, GString *html, GError **error) { AsApp *app; const gchar *project_groups[] = { "GNOME", "KDE", "XFCE", NULL }; gdouble perc; guint cnt; guint i; guint j; guint total = 0; g_string_append (html, "

Executive summary

\n"); g_string_append (html, "
    \n"); /* count number of desktop apps */ for (i = 0; i < apps->len; i++) { app = g_ptr_array_index (apps, i); if (as_app_get_id_kind (app) == AS_ID_KIND_DESKTOP) total++; } if (total == 0) { g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "No desktop applications found"); return FALSE; } /* long descriptions */ cnt = 0; for (i = 0; i < apps->len; i++) { app = g_ptr_array_index (apps, i); if (as_app_get_id_kind (app) != AS_ID_KIND_DESKTOP) continue; if (as_app_get_description (app, "C") != NULL) cnt++; } perc = 100.f * (gdouble) cnt / (gdouble) total; g_string_append_printf (html, "
  • Applications with " "descriptions: %i/%i (%.1f%%)
  • \n", cnt, total, perc); /* keywords */ cnt = 0; for (i = 0; i < apps->len; i++) { app = g_ptr_array_index (apps, i); if (as_app_get_id_kind (app) != AS_ID_KIND_DESKTOP) continue; if (as_app_get_keywords(app)->len > 0) cnt++; } perc = 100.f * (gdouble) cnt / (gdouble) total; g_string_append_printf (html, "
  • Applications with " "keywords: %i/%i (%.1f%%)
  • \n", cnt, total, perc); /* screenshots */ cnt = 0; for (i = 0; i < apps->len; i++) { app = g_ptr_array_index (apps, i); if (as_app_get_id_kind (app) != AS_ID_KIND_DESKTOP) continue; if (as_app_get_screenshots(app)->len > 0) cnt++; } perc = 100.f * (gdouble) cnt / (gdouble) total; g_string_append_printf (html, "
  • Applications with " "screenshots: %i/%i (%.1f%%)
  • \n", cnt, total, perc); /* project apps with appdata */ for (j = 0; project_groups[j] != NULL; j++) { cnt = 0; total = 0; for (i = 0; i < apps->len; i++) { app = g_ptr_array_index (apps, i); if (g_strcmp0 (as_app_get_project_group (app), project_groups[j]) != 0) continue; total += 1; if (as_app_get_screenshots(app)->len > 0 || as_app_get_description (app, "C") != NULL) cnt++; } perc = 0; if (total > 0) perc = 100.f * (gdouble) cnt / (gdouble) total; g_string_append_printf (html, "
  • Applications in %s " "with AppData: %i/%i (%.1f%%)
  • \n", project_groups[j], cnt, total, perc); } /* addons with MetaInfo */ cnt = 0; for (i = 0; i < apps->len; i++) { app = g_ptr_array_index (apps, i); if (as_app_get_id_kind (app) == AS_ID_KIND_ADDON) cnt++; } g_string_append_printf (html, "
  • Application addons with MetaInfo: %i
  • \n", cnt); g_string_append (html, "
\n"); return TRUE; } /** * as_util_status_html: **/ static gboolean as_util_status_html (AsUtilPrivate *priv, gchar **values, GError **error) { AsApp *app; GPtrArray *apps = NULL; guint i; _cleanup_object_unref_ AsStore *store = NULL; _cleanup_object_unref_ GFile *file = NULL; _cleanup_string_free_ GString *html = NULL; /* check args */ if (g_strv_length (values) != 2) { g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "Not enough arguments, " "expected filename.xml.gz status.html"); return FALSE; } /* load file */ store = as_store_new (); file = g_file_new_for_path (values[0]); if (!as_store_from_file (store, file, NULL, NULL, error)) return FALSE; apps = as_store_get_apps (store); /* create header */ html = g_string_new (""); g_string_append (html, "\n"); g_string_append (html, "\n"); g_string_append (html, "\n"); g_string_append (html, "\n"); g_string_append (html, "Application Data Review\n"); g_string_append (html, "\n"); g_string_append (html, "\n"); /* summary section */ if (apps->len > 0) { if (!as_util_status_html_write_exec_summary (apps, html, error)) return FALSE; } /* write applications */ g_string_append (html, "

Applications

\n"); for (i = 0; i < apps->len; i++) { app = g_ptr_array_index (apps, i); if (as_app_get_id_kind (app) == AS_ID_KIND_FONT) continue; if (as_app_get_id_kind (app) == AS_ID_KIND_INPUT_METHOD) continue; if (as_app_get_id_kind (app) == AS_ID_KIND_CODEC) continue; if (as_app_get_id_kind (app) == AS_ID_KIND_SOURCE) continue; as_util_status_html_write_app (app, html); } g_string_append (html, "\n"); g_string_append (html, "\n"); /* save file */ if (!g_file_set_contents (values[1], html->str, -1, error)) return FALSE; return TRUE; } /** * as_util_status_csv: **/ static gboolean as_util_status_csv (AsUtilPrivate *priv, gchar **values, GError **error) { AsApp *app; GPtrArray *apps = NULL; guint i; _cleanup_object_unref_ AsStore *store = NULL; _cleanup_object_unref_ GFile *file = NULL; _cleanup_string_free_ GString *data = NULL; /* check args */ if (g_strv_length (values) != 2) { g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "Not enough arguments, " "expected filename.xml.gz status.csv"); return FALSE; } /* load file */ store = as_store_new (); file = g_file_new_for_path (values[0]); if (!as_store_from_file (store, file, NULL, NULL, error)) return FALSE; apps = as_store_get_apps (store); /* write applications */ data = g_string_new ("id,pkgname,name,comment,description,url\n"); for (i = 0; i < apps->len; i++) { _cleanup_free_ gchar *description = NULL; app = g_ptr_array_index (apps, i); if (as_app_get_id_kind (app) == AS_ID_KIND_FONT) continue; if (as_app_get_id_kind (app) == AS_ID_KIND_INPUT_METHOD) continue; if (as_app_get_id_kind (app) == AS_ID_KIND_CODEC) continue; if (as_app_get_id_kind (app) == AS_ID_KIND_SOURCE) continue; g_string_append_printf (data, "%s,", as_app_get_id (app)); g_string_append_printf (data, "%s,", as_app_get_pkgname_default (app)); g_string_append_printf (data, "\"%s\",", as_app_get_name (app, "C")); g_string_append_printf (data, "\"%s\",", as_app_get_comment (app, "C")); description = g_strdup (as_app_get_description (app, "C")); if (description != NULL) { g_strdelimit (description, "\n", '|'); g_strdelimit (description, "\"", '\''); } g_string_append_printf (data, "\"%s\",", description); g_string_append_printf (data, "\"%s\",", as_app_get_url_item (app, AS_URL_KIND_HOMEPAGE)); g_string_truncate (data, data->len - 1); g_string_append (data, "\n"); } /* save file */ if (!g_file_set_contents (values[1], data->str, -1, error)) return FALSE; return TRUE; } /** * as_util_non_package_yaml: **/ static gboolean as_util_non_package_yaml (AsUtilPrivate *priv, gchar **values, GError **error) { AsApp *app; GPtrArray *apps = NULL; guint i; _cleanup_object_unref_ AsStore *store = NULL; _cleanup_object_unref_ GFile *file = NULL; _cleanup_string_free_ GString *yaml = NULL; /* check args */ if (g_strv_length (values) != 2) { g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "Not enough arguments, " "expected filename.xml.gz " "applications-to-import.yaml"); return FALSE; } /* load file */ store = as_store_new (); file = g_file_new_for_path (values[0]); if (!as_store_from_file (store, file, NULL, NULL, error)) return FALSE; apps = as_store_get_apps (store); /* write applications */ yaml = g_string_new ("# automatically generated, do not edit\n"); for (i = 0; i < apps->len; i++) { app = g_ptr_array_index (apps, i); if (as_app_get_pkgnames(app)->len > 0) continue; g_string_append_printf (yaml, "- id: %s\n", as_app_get_id (app)); g_string_append_printf (yaml, " name: %s\n", as_app_get_name (app, "C")); g_string_append_printf (yaml, " summary: %s\n", as_app_get_comment (app, "C")); } /* save file */ if (!g_file_set_contents (values[1], yaml->str, -1, error)) return FALSE; return TRUE; } /** * as_util_validate_output_text: **/ static void as_util_validate_output_text (const gchar *filename, GPtrArray *probs) { AsProblem *problem; const gchar *tmp; guint i; guint j; /* success */ if (probs->len == 0) { /* TRANSLATORS: the file is valid */ g_print ("%s\n", _("OK")); return; } /* list failures */ g_print ("%s:\n", _("FAILED")); for (i = 0; i < probs->len; i++) { problem = g_ptr_array_index (probs, i); tmp = as_problem_kind_to_string (as_problem_get_kind (problem)); g_print ("• %s ", tmp); for (j = strlen (tmp); j < 20; j++) g_print (" "); if (as_problem_get_line_number (problem) > 0) { g_print (" : %s [ln:%i]\n", as_problem_get_message (problem), as_problem_get_line_number (problem)); } else { g_print (" : %s\n", as_problem_get_message (problem)); } } } /** * as_util_validate_output_html: **/ static void as_util_validate_output_html (const gchar *filename, GPtrArray *probs) { g_print ("\n"); g_print ("\n"); g_print ("\n"); g_print ("AppData Validation Results for %s\n", filename); g_print ("\n"); g_print ("\n"); if (probs->len == 0) { g_print ("

Success!

\n"); g_print ("

%s validated successfully.

\n", filename); } else { guint i; g_print ("

Validation failed!

\n"); g_print ("

%s did not validate:

\n", filename); g_print ("
    \n"); for (i = 0; i < probs->len; i++) { AsProblem *problem; _cleanup_free_ gchar *tmp = NULL; problem = g_ptr_array_index (probs, i); tmp = g_markup_escape_text (as_problem_get_message (problem), -1); g_print ("
  • "); g_print ("%s\n", tmp); if (as_problem_get_line_number (problem) > 0) { g_print (" (line %i)", as_problem_get_line_number (problem)); } g_print ("
  • \n"); } g_print ("
\n"); } g_print ("\n"); g_print ("\n"); } /** * as_util_validate_file: **/ static gboolean as_util_validate_file (const gchar *filename, AsAppValidateFlags flags, GError **error) { _cleanup_object_unref_ AsApp *app = NULL; _cleanup_ptrarray_unref_ GPtrArray *probs = NULL; /* is AppStream */ if (as_app_guess_source_kind (filename) == AS_APP_SOURCE_KIND_APPSTREAM) { gboolean ret; _cleanup_object_unref_ AsStore *store; _cleanup_object_unref_ GFile *file; file = g_file_new_for_path (filename); store = as_store_new (); ret = as_store_from_file (store, file, NULL, NULL, error); if (!ret) return FALSE; g_print ("%s: %s\n", filename, _("OK")); return TRUE; } /* load file */ app = as_app_new (); g_print ("%s: ", filename); if (!as_app_parse_file (app, filename, AS_APP_PARSE_FLAG_NONE, error)) return FALSE; probs = as_app_validate (app, flags, error); if (probs == NULL) return FALSE; if (g_strcmp0 (g_getenv ("OUTPUT_FORMAT"), "html") == 0) as_util_validate_output_html (filename, probs); else as_util_validate_output_text (filename, probs); if (probs->len > 0) { g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, _("Validation failed")); return FALSE; } return TRUE; } /** * as_util_validate_files: **/ static gboolean as_util_validate_files (gchar **filenames, AsAppValidateFlags flags, GError **error) { GError *error_local = NULL; guint i; guint n_failed = 0; /* check args */ if (g_strv_length (filenames) < 1) { g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, "Not enough arguments, " "expected example.appdata.xml"); return FALSE; } /* check each file */ for (i = 0; filenames[i] != NULL; i++) { if (as_util_validate_file (filenames[i], flags, &error_local)) continue; /* anything other than AsProblems bail */ n_failed++; if (!g_error_matches (error_local, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS)) { g_propagate_error (error, error_local); return FALSE; } g_clear_error (&error_local); } if (n_failed > 0) { /* TRANSLATORS: error message */ g_set_error_literal (error, AS_ERROR, AS_ERROR_INVALID_ARGUMENTS, _("Validation of files failed")); return FALSE; } return n_failed == 0; } /** * as_util_validate: **/ static gboolean as_util_validate (AsUtilPrivate *priv, gchar **values, GError **error) { AsAppValidateFlags flags = AS_APP_VALIDATE_FLAG_NONE; if (priv->nonet) flags |= AS_APP_VALIDATE_FLAG_NO_NETWORK; return as_util_validate_files (values, flags, error); } /** * as_util_validate_relax: **/ static gboolean as_util_validate_relax (AsUtilPrivate *priv, gchar **values, GError **error) { AsAppValidateFlags flags = AS_APP_VALIDATE_FLAG_RELAX; if (priv->nonet) flags |= AS_APP_VALIDATE_FLAG_NO_NETWORK; return as_util_validate_files (values, flags, error); } /** * as_util_validate_strict: **/ static gboolean as_util_validate_strict (AsUtilPrivate *priv, gchar **values, GError **error) { AsAppValidateFlags flags = AS_APP_VALIDATE_FLAG_STRICT; if (priv->nonet) flags |= AS_APP_VALIDATE_FLAG_NO_NETWORK; return as_util_validate_files (values, flags, error); } /** * as_util_ignore_cb: **/ static void as_util_ignore_cb (const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data) { } /** * main: **/ int main (int argc, char *argv[]) { AsUtilPrivate *priv; gboolean ret; gboolean nonet = FALSE; gboolean verbose = FALSE; gboolean version = FALSE; GError *error = NULL; guint retval = 1; _cleanup_free_ gchar *cmd_descriptions = NULL; const GOptionEntry options[] = { { "nonet", '\0', 0, G_OPTION_ARG_NONE, &nonet, /* TRANSLATORS: this is the --nonet argument */ _("Do not use network access"), NULL }, { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, /* TRANSLATORS: command line option */ _("Show extra debugging information"), NULL }, { "version", '\0', 0, G_OPTION_ARG_NONE, &version, /* TRANSLATORS: command line option */ _("Show version"), NULL }, { NULL} }; setlocale (LC_ALL, ""); bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); /* create helper object */ priv = g_new0 (AsUtilPrivate, 1); /* add commands */ priv->cmd_array = g_ptr_array_new_with_free_func ((GDestroyNotify) as_util_item_free); as_util_add (priv->cmd_array, "convert", NULL, /* TRANSLATORS: command description */ _("Converts AppStream metadata from one version to another"), as_util_convert); as_util_add (priv->cmd_array, "upgrade", NULL, /* TRANSLATORS: command description */ _("Upgrade AppData metadata to the latest version"), as_util_upgrade); as_util_add (priv->cmd_array, "appdata-from-desktop", NULL, /* TRANSLATORS: command description */ _("Creates an example Appdata file from a .desktop file"), as_util_appdata_from_desktop); as_util_add (priv->cmd_array, "dump", NULL, /* TRANSLATORS: command description */ _("Dumps the applications in the AppStream metadata"), as_util_dump); as_util_add (priv->cmd_array, "install", NULL, /* TRANSLATORS: command description */ _("Installs AppStream metadata"), as_util_install); as_util_add (priv->cmd_array, "uninstall", NULL, /* TRANSLATORS: command description */ _("Uninstalls AppStream metadata"), as_util_uninstall); as_util_add (priv->cmd_array, "status-html", NULL, /* TRANSLATORS: command description */ _("Create an HTML status page"), as_util_status_html); as_util_add (priv->cmd_array, "status-csv", NULL, /* TRANSLATORS: command description */ _("Create an CSV status document"), as_util_status_csv); as_util_add (priv->cmd_array, "non-package-yaml", NULL, /* TRANSLATORS: command description */ _("List applications not backed by packages"), as_util_non_package_yaml); as_util_add (priv->cmd_array, "validate", NULL, /* TRANSLATORS: command description */ _("Validate an AppData or AppStream file"), as_util_validate); as_util_add (priv->cmd_array, "validate-relax", NULL, /* TRANSLATORS: command description */ _("Validate an AppData or AppStream file (relaxed)"), as_util_validate_relax); as_util_add (priv->cmd_array, "validate-strict", NULL, /* TRANSLATORS: command description */ _("Validate an AppData or AppStream file (strict)"), as_util_validate_strict); /* sort by command name */ g_ptr_array_sort (priv->cmd_array, (GCompareFunc) as_sort_command_name_cb); /* get a list of the commands */ priv->context = g_option_context_new (NULL); cmd_descriptions = as_util_get_descriptions (priv->cmd_array); g_option_context_set_summary (priv->context, cmd_descriptions); /* TRANSLATORS: program name */ g_set_application_name (_("AppStream Utility")); g_option_context_add_main_entries (priv->context, options, NULL); ret = g_option_context_parse (priv->context, &argc, &argv, &error); if (!ret) { /* TRANSLATORS: the user didn't read the man page */ g_print ("%s: %s\n", _("Failed to parse arguments"), error->message); g_error_free (error); goto out; } priv->nonet = nonet; /* set verbose? */ if (verbose) { g_setenv ("AS_VERBOSE", "1", FALSE); } else { g_log_set_handler (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, as_util_ignore_cb, NULL); } /* get version */ if (version) { g_print ("%s\t%s\n", _("Version:"), PACKAGE_VERSION); goto out; } /* run the specified command */ ret = as_util_run (priv, argv[1], (gchar**) &argv[2], &error); if (!ret) { if (g_error_matches (error, AS_ERROR, AS_ERROR_NO_SUCH_CMD)) { gchar *tmp; tmp = g_option_context_get_help (priv->context, TRUE, NULL); g_print ("%s", tmp); g_free (tmp); } else { g_print ("%s\n", error->message); } g_error_free (error); goto out; } /* success */ retval = 0; out: if (priv != NULL) { if (priv->cmd_array != NULL) g_ptr_array_unref (priv->cmd_array); g_option_context_free (priv->context); g_free (priv); } return retval; }