debug-manager: use g_spawn_sync() instead of fork() and waitpid()
[anjuta.git] / plugins / git / git-format-patch-command.c
blobe7dec082597f735ee8d84c3daf97e7d4b99898d2
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-format-patch-command.h"
27 struct _GitFormatPatchCommandPriv
29 gchar *output_directory;
30 gchar *branch;
31 gboolean add_signoff;
34 G_DEFINE_TYPE (GitFormatPatchCommand, git_format_patch_command,
35 GIT_TYPE_COMMAND);
37 static void
38 git_format_patch_command_init (GitFormatPatchCommand *self)
40 self->priv = g_new0 (GitFormatPatchCommandPriv, 1);
43 static void
44 git_format_patch_command_finalize (GObject *object)
46 GitFormatPatchCommand *self;
48 self = GIT_FORMAT_PATCH_COMMAND (object);
50 g_free (self->priv->output_directory);
51 g_free (self->priv->branch);
52 g_free (self->priv);
54 G_OBJECT_CLASS (git_format_patch_command_parent_class)->finalize (object);
57 static guint
58 git_format_patch_command_run (AnjutaCommand *command)
60 GitFormatPatchCommand *self;
62 self = GIT_FORMAT_PATCH_COMMAND (command);
64 git_command_add_arg (GIT_COMMAND (command), "format-patch");
66 if (self->priv->output_directory)
68 git_command_add_arg (GIT_COMMAND (command), "-o");
69 git_command_add_arg (GIT_COMMAND (command),
70 self->priv->output_directory);
73 if (self->priv->add_signoff)
74 git_command_add_arg (GIT_COMMAND (command), "-s");
76 git_command_add_arg (GIT_COMMAND (command), self->priv->branch);
78 return 0;
81 static void
82 git_format_patch_command_class_init (GitFormatPatchCommandClass *klass)
84 GObjectClass* object_class = G_OBJECT_CLASS (klass);
85 GitCommandClass* parent_class = GIT_COMMAND_CLASS (klass);
86 AnjutaCommandClass* command_class = ANJUTA_COMMAND_CLASS (klass);
88 object_class->finalize = git_format_patch_command_finalize;
89 parent_class->output_handler = git_command_send_output_to_info;
90 command_class->run = git_format_patch_command_run;
94 GitFormatPatchCommand *
95 git_format_patch_command_new (const gchar *working_directory,
96 const gchar *output_directory,
97 const gchar *branch,
98 gboolean add_signoff)
100 GitFormatPatchCommand *self;
102 self = g_object_new (GIT_TYPE_FORMAT_PATCH_COMMAND,
103 "working-directory", working_directory,
104 "single-line-output", TRUE,
105 NULL);
107 self->priv->output_directory = g_strdup (output_directory);
108 self->priv->branch = g_strdup (branch);
109 self->priv->add_signoff = add_signoff;
111 return self;