1#include"cache.h" 2#include"diff.h" 3#include"commit.h" 4#include"sha1-lookup.h" 5#include"patch-ids.h" 6 7static intpatch_id_defined(struct commit *commit) 8{ 9/* must be 0 or 1 parents */ 10return!commit->parents || !commit->parents->next; 11} 12 13intcommit_patch_id(struct commit *commit,struct diff_options *options, 14unsigned char*sha1,int diff_header_only) 15{ 16if(!patch_id_defined(commit)) 17return-1; 18 19if(commit->parents) 20diff_tree_sha1(commit->parents->item->object.oid.hash, 21 commit->object.oid.hash,"", options); 22else 23diff_root_tree_sha1(commit->object.oid.hash,"", options); 24diffcore_std(options); 25returndiff_flush_patch_id(options, sha1, diff_header_only); 26} 27 28/* 29 * When we cannot load the full patch-id for both commits for whatever 30 * reason, the function returns -1 (i.e. return error(...)). Despite 31 * the "cmp" in the name of this function, the caller only cares about 32 * the return value being zero (a and b are equivalent) or non-zero (a 33 * and b are different), and returning non-zero would keep both in the 34 * result, even if they actually were equivalent, in order to err on 35 * the side of safety. The actual value being negative does not have 36 * any significance; only that it is non-zero matters. 37 */ 38static intpatch_id_cmp(struct patch_id *a, 39struct patch_id *b, 40struct diff_options *opt) 41{ 42if(is_null_sha1(a->patch_id) && 43commit_patch_id(a->commit, opt, a->patch_id,0)) 44returnerror("Could not get patch ID for%s", 45oid_to_hex(&a->commit->object.oid)); 46if(is_null_sha1(b->patch_id) && 47commit_patch_id(b->commit, opt, b->patch_id,0)) 48returnerror("Could not get patch ID for%s", 49oid_to_hex(&b->commit->object.oid)); 50returnhashcmp(a->patch_id, b->patch_id); 51} 52 53intinit_patch_ids(struct patch_ids *ids) 54{ 55memset(ids,0,sizeof(*ids)); 56diff_setup(&ids->diffopts); 57 ids->diffopts.detect_rename =0; 58DIFF_OPT_SET(&ids->diffopts, RECURSIVE); 59diff_setup_done(&ids->diffopts); 60hashmap_init(&ids->patches, (hashmap_cmp_fn)patch_id_cmp,256); 61return0; 62} 63 64intfree_patch_ids(struct patch_ids *ids) 65{ 66hashmap_free(&ids->patches,1); 67return0; 68} 69 70static intinit_patch_id_entry(struct patch_id *patch, 71struct commit *commit, 72struct patch_ids *ids) 73{ 74unsigned char header_only_patch_id[GIT_SHA1_RAWSZ]; 75 76 patch->commit = commit; 77if(commit_patch_id(commit, &ids->diffopts, header_only_patch_id,1)) 78return-1; 79 80hashmap_entry_init(patch,sha1hash(header_only_patch_id)); 81return0; 82} 83 84struct patch_id *has_commit_patch_id(struct commit *commit, 85struct patch_ids *ids) 86{ 87struct patch_id patch; 88 89if(!patch_id_defined(commit)) 90return NULL; 91 92memset(&patch,0,sizeof(patch)); 93if(init_patch_id_entry(&patch, commit, ids)) 94return NULL; 95 96returnhashmap_get(&ids->patches, &patch, &ids->diffopts); 97} 98 99struct patch_id *add_commit_patch_id(struct commit *commit, 100struct patch_ids *ids) 101{ 102struct patch_id *key =xcalloc(1,sizeof(*key)); 103 104if(!patch_id_defined(commit)) 105return NULL; 106 107if(init_patch_id_entry(key, commit, ids)) { 108free(key); 109return NULL; 110} 111 112hashmap_add(&ids->patches, key); 113return key; 114}