| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 
 | #include "test-tool.h"
#include "hex.h"
#include "repository.h"
#include "odb.h"
#include "setup.h"
/*
 * Prints the size of the object corresponding to the given hash in a specific
 * gitdir. This is similar to "git -C gitdir cat-file -s", except that this
 * exercises the code that accesses the object of an arbitrary repository that
 * is not the_repository. ("git -C gitdir" makes it so that the_repository is
 * the one in gitdir.)
 */
static void object_info(const char *gitdir, const char *oid_hex)
{
	struct repository r;
	struct object_id oid;
	unsigned long size;
	struct object_info oi = {.sizep = &size};
	const char *p;
	if (repo_init(&r, gitdir, NULL))
		die("could not init repo");
	if (parse_oid_hex_algop(oid_hex, &oid, &p, r.hash_algo))
		die("could not parse oid");
	if (odb_read_object_info_extended(r.objects, &oid, &oi, 0))
		die("could not obtain object info");
	printf("%d\n", (int) size);
	repo_clear(&r);
}
int cmd__partial_clone(int argc, const char **argv)
{
	setup_git_directory();
	if (argc < 4)
		die("too few arguments");
	if (!strcmp(argv[1], "object-info"))
		object_info(argv[2], argv[3]);
	else
		die("invalid argument '%s'", argv[1]);
	return 0;
}
 |