diff.c: remove the_index dependency in textconv() functions
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
a470beea39
commit
6afaf80785
7
blame.c
7
blame.c
@ -234,7 +234,7 @@ static struct commit *fake_working_tree_commit(struct repository *r,
|
||||
switch (st.st_mode & S_IFMT) {
|
||||
case S_IFREG:
|
||||
if (opt->flags.allow_textconv &&
|
||||
textconv_object(read_from, mode, &null_oid, 0, &buf_ptr, &buf_len))
|
||||
textconv_object(r, read_from, mode, &null_oid, 0, &buf_ptr, &buf_len))
|
||||
strbuf_attach(&buf, buf_ptr, buf_len, buf_len + 1);
|
||||
else if (strbuf_read_file(&buf, read_from, st.st_size) != st.st_size)
|
||||
die_errno("cannot open or read '%s'", read_from);
|
||||
@ -318,7 +318,8 @@ static void fill_origin_blob(struct diff_options *opt,
|
||||
|
||||
(*num_read_blob)++;
|
||||
if (opt->flags.allow_textconv &&
|
||||
textconv_object(o->path, o->mode, &o->blob_oid, 1, &file->ptr, &file_size))
|
||||
textconv_object(opt->repo, o->path, o->mode,
|
||||
&o->blob_oid, 1, &file->ptr, &file_size))
|
||||
;
|
||||
else
|
||||
file->ptr = read_object_file(&o->blob_oid, &type,
|
||||
@ -1857,7 +1858,7 @@ void setup_scoreboard(struct blame_scoreboard *sb,
|
||||
die(_("no such path %s in %s"), path, final_commit_name);
|
||||
|
||||
if (sb->revs->diffopt.flags.allow_textconv &&
|
||||
textconv_object(path, o->mode, &o->blob_oid, 1, (char **) &sb->final_buf,
|
||||
textconv_object(sb->repo, path, o->mode, &o->blob_oid, 1, (char **) &sb->final_buf,
|
||||
&sb->final_buf_size))
|
||||
;
|
||||
else
|
||||
|
@ -113,7 +113,8 @@ static int cat_one_file(int opt, const char *exp_type, const char *obj_name,
|
||||
die("git cat-file --textconv %s: <object> must be <sha1:path>",
|
||||
obj_name);
|
||||
|
||||
if (textconv_object(path, obj_context.mode, &oid, 1, &buf, &size))
|
||||
if (textconv_object(the_repository, path, obj_context.mode,
|
||||
&oid, 1, &buf, &size))
|
||||
break;
|
||||
/* else fallthrough */
|
||||
|
||||
@ -305,7 +306,8 @@ static void print_object_or_die(struct batch_options *opt, struct expand_data *d
|
||||
oid_to_hex(oid), data->rest);
|
||||
} else if (opt->cmdmode == 'c') {
|
||||
enum object_type type;
|
||||
if (!textconv_object(data->rest, 0100644, oid,
|
||||
if (!textconv_object(the_repository,
|
||||
data->rest, 0100644, oid,
|
||||
1, &contents, &size))
|
||||
contents = read_object_file(oid,
|
||||
&type,
|
||||
|
@ -507,7 +507,8 @@ static int show_blob_object(const struct object_id *oid, struct rev_info *rev, c
|
||||
&oidc, &obj_context))
|
||||
die(_("Not a valid object name %s"), obj_name);
|
||||
if (!obj_context.path ||
|
||||
!textconv_object(obj_context.path, obj_context.mode, &oidc, 1, &buf, &size)) {
|
||||
!textconv_object(the_repository, obj_context.path,
|
||||
obj_context.mode, &oidc, 1, &buf, &size)) {
|
||||
free(obj_context.path);
|
||||
return stream_blob_to_fd(1, oid, NULL, 0);
|
||||
}
|
||||
|
@ -285,7 +285,8 @@ static struct lline *coalesce_lines(struct lline *base, int *lenbase,
|
||||
return base;
|
||||
}
|
||||
|
||||
static char *grab_blob(const struct object_id *oid, unsigned int mode,
|
||||
static char *grab_blob(struct repository *r,
|
||||
const struct object_id *oid, unsigned int mode,
|
||||
unsigned long *size, struct userdiff_driver *textconv,
|
||||
const char *path)
|
||||
{
|
||||
@ -304,7 +305,7 @@ static char *grab_blob(const struct object_id *oid, unsigned int mode,
|
||||
} else if (textconv) {
|
||||
struct diff_filespec *df = alloc_filespec(path);
|
||||
fill_filespec(df, oid, 1, mode);
|
||||
*size = fill_textconv(textconv, df, &blob);
|
||||
*size = fill_textconv(r, textconv, df, &blob);
|
||||
free_filespec(df);
|
||||
} else {
|
||||
blob = read_object_file(oid, &type, size);
|
||||
@ -389,7 +390,8 @@ static void consume_line(void *state_, char *line, unsigned long len)
|
||||
}
|
||||
}
|
||||
|
||||
static void combine_diff(const struct object_id *parent, unsigned int mode,
|
||||
static void combine_diff(struct repository *r,
|
||||
const struct object_id *parent, unsigned int mode,
|
||||
mmfile_t *result_file,
|
||||
struct sline *sline, unsigned int cnt, int n,
|
||||
int num_parent, int result_deleted,
|
||||
@ -407,7 +409,7 @@ static void combine_diff(const struct object_id *parent, unsigned int mode,
|
||||
if (result_deleted)
|
||||
return; /* result deleted */
|
||||
|
||||
parent_file.ptr = grab_blob(parent, mode, &sz, textconv, path);
|
||||
parent_file.ptr = grab_blob(r, parent, mode, &sz, textconv, path);
|
||||
parent_file.size = sz;
|
||||
memset(&xpp, 0, sizeof(xpp));
|
||||
xpp.flags = flags;
|
||||
@ -993,7 +995,7 @@ static void show_patch_diff(struct combine_diff_path *elem, int num_parent,
|
||||
|
||||
/* Read the result of merge first */
|
||||
if (!working_tree_file)
|
||||
result = grab_blob(&elem->oid, elem->mode, &result_size,
|
||||
result = grab_blob(opt->repo, &elem->oid, elem->mode, &result_size,
|
||||
textconv, elem->path);
|
||||
else {
|
||||
/* Used by diff-tree to read from the working tree */
|
||||
@ -1016,15 +1018,16 @@ static void show_patch_diff(struct combine_diff_path *elem, int num_parent,
|
||||
} else if (S_ISDIR(st.st_mode)) {
|
||||
struct object_id oid;
|
||||
if (resolve_gitlink_ref(elem->path, "HEAD", &oid) < 0)
|
||||
result = grab_blob(&elem->oid, elem->mode,
|
||||
&result_size, NULL, NULL);
|
||||
result = grab_blob(opt->repo, &elem->oid,
|
||||
elem->mode, &result_size,
|
||||
NULL, NULL);
|
||||
else
|
||||
result = grab_blob(&oid, elem->mode,
|
||||
result = grab_blob(opt->repo, &oid, elem->mode,
|
||||
&result_size, NULL, NULL);
|
||||
} else if (textconv) {
|
||||
struct diff_filespec *df = alloc_filespec(elem->path);
|
||||
fill_filespec(df, &null_oid, 0, st.st_mode);
|
||||
result_size = fill_textconv(textconv, df, &result);
|
||||
result_size = fill_textconv(opt->repo, textconv, df, &result);
|
||||
free_filespec(df);
|
||||
} else if (0 <= (fd = open(elem->path, O_RDONLY))) {
|
||||
size_t len = xsize_t(st.st_size);
|
||||
@ -1090,7 +1093,8 @@ static void show_patch_diff(struct combine_diff_path *elem, int num_parent,
|
||||
for (i = 0; !is_binary && i < num_parent; i++) {
|
||||
char *buf;
|
||||
unsigned long size;
|
||||
buf = grab_blob(&elem->parent[i].oid,
|
||||
buf = grab_blob(opt->repo,
|
||||
&elem->parent[i].oid,
|
||||
elem->parent[i].mode,
|
||||
&size, NULL, NULL);
|
||||
if (buffer_is_binary(buf, size))
|
||||
@ -1146,7 +1150,8 @@ static void show_patch_diff(struct combine_diff_path *elem, int num_parent,
|
||||
}
|
||||
}
|
||||
if (i <= j)
|
||||
combine_diff(&elem->parent[i].oid,
|
||||
combine_diff(opt->repo,
|
||||
&elem->parent[i].oid,
|
||||
elem->parent[i].mode,
|
||||
&result_file, sline,
|
||||
cnt, i, num_parent, result_deleted,
|
||||
|
17
diff.c
17
diff.c
@ -1700,8 +1700,8 @@ static void emit_rewrite_diff(const char *name_a,
|
||||
quote_two_c_style(&a_name, a_prefix, name_a, 0);
|
||||
quote_two_c_style(&b_name, b_prefix, name_b, 0);
|
||||
|
||||
size_one = fill_textconv(textconv_one, one, &data_one);
|
||||
size_two = fill_textconv(textconv_two, two, &data_two);
|
||||
size_one = fill_textconv(o->repo, textconv_one, one, &data_one);
|
||||
size_two = fill_textconv(o->repo, textconv_two, two, &data_two);
|
||||
|
||||
memset(&ecbdata, 0, sizeof(ecbdata));
|
||||
ecbdata.color_diff = want_color(o->use_color);
|
||||
@ -3462,8 +3462,8 @@ static void builtin_diff(const char *name_a,
|
||||
strbuf_reset(&header);
|
||||
}
|
||||
|
||||
mf1.size = fill_textconv(textconv_one, one, &mf1.ptr);
|
||||
mf2.size = fill_textconv(textconv_two, two, &mf2.ptr);
|
||||
mf1.size = fill_textconv(o->repo, textconv_one, one, &mf1.ptr);
|
||||
mf2.size = fill_textconv(o->repo, textconv_two, two, &mf2.ptr);
|
||||
|
||||
pe = diff_funcname_pattern(one);
|
||||
if (!pe)
|
||||
@ -6337,11 +6337,11 @@ static char *run_textconv(struct repository *r,
|
||||
return strbuf_detach(&buf, outsize);
|
||||
}
|
||||
|
||||
size_t fill_textconv(struct userdiff_driver *driver,
|
||||
size_t fill_textconv(struct repository *r,
|
||||
struct userdiff_driver *driver,
|
||||
struct diff_filespec *df,
|
||||
char **outbuf)
|
||||
{
|
||||
struct repository *r = the_repository;
|
||||
size_t size;
|
||||
|
||||
if (!driver) {
|
||||
@ -6386,7 +6386,8 @@ size_t fill_textconv(struct userdiff_driver *driver,
|
||||
return size;
|
||||
}
|
||||
|
||||
int textconv_object(const char *path,
|
||||
int textconv_object(struct repository *r,
|
||||
const char *path,
|
||||
unsigned mode,
|
||||
const struct object_id *oid,
|
||||
int oid_valid,
|
||||
@ -6404,7 +6405,7 @@ int textconv_object(const char *path,
|
||||
return 0;
|
||||
}
|
||||
|
||||
*buf_size = fill_textconv(textconv, df, buf);
|
||||
*buf_size = fill_textconv(r, textconv, df, buf);
|
||||
free_filespec(df);
|
||||
return 1;
|
||||
}
|
||||
|
9
diff.h
9
diff.h
@ -442,7 +442,8 @@ int index_differs_from(const char *def, const struct diff_flags *flags,
|
||||
* struct. If it is non-NULL, then "outbuf" points to a newly allocated buffer
|
||||
* that should be freed by the caller.
|
||||
*/
|
||||
size_t fill_textconv(struct userdiff_driver *driver,
|
||||
size_t fill_textconv(struct repository *r,
|
||||
struct userdiff_driver *driver,
|
||||
struct diff_filespec *df,
|
||||
char **outbuf);
|
||||
|
||||
@ -458,7 +459,11 @@ struct userdiff_driver *get_textconv(struct diff_filespec *one);
|
||||
* if the textconv driver exists.
|
||||
* Return 1 if the conversion succeeds, 0 otherwise.
|
||||
*/
|
||||
int textconv_object(const char *path, unsigned mode, const struct object_id *oid, int oid_valid, char **buf, unsigned long *buf_size);
|
||||
int textconv_object(struct repository *repo,
|
||||
const char *path,
|
||||
unsigned mode,
|
||||
const struct object_id *oid, int oid_valid,
|
||||
char **buf, unsigned long *buf_size);
|
||||
|
||||
int parse_rename_score(const char **cp_p);
|
||||
|
||||
|
@ -153,8 +153,8 @@ static int pickaxe_match(struct diff_filepair *p, struct diff_options *o,
|
||||
if (textconv_one == textconv_two && diff_unmodified_pair(p))
|
||||
return 0;
|
||||
|
||||
mf1.size = fill_textconv(textconv_one, p->one, &mf1.ptr);
|
||||
mf2.size = fill_textconv(textconv_two, p->two, &mf2.ptr);
|
||||
mf1.size = fill_textconv(o->repo, textconv_one, p->one, &mf1.ptr);
|
||||
mf2.size = fill_textconv(o->repo, textconv_two, p->two, &mf2.ptr);
|
||||
|
||||
ret = fn(DIFF_FILE_VALID(p->one) ? &mf1 : NULL,
|
||||
DIFF_FILE_VALID(p->two) ? &mf2 : NULL,
|
||||
|
Loading…
Reference in New Issue
Block a user