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 intwrite_entry(struct cache_entry *ce) 40{ 41int fd; 42void*new; 43unsigned long size; 44long wrote; 45char type[20]; 46 47new=read_sha1_file(ce->sha1, type, &size); 48if(!new||strcmp(type,"blob")) { 49fprintf(stderr,"checkout-cache: unable to read sha1 file of%s(%s)\n", 50 ce->name,sha1_to_hex(ce->sha1)); 51return-1; 52} 53 fd =open(ce->name, O_WRONLY | O_CREAT | O_TRUNC,0600); 54if(fd <0) { 55fprintf(stderr,"checkout-cache: unable to create%s(%s)\n", 56 ce->name,strerror(errno)); 57free(new); 58return-1; 59} 60 wrote =write(fd,new, size); 61close(fd); 62free(new); 63if(wrote == size) 64return0; 65fprintf(stderr,"checkout-cache: unable to write%s\n", ce->name); 66return-1; 67} 68 69static intcheckout_entry(struct cache_entry *ce) 70{ 71if(!force) { 72struct stat st; 73 74if(!stat(ce->name, &st)) { 75unsigned changed =cache_match_stat(ce, &st); 76if(changed && !quiet) 77fprintf(stderr,"checkout-cache:%salready exists\n", ce->name); 78return0; 79} 80} 81returnwrite_entry(ce); 82} 83 84static intcheckout_file(const char*name) 85{ 86int pos =cache_name_pos(name,strlen(name)); 87if(pos <0) { 88if(!quiet) 89fprintf(stderr,"checkout-cache:%sis not in the cache\n", name); 90return-1; 91} 92returncheckout_entry(active_cache[pos]); 93} 94 95static intcheckout_all(void) 96{ 97int i; 98 99for(i =0; i < active_nr ; i++) { 100struct cache_entry *ce = active_cache[i]; 101if(checkout_entry(ce) <0) 102return-1; 103} 104return0; 105} 106 107intmain(int argc,char**argv) 108{ 109int i, force_filename =0; 110 111if(read_cache() <0) { 112fprintf(stderr,"Invalid cache\n"); 113exit(1); 114} 115 116for(i =1; i < argc; i++) { 117const char*arg = argv[i]; 118if(!force_filename) { 119if(!strcmp(arg,"-a")) { 120checkout_all(); 121continue; 122} 123if(!strcmp(arg,"--")) { 124 force_filename =1; 125continue; 126} 127if(!strcmp(arg,"-f")) { 128 force =1; 129continue; 130} 131if(!strcmp(arg,"-q")) { 132 quiet =1; 133continue; 134} 135} 136checkout_file(arg); 137} 138return0; 139}