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 <sys/param.h> 36 37#include"cache.h" 38 39static int force =0, quiet =0; 40 41static voidcreate_directories(const char*path) 42{ 43int len =strlen(path); 44char*buf =malloc(len +1); 45const char*slash = path; 46 47while((slash =strchr(slash+1,'/')) != NULL) { 48 len = slash - path; 49memcpy(buf, path, len); 50 buf[len] =0; 51mkdir(buf,0755); 52} 53} 54 55static intcreate_file(const char*path,unsigned int mode) 56{ 57int fd; 58 59 mode = (mode &0100) ?0777:0666; 60 fd =open(path, O_WRONLY | O_TRUNC | O_CREAT, mode); 61if(fd <0) { 62if(errno == ENOENT) { 63create_directories(path); 64 fd =open(path, O_WRONLY | O_TRUNC | O_CREAT, mode); 65} 66} 67return fd; 68} 69 70static intwrite_entry(struct cache_entry *ce,const char*path) 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 path,sha1_to_hex(ce->sha1)); 82} 83 fd =create_file(path,ntohl(ce->ce_mode)); 84if(fd <0) { 85free(new); 86returnerror("checkout-cache: unable to create%s(%s)", 87 path,strerror(errno)); 88} 89 wrote =write(fd,new, size); 90close(fd); 91free(new); 92if(wrote != size) 93returnerror("checkout-cache: unable to write%s", path); 94return0; 95} 96 97static intcheckout_entry(struct cache_entry *ce,const char*base_dir) 98{ 99struct stat st; 100static char path[MAXPATHLEN+1]; 101int len =strlen(base_dir); 102 103memcpy(path, base_dir, len); 104strcpy(path + len, ce->name); 105 106if(!stat(path, &st)) { 107unsigned changed =cache_match_stat(ce, &st); 108if(!changed) 109return0; 110if(!force) { 111if(!quiet) 112fprintf(stderr,"checkout-cache:%salready exists\n", path); 113return0; 114} 115 116/* 117 * We unlink the old file, to get the new one with the 118 * right permissions (including umask, which is nasty 119 * to emulate by hand - much easier to let the system 120 * just do the right thing) 121 */ 122unlink(path); 123} 124returnwrite_entry(ce, path); 125} 126 127static intcheckout_file(const char*name,const char*base_dir) 128{ 129int pos =cache_name_pos(name,strlen(name)); 130if(pos <0) { 131if(!quiet) { 132 pos = -pos -1; 133fprintf(stderr, 134"checkout-cache:%sis%s.\n", 135 name, 136(pos < active_nr && 137!strcmp(active_cache[pos]->name, name)) ? 138"unmerged":"not in the cache"); 139} 140return-1; 141} 142returncheckout_entry(active_cache[pos], base_dir); 143} 144 145static intcheckout_all(const char*base_dir) 146{ 147int i; 148 149for(i =0; i < active_nr ; i++) { 150struct cache_entry *ce = active_cache[i]; 151if(ce_stage(ce)) 152continue; 153if(checkout_entry(ce, base_dir) <0) 154return-1; 155} 156return0; 157} 158 159intmain(int argc,char**argv) 160{ 161int i, force_filename =0; 162const char*base_dir =""; 163 164if(read_cache() <0) { 165die("invalid cache"); 166} 167 168for(i =1; i < argc; i++) { 169const char*arg = argv[i]; 170if(!force_filename) { 171if(!strcmp(arg,"-a")) { 172checkout_all(base_dir); 173continue; 174} 175if(!strcmp(arg,"--")) { 176 force_filename =1; 177continue; 178} 179if(!strcmp(arg,"-f")) { 180 force =1; 181continue; 182} 183if(!strcmp(arg,"-q")) { 184 quiet =1; 185continue; 186} 187if(!memcmp(arg,"--prefix=",9)) { 188 base_dir = arg+9; 189continue; 190} 191} 192checkout_file(arg, base_dir); 193} 194return0; 195}