code-analyzer: Fixed bgo#667903 - Code Analyzer Crashes
[anjuta.git] / plugins / git / git-remote-add-command.c
blob52df9618d2e177203963220a4570720e5eca6fa9
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-remote-add-command.h"
27 struct _GitRemoteAddCommandPriv
29 gchar *name;
30 gchar *url;
31 gboolean fetch;
34 G_DEFINE_TYPE (GitRemoteAddCommand, git_remote_add_command, GIT_TYPE_COMMAND);
36 static void
37 git_remote_add_command_init (GitRemoteAddCommand *self)
39 self->priv = g_new0 (GitRemoteAddCommandPriv, 1);
42 static void
43 git_remote_add_command_finalize (GObject *object)
45 GitRemoteAddCommand *self;
47 self = GIT_REMOTE_ADD_COMMAND (object);
49 g_free (self->priv->name);
50 g_free (self->priv->url);
51 g_free (self->priv);
53 G_OBJECT_CLASS (git_remote_add_command_parent_class)->finalize (object);
56 static guint
57 git_remote_add_command_run (AnjutaCommand *command)
59 GitRemoteAddCommand *self;
61 self = GIT_REMOTE_ADD_COMMAND (command);
63 git_command_add_arg (GIT_COMMAND (command), "remote");
64 git_command_add_arg (GIT_COMMAND (command), "add");
66 if (self->priv->fetch)
67 git_command_add_arg (GIT_COMMAND (command), "-f");
69 git_command_add_arg (GIT_COMMAND (command), self->priv->name);
70 git_command_add_arg (GIT_COMMAND (command), self->priv->url);
72 return 0;
75 static void
76 git_remote_add_command_class_init (GitRemoteAddCommandClass *klass)
78 GObjectClass* object_class = G_OBJECT_CLASS (klass);
79 GitCommandClass* parent_class = GIT_COMMAND_CLASS (klass);
80 AnjutaCommandClass* command_class = ANJUTA_COMMAND_CLASS (klass);
82 object_class->finalize = git_remote_add_command_finalize;
83 parent_class->output_handler = git_command_send_output_to_info;
84 command_class->run = git_remote_add_command_run;
88 GitRemoteAddCommand *
89 git_remote_add_command_new (const gchar *working_directory,
90 const gchar *name, const gchar *url,
91 gboolean fetch)
93 GitRemoteAddCommand *self;
95 self = g_object_new (GIT_TYPE_REMOTE_ADD_COMMAND,
96 "working-directory", working_directory,
97 NULL);
99 self->priv->name = g_strdup (name);
100 self->priv->url = g_strdup (url);
101 self->priv->fetch = fetch;
103 return self;
106 gchar *
107 git_remote_add_command_get_branch_name (GitRemoteAddCommand *self)
109 return g_strdup (self->priv->name);