 ccd12a3d6c
			
		
	
	ccd12a3d6c
	
	
	
		
			
			More header clean-up. * en/header-split-cache-h-part-2: (22 commits) reftable: ensure git-compat-util.h is the first (indirect) include diff.h: reduce unnecessary includes object-store.h: reduce unnecessary includes commit.h: reduce unnecessary includes fsmonitor: reduce includes of cache.h cache.h: remove unnecessary headers treewide: remove cache.h inclusion due to previous changes cache,tree: move basic name compare functions from read-cache to tree cache,tree: move cmp_cache_name_compare from tree.[ch] to read-cache.c hash-ll.h: split out of hash.h to remove dependency on repository.h tree-diff.c: move S_DIFFTREE_IFXMIN_NEQ define from cache.h dir.h: move DTYPE defines from cache.h versioncmp.h: move declarations for versioncmp.c functions from cache.h ws.h: move declarations for ws.c functions from cache.h match-trees.h: move declarations for match-trees.c functions from cache.h pkt-line.h: move declarations for pkt-line.c functions from cache.h base85.h: move declarations for base85.c functions from cache.h copy.h: move declarations for copy.c functions from cache.h server-info.h: move declarations for server-info.c functions from cache.h packfile.h: move pack_window and pack_entry from cache.h ...
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "test-tool.h"
 | |
| #include "hex.h"
 | |
| #include "oidtree.h"
 | |
| #include "setup.h"
 | |
| #include "strbuf.h"
 | |
| 
 | |
| static enum cb_next print_oid(const struct object_id *oid, void *data UNUSED)
 | |
| {
 | |
| 	puts(oid_to_hex(oid));
 | |
| 	return CB_CONTINUE;
 | |
| }
 | |
| 
 | |
| int cmd__oidtree(int argc UNUSED, const char **argv UNUSED)
 | |
| {
 | |
| 	struct oidtree ot;
 | |
| 	struct strbuf line = STRBUF_INIT;
 | |
| 	int nongit_ok;
 | |
| 	int algo = GIT_HASH_UNKNOWN;
 | |
| 
 | |
| 	oidtree_init(&ot);
 | |
| 	setup_git_directory_gently(&nongit_ok);
 | |
| 
 | |
| 	while (strbuf_getline(&line, stdin) != EOF) {
 | |
| 		const char *arg;
 | |
| 		struct object_id oid;
 | |
| 
 | |
| 		if (skip_prefix(line.buf, "insert ", &arg)) {
 | |
| 			if (get_oid_hex_any(arg, &oid) == GIT_HASH_UNKNOWN)
 | |
| 				die("insert not a hexadecimal oid: %s", arg);
 | |
| 			algo = oid.algo;
 | |
| 			oidtree_insert(&ot, &oid);
 | |
| 		} else if (skip_prefix(line.buf, "contains ", &arg)) {
 | |
| 			if (get_oid_hex(arg, &oid))
 | |
| 				die("contains not a hexadecimal oid: %s", arg);
 | |
| 			printf("%d\n", oidtree_contains(&ot, &oid));
 | |
| 		} else if (skip_prefix(line.buf, "each ", &arg)) {
 | |
| 			char buf[GIT_MAX_HEXSZ + 1] = { '0' };
 | |
| 			memset(&oid, 0, sizeof(oid));
 | |
| 			memcpy(buf, arg, strlen(arg));
 | |
| 			buf[hash_algos[algo].hexsz] = '\0';
 | |
| 			get_oid_hex_any(buf, &oid);
 | |
| 			oid.algo = algo;
 | |
| 			oidtree_each(&ot, &oid, strlen(arg), print_oid, NULL);
 | |
| 		} else if (!strcmp(line.buf, "clear")) {
 | |
| 			oidtree_clear(&ot);
 | |
| 		} else {
 | |
| 			die("unknown command: %s", line.buf);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	strbuf_release(&line);
 | |
| 
 | |
| 	return 0;
 | |
| }
 |