4 static void create_directories(const char *path
, const struct checkout
*state
)
6 int len
= strlen(path
);
7 char *buf
= xmalloc(len
+ 1);
8 const char *slash
= path
;
10 while ((slash
= strchr(slash
+1, '/')) != NULL
) {
15 memcpy(buf
, path
, len
);
18 if (len
<= state
->base_dir_len
)
20 * checkout-index --prefix=<dir>; <dir> is
21 * allowed to be a symlink to an existing
24 stat_status
= stat(buf
, &st
);
27 * if there currently is a symlink, we would
28 * want to replace it with a real directory.
30 stat_status
= lstat(buf
, &st
);
32 if (!stat_status
&& S_ISDIR(st
.st_mode
))
33 continue; /* ok, it is already a directory. */
36 * We know stat_status == 0 means something exists
37 * there and this mkdir would fail, but that is an
38 * error codepath; we do not care, as we unlink and
39 * mkdir again in such a case.
41 if (mkdir(buf
, 0777)) {
42 if (errno
== EEXIST
&& state
->force
&&
43 !unlink(buf
) && !mkdir(buf
, 0777))
45 die("cannot create directory at %s", buf
);
51 static void remove_subtree(const char *path
)
53 DIR *dir
= opendir(path
);
55 char pathbuf
[PATH_MAX
];
59 die("cannot opendir %s (%s)", path
, strerror(errno
));
60 strcpy(pathbuf
, path
);
61 name
= pathbuf
+ strlen(path
);
63 while ((de
= readdir(dir
)) != NULL
) {
65 if ((de
->d_name
[0] == '.') &&
66 ((de
->d_name
[1] == 0) ||
67 ((de
->d_name
[1] == '.') && de
->d_name
[2] == 0)))
69 strcpy(name
, de
->d_name
);
70 if (lstat(pathbuf
, &st
))
71 die("cannot lstat %s (%s)", pathbuf
, strerror(errno
));
72 if (S_ISDIR(st
.st_mode
))
73 remove_subtree(pathbuf
);
74 else if (unlink(pathbuf
))
75 die("cannot unlink %s (%s)", pathbuf
, strerror(errno
));
79 die("cannot rmdir %s (%s)", path
, strerror(errno
));
82 static int create_file(const char *path
, unsigned int mode
)
84 mode
= (mode
& 0100) ? 0777 : 0666;
85 return open(path
, O_WRONLY
| O_CREAT
| O_EXCL
, mode
);
88 static void *read_blob_entry(struct cache_entry
*ce
, const char *path
, unsigned long *size
)
90 enum object_type type
;
91 void *new = read_sha1_file(ce
->sha1
, &type
, size
);
101 static int write_entry(struct cache_entry
*ce
, char *path
, const struct checkout
*state
, int to_tempfile
)
106 switch (ntohl(ce
->ce_mode
) & S_IFMT
) {
112 new = read_blob_entry(ce
, path
, &size
);
114 return error("git-checkout-index: unable to read sha1 file of %s (%s)",
115 path
, sha1_to_hex(ce
->sha1
));
118 * Convert from git internal format to working tree format
120 strbuf_init(&buf
, 0);
121 if (convert_to_working_tree(ce
->name
, new, size
, &buf
)) {
124 new = strbuf_detach(&buf
, &newsize
);
129 strcpy(path
, ".merge_file_XXXXXX");
132 fd
= create_file(path
, ntohl(ce
->ce_mode
));
135 return error("git-checkout-index: unable to create file %s (%s)",
136 path
, strerror(errno
));
139 wrote
= write_in_full(fd
, new, size
);
143 return error("git-checkout-index: unable to write file %s", path
);
146 new = read_blob_entry(ce
, path
, &size
);
148 return error("git-checkout-index: unable to read sha1 file of %s (%s)",
149 path
, sha1_to_hex(ce
->sha1
));
150 if (to_tempfile
|| !has_symlinks
) {
152 strcpy(path
, ".merge_link_XXXXXX");
155 fd
= create_file(path
, 0666);
158 return error("git-checkout-index: unable to create "
159 "file %s (%s)", path
, strerror(errno
));
161 wrote
= write_in_full(fd
, new, size
);
165 return error("git-checkout-index: unable to write file %s",
168 wrote
= symlink(new, path
);
171 return error("git-checkout-index: unable to create "
172 "symlink %s (%s)", path
, strerror(errno
));
177 return error("git-checkout-index: cannot create temporary subproject %s", path
);
178 if (mkdir(path
, 0777) < 0)
179 return error("git-checkout-index: cannot create subproject directory %s", path
);
182 return error("git-checkout-index: unknown file mode for %s", path
);
185 if (state
->refresh_cache
) {
187 lstat(ce
->name
, &st
);
188 fill_stat_cache_info(ce
, &st
);
193 int checkout_entry(struct cache_entry
*ce
, const struct checkout
*state
, char *topath
)
195 static char path
[PATH_MAX
+ 1];
197 int len
= state
->base_dir_len
;
200 return write_entry(ce
, topath
, state
, 1);
202 memcpy(path
, state
->base_dir
, len
);
203 strcpy(path
+ len
, ce
->name
);
205 if (!lstat(path
, &st
)) {
206 unsigned changed
= ce_match_stat(ce
, &st
, CE_MATCH_IGNORE_VALID
);
211 fprintf(stderr
, "git-checkout-index: %s already exists\n", path
);
216 * We unlink the old file, to get the new one with the
217 * right permissions (including umask, which is nasty
218 * to emulate by hand - much easier to let the system
219 * just do the right thing)
222 if (S_ISDIR(st
.st_mode
)) {
223 /* If it is a gitlink, leave it alone! */
224 if (S_ISGITLINK(ntohl(ce
->ce_mode
)))
227 return error("%s is a directory", path
);
228 remove_subtree(path
);
230 } else if (state
->not_new
)
232 create_directories(path
, state
);
233 return write_entry(ce
, path
, state
, 0);