]>
Commit | Line | Data |
---|---|---|
4df096a5 FBH |
1 | #ifndef ARCHIVE_H |
2 | #define ARCHIVE_H | |
3 | ||
f3e743a0 NTND |
4 | #include "pathspec.h" |
5 | ||
4df096a5 FBH |
6 | struct archiver_args { |
7 | const char *base; | |
d53fe818 | 8 | size_t baselen; |
4df096a5 FBH |
9 | struct tree *tree; |
10 | const unsigned char *commit_sha1; | |
8460b2fc | 11 | const struct commit *commit; |
4df096a5 | 12 | time_t time; |
f3e743a0 | 13 | struct pathspec pathspec; |
e0ffb248 | 14 | unsigned int verbose : 1; |
ba053ea9 | 15 | unsigned int worktree_attributes : 1; |
9cb513b7 | 16 | unsigned int convert : 1; |
3a176c6c | 17 | int compression_level; |
4df096a5 FBH |
18 | }; |
19 | ||
13e0f88d | 20 | #define ARCHIVER_WANT_COMPRESSION_LEVELS 1 |
7b97730b | 21 | #define ARCHIVER_REMOTE 2 |
13e0f88d JK |
22 | struct archiver { |
23 | const char *name; | |
4d7c9898 | 24 | int (*write_archive)(const struct archiver *, struct archiver_args *); |
13e0f88d | 25 | unsigned flags; |
4d7c9898 | 26 | void *data; |
13e0f88d JK |
27 | }; |
28 | extern void register_archiver(struct archiver *); | |
4df096a5 | 29 | |
13e0f88d JK |
30 | extern void init_tar_archiver(void); |
31 | extern void init_zip_archiver(void); | |
562e25ab | 32 | |
9cb513b7 NTND |
33 | typedef int (*write_archive_entry_fn_t)(struct archiver_args *args, |
34 | const unsigned char *sha1, | |
35 | const char *path, size_t pathlen, | |
36 | unsigned int mode); | |
4df096a5 | 37 | |
562e25ab | 38 | extern int write_archive_entries(struct archiver_args *args, write_archive_entry_fn_t write_entry); |
7b97730b | 39 | extern int write_archive(int argc, const char **argv, const char *prefix, int setup_prefix, const char *name_hint, int remote); |
56baa61d JK |
40 | |
41 | const char *archive_format_from_filename(const char *filename); | |
9cb513b7 NTND |
42 | extern void *sha1_file_to_archive(const struct archiver_args *args, |
43 | const char *path, const unsigned char *sha1, | |
44 | unsigned int mode, enum object_type *type, | |
45 | unsigned long *sizep); | |
562e25ab | 46 | |
4df096a5 | 47 | #endif /* ARCHIVE_H */ |