Copyright header fixes...
[anjuta-git-plugin.git] / plugins / git / git-revert-command.c
blobc2b9b1dac4e03371e21f10d2128bbb342133980e
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-revert-command.h"
27 struct _GitRevertCommandPriv
29 gchar *revision;
30 gboolean no_commit;
33 G_DEFINE_TYPE (GitRevertCommand, git_revert_command, GIT_TYPE_COMMAND);
35 static void
36 git_revert_command_init (GitRevertCommand *self)
38 self->priv = g_new0 (GitRevertCommandPriv, 1);
41 static void
42 git_revert_command_finalize (GObject *object)
44 GitRevertCommand *self;
46 self = GIT_REVERT_COMMAND (object);
48 g_free (self->priv->revision);
49 g_free (self->priv);
51 G_OBJECT_CLASS (git_revert_command_parent_class)->finalize (object);
54 static guint
55 git_revert_command_run (AnjutaCommand *command)
57 GitRevertCommand *self;
59 self = GIT_REVERT_COMMAND (command);
61 git_command_add_arg (GIT_COMMAND (command), "revert");
62 git_command_add_arg (GIT_COMMAND (command), "--no-edit");
64 if (self->priv->no_commit)
65 git_command_add_arg (GIT_COMMAND (command), "-n");
67 git_command_add_arg (GIT_COMMAND (command), self->priv->revision);
69 return 0;
72 static void
73 git_revert_command_class_init (GitRevertCommandClass *klass)
75 GObjectClass* object_class = G_OBJECT_CLASS (klass);
76 GitCommandClass* parent_class = GIT_COMMAND_CLASS (klass);
77 AnjutaCommandClass* command_class = ANJUTA_COMMAND_CLASS (klass);
79 object_class->finalize = git_revert_command_finalize;
80 parent_class->output_handler = git_command_send_output_to_info;
81 command_class->run = git_revert_command_run;
85 GitRevertCommand *
86 git_revert_command_new (const gchar *working_directory, const gchar *revision,
87 gboolean no_commit)
89 GitRevertCommand *self;
91 self = g_object_new (GIT_TYPE_REVERT_COMMAND,
92 "working-directory", working_directory,
93 "single-line-output", TRUE,
94 NULL);
96 self->priv->revision = g_strdup (revision);
97 self->priv->no_commit = no_commit;
99 return self;