File: foundry-cli-builtin-forge-switch.c

package info (click to toggle)
foundry 1.1~beta-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,552 kB
  • sloc: ansic: 167,487; xml: 417; makefile: 21; sh: 19; javascript: 10
file content (115 lines) | stat: -rw-r--r-- 4,315 bytes parent folder | download | duplicates (2)
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
/* foundry-cli-builtin-forge-switch.c
 *
 * Copyright 2025 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-context.h"
#include "foundry-forge.h"
#include "foundry-forge-manager.h"
#include "foundry-service.h"
#include "foundry-util-private.h"

static int
foundry_cli_builtin_forge_switch_run (FoundryCommandLine *command_line,
                                      const char * const *argv,
                                      FoundryCliOptions  *options,
                                      DexCancellable     *cancellable)
{
  g_autoptr(FoundryForgeManager) forge_manager = NULL;
  g_autoptr(FoundryContext) foundry = NULL;
  g_autoptr(FoundryForge) forge = NULL;
  g_autoptr(GError) error = NULL;
  gboolean clear = FALSE;

  g_assert (FOUNDRY_IS_COMMAND_LINE (command_line));
  g_assert (argv != NULL);
  g_assert (!cancellable || DEX_IS_CANCELLABLE (cancellable));

  foundry_cli_options_get_boolean (options, "clear", &clear);

  if (clear)
    {
      if (!(foundry = dex_await_object (foundry_cli_options_load_context (options, command_line), &error)))
        goto handle_error;

      forge_manager = foundry_context_dup_forge_manager (foundry);
      if (!dex_await (foundry_service_when_ready (FOUNDRY_SERVICE (forge_manager)), &error))
        goto handle_error;

      foundry_forge_manager_set_forge (forge_manager, NULL);

      foundry_command_line_print (command_line, "Cleared forge setting\n");

      return EXIT_SUCCESS;
    }

  if (argv[1] == NULL)
    {
      foundry_command_line_printerr (command_line, "usage: %s [--clear] FORGE_ID\n", argv[0]);
      foundry_command_line_printerr (command_line, "       %s --clear\n", argv[0]);
      return EXIT_FAILURE;
    }

  if (!(foundry = dex_await_object (foundry_cli_options_load_context (options, command_line), &error)))
    goto handle_error;

  forge_manager = foundry_context_dup_forge_manager (foundry);
  if (!dex_await (foundry_service_when_ready (FOUNDRY_SERVICE (forge_manager)), &error))
    goto handle_error;

  if (!(forge = foundry_forge_manager_find_by_id (forge_manager, argv[1])))
    {
      foundry_command_line_printerr (command_line, "No such forge `%s`\n", argv[1]);
      return EXIT_FAILURE;
    }

  foundry_forge_manager_set_forge (forge_manager, forge);

  foundry_command_line_print (command_line, "Switched forge to `%s`\n", argv[1]);

  return EXIT_SUCCESS;

handle_error:

  foundry_command_line_printerr (command_line, "%s\n", error->message);
  return EXIT_FAILURE;
}

void
foundry_cli_builtin_forge_switch (FoundryCliCommandTree *tree)
{
  foundry_cli_command_tree_register (tree,
                                     FOUNDRY_STRV_INIT ("foundry", "forge", "switch"),
                                     &(FoundryCliCommand) {
                                       .options = (GOptionEntry[]) {
                                         { "help", 0, 0, G_OPTION_ARG_NONE },
                                         { "clear", 0, 0, G_OPTION_ARG_NONE, NULL, N_("Clear the forge setting") },
                                         {0}
                                       },
                                       .run = foundry_cli_builtin_forge_switch_run,
                                       .prepare = NULL,
                                       .complete = NULL,
                                       .gettext_package = GETTEXT_PACKAGE,
                                       .description = N_("FORGE - Switch forge to FORGE"),
                                     });
}