[gnome-builder/wip/gtk4-port: 1494/1774] plugins/shellcmd: add helper to delete command
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/gtk4-port: 1494/1774] plugins/shellcmd: add helper to delete command
- Date: Mon, 11 Jul 2022 22:31:47 +0000 (UTC)
commit f6cb23701ec11e8c8f892a3d903d1d9513d3af62
Author: Christian Hergert <chergert redhat com>
Date: Tue Jun 14 01:17:10 2022 -0700
plugins/shellcmd: add helper to delete command
src/plugins/shellcmd/gbp-shellcmd-run-command.c | 50 ++++++++++++++++++++++++-
src/plugins/shellcmd/gbp-shellcmd-run-command.h | 5 ++-
2 files changed, 52 insertions(+), 3 deletions(-)
---
diff --git a/src/plugins/shellcmd/gbp-shellcmd-run-command.c b/src/plugins/shellcmd/gbp-shellcmd-run-command.c
index fe67180d5..dff3b618d 100644
--- a/src/plugins/shellcmd/gbp-shellcmd-run-command.c
+++ b/src/plugins/shellcmd/gbp-shellcmd-run-command.c
@@ -29,6 +29,7 @@ struct _GbpShellcmdRunCommand
IdeRunCommand parent_instance;
char *settings_path;
GSettings *settings;
+ char *id;
};
enum {
@@ -51,12 +52,16 @@ gbp_shellcmd_run_command_constructed (GObject *object)
g_assert (GBP_IS_SHELLCMD_RUN_COMMAND (self));
g_assert (self->settings_path != NULL);
+ g_assert (g_str_has_suffix (self->settings_path, "/"));
self->settings = g_settings_new_with_path ("org.gnome.builder.shellcmd.command", self->settings_path);
path_split = g_strsplit (self->settings_path, "/", 0);
n_parts = g_strv_length (path_split);
- id = g_strdup_printf ("shellcmd:%s", path_split[n_parts-1]);
+ g_assert (n_parts >= 2);
+
+ self->id = g_strdup (path_split[n_parts-2]);
+ id = g_strdup_printf ("shellcmd:%s", self->id);
ide_run_command_set_id (IDE_RUN_COMMAND (self), id);
g_settings_bind (self->settings, "display-name", self, "display-name", G_SETTINGS_BIND_DEFAULT);
@@ -70,6 +75,7 @@ gbp_shellcmd_run_command_dispose (GObject *object)
{
GbpShellcmdRunCommand *self = (GbpShellcmdRunCommand *)object;
+ g_clear_pointer (&self->id, g_free);
g_clear_pointer (&self->settings_path, g_free);
g_clear_object (&self->settings);
@@ -145,3 +151,45 @@ gbp_shellcmd_run_command_new (const char *settings_path)
"settings-path", settings_path,
NULL);
}
+
+void
+gbp_shellcmd_run_command_delete (GbpShellcmdRunCommand *self)
+{
+ g_autoptr(GSettingsSchema) schema = NULL;
+ g_autoptr(GStrvBuilder) builder = NULL;
+ g_autoptr(GSettings) list = NULL;
+ g_autoptr(GString) parent_path = NULL;
+ g_auto(GStrv) commands = NULL;
+ g_auto(GStrv) keys = NULL;
+
+ g_return_if_fail (GBP_IS_SHELLCMD_RUN_COMMAND (self));
+
+ /* Get parent settings path */
+ parent_path = g_string_new (self->settings_path);
+ if (parent_path->len)
+ g_string_truncate (parent_path, parent_path->len-1);
+ while (parent_path->len && parent_path->str[parent_path->len-1] != '/')
+ g_string_truncate (parent_path, parent_path->len-1);
+
+ /* First remove the item from the parent list of commands */
+ list = g_settings_new_with_path ("org.gnome.builder.shellcmd", parent_path->str);
+ commands = g_settings_get_strv (list, "run-commands");
+ builder = g_strv_builder_new ();
+ for (guint i = 0; commands[i]; i++)
+ {
+ g_print ("%s %s\n", commands[i], self->id);
+ if (!ide_str_equal0 (commands[i], self->id))
+ g_strv_builder_add (builder, commands[i]);
+ }
+ g_clear_pointer (&commands, g_strfreev);
+ commands = g_strv_builder_end (builder);
+ g_settings_set_strv (list, "run-commands", (const char * const *)commands);
+
+ /* Now reset the keys so the entry does not take up space in storage */
+ g_object_get (self->settings,
+ "settings-schema", &schema,
+ NULL);
+ keys = g_settings_schema_list_keys (schema);
+ for (guint i = 0; keys[i]; i++)
+ g_settings_reset (self->settings, keys[i]);
+}
diff --git a/src/plugins/shellcmd/gbp-shellcmd-run-command.h b/src/plugins/shellcmd/gbp-shellcmd-run-command.h
index b5b2e8981..61b8e53e2 100644
--- a/src/plugins/shellcmd/gbp-shellcmd-run-command.h
+++ b/src/plugins/shellcmd/gbp-shellcmd-run-command.h
@@ -28,7 +28,8 @@ G_BEGIN_DECLS
G_DECLARE_FINAL_TYPE (GbpShellcmdRunCommand, gbp_shellcmd_run_command, GBP, SHELLCMD_RUN_COMMAND,
IdeRunCommand)
-GbpShellcmdRunCommand *gbp_shellcmd_run_command_new (const char *settings_path);
-GbpShellcmdRunCommand *gbp_shellcmd_run_command_create (IdeContext *context);
+GbpShellcmdRunCommand *gbp_shellcmd_run_command_new (const char *settings_path);
+GbpShellcmdRunCommand *gbp_shellcmd_run_command_create (IdeContext *context);
+void gbp_shellcmd_run_command_delete (GbpShellcmdRunCommand *self);
G_END_DECLS
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]