5 static void create_directories(const char *path
, const struct checkout
*state
)
7 int len
= strlen(path
);
8 char *buf
= xmalloc(len
+ 1);
9 const char *slash
= path
;
11 while ((slash
= strchr(slash
+1, '/')) != NULL
) {
16 memcpy(buf
, path
, len
);
19 if (len
<= state
->base_dir_len
)
21 * checkout-index --prefix=<dir>; <dir> is
22 * allowed to be a symlink to an existing
25 stat_status
= stat(buf
, &st
);
28 * if there currently is a symlink, we would
29 * want to replace it with a real directory.
31 stat_status
= lstat(buf
, &st
);
33 if (!stat_status
&& S_ISDIR(st
.st_mode
))
34 continue; /* ok, it is already a directory. */
37 * We know stat_status == 0 means something exists
38 * there and this mkdir would fail, but that is an
39 * error codepath; we do not care, as we unlink and
40 * mkdir again in such a case.
42 if (mkdir(buf
, 0777)) {
43 if (errno
== EEXIST
&& state
->force
&&
44 !unlink(buf
) && !mkdir(buf
, 0777))
46 die("cannot create directory at %s", buf
);
52 static void remove_subtree(const char *path
)
54 DIR *dir
= opendir(path
);
56 char pathbuf
[PATH_MAX
];
60 die("cannot opendir %s (%s)", path
, strerror(errno
));
61 strcpy(pathbuf
, path
);
62 name
= pathbuf
+ strlen(path
);
64 while ((de
= readdir(dir
)) != NULL
) {
66 if (is_dot_or_dotdot(de
->d_name
))
68 strcpy(name
, de
->d_name
);
69 if (lstat(pathbuf
, &st
))
70 die("cannot lstat %s (%s)", pathbuf
, strerror(errno
));
71 if (S_ISDIR(st
.st_mode
))
72 remove_subtree(pathbuf
);
73 else if (unlink(pathbuf
))
74 die("cannot unlink %s (%s)", pathbuf
, strerror(errno
));
78 die("cannot rmdir %s (%s)", path
, strerror(errno
));
81 static int create_file(const char *path
, unsigned int mode
)
83 mode
= (mode
& 0100) ? 0777 : 0666;
84 return open(path
, O_WRONLY
| O_CREAT
| O_EXCL
, mode
);
87 static void *read_blob_entry(struct cache_entry
*ce
, const char *path
, unsigned long *size
)
89 enum object_type type
;
90 void *new = read_sha1_file(ce
->sha1
, &type
, size
);
100 static int write_entry(struct cache_entry
*ce
, char *path
, const struct checkout
*state
, int to_tempfile
)
105 switch (ce
->ce_mode
& S_IFMT
) {
111 new = read_blob_entry(ce
, path
, &size
);
113 return error("git checkout-index: unable to read sha1 file of %s (%s)",
114 path
, sha1_to_hex(ce
->sha1
));
117 * Convert from git internal format to working tree format
119 strbuf_init(&buf
, 0);
120 if (convert_to_working_tree(ce
->name
, new, size
, &buf
)) {
123 new = strbuf_detach(&buf
, &newsize
);
128 strcpy(path
, ".merge_file_XXXXXX");
131 fd
= create_file(path
, ce
->ce_mode
);
134 return error("git checkout-index: unable to create file %s (%s)",
135 path
, strerror(errno
));
138 wrote
= write_in_full(fd
, new, size
);
142 return error("git checkout-index: unable to write file %s", path
);
145 new = read_blob_entry(ce
, path
, &size
);
147 return error("git checkout-index: unable to read sha1 file of %s (%s)",
148 path
, sha1_to_hex(ce
->sha1
));
149 if (to_tempfile
|| !has_symlinks
) {
151 strcpy(path
, ".merge_link_XXXXXX");
154 fd
= create_file(path
, 0666);
157 return error("git checkout-index: unable to create "
158 "file %s (%s)", path
, strerror(errno
));
160 wrote
= write_in_full(fd
, new, size
);
164 return error("git checkout-index: unable to write file %s",
167 wrote
= symlink(new, path
);
170 return error("git checkout-index: unable to create "
171 "symlink %s (%s)", path
, strerror(errno
));
176 return error("git checkout-index: cannot create temporary subproject %s", path
);
177 if (mkdir(path
, 0777) < 0)
178 return error("git checkout-index: cannot create subproject directory %s", path
);
181 return error("git checkout-index: unknown file mode for %s", path
);
184 if (state
->refresh_cache
) {
186 lstat(ce
->name
, &st
);
187 fill_stat_cache_info(ce
, &st
);
192 int checkout_entry(struct cache_entry
*ce
, const struct checkout
*state
, char *topath
)
194 static char path
[PATH_MAX
+ 1];
196 int len
= state
->base_dir_len
;
199 return write_entry(ce
, topath
, state
, 1);
201 memcpy(path
, state
->base_dir
, len
);
202 strcpy(path
+ len
, ce
->name
);
204 if (!lstat(path
, &st
)) {
205 unsigned changed
= ce_match_stat(ce
, &st
, CE_MATCH_IGNORE_VALID
);
210 fprintf(stderr
, "git-checkout-index: %s already exists\n", path
);
215 * We unlink the old file, to get the new one with the
216 * right permissions (including umask, which is nasty
217 * to emulate by hand - much easier to let the system
218 * just do the right thing)
220 if (S_ISDIR(st
.st_mode
)) {
221 /* If it is a gitlink, leave it alone! */
222 if (S_ISGITLINK(ce
->ce_mode
))
225 return error("%s is a directory", path
);
226 remove_subtree(path
);
227 } else if (unlink(path
))
228 return error("unable to unlink old '%s' (%s)", path
, strerror(errno
));
229 } else if (state
->not_new
)
231 create_directories(path
, state
);
232 return write_entry(ce
, path
, state
, 0);