1/* 2 * Check-out files from the "current cache directory" 3 * 4 * Copyright (C) 2005 Linus Torvalds 5 * 6 * Careful: order of argument flags does matter. For example, 7 * 8 * checkout-cache -a -f file.c 9 * 10 * Will first check out all files listed in the cache (but not 11 * overwrite any old ones), and then force-checkout "file.c" a 12 * second time (ie that one _will_ overwrite any old contents 13 * with the same filename). 14 * 15 * Also, just doing "checkout-cache" does nothing. You probably 16 * meant "checkout-cache -a". And if you want to force it, you 17 * want "checkout-cache -f -a". 18 * 19 * Intuitiveness is not the goal here. Repeatability is. The 20 * reason for the "no arguments means no work" thing is that 21 * from scripts you are supposed to be able to do things like 22 * 23 * find . -name '*.h' -print0 | xargs -0 checkout-cache -f -- 24 * 25 * which will force all existing *.h files to be replaced with 26 * their cached copies. If an empty command line implied "all", 27 * then this would force-refresh everything in the cache, which 28 * was not the point. 29 * 30 * Oh, and the "--" is just a good idea when you know the rest 31 * will be filenames. Just so that you wouldn't have a filename 32 * of "-a" causing problems (not possible in the above example, 33 * but get used to it in scripting!). 34 */ 35#include"cache.h" 36 37static int force =0, quiet =0; 38 39static voidcreate_directories(const char*path) 40{ 41int len =strlen(path); 42char*buf =malloc(len +1); 43const char*slash = path; 44 45while((slash =strchr(slash+1,'/')) != NULL) { 46 len = slash - path; 47memcpy(buf, path, len); 48 buf[len] =0; 49mkdir(buf,0755); 50} 51} 52 53static intcreate_file(const char*path,unsigned int mode) 54{ 55int fd =open(path, O_WRONLY | O_TRUNC | O_CREAT,0600); 56if(fd <0) { 57if(errno == ENOENT) { 58create_directories(path); 59 fd =open(path, O_WRONLY | O_TRUNC | O_CREAT,0600); 60} 61} 62if(fd >=0) 63fchmod(fd, mode); 64return fd; 65} 66 67static intwrite_entry(struct cache_entry *ce) 68{ 69int fd; 70void*new; 71unsigned long size; 72long wrote; 73char type[20]; 74 75new=read_sha1_file(ce->sha1, type, &size); 76if(!new||strcmp(type,"blob")) { 77returnerror("checkout-cache: unable to read sha1 file of%s(%s)", 78 ce->name,sha1_to_hex(ce->sha1)); 79} 80 fd =create_file(ce->name, ce->st_mode); 81if(fd <0) { 82free(new); 83returnerror("checkout-cache: unable to create%s(%s)", 84 ce->name,strerror(errno)); 85} 86 wrote =write(fd,new, size); 87close(fd); 88free(new); 89if(wrote != size) 90returnerror("checkout-cache: unable to write%s", ce->name); 91return0; 92} 93 94static intcheckout_entry(struct cache_entry *ce) 95{ 96struct stat st; 97 98if(!stat(ce->name, &st)) { 99unsigned changed =cache_match_stat(ce, &st); 100if(!changed) 101return0; 102if(!force) { 103if(!quiet) 104fprintf(stderr,"checkout-cache:%salready exists\n", ce->name); 105return0; 106} 107} 108returnwrite_entry(ce); 109} 110 111static intcheckout_file(const char*name) 112{ 113int pos =cache_name_pos(name,strlen(name)); 114if(pos <0) { 115if(!quiet) 116fprintf(stderr,"checkout-cache:%sis not in the cache\n", name); 117return-1; 118} 119returncheckout_entry(active_cache[pos]); 120} 121 122static intcheckout_all(void) 123{ 124int i; 125 126for(i =0; i < active_nr ; i++) { 127struct cache_entry *ce = active_cache[i]; 128if(checkout_entry(ce) <0) 129return-1; 130} 131return0; 132} 133 134intmain(int argc,char**argv) 135{ 136int i, force_filename =0; 137 138if(read_cache() <0) { 139die("invalid cache"); 140} 141 142for(i =1; i < argc; i++) { 143const char*arg = argv[i]; 144if(!force_filename) { 145if(!strcmp(arg,"-a")) { 146checkout_all(); 147continue; 148} 149if(!strcmp(arg,"--")) { 150 force_filename =1; 151continue; 152} 153if(!strcmp(arg,"-f")) { 154 force =1; 155continue; 156} 157if(!strcmp(arg,"-q")) { 158 quiet =1; 159continue; 160} 161} 162checkout_file(arg); 163} 164return0; 165}