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 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
|
/*
* Copyright (C) the Rugged contributors. All rights reserved.
*
* This file is part of Rugged, distributed under the MIT license.
* For full terms see the included LICENSE file.
*/
#include "rugged.h"
extern VALUE rb_mRugged;
extern VALUE rb_cRuggedDiffDelta;
VALUE rb_cRuggedPatch;
/*
* call-seq:
* Patch.from_strings(old_content = nil, new_content = nil, options = {}) -> patch
*
* Directly generate a Rugged::Patch from the difference between the content of
* the two strings `old_content` and `new_content`.
*
* The following options can be passed in the +options+ Hash:
*
* :old_path ::
* An optional string to treat +blob+ as if it had this filename.
*
* :new_path ::
* An optional string to treat +other+ as if it had this filename.
*
* Additionally, `options` can also contain all other valid diff options
* (see Rugged::Tree#diff for a complete list).
*/
VALUE rb_git_patch_from_strings(int argc, VALUE *argv, VALUE self)
{
git_diff_options opts = GIT_DIFF_OPTIONS_INIT;
git_patch *patch;
char * old_path = NULL, * new_path = NULL;
VALUE rb_old_buffer, rb_new_buffer, rb_options;
rb_scan_args(argc, argv, "02:", &rb_old_buffer, &rb_new_buffer, &rb_options);
if (!NIL_P(rb_options)) {
VALUE rb_value;
rb_value = rb_hash_aref(rb_options, CSTR2SYM("old_path"));
if (!NIL_P(rb_value)) {
Check_Type(rb_value, T_STRING);
old_path = StringValueCStr(rb_value);
}
rb_value = rb_hash_aref(rb_options, CSTR2SYM("new_path"));
if (!NIL_P(rb_value)) {
Check_Type(rb_value, T_STRING);
new_path = StringValueCStr(rb_value);
}
rugged_parse_diff_options(&opts, rb_options);
}
rugged_exception_check(git_patch_from_buffers(&patch,
NIL_P(rb_old_buffer) ? NULL : StringValuePtr(rb_old_buffer),
NIL_P(rb_old_buffer) ? 0 : RSTRING_LEN(rb_old_buffer),
old_path,
NIL_P(rb_new_buffer) ? NULL : StringValuePtr(rb_new_buffer),
NIL_P(rb_new_buffer) ? 0 : RSTRING_LEN(rb_new_buffer),
new_path,
&opts
));
return rugged_patch_new(self, patch);
}
VALUE rugged_patch_new(VALUE owner, git_patch *patch)
{
VALUE rb_patch = Data_Wrap_Struct(rb_cRuggedPatch, NULL, &git_patch_free, patch);
rugged_set_owner(rb_patch, owner);
return rb_patch;
}
/*
* call-seq:
* patch.each_hunk { |hunk| } -> self
* patch.each_hunk -> enumerator
*
* If given a block, yields each hunk that is part of the patch.
*
* If no block is given, an enumerator is returned instead.
*/
static VALUE rb_git_diff_patch_each_hunk(VALUE self)
{
git_patch *patch;
const git_diff_hunk *hunk;
size_t lines_in_hunk;
int error = 0;
size_t hunks_count, h;
RETURN_ENUMERATOR(self, 0, 0);
Data_Get_Struct(self, git_patch, patch);
hunks_count = git_patch_num_hunks(patch);
for (h = 0; h < hunks_count; ++h) {
error = git_patch_get_hunk(&hunk, &lines_in_hunk, patch, h);
if (error) break;
rb_yield(rugged_diff_hunk_new(self, h, hunk, lines_in_hunk));
}
rugged_exception_check(error);
return self;
}
/*
* call-seq:
* patch.hunk_count -> int
*
* Returns the number of hunks in the patch.
*/
static VALUE rb_git_diff_patch_hunk_count(VALUE self)
{
git_patch *patch;
Data_Get_Struct(self, git_patch, patch);
return INT2FIX(git_patch_num_hunks(patch));
}
/*
* call-seq:
* patch.delta -> delta
*
* Returns the delta object associated with the patch.
*/
static VALUE rb_git_diff_patch_delta(VALUE self)
{
git_patch *patch;
Data_Get_Struct(self, git_patch, patch);
return rugged_diff_delta_new(rugged_owner(self), git_patch_get_delta(patch));
}
/*
* call-seq:
* patch.stat -> int, int
*
* Returns the number of additions and deletions in the patch.
*/
static VALUE rb_git_diff_patch_stat(VALUE self)
{
git_patch *patch;
size_t additions, deletions;
Data_Get_Struct(self, git_patch, patch);
git_patch_line_stats(NULL, &additions, &deletions, patch);
return rb_ary_new3(2, INT2FIX(additions), INT2FIX(deletions));
}
enum {
EXCLUDE_CONTEXT = (1u << 0),
EXCLUDE_ADDITIONS = (1u << 1),
EXCLUDE_DELETIONS = (1u << 2),
EXCLUDE_EOFNL = (1u << 3)
};
/*
* call-seq:
* patch.lines(options = {}) -> int
*
* The following options can be passed in the +options+ Hash:
*
* :exclude_context ::
* Boolean value specifying that context line counts should be excluded from
* the returned total.
*
* :exclude_additions ::
* Boolean value specifying that addition line counts should be excluded from
* the returned total.
*
* :exclude_deletions ::
* Boolean value specifying that deletion line counts should be excluded from
* the returned total.
*
* :exclude_eofnl ::
* Boolean value specifying that end-of-file newline change lines should
* be excluded from the returned total.
*
* Returns the total number of lines in the patch, depending on the options
* specified.
*/
static VALUE rb_git_diff_patch_lines(int argc, VALUE *argv, VALUE self)
{
git_patch *patch;
size_t lines = 0;
int options = 0;
VALUE rb_options;
Data_Get_Struct(self, git_patch, patch);
rb_scan_args(argc, argv, "0:", &rb_options);
if (!NIL_P(rb_options)) {
if (RTEST(rb_hash_aref(rb_options, CSTR2SYM("exclude_context")))) {
options |= EXCLUDE_CONTEXT;
}
if (RTEST(rb_hash_aref(rb_options, CSTR2SYM("exclude_additions")))) {
options |= EXCLUDE_ADDITIONS;
}
if (RTEST(rb_hash_aref(rb_options, CSTR2SYM("exclude_deletions")))) {
options |= EXCLUDE_DELETIONS;
}
if (RTEST(rb_hash_aref(rb_options, CSTR2SYM("exclude_eofnl")))) {
options |= EXCLUDE_EOFNL;
}
}
if (options == 0) {
size_t i = 0, hunks_count = git_patch_num_hunks(patch);
for (i = 0; i < hunks_count; ++i) {
lines += git_patch_num_lines_in_hunk(patch, i);
}
} else {
size_t i = 0, hunks_count = git_patch_num_hunks(patch);
for (i = 0; i < hunks_count; ++i) {
size_t lines_in_hunk = git_patch_num_lines_in_hunk(patch, i), l = 0;
for (l = 0; l < lines_in_hunk; ++l) {
const git_diff_line *line;
rugged_exception_check(
git_patch_get_line_in_hunk(&line, patch, i, l)
);
switch (line->origin) {
case GIT_DIFF_LINE_CONTEXT:
if (options & EXCLUDE_CONTEXT) continue;
break;
case GIT_DIFF_LINE_ADDITION:
if (options & EXCLUDE_ADDITIONS) continue;
break;
case GIT_DIFF_LINE_DELETION:
if (options & EXCLUDE_DELETIONS) continue;
break;
case GIT_DIFF_LINE_ADD_EOFNL:
case GIT_DIFF_LINE_DEL_EOFNL:
if (options & EXCLUDE_EOFNL) continue;
break;
}
lines += 1;
}
}
}
return INT2FIX(lines);
}
/*
* call-seq:
* patch.bytesize(options = {}) -> int
*
* The following options can be passed in the +options+ Hash:
*
* :exclude_context ::
* Boolean value specifying that context lines should be excluded when
* counting the number of bytes in the patch.
*
* :exclude_hunk_headers ::
* Boolean value specifying that hunk headers should be excluded when
* counting the number of bytes in the patch.
*
* :exclude_file_headers ::
* Boolean value specifying that file headers should be excluded when
* counting the number of bytes in the patch.
*
* Returns the number of bytes in the patch, depending on which options are
* specified.
*/
static VALUE rb_git_diff_patch_bytesize(int argc, VALUE *argv, VALUE self)
{
git_patch *patch;
size_t bytesize;
VALUE rb_options;
int include_context, include_hunk_headers, include_file_headers;
Data_Get_Struct(self, git_patch, patch);
include_context = include_hunk_headers = include_file_headers = 1;
rb_scan_args(argc, argv, "0:", &rb_options);
if (!NIL_P(rb_options)) {
if (RTEST(rb_hash_aref(rb_options, CSTR2SYM("exclude_context")))) {
include_context = 0;
}
if (RTEST(rb_hash_aref(rb_options, CSTR2SYM("exclude_hunk_headers")))) {
include_hunk_headers = 0;
}
if (RTEST(rb_hash_aref(rb_options, CSTR2SYM("exclude_file_headers")))) {
include_file_headers = 0;
}
}
bytesize = git_patch_size(patch, include_context, include_hunk_headers, include_file_headers);
return INT2FIX(bytesize);
}
static int patch_print_cb(
const git_diff_delta *delta,
const git_diff_hunk *hunk,
const git_diff_line *line,
void *payload)
{
VALUE rb_buffer = (VALUE)payload;
switch (line->origin) {
case GIT_DIFF_LINE_CONTEXT:
case GIT_DIFF_LINE_ADDITION:
case GIT_DIFF_LINE_DELETION:
rb_ary_push(rb_buffer, rb_str_new(&line->origin, 1));
}
rb_ary_push(rb_buffer, rb_str_new(line->content, line->content_len));
return GIT_OK;
}
static int patch_print_header_cb(
const git_diff_delta *delta,
const git_diff_hunk *hunk,
const git_diff_line *line,
void *payload)
{
VALUE rb_buffer = (VALUE)payload;
if (line->origin == GIT_DIFF_LINE_FILE_HDR) {
rb_ary_push(rb_buffer, rb_str_new(line->content, line->content_len));
return GIT_OK;
} else {
return GIT_ITEROVER;
}
}
/*
* call-seq:
* patch.to_s -> str
*
* Returns the contents of the patch as a single diff string.
*/
static VALUE rb_git_diff_patch_to_s(VALUE self)
{
git_patch *patch;
VALUE rb_buffer = rb_ary_new();
Data_Get_Struct(self, git_patch, patch);
rugged_exception_check(git_patch_print(patch, patch_print_cb, (void*)rb_buffer));
return rb_ary_join(rb_buffer, Qnil);
}
/*
* call-seq:
* patch.header -> str
*
* Returns only the header of the patch as a string.
*/
static VALUE rb_git_diff_patch_header(VALUE self)
{
git_patch *patch;
int error = 0;
VALUE rb_buffer = rb_ary_new();
Data_Get_Struct(self, git_patch, patch);
error = git_patch_print(patch, patch_print_header_cb, (void*)rb_buffer);
if (error && error != GIT_ITEROVER)
rugged_exception_check(error);
return rb_ary_join(rb_buffer, Qnil);
}
void Init_rugged_patch(void)
{
rb_cRuggedPatch = rb_define_class_under(rb_mRugged, "Patch", rb_cObject);
rb_define_singleton_method(rb_cRuggedPatch, "from_strings", rb_git_patch_from_strings, -1);
rb_define_method(rb_cRuggedPatch, "stat", rb_git_diff_patch_stat, 0);
rb_define_method(rb_cRuggedPatch, "lines", rb_git_diff_patch_lines, -1);
rb_define_method(rb_cRuggedPatch, "bytesize", rb_git_diff_patch_bytesize, -1);
rb_define_method(rb_cRuggedPatch, "delta", rb_git_diff_patch_delta, 0);
rb_define_method(rb_cRuggedPatch, "header", rb_git_diff_patch_header, 0);
rb_define_method(rb_cRuggedPatch, "to_s", rb_git_diff_patch_to_s, 0);
rb_define_method(rb_cRuggedPatch, "each_hunk", rb_git_diff_patch_each_hunk, 0);
rb_define_method(rb_cRuggedPatch, "hunk_count", rb_git_diff_patch_hunk_count, 0);
}
|