Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 1 | #include "cache.h" |
Peter Eriksen | 8e44025 | 2006-04-02 14:44:09 +0200 | [diff] [blame] | 2 | #include "blob.h" |
Stefan Beller | cbd53a2 | 2018-05-15 16:42:15 -0700 | [diff] [blame] | 3 | #include "object-store.h" |
Alexander Potashev | 8ca12c0 | 2009-01-10 15:07:50 +0300 | [diff] [blame] | 4 | #include "dir.h" |
Junio C Hamano | dd8e912 | 2011-05-12 14:31:08 -0700 | [diff] [blame] | 5 | #include "streaming.h" |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 6 | #include "submodule.h" |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 7 | #include "progress.h" |
Ben Peart | 883e248 | 2017-09-22 12:35:40 -0400 | [diff] [blame] | 8 | #include "fsmonitor.h" |
Matheus Tavares | d052cc0 | 2021-03-23 11:19:32 -0300 | [diff] [blame] | 9 | #include "entry.h" |
Matheus Tavares | 04155bd | 2021-04-18 21:14:53 -0300 | [diff] [blame] | 10 | #include "parallel-checkout.h" |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 11 | |
Kjetil Barvik | 81a9aa6 | 2009-02-09 21:54:08 +0100 | [diff] [blame] | 12 | static void create_directories(const char *path, int path_len, |
| 13 | const struct checkout *state) |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 14 | { |
Jeff King | 3733e69 | 2016-02-22 17:44:28 -0500 | [diff] [blame] | 15 | char *buf = xmallocz(path_len); |
Kjetil Barvik | 81a9aa6 | 2009-02-09 21:54:08 +0100 | [diff] [blame] | 16 | int len = 0; |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 17 | |
Kjetil Barvik | 81a9aa6 | 2009-02-09 21:54:08 +0100 | [diff] [blame] | 18 | while (len < path_len) { |
| 19 | do { |
| 20 | buf[len] = path[len]; |
| 21 | len++; |
| 22 | } while (len < path_len && path[len] != '/'); |
| 23 | if (len >= path_len) |
| 24 | break; |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 25 | buf[len] = 0; |
Junio C Hamano | fa2e71c | 2007-07-17 22:58:28 -0700 | [diff] [blame] | 26 | |
Kjetil Barvik | bad4a54 | 2009-01-18 16:14:52 +0100 | [diff] [blame] | 27 | /* |
| 28 | * For 'checkout-index --prefix=<dir>', <dir> is |
| 29 | * allowed to be a symlink to an existing directory, |
| 30 | * and we set 'state->base_dir_len' below, such that |
| 31 | * we test the path components of the prefix with the |
| 32 | * stat() function instead of the lstat() function. |
| 33 | */ |
Kjetil Barvik | 5719989 | 2009-02-09 21:54:06 +0100 | [diff] [blame] | 34 | if (has_dirs_only_path(buf, len, state->base_dir_len)) |
Junio C Hamano | fa2e71c | 2007-07-17 22:58:28 -0700 | [diff] [blame] | 35 | continue; /* ok, it is already a directory. */ |
| 36 | |
| 37 | /* |
Kjetil Barvik | bad4a54 | 2009-01-18 16:14:52 +0100 | [diff] [blame] | 38 | * If this mkdir() would fail, it could be that there |
| 39 | * is already a symlink or something else exists |
| 40 | * there, therefore we then try to unlink it and try |
| 41 | * one more time to create the directory. |
Junio C Hamano | fa2e71c | 2007-07-17 22:58:28 -0700 | [diff] [blame] | 42 | */ |
Junio C Hamano | f312de0 | 2005-07-06 01:21:46 -0700 | [diff] [blame] | 43 | if (mkdir(buf, 0777)) { |
Junio C Hamano | fa2e71c | 2007-07-17 22:58:28 -0700 | [diff] [blame] | 44 | if (errno == EEXIST && state->force && |
Alex Riesen | 691f1a2 | 2009-04-29 23:22:56 +0200 | [diff] [blame] | 45 | !unlink_or_warn(buf) && !mkdir(buf, 0777)) |
Junio C Hamano | fa2e71c | 2007-07-17 22:58:28 -0700 | [diff] [blame] | 46 | continue; |
Thomas Rast | 0721c31 | 2009-06-27 17:58:47 +0200 | [diff] [blame] | 47 | die_errno("cannot create directory at '%s'", buf); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 48 | } |
| 49 | } |
| 50 | free(buf); |
| 51 | } |
| 52 | |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 53 | static void remove_subtree(struct strbuf *path) |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 54 | { |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 55 | DIR *dir = opendir(path->buf); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 56 | struct dirent *de; |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 57 | int origlen = path->len; |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 58 | |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 59 | if (!dir) |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 60 | die_errno("cannot opendir '%s'", path->buf); |
Elijah Newren | b548f0f | 2021-05-12 17:28:22 +0000 | [diff] [blame] | 61 | while ((de = readdir_skip_dot_and_dotdot(dir)) != NULL) { |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 62 | struct stat st; |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 63 | |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 64 | strbuf_addch(path, '/'); |
| 65 | strbuf_addstr(path, de->d_name); |
| 66 | if (lstat(path->buf, &st)) |
| 67 | die_errno("cannot lstat '%s'", path->buf); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 68 | if (S_ISDIR(st.st_mode)) |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 69 | remove_subtree(path); |
| 70 | else if (unlink(path->buf)) |
| 71 | die_errno("cannot unlink '%s'", path->buf); |
| 72 | strbuf_setlen(path, origlen); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 73 | } |
| 74 | closedir(dir); |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 75 | if (rmdir(path->buf)) |
| 76 | die_errno("cannot rmdir '%s'", path->buf); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Linus Torvalds | d48a72f | 2005-07-14 09:58:45 -0700 | [diff] [blame] | 79 | static int create_file(const char *path, unsigned int mode) |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 80 | { |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 81 | mode = (mode & 0100) ? 0777 : 0666; |
Alex Riesen | 781411e | 2006-01-05 09:58:06 +0100 | [diff] [blame] | 82 | return open(path, O_WRONLY | O_CREAT | O_EXCL, mode); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 83 | } |
| 84 | |
Matheus Tavares | 49cfd90 | 2021-03-23 11:19:33 -0300 | [diff] [blame] | 85 | void *read_blob_entry(const struct cache_entry *ce, unsigned long *size) |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 86 | { |
| 87 | enum object_type type; |
brian m. carlson | b4f5aca | 2018-03-12 02:27:53 +0000 | [diff] [blame] | 88 | void *blob_data = read_object_file(&ce->oid, &type, size); |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 89 | |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 90 | if (blob_data) { |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 91 | if (type == OBJ_BLOB) |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 92 | return blob_data; |
| 93 | free(blob_data); |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 94 | } |
| 95 | return NULL; |
| 96 | } |
| 97 | |
Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 22:29:00 +0700 | [diff] [blame] | 98 | static int open_output_fd(char *path, const struct cache_entry *ce, int to_tempfile) |
Junio C Hamano | fd5db55 | 2011-05-12 21:36:42 -0700 | [diff] [blame] | 99 | { |
| 100 | int symlink = (ce->ce_mode & S_IFMT) != S_IFREG; |
| 101 | if (to_tempfile) { |
Jeff King | 330c8e2 | 2015-09-24 17:06:53 -0400 | [diff] [blame] | 102 | xsnprintf(path, TEMPORARY_FILENAME_LENGTH, "%s", |
| 103 | symlink ? ".merge_link_XXXXXX" : ".merge_file_XXXXXX"); |
Junio C Hamano | fd5db55 | 2011-05-12 21:36:42 -0700 | [diff] [blame] | 104 | return mkstemp(path); |
| 105 | } else { |
| 106 | return create_file(path, !symlink ? ce->ce_mode : 0666); |
| 107 | } |
| 108 | } |
| 109 | |
Matheus Tavares | 49cfd90 | 2021-03-23 11:19:33 -0300 | [diff] [blame] | 110 | int fstat_checkout_output(int fd, const struct checkout *state, struct stat *st) |
Junio C Hamano | fd5db55 | 2011-05-12 21:36:42 -0700 | [diff] [blame] | 111 | { |
| 112 | /* use fstat() only when path == ce->name */ |
| 113 | if (fstat_is_reliable() && |
| 114 | state->refresh_cache && !state->base_dir_len) { |
Matheus Tavares | 35e6e21 | 2020-07-08 23:10:39 -0300 | [diff] [blame] | 115 | return !fstat(fd, st); |
Junio C Hamano | fd5db55 | 2011-05-12 21:36:42 -0700 | [diff] [blame] | 116 | } |
| 117 | return 0; |
| 118 | } |
| 119 | |
Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 22:29:00 +0700 | [diff] [blame] | 120 | static int streaming_write_entry(const struct cache_entry *ce, char *path, |
Junio C Hamano | b669109 | 2011-05-20 14:33:31 -0700 | [diff] [blame] | 121 | struct stream_filter *filter, |
Junio C Hamano | dd8e912 | 2011-05-12 14:31:08 -0700 | [diff] [blame] | 122 | const struct checkout *state, int to_tempfile, |
| 123 | int *fstat_done, struct stat *statbuf) |
| 124 | { |
Jeff King | d9c31e1 | 2013-03-25 17:49:36 -0400 | [diff] [blame] | 125 | int result = 0; |
Junio C Hamano | 47a02ff | 2012-03-07 17:54:15 +0700 | [diff] [blame] | 126 | int fd; |
Junio C Hamano | dd8e912 | 2011-05-12 14:31:08 -0700 | [diff] [blame] | 127 | |
| 128 | fd = open_output_fd(path, ce, to_tempfile); |
Jeff King | d9c31e1 | 2013-03-25 17:49:36 -0400 | [diff] [blame] | 129 | if (fd < 0) |
| 130 | return -1; |
| 131 | |
brian m. carlson | 7eda0e4 | 2016-09-05 20:07:59 +0000 | [diff] [blame] | 132 | result |= stream_blob_to_fd(fd, &ce->oid, filter, 1); |
Matheus Tavares | 49cfd90 | 2021-03-23 11:19:33 -0300 | [diff] [blame] | 133 | *fstat_done = fstat_checkout_output(fd, state, statbuf); |
Jeff King | d9c31e1 | 2013-03-25 17:49:36 -0400 | [diff] [blame] | 134 | result |= close(fd); |
| 135 | |
| 136 | if (result) |
Junio C Hamano | dd8e912 | 2011-05-12 14:31:08 -0700 | [diff] [blame] | 137 | unlink(path); |
| 138 | return result; |
| 139 | } |
| 140 | |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 141 | void enable_delayed_checkout(struct checkout *state) |
| 142 | { |
| 143 | if (!state->delayed_checkout) { |
| 144 | state->delayed_checkout = xmalloc(sizeof(*state->delayed_checkout)); |
| 145 | state->delayed_checkout->state = CE_CAN_DELAY; |
Ævar Arnfjörð Bjarmason | bc40dfb | 2021-07-01 12:51:29 +0200 | [diff] [blame] | 146 | string_list_init_nodup(&state->delayed_checkout->filters); |
| 147 | string_list_init_nodup(&state->delayed_checkout->paths); |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 148 | } |
| 149 | } |
| 150 | |
| 151 | static int remove_available_paths(struct string_list_item *item, void *cb_data) |
| 152 | { |
| 153 | struct string_list *available_paths = cb_data; |
| 154 | struct string_list_item *available; |
| 155 | |
| 156 | available = string_list_lookup(available_paths, item->string); |
| 157 | if (available) |
| 158 | available->util = (void *)item->string; |
| 159 | return !available; |
| 160 | } |
| 161 | |
Nguyễn Thái Ngọc Duy | 0f086e6 | 2018-11-13 19:28:00 +0100 | [diff] [blame] | 162 | int finish_delayed_checkout(struct checkout *state, int *nr_checkouts) |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 163 | { |
| 164 | int errs = 0; |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 165 | unsigned delayed_object_count; |
| 166 | off_t filtered_bytes = 0; |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 167 | struct string_list_item *filter, *path; |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 168 | struct progress *progress; |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 169 | struct delayed_checkout *dco = state->delayed_checkout; |
| 170 | |
| 171 | if (!state->delayed_checkout) |
| 172 | return errs; |
| 173 | |
| 174 | dco->state = CE_RETRY; |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 175 | delayed_object_count = dco->paths.nr; |
Junio C Hamano | 7fbbd3e | 2017-09-10 17:08:22 +0900 | [diff] [blame] | 176 | progress = start_delayed_progress(_("Filtering content"), delayed_object_count); |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 177 | while (dco->filters.nr > 0) { |
| 178 | for_each_string_list_item(filter, &dco->filters) { |
| 179 | struct string_list available_paths = STRING_LIST_INIT_NODUP; |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 180 | display_progress(progress, delayed_object_count - dco->paths.nr); |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 181 | |
| 182 | if (!async_query_available_blobs(filter->string, &available_paths)) { |
| 183 | /* Filter reported an error */ |
| 184 | errs = 1; |
| 185 | filter->string = ""; |
| 186 | continue; |
| 187 | } |
| 188 | if (available_paths.nr <= 0) { |
| 189 | /* |
| 190 | * Filter responded with no entries. That means |
| 191 | * the filter is done and we can remove the |
| 192 | * filter from the list (see |
| 193 | * "string_list_remove_empty_items" call below). |
| 194 | */ |
| 195 | filter->string = ""; |
| 196 | continue; |
| 197 | } |
| 198 | |
| 199 | /* |
| 200 | * In dco->paths we store a list of all delayed paths. |
| 201 | * The filter just send us a list of available paths. |
| 202 | * Remove them from the list. |
| 203 | */ |
| 204 | filter_string_list(&dco->paths, 0, |
| 205 | &remove_available_paths, &available_paths); |
| 206 | |
| 207 | for_each_string_list_item(path, &available_paths) { |
| 208 | struct cache_entry* ce; |
| 209 | |
| 210 | if (!path->util) { |
| 211 | error("external filter '%s' signaled that '%s' " |
| 212 | "is now available although it has not been " |
| 213 | "delayed earlier", |
| 214 | filter->string, path->string); |
| 215 | errs |= 1; |
| 216 | |
| 217 | /* |
| 218 | * Do not ask the filter for available blobs, |
| 219 | * again, as the filter is likely buggy. |
| 220 | */ |
| 221 | filter->string = ""; |
| 222 | continue; |
| 223 | } |
| 224 | ce = index_file_exists(state->istate, path->string, |
| 225 | strlen(path->string), 0); |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 226 | if (ce) { |
Nguyễn Thái Ngọc Duy | 0f086e6 | 2018-11-13 19:28:00 +0100 | [diff] [blame] | 227 | errs |= checkout_entry(ce, state, NULL, nr_checkouts); |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 228 | filtered_bytes += ce->ce_stat_data.sd_size; |
| 229 | display_throughput(progress, filtered_bytes); |
| 230 | } else |
| 231 | errs = 1; |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 232 | } |
| 233 | } |
| 234 | string_list_remove_empty_items(&dco->filters, 0); |
| 235 | } |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 236 | stop_progress(&progress); |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 237 | string_list_clear(&dco->filters, 0); |
| 238 | |
| 239 | /* At this point we should not have any delayed paths anymore. */ |
| 240 | errs |= dco->paths.nr; |
| 241 | for_each_string_list_item(path, &dco->paths) { |
| 242 | error("'%s' was not filtered properly", path->string); |
| 243 | } |
| 244 | string_list_clear(&dco->paths, 0); |
| 245 | |
| 246 | free(dco); |
| 247 | state->delayed_checkout = NULL; |
| 248 | |
| 249 | return errs; |
| 250 | } |
| 251 | |
Matheus Tavares | 584a0d1 | 2021-03-23 11:19:34 -0300 | [diff] [blame] | 252 | void update_ce_after_write(const struct checkout *state, struct cache_entry *ce, |
| 253 | struct stat *st) |
| 254 | { |
| 255 | if (state->refresh_cache) { |
| 256 | assert(state->istate); |
| 257 | fill_stat_cache_info(state->istate, ce, st); |
| 258 | ce->ce_flags |= CE_UPDATE_IN_BASE; |
| 259 | mark_fsmonitor_invalid(state->istate, ce); |
| 260 | state->istate->cache_changed |= CE_ENTRY_CHANGED; |
| 261 | } |
| 262 | } |
| 263 | |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 264 | /* Note: ca is used (and required) iff the entry refers to a regular file. */ |
| 265 | static int write_entry(struct cache_entry *ce, char *path, struct conv_attrs *ca, |
| 266 | const struct checkout *state, int to_tempfile) |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 267 | { |
Kjetil Barvik | 4857c76 | 2009-02-09 21:54:50 +0100 | [diff] [blame] | 268 | unsigned int ce_mode_s_ifmt = ce->ce_mode & S_IFMT; |
Jeff King | c602d3a | 2017-10-09 13:48:52 -0400 | [diff] [blame] | 269 | struct delayed_checkout *dco = state->delayed_checkout; |
Kjetil Barvik | e4c7292 | 2009-02-09 21:54:51 +0100 | [diff] [blame] | 270 | int fd, ret, fstat_done = 0; |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 271 | char *new_blob; |
Kjetil Barvik | 4857c76 | 2009-02-09 21:54:50 +0100 | [diff] [blame] | 272 | struct strbuf buf = STRBUF_INIT; |
| 273 | unsigned long size; |
Jeff King | 564bde9 | 2017-09-13 13:16:28 -0400 | [diff] [blame] | 274 | ssize_t wrote; |
| 275 | size_t newsize = 0; |
Kjetil Barvik | e4c7292 | 2009-02-09 21:54:51 +0100 | [diff] [blame] | 276 | struct stat st; |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 277 | const struct submodule *sub; |
brian m. carlson | c397aac | 2020-03-16 18:05:03 +0000 | [diff] [blame] | 278 | struct checkout_metadata meta; |
| 279 | |
| 280 | clone_checkout_metadata(&meta, &state->meta, &ce->oid); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 281 | |
Junio C Hamano | b669109 | 2011-05-20 14:33:31 -0700 | [diff] [blame] | 282 | if (ce_mode_s_ifmt == S_IFREG) { |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 283 | struct stream_filter *filter = get_stream_filter_ca(ca, &ce->oid); |
Junio C Hamano | b669109 | 2011-05-20 14:33:31 -0700 | [diff] [blame] | 284 | if (filter && |
| 285 | !streaming_write_entry(ce, path, filter, |
| 286 | state, to_tempfile, |
| 287 | &fstat_done, &st)) |
| 288 | goto finish; |
| 289 | } |
Junio C Hamano | dd8e912 | 2011-05-12 14:31:08 -0700 | [diff] [blame] | 290 | |
Kjetil Barvik | 4857c76 | 2009-02-09 21:54:50 +0100 | [diff] [blame] | 291 | switch (ce_mode_s_ifmt) { |
Kjetil Barvik | 4857c76 | 2009-02-09 21:54:50 +0100 | [diff] [blame] | 292 | case S_IFLNK: |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 293 | new_blob = read_blob_entry(ce, &size); |
| 294 | if (!new_blob) |
Nguyễn Thái Ngọc Duy | d43e907 | 2010-11-28 11:36:38 +0700 | [diff] [blame] | 295 | return error("unable to read sha1 file of %s (%s)", |
Matheus Tavares | 9334ea8 | 2021-02-16 11:06:51 -0300 | [diff] [blame] | 296 | ce->name, oid_to_hex(&ce->oid)); |
Junio C Hamano | 1a9d7e9 | 2007-08-14 01:41:02 -0700 | [diff] [blame] | 297 | |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 298 | /* |
| 299 | * We can't make a real symlink; write out a regular file entry |
| 300 | * with the symlink destination as its contents. |
| 301 | */ |
| 302 | if (!has_symlinks || to_tempfile) |
| 303 | goto write_file_entry; |
| 304 | |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 305 | ret = symlink(new_blob, path); |
| 306 | free(new_blob); |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 307 | if (ret) |
| 308 | return error_errno("unable to create symlink %s", path); |
| 309 | break; |
| 310 | |
| 311 | case S_IFREG: |
Jeff King | c602d3a | 2017-10-09 13:48:52 -0400 | [diff] [blame] | 312 | /* |
| 313 | * We do not send the blob in case of a retry, so do not |
| 314 | * bother reading it at all. |
| 315 | */ |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 316 | if (dco && dco->state == CE_RETRY) { |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 317 | new_blob = NULL; |
Jeff King | c602d3a | 2017-10-09 13:48:52 -0400 | [diff] [blame] | 318 | size = 0; |
| 319 | } else { |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 320 | new_blob = read_blob_entry(ce, &size); |
| 321 | if (!new_blob) |
Jeff King | c602d3a | 2017-10-09 13:48:52 -0400 | [diff] [blame] | 322 | return error("unable to read sha1 file of %s (%s)", |
Matheus Tavares | 9334ea8 | 2021-02-16 11:06:51 -0300 | [diff] [blame] | 323 | ce->name, oid_to_hex(&ce->oid)); |
Kjetil Barvik | 4857c76 | 2009-02-09 21:54:50 +0100 | [diff] [blame] | 324 | } |
| 325 | |
Junio C Hamano | 1a9d7e9 | 2007-08-14 01:41:02 -0700 | [diff] [blame] | 326 | /* |
| 327 | * Convert from git internal format to working tree format |
| 328 | */ |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 329 | if (dco && dco->state != CE_NO_DELAY) { |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 330 | ret = async_convert_to_working_tree_ca(ca, ce->name, |
| 331 | new_blob, size, |
| 332 | &buf, &meta, dco); |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 333 | if (ret && string_list_has_string(&dco->paths, ce->name)) { |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 334 | free(new_blob); |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 335 | goto delayed; |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 336 | } |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 337 | } else { |
| 338 | ret = convert_to_working_tree_ca(ca, ce->name, new_blob, |
| 339 | size, &buf, &meta); |
| 340 | } |
Junio C Hamano | 1a9d7e9 | 2007-08-14 01:41:02 -0700 | [diff] [blame] | 341 | |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 342 | if (ret) { |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 343 | free(new_blob); |
| 344 | new_blob = strbuf_detach(&buf, &newsize); |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 345 | size = newsize; |
| 346 | } |
| 347 | /* |
| 348 | * No "else" here as errors from convert are OK at this |
| 349 | * point. If the error would have been fatal (e.g. |
| 350 | * filter is required), then we would have died already. |
| 351 | */ |
| 352 | |
| 353 | write_file_entry: |
Junio C Hamano | fd5db55 | 2011-05-12 21:36:42 -0700 | [diff] [blame] | 354 | fd = open_output_fd(path, ce, to_tempfile); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 355 | if (fd < 0) { |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 356 | free(new_blob); |
Nguyễn Thái Ngọc Duy | e1ebb3c | 2016-05-08 16:47:44 +0700 | [diff] [blame] | 357 | return error_errno("unable to create file %s", path); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 358 | } |
Linus Torvalds | 6c510be | 2007-02-13 11:07:23 -0800 | [diff] [blame] | 359 | |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 360 | wrote = write_in_full(fd, new_blob, size); |
Junio C Hamano | fd5db55 | 2011-05-12 21:36:42 -0700 | [diff] [blame] | 361 | if (!to_tempfile) |
Matheus Tavares | 49cfd90 | 2021-03-23 11:19:33 -0300 | [diff] [blame] | 362 | fstat_done = fstat_checkout_output(fd, state, &st); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 363 | close(fd); |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 364 | free(new_blob); |
Jeff King | 564bde9 | 2017-09-13 13:16:28 -0400 | [diff] [blame] | 365 | if (wrote < 0) |
Nguyễn Thái Ngọc Duy | d43e907 | 2010-11-28 11:36:38 +0700 | [diff] [blame] | 366 | return error("unable to write file %s", path); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 367 | break; |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 368 | |
Martin Waitz | 302b928 | 2007-05-21 22:08:28 +0200 | [diff] [blame] | 369 | case S_IFGITLINK: |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 370 | if (to_tempfile) |
Matheus Tavares | 9334ea8 | 2021-02-16 11:06:51 -0300 | [diff] [blame] | 371 | return error("cannot create temporary submodule %s", ce->name); |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 372 | if (mkdir(path, 0777) < 0) |
Thomas Rast | 42063f9 | 2013-07-18 14:26:55 +0200 | [diff] [blame] | 373 | return error("cannot create submodule directory %s", path); |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 374 | sub = submodule_from_ce(ce); |
| 375 | if (sub) |
| 376 | return submodule_move_head(ce->name, |
Stefan Beller | cd279e2 | 2017-04-18 14:37:22 -0700 | [diff] [blame] | 377 | NULL, oid_to_hex(&ce->oid), |
| 378 | state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0); |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 379 | break; |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 380 | |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 381 | default: |
Matheus Tavares | 9334ea8 | 2021-02-16 11:06:51 -0300 | [diff] [blame] | 382 | return error("unknown file mode for %s in index", ce->name); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 383 | } |
| 384 | |
Junio C Hamano | dd8e912 | 2011-05-12 14:31:08 -0700 | [diff] [blame] | 385 | finish: |
Linus Torvalds | 6ee67f2 | 2005-06-05 23:15:40 -0700 | [diff] [blame] | 386 | if (state->refresh_cache) { |
Matheus Tavares | 584a0d1 | 2021-03-23 11:19:34 -0300 | [diff] [blame] | 387 | if (!fstat_done && lstat(ce->name, &st) < 0) |
| 388 | return error_errno("unable to stat just-written file %s", |
| 389 | ce->name); |
| 390 | update_ce_after_write(state, ce , &st); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 391 | } |
Lars Schneider | 03b9533 | 2017-10-05 12:44:06 +0200 | [diff] [blame] | 392 | delayed: |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 393 | return 0; |
| 394 | } |
| 395 | |
Linus Torvalds | b6986d8 | 2009-07-29 20:22:25 -0700 | [diff] [blame] | 396 | /* |
| 397 | * This is like 'lstat()', except it refuses to follow symlinks |
Junio C Hamano | da02ca5 | 2009-08-16 23:53:12 -0700 | [diff] [blame] | 398 | * in the path, after skipping "skiplen". |
Linus Torvalds | b6986d8 | 2009-07-29 20:22:25 -0700 | [diff] [blame] | 399 | */ |
Junio C Hamano | 61b97df | 2010-01-11 22:27:31 -0800 | [diff] [blame] | 400 | static int check_path(const char *path, int len, struct stat *st, int skiplen) |
Linus Torvalds | b6986d8 | 2009-07-29 20:22:25 -0700 | [diff] [blame] | 401 | { |
Junio C Hamano | da02ca5 | 2009-08-16 23:53:12 -0700 | [diff] [blame] | 402 | const char *slash = path + len; |
| 403 | |
| 404 | while (path < slash && *slash != '/') |
| 405 | slash--; |
| 406 | if (!has_dirs_only_path(path, slash - path, skiplen)) { |
Linus Torvalds | b6986d8 | 2009-07-29 20:22:25 -0700 | [diff] [blame] | 407 | errno = ENOENT; |
| 408 | return -1; |
| 409 | } |
| 410 | return lstat(path, st); |
| 411 | } |
| 412 | |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 413 | static void mark_colliding_entries(const struct checkout *state, |
| 414 | struct cache_entry *ce, struct stat *st) |
| 415 | { |
| 416 | int i, trust_ino = check_stat; |
| 417 | |
Nguyễn Thái Ngọc Duy | e66ceca | 2018-11-20 17:28:53 +0100 | [diff] [blame] | 418 | #if defined(GIT_WINDOWS_NATIVE) || defined(__CYGWIN__) |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 419 | trust_ino = 0; |
| 420 | #endif |
| 421 | |
| 422 | ce->ce_flags |= CE_MATCHED; |
| 423 | |
Derrick Stolee | 3450a30 | 2021-04-01 01:49:55 +0000 | [diff] [blame] | 424 | /* TODO: audit for interaction with sparse-index. */ |
| 425 | ensure_full_index(state->istate); |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 426 | for (i = 0; i < state->istate->cache_nr; i++) { |
| 427 | struct cache_entry *dup = state->istate->cache[i]; |
| 428 | |
Matheus Tavares | 04155bd | 2021-04-18 21:14:53 -0300 | [diff] [blame] | 429 | if (dup == ce) { |
| 430 | /* |
| 431 | * Parallel checkout doesn't create the files in index |
| 432 | * order. So the other side of the collision may appear |
| 433 | * after the given cache_entry in the array. |
| 434 | */ |
| 435 | if (parallel_checkout_status() == PC_RUNNING) |
| 436 | continue; |
| 437 | else |
| 438 | break; |
| 439 | } |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 440 | |
| 441 | if (dup->ce_flags & (CE_MATCHED | CE_VALID | CE_SKIP_WORKTREE)) |
| 442 | continue; |
| 443 | |
Nguyễn Thái Ngọc Duy | e66ceca | 2018-11-20 17:28:53 +0100 | [diff] [blame] | 444 | if ((trust_ino && !match_stat_data(&dup->ce_stat_data, st)) || |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 445 | (!trust_ino && !fspathcmp(ce->name, dup->name))) { |
| 446 | dup->ce_flags |= CE_MATCHED; |
| 447 | break; |
| 448 | } |
| 449 | } |
| 450 | } |
| 451 | |
Matheus Tavares | ae22751 | 2021-03-23 11:19:36 -0300 | [diff] [blame] | 452 | int checkout_entry_ca(struct cache_entry *ce, struct conv_attrs *ca, |
| 453 | const struct checkout *state, char *topath, |
| 454 | int *nr_checkouts) |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 455 | { |
Michael Haggerty | f63272a | 2014-03-13 10:19:07 +0100 | [diff] [blame] | 456 | static struct strbuf path = STRBUF_INIT; |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 457 | struct stat st; |
Matheus Tavares | ae22751 | 2021-03-23 11:19:36 -0300 | [diff] [blame] | 458 | struct conv_attrs ca_buf; |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 459 | |
Thomas Gummerer | 536ec18 | 2018-12-20 13:48:15 +0000 | [diff] [blame] | 460 | if (ce->ce_flags & CE_WT_REMOVE) { |
| 461 | if (topath) |
| 462 | /* |
| 463 | * No content and thus no path to create, so we have |
| 464 | * no pathname to return. |
| 465 | */ |
| 466 | BUG("Can't remove entry to a path"); |
| 467 | unlink_entry(ce); |
| 468 | return 0; |
| 469 | } |
| 470 | |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 471 | if (topath) { |
Matheus Tavares | ae22751 | 2021-03-23 11:19:36 -0300 | [diff] [blame] | 472 | if (S_ISREG(ce->ce_mode) && !ca) { |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 473 | convert_attrs(state->istate, &ca_buf, ce->name); |
| 474 | ca = &ca_buf; |
| 475 | } |
| 476 | return write_entry(ce, topath, ca, state, 1); |
| 477 | } |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 478 | |
Michael Haggerty | f63272a | 2014-03-13 10:19:07 +0100 | [diff] [blame] | 479 | strbuf_reset(&path); |
| 480 | strbuf_add(&path, state->base_dir, state->base_dir_len); |
| 481 | strbuf_add(&path, ce->name, ce_namelen(ce)); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 482 | |
Michael Haggerty | f63272a | 2014-03-13 10:19:07 +0100 | [diff] [blame] | 483 | if (!check_path(path.buf, path.len, &st, state->base_dir_len)) { |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 484 | const struct submodule *sub; |
Nguyễn Thái Ngọc Duy | 74cfc0e | 2018-08-13 18:14:32 +0200 | [diff] [blame] | 485 | unsigned changed = ie_match_stat(state->istate, ce, &st, |
| 486 | CE_MATCH_IGNORE_VALID | CE_MATCH_IGNORE_SKIP_WORKTREE); |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 487 | /* |
| 488 | * Needs to be checked before !changed returns early, |
| 489 | * as the possibly empty directory was not changed |
| 490 | */ |
| 491 | sub = submodule_from_ce(ce); |
| 492 | if (sub) { |
| 493 | int err; |
| 494 | if (!is_submodule_populated_gently(ce->name, &err)) { |
| 495 | struct stat sb; |
| 496 | if (lstat(ce->name, &sb)) |
| 497 | die(_("could not stat file '%s'"), ce->name); |
| 498 | if (!(st.st_mode & S_IFDIR)) |
| 499 | unlink_or_warn(ce->name); |
| 500 | |
| 501 | return submodule_move_head(ce->name, |
Stefan Beller | cd279e2 | 2017-04-18 14:37:22 -0700 | [diff] [blame] | 502 | NULL, oid_to_hex(&ce->oid), 0); |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 503 | } else |
| 504 | return submodule_move_head(ce->name, |
| 505 | "HEAD", oid_to_hex(&ce->oid), |
Stefan Beller | cd279e2 | 2017-04-18 14:37:22 -0700 | [diff] [blame] | 506 | state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0); |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 507 | } |
| 508 | |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 509 | if (!changed) |
| 510 | return 0; |
| 511 | if (!state->force) { |
| 512 | if (!state->quiet) |
Michael Haggerty | f63272a | 2014-03-13 10:19:07 +0100 | [diff] [blame] | 513 | fprintf(stderr, |
| 514 | "%s already exists, no checkout\n", |
| 515 | path.buf); |
Junio C Hamano | 4b12dae | 2005-10-03 12:44:48 -0700 | [diff] [blame] | 516 | return -1; |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 517 | } |
| 518 | |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 519 | if (state->clone) |
| 520 | mark_colliding_entries(state, ce, &st); |
| 521 | |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 522 | /* |
| 523 | * We unlink the old file, to get the new one with the |
| 524 | * right permissions (including umask, which is nasty |
| 525 | * to emulate by hand - much easier to let the system |
| 526 | * just do the right thing) |
| 527 | */ |
Linus Torvalds | d48a72f | 2005-07-14 09:58:45 -0700 | [diff] [blame] | 528 | if (S_ISDIR(st.st_mode)) { |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 529 | /* If it is a gitlink, leave it alone! */ |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 530 | if (S_ISGITLINK(ce->ce_mode)) |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 531 | return 0; |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 532 | remove_subtree(&path); |
Michael Haggerty | f63272a | 2014-03-13 10:19:07 +0100 | [diff] [blame] | 533 | } else if (unlink(path.buf)) |
Nguyễn Thái Ngọc Duy | e1ebb3c | 2016-05-08 16:47:44 +0700 | [diff] [blame] | 534 | return error_errno("unable to unlink old '%s'", path.buf); |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 535 | } else if (state->not_new) |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 536 | return 0; |
Michael Haggerty | f63272a | 2014-03-13 10:19:07 +0100 | [diff] [blame] | 537 | |
| 538 | create_directories(path.buf, path.len, state); |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 539 | |
Nguyễn Thái Ngọc Duy | 0f086e6 | 2018-11-13 19:28:00 +0100 | [diff] [blame] | 540 | if (nr_checkouts) |
| 541 | (*nr_checkouts)++; |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 542 | |
Matheus Tavares | ae22751 | 2021-03-23 11:19:36 -0300 | [diff] [blame] | 543 | if (S_ISREG(ce->ce_mode) && !ca) { |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 544 | convert_attrs(state->istate, &ca_buf, ce->name); |
| 545 | ca = &ca_buf; |
| 546 | } |
| 547 | |
Matheus Tavares | 04155bd | 2021-04-18 21:14:53 -0300 | [diff] [blame] | 548 | if (!enqueue_checkout(ce, ca)) |
| 549 | return 0; |
| 550 | |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 551 | return write_entry(ce, path.buf, ca, state, 0); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 552 | } |
Thomas Gummerer | b702dd1 | 2018-12-20 13:48:14 +0000 | [diff] [blame] | 553 | |
| 554 | void unlink_entry(const struct cache_entry *ce) |
| 555 | { |
| 556 | const struct submodule *sub = submodule_from_ce(ce); |
| 557 | if (sub) { |
| 558 | /* state.force is set at the caller. */ |
| 559 | submodule_move_head(ce->name, "HEAD", NULL, |
| 560 | SUBMODULE_MOVE_HEAD_FORCE); |
| 561 | } |
Matheus Tavares | fab78a0 | 2021-03-18 15:43:47 -0300 | [diff] [blame] | 562 | if (check_leading_path(ce->name, ce_namelen(ce), 1) >= 0) |
Thomas Gummerer | b702dd1 | 2018-12-20 13:48:14 +0000 | [diff] [blame] | 563 | return; |
| 564 | if (remove_or_warn(ce->ce_mode, ce->name)) |
| 565 | return; |
| 566 | schedule_dir_for_removal(ce->name, ce_namelen(ce)); |
| 567 | } |