From 9945d9805130fdb752a91fcfae7084b219b9dec3 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Fri, 15 Apr 2005 11:08:33 -0700 Subject: Add "--cacheinfo" option to update-cache. This allows scripts to manually add entries to the cache explicitly. Need to do some way to remove them too, even if the path exists. --- update-cache.c | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'update-cache.c') diff --git a/update-cache.c b/update-cache.c index 85d0591c8..065705a9b 100644 --- a/update-cache.c +++ b/update-cache.c @@ -235,6 +235,35 @@ inside: } } +static int add_cacheinfo(char *arg1, char *arg2, char *arg3) +{ + int size, len; + unsigned int mode; + unsigned char sha1[20]; + struct cache_entry *ce; + + if (sscanf(arg1, "%o", &mode) != 1) + return -1; + printf("got mode %o\n", mode); + if (get_sha1_hex(arg2, sha1)) + return -1; + printf("got sha1 %s\n", sha1_to_hex(sha1)); + if (!verify_path(arg3)) + return -1; + printf("got path %s\n", arg3); + + len = strlen(arg3); + size = cache_entry_size(len); + ce = malloc(size); + memset(ce, 0, size); + + memcpy(ce->sha1, sha1, 20); + memcpy(ce->name, arg3, len); + ce->ce_namelen = htons(len); + ce->ce_mode = htonl(mode); + return add_cache_entry(ce, allow_add); +} + static int remove_lock = 0; static void remove_lock_file(void) @@ -279,6 +308,12 @@ int main(int argc, char **argv) refresh_cache(); continue; } + if (!strcmp(path, "--cacheinfo")) { + if (i+3 >= argc || add_cacheinfo(argv[i+1], argv[i+2], argv[i+3])) + die("update-cache: --cacheinfo "); + i += 3; + continue; + } die("unknown option %s", path); } if (!verify_path(path)) { -- cgit v1.2.1