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
|
/* foundry-cli-builtin-vcs-list.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.h"
#include "foundry-context.h"
#include "foundry-vcs.h"
#include "foundry-vcs-manager.h"
#include "foundry-service.h"
static int
foundry_cli_builtin_vcs_ignored_run (FoundryCommandLine *command_line,
const char * const *argv,
FoundryCliOptions *options,
DexCancellable *cancellable)
{
g_autoptr(FoundryVcsManager) vcs_manager = NULL;
g_autoptr(FoundryContext) context = NULL;
g_autoptr(FoundryVcs) vcs = NULL;
g_autoptr(GError) error = NULL;
g_autoptr(GFile) project_dir = NULL;
g_assert (FOUNDRY_IS_COMMAND_LINE (command_line));
g_assert (argv != NULL);
g_assert (options != NULL);
g_assert (!cancellable || DEX_IS_CANCELLABLE (cancellable));
if (!(context = dex_await_object (foundry_cli_options_load_context (options, command_line), &error)))
goto handle_error;
project_dir = foundry_context_dup_project_directory (context);
vcs_manager = foundry_context_dup_vcs_manager (context);
if (!dex_await (foundry_service_when_ready (FOUNDRY_SERVICE (vcs_manager)), &error))
goto handle_error;
if ((vcs = foundry_vcs_manager_dup_vcs (vcs_manager)))
{
for (int i = 1; argv[i]; i++)
{
g_autoptr(GFile) this_file = g_file_new_build_filename (foundry_command_line_get_directory (command_line), argv[i], NULL);
if (g_file_has_prefix (this_file, project_dir))
{
g_autofree char *relative_path = g_file_get_relative_path (project_dir, this_file);
gboolean ignored = foundry_vcs_is_ignored (vcs, relative_path);
foundry_command_line_print (command_line,
"%s: %s\n",
relative_path,
ignored ? "Yes" : "No");
}
}
}
return EXIT_SUCCESS;
handle_error:
foundry_command_line_printerr (command_line, "%s\n", error->message);
return EXIT_FAILURE;
}
static char **
foundry_cli_builtin_vcs_ignored_complete (FoundryCommandLine *command_line,
const char *command,
const GOptionEntry *entry,
FoundryCliOptions *options,
const char * const *argv,
const char *current)
{
return g_strdupv ((char **)FOUNDRY_STRV_INIT ("__FOUNDRY_FILE"));
}
void
foundry_cli_builtin_vcs_ignored (FoundryCliCommandTree *tree)
{
foundry_cli_command_tree_register (tree,
FOUNDRY_STRV_INIT ("foundry", "vcs", "ignored"),
&(FoundryCliCommand) {
.options = (GOptionEntry[]) {
{ "help", 0, 0, G_OPTION_ARG_NONE },
{0}
},
.run = foundry_cli_builtin_vcs_ignored_run,
.prepare = NULL,
.complete = foundry_cli_builtin_vcs_ignored_complete,
.gettext_package = GETTEXT_PACKAGE,
.description = N_("FILE - Check if FILE is ignored"),
});
}
|