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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
/*
* anjuta
* Copyright (C) James Liggett 2007 <jrliggett@cox.net>
*
* Portions based on the original Subversion plugin
* Copyright (C) Johannes Schmid 2005
*
* 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 "svn-diff-command.h"
struct _SvnDiffCommandPriv
{
GQueue *output;
gchar *path;
gchar *root_dir;
glong revision1;
glong revision2;
svn_depth_t depth;
};
G_DEFINE_TYPE (SvnDiffCommand, svn_diff_command, SVN_TYPE_COMMAND);
static void
svn_diff_command_init (SvnDiffCommand *self)
{
self->priv = g_new0 (SvnDiffCommandPriv, 1);
self->priv->output = g_queue_new ();
}
static void
svn_diff_command_finalize (GObject *object)
{
SvnDiffCommand *self;
GList *current_line;
self = SVN_DIFF_COMMAND (object);
current_line = self->priv->output->head;
while (current_line)
{
g_free (current_line->data);
current_line = g_list_next (current_line);
}
g_queue_free (self->priv->output);
g_free (self->priv->path);
g_free (self->priv->root_dir);
g_free (self->priv);
G_OBJECT_CLASS (svn_diff_command_parent_class)->finalize (object);
}
static gboolean
get_full_str (apr_file_t *diff_file, gchar **line)
{
apr_size_t read_size = 1;
gint buf_size = 2;
gint cur_size = 0;
gchar buf;
*line = g_new (gchar, buf_size);
while (apr_file_read (diff_file, &buf, &read_size) != APR_EOF)
{
(*line)[cur_size] = buf;
cur_size++;
if (cur_size >= buf_size)
{
gchar *new_line = g_renew (gchar, *line, buf_size * 2);
buf_size *= 2;
*line = new_line;
}
if (buf == '\n')
{
(*line)[cur_size] = 0;
return TRUE;
}
}
return FALSE;
}
static guint
svn_diff_command_run (AnjutaCommand *command)
{
SvnDiffCommand *self;
SvnCommand *svn_command;
svn_opt_revision_t revision1;
svn_opt_revision_t revision2;
apr_array_header_t *options;
apr_file_t *diff_file;
gchar file_template[] = "anjuta-svn-diffXXXXXX";
gchar *line;
svn_error_t *error;
apr_off_t offset;
self = SVN_DIFF_COMMAND (command);
svn_command = SVN_COMMAND (self);
switch (self->priv->revision1)
{
case SVN_DIFF_REVISION_NONE:
/* Treat this as a diff between working copy and base
* (show only mods made to the revision of this working copy.) */
revision1.kind = svn_opt_revision_base;
revision2.kind = svn_opt_revision_working;
break;
case SVN_DIFF_REVISION_PREVIOUS:
/* Diff between selected revision and the one before it.
* This is relative to revision2. */
revision1.kind = svn_opt_revision_number;
revision1.value.number = self->priv->revision2 - 1;
revision2.kind = svn_opt_revision_number;
revision2.value.number = self->priv->revision2;
break;
default:
/* Diff between two distinct revisions */
revision1.kind = svn_opt_revision_number;
revision1.value.number = self->priv->revision1;
revision2.kind = svn_opt_revision_number;
revision2.value.number = self->priv->revision2;
break;
}
options = apr_array_make(svn_command_get_pool (SVN_COMMAND (command)),
0, sizeof (char *));
apr_file_mktemp (&diff_file, file_template, 0,
svn_command_get_pool (SVN_COMMAND (command)));
error = svn_client_diff4 (options,
self->priv->path,
&revision1,
self->priv->path,
&revision2,
self->priv->root_dir,
self->priv->depth,
FALSE,
FALSE,
FALSE,
SVN_APR_LOCALE_CHARSET,
diff_file,
NULL,
NULL,
svn_command_get_client_context (svn_command),
svn_command_get_pool (svn_command));
if (error)
{
svn_command_set_error (svn_command, error);
return 1;
}
offset = 0;
apr_file_seek (diff_file, APR_SET, &offset);
while (get_full_str (diff_file, &line))
{
anjuta_async_command_lock (ANJUTA_ASYNC_COMMAND (command));
/* Make sure that we only output UTF-8. We could have done this by
* passing in "UTF-8" for header encoding to the diff API, but there
* is the possiblity that an external diff program could be used, in
* which case that arguement wouldn't do anything. As a workaround,
* have the internal diff system return things in the system
* charset, and make the (hopefully safe) assumption that any
* external diff program also outputs in the current locale. */
g_queue_push_tail (self->priv->output,
g_locale_to_utf8 (line, -1, NULL, NULL,
NULL));
anjuta_async_command_unlock (ANJUTA_ASYNC_COMMAND (command));
g_free (line);
anjuta_command_notify_data_arrived (command);
}
apr_file_close (diff_file);
return 0;
}
static void
svn_diff_command_class_init (SvnDiffCommandClass *klass)
{
GObjectClass* object_class = G_OBJECT_CLASS (klass);
AnjutaCommandClass *command_class = ANJUTA_COMMAND_CLASS (klass);
object_class->finalize = svn_diff_command_finalize;
command_class->run = svn_diff_command_run;
}
SvnDiffCommand *
svn_diff_command_new (const gchar *path, glong revision1, glong revision2,
const gchar *root_dir, gboolean recursive)
{
SvnDiffCommand *self;
self = g_object_new (SVN_TYPE_DIFF_COMMAND, NULL);
self->priv->path = svn_command_make_canonical_path (SVN_COMMAND (self),
path);
self->priv->root_dir = svn_command_make_canonical_path (SVN_COMMAND (self),
root_dir);
self->priv->revision1 = revision1;
self->priv->revision2 = revision2;
self->priv->depth = recursive ? svn_depth_infinity : svn_depth_empty;
return self;
}
void
svn_diff_command_destroy (SvnDiffCommand *self)
{
g_object_unref (self);
}
GQueue *
svn_diff_command_get_output (SvnDiffCommand *self)
{
return self->priv->output;
}
|