File: git-ignore-command.c

package info (click to toggle)
anjuta 2%3A3.34.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 72,196 kB
  • sloc: ansic: 207,444; sh: 47,499; cpp: 11,461; makefile: 3,588; yacc: 2,821; perl: 2,094; lex: 1,546; xml: 904; python: 149; sql: 99; java: 10
file content (140 lines) | stat: -rw-r--r-- 3,825 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
/*
 * anjuta
 * Copyright (C) James Liggett 2008 <jrliggett@cox.net>
 * 
 * anjuta is free software.
 * 
 * You may redistribute it and/or modify it under the terms of the
 * GNU General Public License, as published by the Free Software
 * Foundation; either version 2 of the License, or (at your option)
 * any later version.
 * 
 * anjuta is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with anjuta.  If not, write to:
 * 	The Free Software Foundation, Inc.,
 * 	51 Franklin Street, Fifth Floor
 * 	Boston, MA  02110-1301, USA.
 */

#include "git-ignore-command.h"

struct _GitIgnoreCommandPriv
{
	GList *paths;
};

G_DEFINE_TYPE (GitIgnoreCommand, git_ignore_command, GIT_TYPE_FILE_COMMAND);

static void
git_ignore_command_init (GitIgnoreCommand *self)
{
	self->priv = g_new0 (GitIgnoreCommandPriv, 1);
}

static void
git_ignore_command_finalize (GObject *object)
{
	GitIgnoreCommand *self;
	
	self = GIT_IGNORE_COMMAND (object);
	
	anjuta_util_glist_strings_free (self->priv->paths);
	g_free (self->priv);
	
	G_OBJECT_CLASS (git_ignore_command_parent_class)->finalize (object);
}

static guint
git_ignore_command_run (AnjutaCommand *command)
{
	GitIgnoreCommand *self;
	gchar *working_directory;
	GList *current_path;
	gchar *ignore_file_path;
	GFile *ignore_file;
	GFile *ignore_file_parent;
	GFile *gitignore_file;
	gchar *ignore_path_basename;
	GFileOutputStream *gitignore_stream;
	
	self = GIT_IGNORE_COMMAND (command);
	g_object_get (self, "working-directory", &working_directory, NULL);
	current_path = self->priv->paths;
	
	while (current_path)
	{
		ignore_file_path = g_build_filename (working_directory, 
											 current_path->data, NULL);
		ignore_file = g_file_new_for_path (ignore_file_path);
		ignore_file_parent = g_file_get_parent (ignore_file);
		gitignore_file = g_file_get_child (ignore_file_parent, ".gitignore");
		ignore_path_basename = g_file_get_basename (ignore_file);
		gitignore_stream = g_file_append_to (gitignore_file, 0, NULL, NULL);
		
		g_output_stream_write (G_OUTPUT_STREAM (gitignore_stream), 
							   ignore_path_basename,
							   strlen (ignore_path_basename),
							   NULL, NULL);
		g_output_stream_write (G_OUTPUT_STREAM (gitignore_stream),
							   "\n", 1, NULL, NULL);
		
		g_free (ignore_file_path);
		g_free (ignore_path_basename);
		g_object_unref (ignore_file);
		g_object_unref (ignore_file_parent);
		g_object_unref (gitignore_file);
		g_object_unref (gitignore_stream);
		
		current_path = g_list_next (current_path);
	}
	
	g_free (working_directory);
	
	return 0;
}

static void
git_ignore_command_class_init (GitIgnoreCommandClass *klass)
{
	GObjectClass* object_class = G_OBJECT_CLASS (klass);
	AnjutaCommandClass* command_class = ANJUTA_COMMAND_CLASS (klass);
	
	object_class->finalize = git_ignore_command_finalize;
	command_class->run = git_ignore_command_run;
}


GitIgnoreCommand *
git_ignore_command_new_path (const gchar *working_directory, const gchar *path)
{
	GitIgnoreCommand *self;
	
	self = g_object_new (GIT_TYPE_IGNORE_COMMAND,
						 "working-directory", working_directory,
						 NULL);
	
	self->priv->paths = g_list_append (self->priv->paths, g_strdup (path));
	
	return self;
}


GitIgnoreCommand *
git_ignore_command_new_list (const gchar *working_directory, GList *path_list)
{
	GitIgnoreCommand *self;
	
	self = g_object_new (GIT_TYPE_IGNORE_COMMAND,
						 "working-directory", working_directory,
						 NULL);
	
	self->priv->paths = git_command_copy_string_list (path_list);
	
	return self;
}