Merge branch 'bw/object-id'
Conversion from uchar[20] to struct object_id continues. * bw/object-id: (33 commits) diff: rename diff_fill_sha1_info to diff_fill_oid_info diffcore-rename: use is_empty_blob_oid tree-diff: convert path_appendnew to object_id tree-diff: convert diff_tree_paths to struct object_id tree-diff: convert try_to_follow_renames to struct object_id builtin/diff-tree: cleanup references to sha1 diff-tree: convert diff_tree_sha1 to struct object_id notes-merge: convert write_note_to_worktree to struct object_id notes-merge: convert verify_notes_filepair to struct object_id notes-merge: convert find_notes_merge_pair_ps to struct object_id notes-merge: convert merge_from_diffs to struct object_id notes-merge: convert notes_merge* to struct object_id tree-diff: convert diff_root_tree_sha1 to struct object_id combine-diff: convert find_paths_* to struct object_id combine-diff: convert diff_tree_combined to struct object_id diff: convert diff_flush_patch_id to struct object_id patch-ids: convert to struct object_id diff: finish conversion for prepare_temp_file to struct object_id diff: convert reuse_worktree_file to struct object_id diff: convert fill_filespec to struct object_id ...
This commit is contained in:
52
diff-lib.c
52
diff-lib.c
@ -101,7 +101,7 @@ int run_diff_files(struct rev_info *revs, unsigned int option)
|
||||
struct cache_entry *ce = active_cache[i];
|
||||
int changed;
|
||||
unsigned dirty_submodule = 0;
|
||||
const unsigned char *old_sha1, *new_sha1;
|
||||
const struct object_id *old_oid, *new_oid;
|
||||
|
||||
if (diff_can_quit_early(&revs->diffopt))
|
||||
break;
|
||||
@ -210,14 +210,14 @@ int run_diff_files(struct rev_info *revs, unsigned int option)
|
||||
continue;
|
||||
}
|
||||
diff_addremove(&revs->diffopt, '-', ce->ce_mode,
|
||||
ce->oid.hash,
|
||||
&ce->oid,
|
||||
!is_null_oid(&ce->oid),
|
||||
ce->name, 0);
|
||||
continue;
|
||||
} else if (revs->diffopt.ita_invisible_in_index &&
|
||||
ce_intent_to_add(ce)) {
|
||||
diff_addremove(&revs->diffopt, '+', ce->ce_mode,
|
||||
EMPTY_BLOB_SHA1_BIN, 0,
|
||||
&empty_tree_oid, 0,
|
||||
ce->name, 0);
|
||||
continue;
|
||||
}
|
||||
@ -233,12 +233,12 @@ int run_diff_files(struct rev_info *revs, unsigned int option)
|
||||
continue;
|
||||
}
|
||||
oldmode = ce->ce_mode;
|
||||
old_sha1 = ce->oid.hash;
|
||||
new_sha1 = changed ? null_sha1 : ce->oid.hash;
|
||||
old_oid = &ce->oid;
|
||||
new_oid = changed ? &null_oid : &ce->oid;
|
||||
diff_change(&revs->diffopt, oldmode, newmode,
|
||||
old_sha1, new_sha1,
|
||||
!is_null_sha1(old_sha1),
|
||||
!is_null_sha1(new_sha1),
|
||||
old_oid, new_oid,
|
||||
!is_null_oid(old_oid),
|
||||
!is_null_oid(new_oid),
|
||||
ce->name, 0, dirty_submodule);
|
||||
|
||||
}
|
||||
@ -255,21 +255,21 @@ int run_diff_files(struct rev_info *revs, unsigned int option)
|
||||
static void diff_index_show_file(struct rev_info *revs,
|
||||
const char *prefix,
|
||||
const struct cache_entry *ce,
|
||||
const unsigned char *sha1, int sha1_valid,
|
||||
const struct object_id *oid, int oid_valid,
|
||||
unsigned int mode,
|
||||
unsigned dirty_submodule)
|
||||
{
|
||||
diff_addremove(&revs->diffopt, prefix[0], mode,
|
||||
sha1, sha1_valid, ce->name, dirty_submodule);
|
||||
oid, oid_valid, ce->name, dirty_submodule);
|
||||
}
|
||||
|
||||
static int get_stat_data(const struct cache_entry *ce,
|
||||
const unsigned char **sha1p,
|
||||
const struct object_id **oidp,
|
||||
unsigned int *modep,
|
||||
int cached, int match_missing,
|
||||
unsigned *dirty_submodule, struct diff_options *diffopt)
|
||||
{
|
||||
const unsigned char *sha1 = ce->oid.hash;
|
||||
const struct object_id *oid = &ce->oid;
|
||||
unsigned int mode = ce->ce_mode;
|
||||
|
||||
if (!cached && !ce_uptodate(ce)) {
|
||||
@ -280,7 +280,7 @@ static int get_stat_data(const struct cache_entry *ce,
|
||||
return -1;
|
||||
else if (changed) {
|
||||
if (match_missing) {
|
||||
*sha1p = sha1;
|
||||
*oidp = oid;
|
||||
*modep = mode;
|
||||
return 0;
|
||||
}
|
||||
@ -290,11 +290,11 @@ static int get_stat_data(const struct cache_entry *ce,
|
||||
0, dirty_submodule);
|
||||
if (changed) {
|
||||
mode = ce_mode_from_stat(ce, st.st_mode);
|
||||
sha1 = null_sha1;
|
||||
oid = &null_oid;
|
||||
}
|
||||
}
|
||||
|
||||
*sha1p = sha1;
|
||||
*oidp = oid;
|
||||
*modep = mode;
|
||||
return 0;
|
||||
}
|
||||
@ -303,7 +303,7 @@ static void show_new_file(struct rev_info *revs,
|
||||
const struct cache_entry *new,
|
||||
int cached, int match_missing)
|
||||
{
|
||||
const unsigned char *sha1;
|
||||
const struct object_id *oid;
|
||||
unsigned int mode;
|
||||
unsigned dirty_submodule = 0;
|
||||
|
||||
@ -311,11 +311,11 @@ static void show_new_file(struct rev_info *revs,
|
||||
* New file in the index: it might actually be different in
|
||||
* the working tree.
|
||||
*/
|
||||
if (get_stat_data(new, &sha1, &mode, cached, match_missing,
|
||||
if (get_stat_data(new, &oid, &mode, cached, match_missing,
|
||||
&dirty_submodule, &revs->diffopt) < 0)
|
||||
return;
|
||||
|
||||
diff_index_show_file(revs, "+", new, sha1, !is_null_sha1(sha1), mode, dirty_submodule);
|
||||
diff_index_show_file(revs, "+", new, oid, !is_null_oid(oid), mode, dirty_submodule);
|
||||
}
|
||||
|
||||
static int show_modified(struct rev_info *revs,
|
||||
@ -325,20 +325,20 @@ static int show_modified(struct rev_info *revs,
|
||||
int cached, int match_missing)
|
||||
{
|
||||
unsigned int mode, oldmode;
|
||||
const unsigned char *sha1;
|
||||
const struct object_id *oid;
|
||||
unsigned dirty_submodule = 0;
|
||||
|
||||
if (get_stat_data(new, &sha1, &mode, cached, match_missing,
|
||||
if (get_stat_data(new, &oid, &mode, cached, match_missing,
|
||||
&dirty_submodule, &revs->diffopt) < 0) {
|
||||
if (report_missing)
|
||||
diff_index_show_file(revs, "-", old,
|
||||
old->oid.hash, 1, old->ce_mode,
|
||||
&old->oid, 1, old->ce_mode,
|
||||
0);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (revs->combine_merges && !cached &&
|
||||
(hashcmp(sha1, old->oid.hash) || oidcmp(&old->oid, &new->oid))) {
|
||||
(oidcmp(oid, &old->oid) || oidcmp(&old->oid, &new->oid))) {
|
||||
struct combine_diff_path *p;
|
||||
int pathlen = ce_namelen(new);
|
||||
|
||||
@ -362,12 +362,12 @@ static int show_modified(struct rev_info *revs,
|
||||
}
|
||||
|
||||
oldmode = old->ce_mode;
|
||||
if (mode == oldmode && !hashcmp(sha1, old->oid.hash) && !dirty_submodule &&
|
||||
if (mode == oldmode && !oidcmp(oid, &old->oid) && !dirty_submodule &&
|
||||
!DIFF_OPT_TST(&revs->diffopt, FIND_COPIES_HARDER))
|
||||
return 0;
|
||||
|
||||
diff_change(&revs->diffopt, oldmode, mode,
|
||||
old->oid.hash, sha1, 1, !is_null_sha1(sha1),
|
||||
&old->oid, oid, 1, !is_null_oid(oid),
|
||||
old->name, 0, dirty_submodule);
|
||||
return 0;
|
||||
}
|
||||
@ -409,7 +409,7 @@ static void do_oneway_diff(struct unpack_trees_options *o,
|
||||
struct diff_filepair *pair;
|
||||
pair = diff_unmerge(&revs->diffopt, idx->name);
|
||||
if (tree)
|
||||
fill_filespec(pair->one, tree->oid.hash, 1,
|
||||
fill_filespec(pair->one, &tree->oid, 1,
|
||||
tree->ce_mode);
|
||||
return;
|
||||
}
|
||||
@ -426,7 +426,7 @@ static void do_oneway_diff(struct unpack_trees_options *o,
|
||||
* Something removed from the tree?
|
||||
*/
|
||||
if (!idx) {
|
||||
diff_index_show_file(revs, "-", tree, tree->oid.hash, 1,
|
||||
diff_index_show_file(revs, "-", tree, &tree->oid, 1,
|
||||
tree->ce_mode, 0);
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user