1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
4 * Copyright (C) James Liggett 2008 <jrliggett@cox.net>
6 * anjuta is free software.
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)
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
34 G_DEFINE_TYPE (GitRemoteAddCommand
, git_remote_add_command
, GIT_TYPE_COMMAND
);
37 git_remote_add_command_init (GitRemoteAddCommand
*self
)
39 self
->priv
= g_new0 (GitRemoteAddCommandPriv
, 1);
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
);
53 G_OBJECT_CLASS (git_remote_add_command_parent_class
)->finalize (object
);
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
);
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
;
89 git_remote_add_command_new (const gchar
*working_directory
,
90 const gchar
*name
, const gchar
*url
,
93 GitRemoteAddCommand
*self
;
95 self
= g_object_new (GIT_TYPE_REMOTE_ADD_COMMAND
,
96 "working-directory", working_directory
,
99 self
->priv
->name
= g_strdup (name
);
100 self
->priv
->url
= g_strdup (url
);
101 self
->priv
->fetch
= fetch
;
107 git_remote_add_command_get_branch_name (GitRemoteAddCommand
*self
)
109 return g_strdup (self
->priv
->name
);