builtin/reflog: convert tree_is_complete to take struct object_id
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
							parent
							
								
									f26efc58c8
								
							
						
					
					
						commit
						49a09e74a4
					
				|  | @ -55,14 +55,14 @@ struct collect_reflog_cb { | ||||||
| #define STUDYING	(1u<<11) | #define STUDYING	(1u<<11) | ||||||
| #define REACHABLE	(1u<<12) | #define REACHABLE	(1u<<12) | ||||||
|  |  | ||||||
| static int tree_is_complete(const unsigned char *sha1) | static int tree_is_complete(const struct object_id *oid) | ||||||
| { | { | ||||||
| 	struct tree_desc desc; | 	struct tree_desc desc; | ||||||
| 	struct name_entry entry; | 	struct name_entry entry; | ||||||
| 	int complete; | 	int complete; | ||||||
| 	struct tree *tree; | 	struct tree *tree; | ||||||
|  |  | ||||||
| 	tree = lookup_tree(sha1); | 	tree = lookup_tree(oid->hash); | ||||||
| 	if (!tree) | 	if (!tree) | ||||||
| 		return 0; | 		return 0; | ||||||
| 	if (tree->object.flags & SEEN) | 	if (tree->object.flags & SEEN) | ||||||
|  | @ -73,7 +73,7 @@ static int tree_is_complete(const unsigned char *sha1) | ||||||
| 	if (!tree->buffer) { | 	if (!tree->buffer) { | ||||||
| 		enum object_type type; | 		enum object_type type; | ||||||
| 		unsigned long size; | 		unsigned long size; | ||||||
| 		void *data = read_sha1_file(sha1, &type, &size); | 		void *data = read_sha1_file(oid->hash, &type, &size); | ||||||
| 		if (!data) { | 		if (!data) { | ||||||
| 			tree->object.flags |= INCOMPLETE; | 			tree->object.flags |= INCOMPLETE; | ||||||
| 			return 0; | 			return 0; | ||||||
|  | @ -85,7 +85,7 @@ static int tree_is_complete(const unsigned char *sha1) | ||||||
| 	complete = 1; | 	complete = 1; | ||||||
| 	while (tree_entry(&desc, &entry)) { | 	while (tree_entry(&desc, &entry)) { | ||||||
| 		if (!has_sha1_file(entry.oid->hash) || | 		if (!has_sha1_file(entry.oid->hash) || | ||||||
| 		    (S_ISDIR(entry.mode) && !tree_is_complete(entry.oid->hash))) { | 		    (S_ISDIR(entry.mode) && !tree_is_complete(entry.oid))) { | ||||||
| 			tree->object.flags |= INCOMPLETE; | 			tree->object.flags |= INCOMPLETE; | ||||||
| 			complete = 0; | 			complete = 0; | ||||||
| 		} | 		} | ||||||
|  | @ -152,7 +152,7 @@ static int commit_is_complete(struct commit *commit) | ||||||
| 		for (i = 0; i < found.nr; i++) { | 		for (i = 0; i < found.nr; i++) { | ||||||
| 			struct commit *c = | 			struct commit *c = | ||||||
| 				(struct commit *)found.objects[i].item; | 				(struct commit *)found.objects[i].item; | ||||||
| 			if (!tree_is_complete(c->tree->object.oid.hash)) { | 			if (!tree_is_complete(&c->tree->object.oid)) { | ||||||
| 				is_incomplete = 1; | 				is_incomplete = 1; | ||||||
| 				c->object.flags |= INCOMPLETE; | 				c->object.flags |= INCOMPLETE; | ||||||
| 			} | 			} | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	 brian m. carlson
						brian m. carlson