blob: 8460f97b6637127d78b58caf2e29d25f3ad0b5a0 [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 *
Junio C Hamano215a7ad2005-09-07 17:26:23 -07008 * 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 *
Junio C Hamano215a7ad2005-09-07 17:26:23 -070015 * 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 *
Junio C Hamano215a7ad2005-09-07 17:26:23 -070023 * 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 *
27 * find . -name '*.h' -print0 | git-checkout-index -f -z --stdin
28 *
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 */
39#include "cache.h"
Shawn Pearce9debe632006-02-28 21:43:33 -050040#include "strbuf.h"
41#include "quote.h"
Junio C Hamanobad68ec2006-04-24 21:18:58 -070042#include "cache-tree.h"
Linus Torvalds33db5f42005-04-09 09:53:05 -070043
Shawn Pearcede84f992006-03-05 03:24:15 -050044#define CHECKOUT_ALL 4
Shawn Pearcede84f992006-03-05 03:24:15 -050045static int line_termination = '\n';
Junio C Hamano3bd348a2005-12-07 00:29:51 -080046static int checkout_stage; /* default to checkout stage0 */
Shawn Pearcede84f992006-03-05 03:24:15 -050047static int to_tempfile;
Jonas Fonseca095c4242006-08-26 16:09:17 +020048static char topath[4][PATH_MAX + 1];
Junio C Hamanoc3e9a652005-11-26 00:22:48 -080049
Shawn Pearce344c52a2006-07-08 14:34:02 -040050static struct checkout state;
Linus Torvalds33db5f42005-04-09 09:53:05 -070051
Junio C Hamanoe4141562006-08-04 01:23:19 -070052static void write_tempfile_record(const char *name, int prefix_length)
Shawn Pearcede84f992006-03-05 03:24:15 -050053{
54 int i;
55
56 if (CHECKOUT_ALL == checkout_stage) {
57 for (i = 1; i < 4; i++) {
58 if (i > 1)
59 putchar(' ');
60 if (topath[i][0])
61 fputs(topath[i], stdout);
62 else
63 putchar('.');
64 }
65 } else
66 fputs(topath[checkout_stage], stdout);
67
68 putchar('\t');
69 write_name_quoted("", 0, name + prefix_length,
70 line_termination, stdout);
71 putchar(line_termination);
72
73 for (i = 0; i < 4; i++) {
74 topath[i][0] = 0;
75 }
76}
77
Junio C Hamanoe4141562006-08-04 01:23:19 -070078static int checkout_file(const char *name, int prefix_length)
Linus Torvalds33db5f42005-04-09 09:53:05 -070079{
Junio C Hamano3bd348a2005-12-07 00:29:51 -080080 int namelen = strlen(name);
81 int pos = cache_name_pos(name, namelen);
82 int has_same_name = 0;
Shawn Pearcede84f992006-03-05 03:24:15 -050083 int did_checkout = 0;
84 int errs = 0;
Junio C Hamano3bd348a2005-12-07 00:29:51 -080085
86 if (pos < 0)
87 pos = -pos - 1;
88
89 while (pos < active_nr) {
90 struct cache_entry *ce = active_cache[pos];
Junio C Hamanof4f9ada2005-12-13 21:39:56 -080091 if (ce_namelen(ce) != namelen ||
Junio C Hamano3bd348a2005-12-07 00:29:51 -080092 memcmp(ce->name, name, namelen))
93 break;
94 has_same_name = 1;
Junio C Hamano3bd348a2005-12-07 00:29:51 -080095 pos++;
Shawn Pearcede84f992006-03-05 03:24:15 -050096 if (ce_stage(ce) != checkout_stage
97 && (CHECKOUT_ALL != checkout_stage || !ce_stage(ce)))
98 continue;
99 did_checkout = 1;
100 if (checkout_entry(ce, &state,
101 to_tempfile ? topath[ce_stage(ce)] : NULL) < 0)
102 errs++;
103 }
104
105 if (did_checkout) {
106 if (to_tempfile)
Junio C Hamanoe4141562006-08-04 01:23:19 -0700107 write_tempfile_record(name, prefix_length);
Shawn Pearcede84f992006-03-05 03:24:15 -0500108 return errs > 0 ? -1 : 0;
Linus Torvalds33db5f42005-04-09 09:53:05 -0700109 }
Junio C Hamano3bd348a2005-12-07 00:29:51 -0800110
111 if (!state.quiet) {
112 fprintf(stderr, "git-checkout-index: %s ", name);
113 if (!has_same_name)
114 fprintf(stderr, "is not in the cache");
115 else if (checkout_stage)
116 fprintf(stderr, "does not exist at stage %d",
117 checkout_stage);
118 else
119 fprintf(stderr, "is unmerged");
120 fputc('\n', stderr);
121 }
122 return -1;
Linus Torvalds33db5f42005-04-09 09:53:05 -0700123}
124
David Rientjesf7f0fbf2006-08-14 13:20:12 -0700125static void checkout_all(const char *prefix, int prefix_length)
Linus Torvalds33db5f42005-04-09 09:53:05 -0700126{
Junio C Hamano4b12dae2005-10-03 12:44:48 -0700127 int i, errs = 0;
Rene Scharfe5142db62006-04-02 13:13:01 +0200128 struct cache_entry* last_ce = NULL;
Linus Torvalds33db5f42005-04-09 09:53:05 -0700129
130 for (i = 0; i < active_nr ; i++) {
131 struct cache_entry *ce = active_cache[i];
Shawn Pearcede84f992006-03-05 03:24:15 -0500132 if (ce_stage(ce) != checkout_stage
133 && (CHECKOUT_ALL != checkout_stage || !ce_stage(ce)))
Linus Torvaldsd9f98ee2005-04-17 18:39:14 -0700134 continue;
Junio C Hamanoc3e9a652005-11-26 00:22:48 -0800135 if (prefix && *prefix &&
Junio C Hamano3bd348a2005-12-07 00:29:51 -0800136 (ce_namelen(ce) <= prefix_length ||
137 memcmp(prefix, ce->name, prefix_length)))
Junio C Hamanoc3e9a652005-11-26 00:22:48 -0800138 continue;
Shawn Pearcede84f992006-03-05 03:24:15 -0500139 if (last_ce && to_tempfile) {
140 if (ce_namelen(last_ce) != ce_namelen(ce)
141 || memcmp(last_ce->name, ce->name, ce_namelen(ce)))
Junio C Hamanoe4141562006-08-04 01:23:19 -0700142 write_tempfile_record(last_ce->name, prefix_length);
Shawn Pearcede84f992006-03-05 03:24:15 -0500143 }
144 if (checkout_entry(ce, &state,
145 to_tempfile ? topath[ce_stage(ce)] : NULL) < 0)
Junio C Hamano4b12dae2005-10-03 12:44:48 -0700146 errs++;
Shawn Pearcede84f992006-03-05 03:24:15 -0500147 last_ce = ce;
Linus Torvalds33db5f42005-04-09 09:53:05 -0700148 }
Shawn Pearcede84f992006-03-05 03:24:15 -0500149 if (last_ce && to_tempfile)
Junio C Hamanoe4141562006-08-04 01:23:19 -0700150 write_tempfile_record(last_ce->name, prefix_length);
Junio C Hamano4b12dae2005-10-03 12:44:48 -0700151 if (errs)
152 /* we have already done our error reporting.
153 * exit with the same code as die().
154 */
155 exit(128);
Linus Torvalds33db5f42005-04-09 09:53:05 -0700156}
157
Petr Baudis4d1f1192005-07-29 11:01:26 +0200158static const char checkout_cache_usage[] =
Shawn Pearcede84f992006-03-05 03:24:15 -0500159"git-checkout-index [-u] [-q] [-a] [-f] [-n] [--stage=[123]|all] [--prefix=<string>] [--temp] [--] <file>...";
Junio C Hamanod46ad9c2005-07-13 20:25:07 -0700160
Junio C Hamano021b6e42006-06-06 12:51:49 -0700161static struct lock_file lock_file;
James Bottomley31f584c2005-08-13 10:29:32 -0500162
Junio C Hamanoe4141562006-08-04 01:23:19 -0700163int cmd_checkout_index(int argc, const char **argv, const char *prefix)
Linus Torvalds33db5f42005-04-09 09:53:05 -0700164{
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700165 int i;
Junio C Hamano415e96c2005-05-15 14:23:12 -0700166 int newfd = -1;
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700167 int all = 0;
Shawn Pearce9debe632006-02-28 21:43:33 -0500168 int read_from_stdin = 0;
Junio C Hamanoe4141562006-08-04 01:23:19 -0700169 int prefix_length;
Linus Torvalds33db5f42005-04-09 09:53:05 -0700170
Junio C Hamano5f730762006-02-08 21:15:24 -0800171 git_config(git_default_config);
Junio C Hamanoe4141562006-08-04 01:23:19 -0700172 state.base_dir = "";
Junio C Hamanoc3e9a652005-11-26 00:22:48 -0800173 prefix_length = prefix ? strlen(prefix) : 0;
174
Linus Torvalds33db5f42005-04-09 09:53:05 -0700175 if (read_cache() < 0) {
Petr Baudis2de381f2005-04-13 02:28:48 -0700176 die("invalid cache");
Linus Torvalds33db5f42005-04-09 09:53:05 -0700177 }
178
179 for (i = 1; i < argc; i++) {
180 const char *arg = argv[i];
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700181
182 if (!strcmp(arg, "--")) {
183 i++;
184 break;
Linus Torvalds33db5f42005-04-09 09:53:05 -0700185 }
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700186 if (!strcmp(arg, "-a") || !strcmp(arg, "--all")) {
187 all = 1;
188 continue;
Junio C Hamano415e96c2005-05-15 14:23:12 -0700189 }
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700190 if (!strcmp(arg, "-f") || !strcmp(arg, "--force")) {
191 state.force = 1;
192 continue;
193 }
194 if (!strcmp(arg, "-q") || !strcmp(arg, "--quiet")) {
195 state.quiet = 1;
196 continue;
197 }
198 if (!strcmp(arg, "-n") || !strcmp(arg, "--no-create")) {
199 state.not_new = 1;
200 continue;
201 }
202 if (!strcmp(arg, "-u") || !strcmp(arg, "--index")) {
203 state.refresh_cache = 1;
204 if (newfd < 0)
Junio C Hamano30ca07a2007-03-31 23:09:02 -0700205 newfd = hold_locked_index(&lock_file, 1);
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700206 continue;
207 }
Shawn Pearce9debe632006-02-28 21:43:33 -0500208 if (!strcmp(arg, "-z")) {
209 line_termination = 0;
210 continue;
211 }
212 if (!strcmp(arg, "--stdin")) {
213 if (i != argc - 1)
214 die("--stdin must be at the end");
215 read_from_stdin = 1;
216 i++; /* do not consider arg as a file name */
217 break;
218 }
Shawn Pearcede84f992006-03-05 03:24:15 -0500219 if (!strcmp(arg, "--temp")) {
220 to_tempfile = 1;
221 continue;
222 }
Junio C Hamanocc44c762007-02-20 01:53:29 -0800223 if (!prefixcmp(arg, "--prefix=")) {
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700224 state.base_dir = arg+9;
225 state.base_dir_len = strlen(state.base_dir);
226 continue;
227 }
Junio C Hamanocc44c762007-02-20 01:53:29 -0800228 if (!prefixcmp(arg, "--stage=")) {
Shawn Pearcede84f992006-03-05 03:24:15 -0500229 if (!strcmp(arg + 8, "all")) {
230 to_tempfile = 1;
231 checkout_stage = CHECKOUT_ALL;
232 } else {
233 int ch = arg[8];
234 if ('1' <= ch && ch <= '3')
235 checkout_stage = arg[8] - '0';
236 else
237 die("stage should be between 1 and 3 or all");
238 }
Junio C Hamano3bd348a2005-12-07 00:29:51 -0800239 continue;
240 }
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700241 if (arg[0] == '-')
242 usage(checkout_cache_usage);
243 break;
244 }
245
Shawn Pearcede84f992006-03-05 03:24:15 -0500246 if (state.base_dir_len || to_tempfile) {
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700247 /* when --prefix is specified we do not
248 * want to update cache.
249 */
250 if (state.refresh_cache) {
251 close(newfd); newfd = -1;
Junio C Hamano021b6e42006-06-06 12:51:49 -0700252 rollback_lock_file(&lock_file);
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700253 }
254 state.refresh_cache = 0;
255 }
256
257 /* Check out named files first */
258 for ( ; i < argc; i++) {
259 const char *arg = argv[i];
Junio C Hamanodc46da22006-05-05 22:38:06 -0700260 const char *p;
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700261
262 if (all)
263 die("git-checkout-index: don't mix '--all' and explicit filenames");
Shawn Pearce9debe632006-02-28 21:43:33 -0500264 if (read_from_stdin)
265 die("git-checkout-index: don't mix '--stdin' and explicit filenames");
Junio C Hamanodc46da22006-05-05 22:38:06 -0700266 p = prefix_path(prefix, prefix_length, arg);
Junio C Hamanoe4141562006-08-04 01:23:19 -0700267 checkout_file(p, prefix_length);
Johannes Schindelinbe65e7d2006-05-07 00:02:53 +0200268 if (p < arg || p > arg + strlen(arg))
Junio C Hamanodc46da22006-05-05 22:38:06 -0700269 free((char*)p);
Linus Torvalds33db5f42005-04-09 09:53:05 -0700270 }
Junio C Hamano415e96c2005-05-15 14:23:12 -0700271
Shawn Pearce9debe632006-02-28 21:43:33 -0500272 if (read_from_stdin) {
273 struct strbuf buf;
274 if (all)
275 die("git-checkout-index: don't mix '--all' and '--stdin'");
276 strbuf_init(&buf);
277 while (1) {
278 char *path_name;
Junio C Hamanodc46da22006-05-05 22:38:06 -0700279 const char *p;
280
Shawn Pearce9debe632006-02-28 21:43:33 -0500281 read_line(&buf, stdin, line_termination);
282 if (buf.eof)
283 break;
284 if (line_termination && buf.buf[0] == '"')
285 path_name = unquote_c_style(buf.buf, NULL);
286 else
287 path_name = buf.buf;
Junio C Hamanodc46da22006-05-05 22:38:06 -0700288 p = prefix_path(prefix, prefix_length, path_name);
Junio C Hamanoe4141562006-08-04 01:23:19 -0700289 checkout_file(p, prefix_length);
Johannes Schindelinbe65e7d2006-05-07 00:02:53 +0200290 if (p < path_name || p > path_name + strlen(path_name))
Junio C Hamanodc46da22006-05-05 22:38:06 -0700291 free((char *)p);
Shawn Pearce9debe632006-02-28 21:43:33 -0500292 if (path_name != buf.buf)
293 free(path_name);
294 }
295 }
296
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700297 if (all)
Junio C Hamanoe4141562006-08-04 01:23:19 -0700298 checkout_all(prefix, prefix_length);
Linus Torvaldsa65a6862005-10-17 17:32:12 -0700299
Junio C Hamano415e96c2005-05-15 14:23:12 -0700300 if (0 <= newfd &&
301 (write_cache(newfd, active_cache, active_nr) ||
Junio C Hamano30ca07a2007-03-31 23:09:02 -0700302 close(newfd) || commit_locked_index(&lock_file)))
Junio C Hamano021b6e42006-06-06 12:51:49 -0700303 die("Unable to write new index file");
Linus Torvalds33db5f42005-04-09 09:53:05 -0700304 return 0;
305}