3 #include "repository.h"
9 #include "object-store.h"
12 struct update_info_ctx
{
14 FILE *old_fp
; /* becomes NULL if it differs from cur_fp */
19 static void uic_mark_stale(struct update_info_ctx
*uic
)
25 static int uic_is_stale(const struct update_info_ctx
*uic
)
27 return uic
->old_fp
== NULL
;
30 __attribute__((format (printf
, 2, 3)))
31 static int uic_printf(struct update_info_ctx
*uic
, const char *fmt
, ...)
38 if (uic_is_stale(uic
)) {
39 ret
= vfprintf(uic
->cur_fp
, fmt
, ap
);
42 struct strbuf
*cur
= &uic
->cur_sb
;
43 struct strbuf
*old
= &uic
->old_sb
;
46 strbuf_vinsertf(cur
, 0, fmt
, ap
);
49 strbuf_grow(old
, cur
->len
);
50 r
= fread(old
->buf
, 1, cur
->len
, uic
->old_fp
);
51 if (r
!= cur
->len
|| memcmp(old
->buf
, cur
->buf
, r
))
54 if (fwrite(cur
->buf
, 1, cur
->len
, uic
->cur_fp
) == cur
->len
)
64 * Create the file "path" by writing to a temporary file and renaming
65 * it into place. The contents of the file come from "generate", which
66 * should return non-zero if it encounters an error.
68 static int update_info_file(char *path
,
69 int (*generate
)(struct update_info_ctx
*),
72 char *tmp
= mkpathdup("%s_XXXXXX", path
);
76 struct update_info_ctx uic
= {
79 .cur_sb
= STRBUF_INIT
,
83 safe_create_leading_directories(path
);
84 fd
= git_mkstemp_mode(tmp
, 0666);
87 to_close
= uic
.cur_fp
= fdopen(fd
, "w");
92 /* no problem on ENOENT and old_fp == NULL, it's stale, now */
94 uic
.old_fp
= fopen_or_warn(path
, "r");
97 * uic_printf will compare incremental comparison against old_fp
98 * and mark uic as stale if needed
100 ret
= generate(&uic
);
104 /* new file may be shorter than the old one, check here */
105 if (!uic_is_stale(&uic
)) {
107 long new_len
= ftell(uic
.cur_fp
);
108 int old_fd
= fileno(uic
.old_fp
);
114 if (fstat(old_fd
, &st
) || (st
.st_size
!= (size_t)new_len
))
115 uic_mark_stale(&uic
);
119 if (fclose(to_close
))
122 if (uic_is_stale(&uic
)) {
123 if (adjust_shared_perm(tmp
) < 0)
125 if (rename(tmp
, path
) < 0)
134 error_errno("unable to update %s", path
);
144 strbuf_release(&uic
.old_sb
);
145 strbuf_release(&uic
.cur_sb
);
149 static int add_info_ref(const char *path
, const struct object_id
*oid
,
153 struct update_info_ctx
*uic
= cb_data
;
154 struct object
*o
= parse_object(the_repository
, oid
);
158 if (uic_printf(uic
, "%s %s\n", oid_to_hex(oid
), path
) < 0)
161 if (o
->type
== OBJ_TAG
) {
162 o
= deref_tag(the_repository
, o
, path
, 0);
164 if (uic_printf(uic
, "%s %s^{}\n",
165 oid_to_hex(&o
->oid
), path
) < 0)
171 static int generate_info_refs(struct update_info_ctx
*uic
)
173 return for_each_ref(add_info_ref
, uic
);
176 static int update_info_refs(int force
)
178 char *path
= git_pathdup("info/refs");
179 int ret
= update_info_file(path
, generate_info_refs
, force
);
185 static struct pack_info
{
186 struct packed_git
*p
;
192 static struct pack_info
*find_pack_by_name(const char *name
)
195 for (i
= 0; i
< num_pack
; i
++) {
196 struct packed_git
*p
= info
[i
]->p
;
197 if (!strcmp(pack_basename(p
), name
))
203 /* Returns non-zero when we detect that the info in the
204 * old file is useless.
206 static int parse_pack_def(const char *packname
, int old_cnt
)
208 struct pack_info
*i
= find_pack_by_name(packname
);
210 i
->old_num
= old_cnt
;
214 /* The file describes a pack that is no longer here */
219 /* Returns non-zero when we detect that the info in the
220 * old file is useless.
222 static int read_pack_info_file(const char *infofile
)
225 struct strbuf line
= STRBUF_INIT
;
229 fp
= fopen_or_warn(infofile
, "r");
231 return 1; /* nonexistent is not an error. */
233 while (strbuf_getline(&line
, fp
) != EOF
) {
239 if (skip_prefix(line
.buf
, "P ", &arg
)) {
241 if (parse_pack_def(arg
, old_cnt
++))
243 } else if (line
.buf
[0] == 'D') {
244 /* we used to emit D but that was misguided. */
246 } else if (line
.buf
[0] == 'T') {
247 /* we used to emit T but nobody uses it. */
250 error("unrecognized: %s", line
.buf
);
256 strbuf_release(&line
);
261 static int compare_info(const void *a_
, const void *b_
)
263 struct pack_info
*const *a
= a_
;
264 struct pack_info
*const *b
= b_
;
266 if (0 <= (*a
)->old_num
&& 0 <= (*b
)->old_num
)
267 /* Keep the order in the original */
268 return (*a
)->old_num
- (*b
)->old_num
;
269 else if (0 <= (*a
)->old_num
)
270 /* Only A existed in the original so B is obviously newer */
272 else if (0 <= (*b
)->old_num
)
273 /* The other way around. */
276 /* then it does not matter but at least keep the comparison stable */
277 if ((*a
)->p
== (*b
)->p
)
279 else if ((*a
)->p
< (*b
)->p
)
285 static void init_pack_info(const char *infofile
, int force
)
287 struct packed_git
*p
;
292 for (p
= get_all_packs(the_repository
); p
; p
= p
->next
) {
293 /* we ignore things on alternate path since they are
294 * not available to the pullers in general.
296 if (!p
->pack_local
|| !file_exists(p
->pack_name
))
300 ALLOC_GROW(info
, num_pack
, alloc
);
301 CALLOC_ARRAY(info
[i
], 1);
303 info
[i
]->old_num
= -1;
306 if (infofile
&& !force
)
307 stale
= read_pack_info_file(infofile
);
311 for (i
= 0; i
< num_pack
; i
++)
313 info
[i
]->old_num
= -1;
316 QSORT(info
, num_pack
, compare_info
);
317 for (i
= 0; i
< num_pack
; i
++)
318 info
[i
]->new_num
= i
;
321 static void free_pack_info(void)
324 for (i
= 0; i
< num_pack
; i
++)
329 static int write_pack_info_file(struct update_info_ctx
*uic
)
332 for (i
= 0; i
< num_pack
; i
++) {
333 if (uic_printf(uic
, "P %s\n", pack_basename(info
[i
]->p
)) < 0)
336 if (uic_printf(uic
, "\n") < 0)
341 static int update_info_packs(int force
)
343 char *infofile
= mkpathdup("%s/info/packs", get_object_directory());
346 init_pack_info(infofile
, force
);
347 ret
= update_info_file(infofile
, write_pack_info_file
, force
);
354 int update_server_info(int force
)
356 /* We would add more dumb-server support files later,
357 * including index of available pack files and their
358 * intended audiences.
362 errs
= errs
| update_info_refs(force
);
363 errs
= errs
| update_info_packs(force
);
365 /* remove leftover rev-cache file if there is any */
366 unlink_or_warn(git_path("info/rev-cache"));