4 static void create_directories(const char *path
, 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
) {
12 memcpy(buf
, path
, len
);
14 if (mkdir(buf
, 0777)) {
15 if (errno
== EEXIST
) {
17 if (len
> state
->base_dir_len
&& state
->force
&& !unlink(buf
) && !mkdir(buf
, 0777))
19 if (!stat(buf
, &st
) && S_ISDIR(st
.st_mode
))
22 die("cannot create directory at %s", buf
);
28 static void remove_subtree(const char *path
)
30 DIR *dir
= opendir(path
);
32 char pathbuf
[PATH_MAX
];
36 die("cannot opendir %s", path
);
37 strcpy(pathbuf
, path
);
38 name
= pathbuf
+ strlen(path
);
40 while ((de
= readdir(dir
)) != NULL
) {
42 if ((de
->d_name
[0] == '.') &&
43 ((de
->d_name
[1] == 0) ||
44 ((de
->d_name
[1] == '.') && de
->d_name
[2] == 0)))
46 strcpy(name
, de
->d_name
);
47 if (lstat(pathbuf
, &st
))
48 die("cannot lstat %s", pathbuf
);
49 if (S_ISDIR(st
.st_mode
))
50 remove_subtree(pathbuf
);
51 else if (unlink(pathbuf
))
52 die("cannot unlink %s", pathbuf
);
56 die("cannot rmdir %s", path
);
59 static int create_file(const char *path
, unsigned int mode
)
61 mode
= (mode
& 0100) ? 0777 : 0666;
62 return open(path
, O_WRONLY
| O_CREAT
| O_EXCL
, mode
);
65 static int write_entry(struct cache_entry
*ce
, char *path
, struct checkout
*state
, int to_tempfile
)
71 enum object_type type
;
73 new = read_sha1_file(ce
->sha1
, &type
, &size
);
74 if (!new || type
!= OBJ_BLOB
) {
77 return error("git-checkout-index: unable to read sha1 file of %s (%s)",
78 path
, sha1_to_hex(ce
->sha1
));
80 switch (ntohl(ce
->ce_mode
) & S_IFMT
) {
86 strcpy(path
, ".merge_file_XXXXXX");
89 fd
= create_file(path
, ntohl(ce
->ce_mode
));
92 return error("git-checkout-index: unable to create file %s (%s)",
93 path
, strerror(errno
));
97 * Convert from git internal format to working tree format
101 if (convert_to_working_tree(ce
->name
, &buf
, &nsize
)) {
107 wrote
= write_in_full(fd
, new, size
);
111 return error("git-checkout-index: unable to write file %s", path
);
114 if (to_tempfile
|| !has_symlinks
) {
116 strcpy(path
, ".merge_link_XXXXXX");
119 fd
= create_file(path
, 0666);
122 return error("git-checkout-index: unable to create "
123 "file %s (%s)", path
, strerror(errno
));
125 wrote
= write_in_full(fd
, new, size
);
129 return error("git-checkout-index: unable to write file %s",
132 wrote
= symlink(new, path
);
135 return error("git-checkout-index: unable to create "
136 "symlink %s (%s)", path
, strerror(errno
));
141 return error("git-checkout-index: unknown file mode for %s", path
);
144 if (state
->refresh_cache
) {
146 lstat(ce
->name
, &st
);
147 fill_stat_cache_info(ce
, &st
);
152 int checkout_entry(struct cache_entry
*ce
, struct checkout
*state
, char *topath
)
154 static char path
[PATH_MAX
+ 1];
156 int len
= state
->base_dir_len
;
159 return write_entry(ce
, topath
, state
, 1);
161 memcpy(path
, state
->base_dir
, len
);
162 strcpy(path
+ len
, ce
->name
);
164 if (!lstat(path
, &st
)) {
165 unsigned changed
= ce_match_stat(ce
, &st
, 1);
170 fprintf(stderr
, "git-checkout-index: %s already exists\n", path
);
175 * We unlink the old file, to get the new one with the
176 * right permissions (including umask, which is nasty
177 * to emulate by hand - much easier to let the system
178 * just do the right thing)
181 if (S_ISDIR(st
.st_mode
)) {
183 return error("%s is a directory", path
);
184 remove_subtree(path
);
186 } else if (state
->not_new
)
188 create_directories(path
, state
);
189 return write_entry(ce
, path
, state
, 0);