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, not_new =0; 38 39static voidcreate_directories(const char*path) 40{ 41int len =strlen(path); 42char*buf =xmalloc(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) ?0777:0666; 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} 65return fd; 66} 67 68static intwrite_entry(struct cache_entry *ce,const char*path) 69{ 70int fd; 71void*new; 72unsigned long size; 73long wrote; 74char type[20]; 75char target[1024]; 76 77new=read_sha1_file(ce->sha1, type, &size); 78if(!new||strcmp(type,"blob")) { 79returnerror("checkout-cache: unable to read sha1 file of%s(%s)", 80 path,sha1_to_hex(ce->sha1)); 81} 82switch(ntohl(ce->ce_mode) & S_IFMT) { 83case S_IFREG: 84 fd =create_file(path,ntohl(ce->ce_mode)); 85if(fd <0) { 86free(new); 87returnerror("checkout-cache: unable to create file%s(%s)", 88 path,strerror(errno)); 89} 90 wrote =write(fd,new, size); 91close(fd); 92free(new); 93if(wrote != size) 94returnerror("checkout-cache: unable to write file%s", path); 95break; 96case S_IFLNK: 97memcpy(target,new, size); 98 target[size] ='\0'; 99if(symlink(target, path)) { 100free(new); 101returnerror("checkout-cache: unable to create symlink%s(%s)", 102 path,strerror(errno)); 103} 104free(new); 105break; 106default: 107free(new); 108returnerror("checkout-cache: unknown file mode for%s", path); 109} 110return0; 111} 112 113static intcheckout_entry(struct cache_entry *ce,const char*base_dir) 114{ 115struct stat st; 116static char path[MAXPATHLEN+1]; 117int len =strlen(base_dir); 118 119memcpy(path, base_dir, len); 120strcpy(path + len, ce->name); 121 122if(!lstat(path, &st)) { 123unsigned changed =cache_match_stat(ce, &st); 124if(!changed) 125return0; 126if(!force) { 127if(!quiet) 128fprintf(stderr,"checkout-cache:%salready exists\n", path); 129return0; 130} 131 132/* 133 * We unlink the old file, to get the new one with the 134 * right permissions (including umask, which is nasty 135 * to emulate by hand - much easier to let the system 136 * just do the right thing) 137 */ 138unlink(path); 139}else if(not_new) 140return0; 141returnwrite_entry(ce, path); 142} 143 144static intcheckout_file(const char*name,const char*base_dir) 145{ 146int pos =cache_name_pos(name,strlen(name)); 147if(pos <0) { 148if(!quiet) { 149 pos = -pos -1; 150fprintf(stderr, 151"checkout-cache:%sis%s.\n", 152 name, 153(pos < active_nr && 154!strcmp(active_cache[pos]->name, name)) ? 155"unmerged":"not in the cache"); 156} 157return-1; 158} 159returncheckout_entry(active_cache[pos], base_dir); 160} 161 162static intcheckout_all(const char*base_dir) 163{ 164int i; 165 166for(i =0; i < active_nr ; i++) { 167struct cache_entry *ce = active_cache[i]; 168if(ce_stage(ce)) 169continue; 170if(checkout_entry(ce, base_dir) <0) 171return-1; 172} 173return0; 174} 175 176intmain(int argc,char**argv) 177{ 178int i, force_filename =0; 179const char*base_dir =""; 180 181if(read_cache() <0) { 182die("invalid cache"); 183} 184 185for(i =1; i < argc; i++) { 186const char*arg = argv[i]; 187if(!force_filename) { 188if(!strcmp(arg,"-a")) { 189checkout_all(base_dir); 190continue; 191} 192if(!strcmp(arg,"--")) { 193 force_filename =1; 194continue; 195} 196if(!strcmp(arg,"-f")) { 197 force =1; 198continue; 199} 200if(!strcmp(arg,"-q")) { 201 quiet =1; 202continue; 203} 204if(!strcmp(arg,"-n")) { 205 not_new =1; 206continue; 207} 208if(!memcmp(arg,"--prefix=",9)) { 209 base_dir = arg+9; 210continue; 211} 212} 213checkout_file(arg, base_dir); 214} 215return0; 216}