mirror of
https://github.com/flatpak/flatpak.git
synced 2026-01-26 06:07:56 +00:00
To make indentation work with less effort. The modeline was copied from libostree with minor modification and the .editorconfig from GLib. The advantage of having both a modeline and an editorconfig is we can work out of the box on more editor setups, and the modeline allows us to specify the style with a lot more fine grained control.
134 lines
3.9 KiB
C
134 lines
3.9 KiB
C
/* vi:set et sw=2 sts=2 cin cino=t0,f0,(0,{s,>2s,n-s,^-s,e-s:
|
|
* Copyright © 2020 Endless OS Foundation LLC
|
|
*
|
|
* 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.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 Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Authors:
|
|
* Matthew Leeds <matthew.leeds@endlessm.com>
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <locale.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
#include "libglnx.h"
|
|
|
|
#include "flatpak-builtins.h"
|
|
#include "flatpak-builtins-utils.h"
|
|
#include "flatpak-cli-transaction.h"
|
|
#include "flatpak-quiet-transaction.h"
|
|
#include "flatpak-utils-private.h"
|
|
#include "flatpak-error.h"
|
|
|
|
/* Note: the code here is copied from flatpak-builtins-mask.c */
|
|
|
|
static gboolean opt_remove;
|
|
|
|
static GOptionEntry options[] = {
|
|
{ "remove", 0, 0, G_OPTION_ARG_NONE, &opt_remove, N_("Remove matching pins"), NULL },
|
|
{ NULL }
|
|
};
|
|
|
|
gboolean
|
|
flatpak_builtin_pin (int argc, char **argv, GCancellable *cancellable, GError **error)
|
|
{
|
|
g_autoptr(GOptionContext) context = NULL;
|
|
g_autoptr(GPtrArray) dirs = NULL;
|
|
FlatpakDir *dir;
|
|
int i;
|
|
|
|
context = g_option_context_new (_("[PATTERN…] - disable automatic removal of runtimes matching patterns"));
|
|
g_option_context_set_translation_domain (context, GETTEXT_PACKAGE);
|
|
|
|
if (!flatpak_option_context_parse (context, options, &argc, &argv,
|
|
FLATPAK_BUILTIN_FLAG_ONE_DIR,
|
|
&dirs, cancellable, error))
|
|
return FALSE;
|
|
|
|
dir = g_ptr_array_index (dirs, 0);
|
|
|
|
if (argc == 1)
|
|
{
|
|
g_autoptr(GPtrArray) patterns = NULL;
|
|
|
|
patterns = flatpak_dir_get_config_patterns (dir, "pinned");
|
|
|
|
if (patterns->len == 0)
|
|
{
|
|
if (flatpak_fancy_output ())
|
|
g_print (_("No pinned patterns\n"));
|
|
}
|
|
else
|
|
{
|
|
if (flatpak_fancy_output ())
|
|
g_print (_("Pinned patterns:\n"));
|
|
|
|
for (i = 0; i < patterns->len; i++)
|
|
{
|
|
const char *old = g_ptr_array_index (patterns, i);
|
|
g_print (" %s\n", old);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for (i = 1; i < argc; i++)
|
|
{
|
|
const char *pattern = argv[i];
|
|
|
|
if (opt_remove)
|
|
{
|
|
if (!flatpak_dir_config_remove_pattern (dir, "pinned", pattern, error))
|
|
return FALSE;
|
|
}
|
|
else if (!flatpak_dir_config_append_pattern (dir, "pinned", pattern,
|
|
TRUE, /* only match runtimes */
|
|
NULL, error))
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
gboolean
|
|
flatpak_complete_pin (FlatpakCompletion *completion)
|
|
{
|
|
g_autoptr(GOptionContext) context = NULL;
|
|
g_autoptr(GPtrArray) dirs = NULL;
|
|
|
|
context = g_option_context_new ("");
|
|
if (!flatpak_option_context_parse (context, options, &completion->argc, &completion->argv,
|
|
FLATPAK_BUILTIN_FLAG_ONE_DIR | FLATPAK_BUILTIN_FLAG_OPTIONAL_REPO,
|
|
&dirs, NULL, NULL))
|
|
return FALSE;
|
|
|
|
switch (completion->argc)
|
|
{
|
|
case 0:
|
|
case 1: /* PATTERN */
|
|
flatpak_complete_options (completion, global_entries);
|
|
flatpak_complete_options (completion, options);
|
|
flatpak_complete_options (completion, user_entries);
|
|
break;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|