]> wimlib.net Git - wimlib/blob - include/wimlib/write.h
Limit exposure of dentry and inode creation
[wimlib] / include / wimlib / write.h
1 #ifndef _WIMLIB_WRITE_H
2 #define _WIMLIB_WRITE_H
3
4 #include "wimlib.h"
5 #include "wimlib/types.h"
6
7 /* Internal use only */
8 #define WIMLIB_WRITE_FLAG_NO_BLOB_TABLE                 0x80000000
9 #define WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML          0x40000000
10 #define WIMLIB_WRITE_FLAG_HEADER_AT_END                 0x20000000
11 #define WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR               0x10000000
12 #define WIMLIB_WRITE_FLAG_USE_EXISTING_TOTALBYTES       0x08000000
13 #define WIMLIB_WRITE_FLAG_NO_METADATA                   0x04000000
14 #define WIMLIB_WRITE_FLAG_OVERWRITE                     0x02000000
15
16 /* Keep in sync with wimlib.h  */
17 #define WIMLIB_WRITE_MASK_PUBLIC (                        \
18         WIMLIB_WRITE_FLAG_CHECK_INTEGRITY               | \
19         WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY            | \
20         WIMLIB_WRITE_FLAG_PIPABLE                       | \
21         WIMLIB_WRITE_FLAG_NOT_PIPABLE                   | \
22         WIMLIB_WRITE_FLAG_RECOMPRESS                    | \
23         WIMLIB_WRITE_FLAG_FSYNC                         | \
24         WIMLIB_WRITE_FLAG_REBUILD                       | \
25         WIMLIB_WRITE_FLAG_SOFT_DELETE                   | \
26         WIMLIB_WRITE_FLAG_IGNORE_READONLY_FLAG          | \
27         WIMLIB_WRITE_FLAG_SKIP_EXTERNAL_WIMS            | \
28         WIMLIB_WRITE_FLAG_STREAMS_OK                    | \
29         WIMLIB_WRITE_FLAG_RETAIN_GUID                   | \
30         WIMLIB_WRITE_FLAG_SOLID                         | \
31         WIMLIB_WRITE_FLAG_SEND_DONE_WITH_FILE_MESSAGES  | \
32         WIMLIB_WRITE_FLAG_NO_SOLID_SORT)
33
34 #if defined(HAVE_SYS_FILE_H) && defined(HAVE_FLOCK)
35 extern int
36 lock_wim_for_append(WIMStruct *wim);
37 extern void
38 unlock_wim_for_append(WIMStruct *wim);
39 #else
40 static inline int
41 lock_wim_for_append(WIMStruct *wim)
42 {
43         return 0;
44 }
45 static inline void
46 unlock_wim_for_append(WIMStruct *wim)
47 {
48 }
49 #endif
50
51 struct filedes;
52 struct list_head;
53 struct wim_reshdr;
54
55 int
56 write_wim_part(WIMStruct *wim,
57                const void *path_or_fd,
58                int image,
59                int write_flags,
60                unsigned num_threads,
61                unsigned part_number,
62                unsigned total_parts,
63                struct list_head *blob_list_override,
64                const u8 *guid);
65
66 int
67 write_wim_resource_from_buffer(const void *buf, size_t buf_size,
68                                int reshdr_flags, struct filedes *out_fd,
69                                int out_ctype,
70                                u32 out_chunk_size,
71                                struct wim_reshdr *out_reshdr,
72                                u8 *hash,
73                                int write_resource_flags);
74
75 #endif /* _WIMLIB_WRITE_H */