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; 56 57 mode = (mode &0100) ?777:666; 58 fd =open(path, O_WRONLY | O_TRUNC | O_CREAT, mode); 59if(fd <0) { 60if(errno == ENOENT) { 61create_directories(path); 62 fd =open(path, O_WRONLY | O_TRUNC | O_CREAT, mode); 63} 64} 65if(fd >=0) 66fchmod(fd, mode); 67return fd; 68} 69 70static intwrite_entry(struct cache_entry *ce) 71{ 72int fd; 73void*new; 74unsigned long size; 75long wrote; 76char type[20]; 77 78new=read_sha1_file(ce->sha1, type, &size); 79if(!new||strcmp(type,"blob")) { 80returnerror("checkout-cache: unable to read sha1 file of%s(%s)", 81 ce->name,sha1_to_hex(ce->sha1)); 82} 83 fd =create_file(ce->name,ntohl(ce->ce_mode)); 84if(fd <0) { 85free(new); 86returnerror("checkout-cache: unable to create%s(%s)", 87 ce->name,strerror(errno)); 88} 89 wrote =write(fd,new, size); 90close(fd); 91free(new); 92if(wrote != size) 93returnerror("checkout-cache: unable to write%s", ce->name); 94return0; 95} 96 97static intcheckout_entry(struct cache_entry *ce) 98{ 99struct stat st; 100 101if(!stat(ce->name, &st)) { 102unsigned changed =cache_match_stat(ce, &st); 103if(!changed) 104return0; 105if(!force) { 106if(!quiet) 107fprintf(stderr,"checkout-cache:%salready exists\n", ce->name); 108return0; 109} 110 111/* 112 * We unlink the old file, to get the new one with the 113 * right permissions (including umask, which is nasty 114 * to emulate by hand - much easier to let the system 115 * just do the right thing) 116 */ 117unlink(ce->name); 118} 119returnwrite_entry(ce); 120} 121 122static intcheckout_file(const char*name) 123{ 124int pos =cache_name_pos(name,strlen(name)); 125if(pos <0) { 126if(!quiet) 127fprintf(stderr,"checkout-cache:%sis not in the cache\n", name); 128return-1; 129} 130returncheckout_entry(active_cache[pos]); 131} 132 133static intcheckout_all(void) 134{ 135int i; 136 137for(i =0; i < active_nr ; i++) { 138struct cache_entry *ce = active_cache[i]; 139if(checkout_entry(ce) <0) 140return-1; 141} 142return0; 143} 144 145intmain(int argc,char**argv) 146{ 147int i, force_filename =0; 148 149if(read_cache() <0) { 150die("invalid cache"); 151} 152 153for(i =1; i < argc; i++) { 154const char*arg = argv[i]; 155if(!force_filename) { 156if(!strcmp(arg,"-a")) { 157checkout_all(); 158continue; 159} 160if(!strcmp(arg,"--")) { 161 force_filename =1; 162continue; 163} 164if(!strcmp(arg,"-f")) { 165 force =1; 166continue; 167} 168if(!strcmp(arg,"-q")) { 169 quiet =1; 170continue; 171} 172} 173checkout_file(arg); 174} 175return0; 176}