1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
/* foundry-cli-builtin-doc-bundle-install.c
*
* Copyright 2024 Christian Hergert <chergert@redhat.com>
*
* This library 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.1 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 General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "config.h"
#include <glib/gi18n-lib.h>
#include "foundry-cli-builtin-private.h"
#include "foundry-cli-command-tree.h"
#include "foundry-command-line-private.h"
#include "foundry-context.h"
#include "foundry-documentation-bundle.h"
#include "foundry-documentation-manager.h"
#include "foundry-operation-manager.h"
#include "foundry-operation.h"
#include "foundry-service.h"
#include "foundry-util-private.h"
static void
redraw_progress (FoundryOperation *operation,
GParamSpec *pspec,
FoundryCommandLine *command_line)
{
g_autofree char *title = NULL;
g_autofree char *subtitle = NULL;
double fraction;
g_assert (FOUNDRY_IS_OPERATION (operation));
g_assert (FOUNDRY_IS_COMMAND_LINE (command_line));
title = foundry_operation_dup_title (operation);
subtitle = foundry_operation_dup_subtitle (operation);
fraction = foundry_operation_get_progress (operation);
foundry_command_line_set_progress (command_line, fraction);
foundry_command_line_clear_line (command_line);
foundry_command_line_print (command_line,
"%s: %s%s%u%%",
title,
subtitle ? subtitle : "",
subtitle ? ": " : "",
(guint)(100*fraction));
}
static char **
foundry_cli_builtin_doc_bundle_install_complete (FoundryCommandLine *command_line,
const char *command,
const GOptionEntry *entry,
FoundryCliOptions *options,
const char * const *argv,
const char *current)
{
g_autoptr(FoundryDocumentationManager) documentation_manager = NULL;
g_autoptr(FoundryContext) foundry = NULL;
g_autoptr(GListModel) bundles = NULL;
g_autoptr(GStrvBuilder) builder = g_strv_builder_new ();
g_autoptr(GError) error = NULL;
guint n_bundles;
if (!(foundry = dex_await_object (foundry_cli_options_load_context (options, command_line), &error)))
return NULL;
documentation_manager = foundry_context_dup_documentation_manager (foundry);
if (!dex_await (foundry_service_when_ready (FOUNDRY_SERVICE (documentation_manager)), &error))
return NULL;
if (!(bundles = dex_await_object (foundry_documentation_manager_list_bundles (documentation_manager), &error)))
return NULL;
n_bundles = g_list_model_get_n_items (bundles);
for (guint i = 0; i < n_bundles; i++)
{
g_autoptr(FoundryDocumentationBundle) bundle = g_list_model_get_item (bundles, i);
g_autofree char *id = foundry_documentation_bundle_dup_id (bundle);
g_autofree char *spaced = g_strdup_printf ("%s ", id);
if (current == NULL ||
g_str_has_prefix (spaced, current))
g_strv_builder_add (builder, spaced);
}
return g_strv_builder_end (builder);
}
static int
foundry_cli_builtin_doc_bundle_install_run (FoundryCommandLine *command_line,
const char * const *argv,
FoundryCliOptions *options,
DexCancellable *cancellable)
{
g_autoptr(FoundryDocumentationManager) documentation_manager = NULL;
g_autoptr(FoundryOperationManager) operation_manager = NULL;
g_autoptr(FoundryContext) foundry = NULL;
g_autoptr(GListModel) bundles = NULL;
g_autoptr(GError) error = NULL;
g_autofree char *bundle_id = NULL;
guint n_bundles;
g_assert (FOUNDRY_IS_COMMAND_LINE (command_line));
g_assert (argv != NULL);
g_assert (argv[0] != NULL);
g_assert (options != NULL);
g_assert (!cancellable || DEX_IS_CANCELLABLE (cancellable));
if (!(bundle_id = g_strdup (argv[1])))
{
foundry_command_line_printerr (command_line, "usage: foundry doc bundle install BUNDLE_ID\n");
return EXIT_FAILURE;
}
if (!(foundry = dex_await_object (foundry_cli_options_load_context (options, command_line), &error)))
goto handle_error;
documentation_manager = foundry_context_dup_documentation_manager (foundry);
if (!dex_await (foundry_service_when_ready (FOUNDRY_SERVICE (documentation_manager)), &error))
goto handle_error;
operation_manager = foundry_context_dup_operation_manager (foundry);
if (!dex_await (foundry_service_when_ready (FOUNDRY_SERVICE (operation_manager)), &error))
goto handle_error;
if (!(bundles = dex_await_object (foundry_documentation_manager_list_bundles (documentation_manager), &error)))
goto handle_error;
n_bundles = g_list_model_get_n_items (bundles);
for (guint i = 0; i < n_bundles; i++)
{
g_autoptr(FoundryDocumentationBundle) bundle = g_list_model_get_item (bundles, i);
g_autofree char *id = foundry_documentation_bundle_dup_id (bundle);
if (g_strcmp0 (id, bundle_id) == 0)
{
g_autoptr(FoundryOperation) operation = NULL;
operation = foundry_operation_manager_begin (operation_manager, _("Installing Documentation"));
g_signal_connect_object (operation,
"notify",
G_CALLBACK (redraw_progress),
command_line,
0);
dex_await (foundry_documentation_bundle_install (bundle, operation, cancellable), &error);
foundry_command_line_print (command_line, "\n");
if (error != NULL)
goto handle_error;
break;
}
}
return EXIT_SUCCESS;
handle_error:
foundry_command_line_printerr (command_line, "%s\n", error->message);
return EXIT_FAILURE;
}
void
foundry_cli_builtin_doc_bundle_install (FoundryCliCommandTree *tree)
{
foundry_cli_command_tree_register (tree,
FOUNDRY_STRV_INIT ("foundry", "doc", "bundle", "install"),
&(FoundryCliCommand) {
.options = (GOptionEntry[]) {
{ "help", 0, 0, G_OPTION_ARG_NONE },
{0}
},
.run = foundry_cli_builtin_doc_bundle_install_run,
.prepare = NULL,
.complete = foundry_cli_builtin_doc_bundle_install_complete,
.gettext_package = GETTEXT_PACKAGE,
.description = N_("Install a documentation bundle"),
});
}
|