Copyright header fixes...
[anjuta-git-plugin.git] / plugins / git / git-remove-command.c
blobfc12272761fb0a16a78aa1de60054191ef10d398
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * anjuta
4 * Copyright (C) James Liggett 2008 <jrliggett@cox.net>
5 *
6 * anjuta is free software.
7 *
8 * You may redistribute it and/or modify it under the terms of the
9 * GNU General Public License, as published by the Free Software
10 * Foundation; either version 2 of the License, or (at your option)
11 * any later version.
13 * anjuta is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 * See the GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with anjuta. If not, write to:
20 * The Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02110-1301, USA.
25 #include "git-remove-command.h"
27 struct _GitRemoveCommandPriv
29 GList *paths;
30 gboolean force;
33 G_DEFINE_TYPE (GitRemoveCommand, git_remove_command, GIT_TYPE_COMMAND);
35 static void
36 git_remove_command_init (GitRemoveCommand *self)
38 self->priv = g_new0 (GitRemoveCommandPriv, 1);
41 static void
42 git_remove_command_finalize (GObject *object)
44 GitRemoveCommand *self;
46 self = GIT_REMOVE_COMMAND (object);
48 git_command_free_path_list (self->priv->paths);
49 g_free (self->priv);
51 G_OBJECT_CLASS (git_remove_command_parent_class)->finalize (object);
54 static guint
55 git_remove_command_run (AnjutaCommand *command)
57 GitRemoveCommand *self;
59 self = GIT_REMOVE_COMMAND (command);
61 git_command_add_arg (GIT_COMMAND (command), "rm");
63 if (self->priv->force)
64 git_command_add_arg (GIT_COMMAND (command), "-f");
66 git_command_add_list_to_args (GIT_COMMAND (command), self->priv->paths);
68 return 0;
71 static void
72 git_remove_command_class_init (GitRemoveCommandClass *klass)
74 GObjectClass* object_class = G_OBJECT_CLASS (klass);
75 AnjutaCommandClass* command_class = ANJUTA_COMMAND_CLASS (klass);
77 object_class->finalize = git_remove_command_finalize;
78 command_class->run = git_remove_command_run;
82 GitRemoveCommand *
83 git_remove_command_new_path (const gchar *working_directory, const gchar *path,
84 gboolean force)
86 GitRemoveCommand *self;
88 self = g_object_new (GIT_TYPE_REMOVE_COMMAND,
89 "working-directory", working_directory,
90 NULL);
92 self->priv->paths = g_list_append (self->priv->paths, g_strdup (path));
93 self->priv->force = force;
95 return self;
99 GitRemoveCommand *
100 git_remove_command_new_list (const gchar *working_directory, GList *path_list,
101 gboolean force)
103 GitRemoveCommand *self;
105 self = g_object_new (GIT_TYPE_REMOVE_COMMAND,
106 "working-directory", working_directory,
107 NULL);
109 self->priv->paths = git_command_copy_path_list (path_list);
110 self->priv->force = force;
112 return self;