blob: 0d534bc023a1a3367bdf19f6450ce17e627959f0 [file] [log] [blame]
Linus Torvalds33db5f42005-04-09 09:53:05 -07001/*
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 *
Heikki Orsila05207a22008-09-09 13:28:30 +03008 * git checkout-index -a -f file.c
Linus Torvalds33db5f42005-04-09 09:53:05 -07009 *
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 *
Heikki Orsila05207a22008-09-09 13:28:30 +030015 * Also, just doing "git checkout-index" does nothing. You probably
16 * meant "git checkout-index -a". And if you want to force it, you
17 * want "git checkout-index -f -a".
Linus Torvalds33db5f42005-04-09 09:53:05 -070018 *
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 *
Heikki Orsila05207a22008-09-09 13:28:30 +030023 * find . -name '*.h' -print0 | xargs -0 git checkout-index -f --
Linus Torvalds33db5f42005-04-09 09:53:05 -070024 *
Shawn Pearce9debe632006-02-28 21:43:33 -050025 * or:
26 *
Heikki Orsila05207a22008-09-09 13:28:30 +030027 * find . -name '*.h' -print0 | git checkout-index -f -z --stdin
Shawn Pearce9debe632006-02-28 21:43:33 -050028 *
Linus Torvalds33db5f42005-04-09 09:53:05 -070029 * which will force all existing *.h files to be replaced with
30 * their cached copies. If an empty command line implied "all",
31 * then this would force-refresh everything in the cache, which
32 * was not the point.
33 *
34 * Oh, and the "--" is just a good idea when you know the rest
35 * will be filenames. Just so that you wouldn't have a filename
36 * of "-a" causing problems (not possible in the above example,
37 * but get used to it in scripting!).
38 */
Peter Hagervallbaffc0e2007-07-15 01:14:45 +020039#include "builtin.h"
Linus Torvalds33db5f42005-04-09 09:53:05 -070040#include "cache.h"
Shawn Pearce9debe632006-02-28 21:43:33 -050041#include "quote.h"
Junio C Hamanobad68ec2006-04-24 21:18:58 -070042#include "cache-tree.h"
Miklos Vajnaa6c7db12008-10-18 03:17:23 +020043#include "parse-options.h"
Linus Torvalds33db5f42005-04-09 09:53:05 -070044
Shawn Pearcede84f992006-03-05 03:24:15 -050045#define CHECKOUT_ALL 4
Shawn Pearcede84f992006-03-05 03:24:15 -050046static int line_termination = '\n';
Junio C Hamano3bd348a2005-12-07 00:29:51 -080047static int checkout_stage; /* default to checkout stage0 */
Shawn Pearcede84f992006-03-05 03:24:15 -050048static int to_tempfile;
Jonas Fonseca095c4242006-08-26 16:09:17 +020049static char topath[4][PATH_MAX + 1];
Junio C Hamanoc3e9a652005-11-26 00:22:48 -080050
Shawn Pearce344c52a2006-07-08 14:34:02 -040051static struct checkout state;
Linus Torvalds33db5f42005-04-09 09:53:05 -070052
Junio C Hamanoe4141562006-08-04 01:23:19 -070053static void write_tempfile_record(const char *name, int prefix_length)
Shawn Pearcede84f992006-03-05 03:24:15 -050054{
55 int i;
56
57 if (CHECKOUT_ALL == checkout_stage) {
58 for (i = 1; i < 4; i++) {
59 if (i > 1)
60 putchar(' ');
61 if (topath[i][0])
62 fputs(topath[i], stdout);
63 else
64 putchar('.');
65 }
66 } else
67 fputs(topath[checkout_stage], stdout);
68
69 putchar('\t');
Pierre Habouzit663af342007-09-20 00:42:15 +020070 write_name_quoted(name + prefix_length, stdout, line_termination);
Shawn Pearcede84f992006-03-05 03:24:15 -050071
72 for (i = 0; i < 4; i++) {
73 topath[i][0] = 0;
74 }
75}
76
Junio C Hamanoe4141562006-08-04 01:23:19 -070077static int checkout_file(const char *name, int prefix_length)
Linus Torvalds33db5f42005-04-09 09:53:05 -070078{
Junio C Hamano3bd348a2005-12-07 00:29:51 -080079 int namelen = strlen(name);
80 int pos = cache_name_pos(name, namelen);
81 int has_same_name = 0;
Shawn Pearcede84f992006-03-05 03:24:15 -050082 int did_checkout = 0;
83 int errs = 0;
Junio C Hamano3bd348a2005-12-07 00:29:51 -080084
85 if (pos < 0)
86 pos = -pos - 1;
87
88 while (pos < active_nr) {
89 struct cache_entry *ce = active_cache[pos];
Junio C Hamanof4f9ada2005-12-13 21:39:56 -080090 if (ce_namelen(ce) != namelen ||
Junio C Hamano3bd348a2005-12-07 00:29:51 -080091 memcmp(ce->name, name, namelen))
92 break;
93 has_same_name = 1;
Junio C Hamano3bd348a2005-12-07 00:29:51 -080094 pos++;
Shawn Pearcede84f992006-03-05 03:24:15 -050095 if (ce_stage(ce) != checkout_stage
96 && (CHECKOUT_ALL != checkout_stage || !ce_stage(ce)))
97 continue;
98 did_checkout = 1;
99 if (checkout_entry(ce, &state,
100 to_tempfile ? topath[ce_stage(ce)] : NULL) < 0)
101 errs++;
102 }
103
104 if (did_checkout) {
105 if (to_tempfile)
Junio C Hamanoe4141562006-08-04 01:23:19 -0700106 write_tempfile_record(name, prefix_length);
Shawn Pearcede84f992006-03-05 03:24:15 -0500107 return errs > 0 ? -1 : 0;
Linus Torvalds33db5f42005-04-09 09:53:05 -0700108 }
Junio C Hamano3bd348a2005-12-07 00:29:51 -0800109
110 if (!state.quiet) {
Heikki Orsila05207a22008-09-09 13:28:30 +0300111 fprintf(stderr, "git checkout-index: %s ", name);
Junio C Hamano3bd348a2005-12-07 00:29:51 -0800112 if (!has_same_name)
113 fprintf(stderr, "is not in the cache");
114 else if (checkout_stage)
115 fprintf(stderr, "does not exist at stage %d",
116 checkout_stage);
117 else
118 fprintf(stderr, "is unmerged");
119 fputc('\n', stderr);
120 }
121 return -1;
Linus Torvalds33db5f42005-04-09 09:53:05 -0700122}
123
David Rientjesf7f0fbf2006-08-14 13:20:12 -0700124static void checkout_all(const char *prefix, int prefix_length)
Linus Torvalds33db5f42005-04-09 09:53:05 -0700125{
Junio C Hamano4b12dae2005-10-03 12:44:48 -0700126 int i, errs = 0;
Rene Scharfe5142db62006-04-02 13:13:01 +0200127 struct cache_entry* last_ce = NULL;
Linus Torvalds33db5f42005-04-09 09:53:05 -0700128
129 for (i = 0; i < active_nr ; i++) {
130 struct cache_entry *ce = active_cache[i];
Shawn Pearcede84f992006-03-05 03:24:15 -0500131 if (ce_stage(ce) != checkout_stage
132 && (CHECKOUT_ALL != checkout_stage || !ce_stage(ce)))
Linus Torvaldsd9f98ee2005-04-17 18:39:14 -0700133 continue;
Junio C Hamanoc3e9a652005-11-26 00:22:48 -0800134 if (prefix && *prefix &&
Junio C Hamano3bd348a2005-12-07 00:29:51 -0800135 (ce_namelen(ce) <= prefix_length ||
136 memcmp(prefix, ce->name, prefix_length)))
Junio C Hamanoc3e9a652005-11-26 00:22:48 -0800137 continue;
Shawn Pearcede84f992006-03-05 03:24:15 -0500138 if (last_ce && to_tempfile) {
139 if (ce_namelen(last_ce) != ce_namelen(ce)
140 || memcmp(last_ce->name, ce->name, ce_namelen(ce)))
Junio C Hamanoe4141562006-08-04 01:23:19 -0700141 write_tempfile_record(last_ce->name, prefix_length);
Shawn Pearcede84f992006-03-05 03:24:15 -0500142 }
143 if (checkout_entry(ce, &state,
144 to_tempfile ? topath[ce_stage(ce)] : NULL) < 0)
Junio C Hamano4b12dae2005-10-03 12:44:48 -0700145 errs++;
Shawn Pearcede84f992006-03-05 03:24:15 -0500146 last_ce = ce;
Linus Torvalds33db5f42005-04-09 09:53:05 -0700147 }
Shawn Pearcede84f992006-03-05 03:24:15 -0500148 if (last_ce && to_tempfile)
Junio C Hamanoe4141562006-08-04 01:23:19 -0700149 write_tempfile_record(last_ce->name, prefix_length);
Junio C Hamano4b12dae2005-10-03 12:44:48 -0700150 if (errs)
151 /* we have already done our error reporting.
152 * exit with the same code as die().
153 */
154 exit(128);
Linus Torvalds33db5f42005-04-09 09:53:05 -0700155}
156
Miklos Vajnaa6c7db12008-10-18 03:17:23 +0200157static const char * const builtin_checkout_index_usage[] = {
158 "git checkout-index [options] [--] <file>...",
159 NULL
160};
Junio C Hamanod46ad9c2005-07-13 20:25:07 -0700161
Junio C Hamano021b6e42006-06-06 12:51:49 -0700162static struct lock_file lock_file;
James Bottomley31f584c2005-08-13 10:29:32 -0500163
Miklos Vajnaa6c7db12008-10-18 03:17:23 +0200164static int option_parse_u(const struct option *opt,
165 const char *arg, int unset)
166{
167 int *newfd = opt->value;
168
169 state.refresh_cache = 1;
170 if (*newfd < 0)
171 *newfd = hold_locked_index(&lock_file, 1);
172 return 0;
173}
174
175static int option_parse_z(const struct option *opt,
176 const char *arg, int unset)
177{
178 if (unset)
179 line_termination = '\n';
180 else
181 line_termination = 0;
182 return 0;
183}
184
185static int option_parse_prefix(const struct option *opt,
186 const char *arg, int unset)
187{
188 state.base_dir = arg;
189 state.base_dir_len = strlen(arg);
190 return 0;
191}
192
193static int option_parse_stage(const struct option *opt,
194 const char *arg, int unset)
195{
196 if (!strcmp(arg, "all")) {
197 to_tempfile = 1;
198 checkout_stage = CHECKOUT_ALL;
199 } else {
200 int ch = arg[0];
201 if ('1' <= ch && ch <= '3')
202 checkout_stage = arg[0] - '0';
203 else
204 die("stage should be between 1 and 3 or all");
205 }
206 return 0;
207}
208
Junio C Hamanoe4141562006-08-04 01:23:19 -0700209int cmd_checkout_index(int argc, const char **argv, const char *prefix)
Linus Torvalds33db5f42005-04-09 09:53:05 -0700210{
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700211 int i;
Junio C Hamano415e96c2005-05-15 14:23:12 -0700212 int newfd = -1;
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700213 int all = 0;
Shawn Pearce9debe632006-02-28 21:43:33 -0500214 int read_from_stdin = 0;
Junio C Hamanoe4141562006-08-04 01:23:19 -0700215 int prefix_length;
Miklos Vajnaa6c7db12008-10-18 03:17:23 +0200216 int force = 0, quiet = 0, not_new = 0;
217 struct option builtin_checkout_index_options[] = {
218 OPT_BOOLEAN('a', "all", &all,
219 "checks out all files in the index"),
220 OPT_BOOLEAN('f', "force", &force,
221 "forces overwrite of existing files"),
222 OPT__QUIET(&quiet),
223 OPT_BOOLEAN('n', "no-create", &not_new,
224 "don't checkout new files"),
225 { OPTION_CALLBACK, 'u', "index", &newfd, NULL,
226 "update stat information in the index file",
227 PARSE_OPT_NOARG, option_parse_u },
228 { OPTION_CALLBACK, 'z', NULL, NULL, NULL,
229 "paths are separated with NUL character",
230 PARSE_OPT_NOARG, option_parse_z },
231 OPT_BOOLEAN(0, "stdin", &read_from_stdin,
232 "read list of paths from the standard input"),
233 OPT_BOOLEAN(0, "temp", &to_tempfile,
234 "write the content to temporary files"),
235 OPT_CALLBACK(0, "prefix", NULL, "string",
236 "when creating files, prepend <string>",
237 option_parse_prefix),
238 OPT_CALLBACK(0, "stage", NULL, NULL,
239 "copy out the files from named stage",
240 option_parse_stage),
241 OPT_END()
242 };
Linus Torvalds33db5f42005-04-09 09:53:05 -0700243
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100244 git_config(git_default_config, NULL);
Junio C Hamanoe4141562006-08-04 01:23:19 -0700245 state.base_dir = "";
Junio C Hamanoc3e9a652005-11-26 00:22:48 -0800246 prefix_length = prefix ? strlen(prefix) : 0;
247
Linus Torvalds33db5f42005-04-09 09:53:05 -0700248 if (read_cache() < 0) {
Petr Baudis2de381f2005-04-13 02:28:48 -0700249 die("invalid cache");
Linus Torvalds33db5f42005-04-09 09:53:05 -0700250 }
251
Miklos Vajnaa6c7db12008-10-18 03:17:23 +0200252 argc = parse_options(argc, argv, builtin_checkout_index_options,
253 builtin_checkout_index_usage, 0);
254 state.force = force;
255 state.quiet = quiet;
256 state.not_new = not_new;
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700257
Shawn Pearcede84f992006-03-05 03:24:15 -0500258 if (state.base_dir_len || to_tempfile) {
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700259 /* when --prefix is specified we do not
260 * want to update cache.
261 */
262 if (state.refresh_cache) {
Junio C Hamano021b6e42006-06-06 12:51:49 -0700263 rollback_lock_file(&lock_file);
Brandon Casey4ed7cd32008-01-16 13:12:46 -0600264 newfd = -1;
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700265 }
266 state.refresh_cache = 0;
267 }
268
269 /* Check out named files first */
Miklos Vajnaa6c7db12008-10-18 03:17:23 +0200270 for (i = 0; i < argc; i++) {
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700271 const char *arg = argv[i];
Junio C Hamanodc46da22006-05-05 22:38:06 -0700272 const char *p;
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700273
274 if (all)
Junio C Hamano7e44c932008-08-31 09:39:19 -0700275 die("git checkout-index: don't mix '--all' and explicit filenames");
Shawn Pearce9debe632006-02-28 21:43:33 -0500276 if (read_from_stdin)
Junio C Hamano7e44c932008-08-31 09:39:19 -0700277 die("git checkout-index: don't mix '--stdin' and explicit filenames");
Junio C Hamanodc46da22006-05-05 22:38:06 -0700278 p = prefix_path(prefix, prefix_length, arg);
Junio C Hamanoe4141562006-08-04 01:23:19 -0700279 checkout_file(p, prefix_length);
Johannes Schindelinbe65e7d2006-05-07 00:02:53 +0200280 if (p < arg || p > arg + strlen(arg))
Junio C Hamanodc46da22006-05-05 22:38:06 -0700281 free((char*)p);
Linus Torvalds33db5f42005-04-09 09:53:05 -0700282 }
Junio C Hamano415e96c2005-05-15 14:23:12 -0700283
Shawn Pearce9debe632006-02-28 21:43:33 -0500284 if (read_from_stdin) {
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500285 struct strbuf buf = STRBUF_INIT, nbuf = STRBUF_INIT;
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200286
Shawn Pearce9debe632006-02-28 21:43:33 -0500287 if (all)
Junio C Hamano7e44c932008-08-31 09:39:19 -0700288 die("git checkout-index: don't mix '--all' and '--stdin'");
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200289
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200290 while (strbuf_getline(&buf, stdin, line_termination) != EOF) {
Junio C Hamanodc46da22006-05-05 22:38:06 -0700291 const char *p;
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200292 if (line_termination && buf.buf[0] == '"') {
293 strbuf_reset(&nbuf);
294 if (unquote_c_style(&nbuf, buf.buf, NULL))
295 die("line is badly quoted");
296 strbuf_swap(&buf, &nbuf);
297 }
298 p = prefix_path(prefix, prefix_length, buf.buf);
Junio C Hamanoe4141562006-08-04 01:23:19 -0700299 checkout_file(p, prefix_length);
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200300 if (p < buf.buf || p > buf.buf + buf.len)
Junio C Hamanodc46da22006-05-05 22:38:06 -0700301 free((char *)p);
Shawn Pearce9debe632006-02-28 21:43:33 -0500302 }
Pierre Habouzit7fb10112007-09-20 00:42:14 +0200303 strbuf_release(&nbuf);
Pierre Habouzite6c019d2007-09-17 11:19:04 +0200304 strbuf_release(&buf);
Shawn Pearce9debe632006-02-28 21:43:33 -0500305 }
306
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700307 if (all)
Junio C Hamanoe4141562006-08-04 01:23:19 -0700308 checkout_all(prefix, prefix_length);
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700309
Junio C Hamano415e96c2005-05-15 14:23:12 -0700310 if (0 <= newfd &&
311 (write_cache(newfd, active_cache, active_nr) ||
Brandon Casey4ed7cd32008-01-16 13:12:46 -0600312 commit_locked_index(&lock_file)))
Junio C Hamano021b6e42006-06-06 12:51:49 -0700313 die("Unable to write new index file");
Linus Torvalds33db5f42005-04-09 09:53:05 -0700314 return 0;
315}