]> git.ipfire.org Git - thirdparty/git.git/blame - entry.h
sequencer: finish parsing the todo list despite an invalid first line
[thirdparty/git.git] / entry.h
CommitLineData
d052cc03
MT
1#ifndef ENTRY_H
2#define ENTRY_H
3
4#include "cache.h"
5#include "convert.h"
6
7struct checkout {
8 struct index_state *istate;
9 const char *base_dir;
10 int base_dir_len;
4002ec3d 11 const char *super_prefix;
d052cc03
MT
12 struct delayed_checkout *delayed_checkout;
13 struct checkout_metadata meta;
14 unsigned force:1,
15 quiet:1,
16 not_new:1,
17 clone:1,
18 refresh_cache:1;
19};
f69a6e4f 20#define CHECKOUT_INIT { .base_dir = "" }
d052cc03
MT
21
22#define TEMPORARY_FILENAME_LENGTH 25
23/*
24 * Write the contents from ce out to the working tree.
25 *
26 * When topath[] is not NULL, instead of writing to the working tree
27 * file named by ce, a temporary file is created by this function and
28 * its name is returned in topath[], which must be able to hold at
29 * least TEMPORARY_FILENAME_LENGTH bytes long.
ae22751f
MT
30 *
31 * With checkout_entry_ca(), callers can optionally pass a preloaded
32 * conv_attrs struct (to avoid reloading it), when ce refers to a
33 * regular file. If ca is NULL, the attributes will be loaded
34 * internally when (and if) needed.
d052cc03 35 */
ae22751f
MT
36int checkout_entry_ca(struct cache_entry *ce, struct conv_attrs *ca,
37 const struct checkout *state, char *topath,
38 int *nr_checkouts);
39static inline int checkout_entry(struct cache_entry *ce,
40 const struct checkout *state, char *topath,
41 int *nr_checkouts)
42{
43 return checkout_entry_ca(ce, NULL, state, topath, nr_checkouts);
44}
d052cc03
MT
45
46void enable_delayed_checkout(struct checkout *state);
611c7785 47int finish_delayed_checkout(struct checkout *state, int show_progress);
d052cc03
MT
48
49/*
50 * Unlink the last component and schedule the leading directories for
51 * removal, such that empty directories get removed.
4002ec3d
ÆAB
52 *
53 * The "super_prefix" is either NULL, or the "--super-prefix" passed
54 * down from "read-tree" et al.
d052cc03 55 */
4002ec3d 56void unlink_entry(const struct cache_entry *ce, const char *super_prefix);
d052cc03 57
e9aa762c 58void *read_blob_entry(const struct cache_entry *ce, size_t *size);
49cfd903 59int fstat_checkout_output(int fd, const struct checkout *state, struct stat *st);
584a0d13
MT
60void update_ce_after_write(const struct checkout *state, struct cache_entry *ce,
61 struct stat *st);
49cfd903 62
d052cc03 63#endif /* ENTRY_H */