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 static int uic_printf(struct update_info_ctx
*uic
, const char *fmt
, ...)
37 if (uic_is_stale(uic
)) {
38 ret
= vfprintf(uic
->cur_fp
, fmt
, ap
);
41 struct strbuf
*cur
= &uic
->cur_sb
;
42 struct strbuf
*old
= &uic
->old_sb
;
45 strbuf_vinsertf(cur
, 0, fmt
, ap
);
48 strbuf_grow(old
, cur
->len
);
49 r
= fread(old
->buf
, 1, cur
->len
, uic
->old_fp
);
50 if (r
!= cur
->len
|| memcmp(old
->buf
, cur
->buf
, r
))
53 if (fwrite(cur
->buf
, 1, cur
->len
, uic
->cur_fp
) == cur
->len
)
63 * Create the file "path" by writing to a temporary file and renaming
64 * it into place. The contents of the file come from "generate", which
65 * should return non-zero if it encounters an error.
67 static int update_info_file(char *path
,
68 int (*generate
)(struct update_info_ctx
*),
71 char *tmp
= mkpathdup("%s_XXXXXX", path
);
75 struct update_info_ctx uic
= {
78 .cur_sb
= STRBUF_INIT
,
82 safe_create_leading_directories(path
);
83 fd
= git_mkstemp_mode(tmp
, 0666);
86 to_close
= uic
.cur_fp
= fdopen(fd
, "w");
91 /* no problem on ENOENT and old_fp == NULL, it's stale, now */
93 uic
.old_fp
= fopen_or_warn(path
, "r");
96 * uic_printf will compare incremental comparison against old_fp
97 * and mark uic as stale if needed
103 /* new file may be shorter than the old one, check here */
104 if (!uic_is_stale(&uic
)) {
106 long new_len
= ftell(uic
.cur_fp
);
107 int old_fd
= fileno(uic
.old_fp
);
113 if (fstat(old_fd
, &st
) || (st
.st_size
!= (size_t)new_len
))
114 uic_mark_stale(&uic
);
118 if (fclose(to_close
))
121 if (uic_is_stale(&uic
)) {
122 if (adjust_shared_perm(tmp
) < 0)
124 if (rename(tmp
, path
) < 0)
133 error_errno("unable to update %s", path
);
143 strbuf_release(&uic
.old_sb
);
144 strbuf_release(&uic
.cur_sb
);
148 static int add_info_ref(const char *path
, const struct object_id
*oid
,
149 int flag
, void *cb_data
)
151 struct update_info_ctx
*uic
= cb_data
;
152 struct object
*o
= parse_object(the_repository
, oid
);
156 if (uic_printf(uic
, "%s %s\n", oid_to_hex(oid
), path
) < 0)
159 if (o
->type
== OBJ_TAG
) {
160 o
= deref_tag(the_repository
, o
, path
, 0);
162 if (uic_printf(uic
, "%s %s^{}\n",
163 oid_to_hex(&o
->oid
), path
) < 0)
169 static int generate_info_refs(struct update_info_ctx
*uic
)
171 return for_each_ref(add_info_ref
, uic
);
174 static int update_info_refs(int force
)
176 char *path
= git_pathdup("info/refs");
177 int ret
= update_info_file(path
, generate_info_refs
, force
);
183 static struct pack_info
{
184 struct packed_git
*p
;
190 static struct pack_info
*find_pack_by_name(const char *name
)
193 for (i
= 0; i
< num_pack
; i
++) {
194 struct packed_git
*p
= info
[i
]->p
;
195 if (!strcmp(pack_basename(p
), name
))
201 /* Returns non-zero when we detect that the info in the
202 * old file is useless.
204 static int parse_pack_def(const char *packname
, int old_cnt
)
206 struct pack_info
*i
= find_pack_by_name(packname
);
208 i
->old_num
= old_cnt
;
212 /* The file describes a pack that is no longer here */
217 /* Returns non-zero when we detect that the info in the
218 * old file is useless.
220 static int read_pack_info_file(const char *infofile
)
223 struct strbuf line
= STRBUF_INIT
;
227 fp
= fopen_or_warn(infofile
, "r");
229 return 1; /* nonexistent is not an error. */
231 while (strbuf_getline(&line
, fp
) != EOF
) {
237 if (skip_prefix(line
.buf
, "P ", &arg
)) {
239 if (parse_pack_def(arg
, old_cnt
++))
241 } else if (line
.buf
[0] == 'D') {
242 /* we used to emit D but that was misguided. */
244 } else if (line
.buf
[0] == 'T') {
245 /* we used to emit T but nobody uses it. */
248 error("unrecognized: %s", line
.buf
);
254 strbuf_release(&line
);
259 static int compare_info(const void *a_
, const void *b_
)
261 struct pack_info
*const *a
= a_
;
262 struct pack_info
*const *b
= b_
;
264 if (0 <= (*a
)->old_num
&& 0 <= (*b
)->old_num
)
265 /* Keep the order in the original */
266 return (*a
)->old_num
- (*b
)->old_num
;
267 else if (0 <= (*a
)->old_num
)
268 /* Only A existed in the original so B is obviously newer */
270 else if (0 <= (*b
)->old_num
)
271 /* The other way around. */
274 /* then it does not matter but at least keep the comparison stable */
275 if ((*a
)->p
== (*b
)->p
)
277 else if ((*a
)->p
< (*b
)->p
)
283 static void init_pack_info(const char *infofile
, int force
)
285 struct packed_git
*p
;
290 for (p
= get_all_packs(the_repository
); p
; p
= p
->next
) {
291 /* we ignore things on alternate path since they are
292 * not available to the pullers in general.
294 if (!p
->pack_local
|| !file_exists(p
->pack_name
))
298 ALLOC_GROW(info
, num_pack
, alloc
);
299 info
[i
] = xcalloc(1, sizeof(struct pack_info
));
301 info
[i
]->old_num
= -1;
304 if (infofile
&& !force
)
305 stale
= read_pack_info_file(infofile
);
309 for (i
= 0; i
< num_pack
; i
++)
311 info
[i
]->old_num
= -1;
314 QSORT(info
, num_pack
, compare_info
);
315 for (i
= 0; i
< num_pack
; i
++)
316 info
[i
]->new_num
= i
;
319 static void free_pack_info(void)
322 for (i
= 0; i
< num_pack
; i
++)
327 static int write_pack_info_file(struct update_info_ctx
*uic
)
330 for (i
= 0; i
< num_pack
; i
++) {
331 if (uic_printf(uic
, "P %s\n", pack_basename(info
[i
]->p
)) < 0)
334 if (uic_printf(uic
, "\n") < 0)
339 static int update_info_packs(int force
)
341 char *infofile
= mkpathdup("%s/info/packs", get_object_directory());
344 init_pack_info(infofile
, force
);
345 ret
= update_info_file(infofile
, write_pack_info_file
, force
);
352 int update_server_info(int force
)
354 /* We would add more dumb-server support files later,
355 * including index of available pack files and their
356 * intended audiences.
360 errs
= errs
| update_info_refs(force
);
361 errs
= errs
| update_info_packs(force
);
363 /* remove leftover rev-cache file if there is any */
364 unlink_or_warn(git_path("info/rev-cache"));