/[osn-commons]/trunk/uar/uar.h
ViewVC logotype

Diff of /trunk/uar/uar.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 33 by rakinar2, Thu Aug 8 16:57:39 2024 UTC revision 40 by rakinar2, Sat Aug 10 14:44:20 2024 UTC
# Line 12  struct uar_file; Line 12  struct uar_file;
12  enum uar_error  enum uar_error
13  {  {
14      UAR_SUCCESS,      UAR_SUCCESS,
15        UAR_INVALID_ARCHIVE,
16        UAR_UNSUPPORTED_VERSION,
17      UAR_INVALID_MAGIC,      UAR_INVALID_MAGIC,
18      UAR_INVALID_FILE,      UAR_INVALID_FILE,
19      UAR_IO_ERROR,      UAR_IO_ERROR,
# Line 20  enum uar_error Line 22  enum uar_error
22      UAR_INVALID_OPERATION,      UAR_INVALID_OPERATION,
23      UAR_INVALID_PATH,      UAR_INVALID_PATH,
24      UAR_SYSTEM_ERROR,      UAR_SYSTEM_ERROR,
25      UAR_SYSCALL_ERROR,      UAR_SYSCALL_ERROR
26  };  };
27    
28  enum uar_file_type  enum uar_file_type
# Line 44  typedef bool (*uar_create_callback_t) ( Line 46  typedef bool (*uar_create_callback_t) (
46      struct uar_archive *uar, struct uar_file *file, const char *uar_name,      struct uar_archive *uar, struct uar_file *file, const char *uar_name,
47      const char *fs_name, enum uar_error_level level, const char *message);      const char *fs_name, enum uar_error_level level, const char *message);
48    
49    typedef bool (*uar_extract_callback_t) (
50        struct uar_archive *uar, struct uar_file *file, const char *uar_name,
51        const char *fs_name, enum uar_error_level level, const char *message);
52    
53  void uar_set_create_callback (struct uar_archive *uar,  void uar_set_create_callback (struct uar_archive *uar,
54                                uar_create_callback_t callback);                                uar_create_callback_t callback);
55    void uar_set_extract_callback (struct uar_archive *uar,
56                                   uar_extract_callback_t callback);
57    bool uar_stream_extract (struct uar_archive *uar, const char *dest);
58    
59  struct uar_archive *uar_create (void);  struct uar_archive *uar_create (void);
60  struct uar_archive *uar_open (const char *filename);  struct uar_archive *uar_stream_open (const char *filename);
61  struct uar_archive *uar_create_stream (void);  struct uar_archive *uar_stream_create (void);
62  void uar_close (struct uar_archive *uar);  void uar_close (struct uar_archive *uar);
63    
64  struct uar_file *uar_stream_add_file (struct uar_archive *uar,  struct uar_file *uar_stream_add_file (struct uar_archive *uar,
# Line 62  bool uar_has_error (const struct uar_arc Line 71  bool uar_has_error (const struct uar_arc
71  const char *uar_strerror (const struct uar_archive *restrict uar);  const char *uar_strerror (const struct uar_archive *restrict uar);
72  uint64_t uar_get_file_count (const struct uar_archive *restrict uar);  uint64_t uar_get_file_count (const struct uar_archive *restrict uar);
73    
74  struct uar_file *uar_add_file (struct uar_archive *restrict uar,  bool uar_stream_iterate (struct uar_archive *uar,
75                                 const char *name, const char *path,                           bool (*callback) (struct uar_file *file, void *data),
76                                 struct stat *stinfo);                           void *data);
 struct uar_file *  
 uar_add_dir (struct uar_archive *uar, const char *name, const char *path,  
              bool (*callback) (struct uar_file *file, const char *fullname,  
                                const char *fullpath));  
 bool uar_extract (struct uar_archive *uar, const char *cwd,  
                   bool (*callback) (struct uar_file *file));  
 bool uar_write (struct uar_archive *uar, const char *filename);  
 bool uar_iterate (struct uar_archive *uar,  
                   bool (*callback) (struct uar_file *file, void *data),  
                   void *data);  
77    
78  struct uar_file *uar_file_create (const char *name, uint64_t namelen,  struct uar_file *uar_file_create (const char *name, uint64_t namelen,
79                                    uint64_t size, uint32_t offset);                                    uint64_t size, uint32_t offset);
# Line 100  mode_t uar_file_get_mode (const struct u Line 99  mode_t uar_file_get_mode (const struct u
99  void uar_file_set_mode (struct uar_file *file, mode_t mode);  void uar_file_set_mode (struct uar_file *file, mode_t mode);
100  uint64_t uar_file_get_namelen (const struct uar_file *file);  uint64_t uar_file_get_namelen (const struct uar_file *file);
101  time_t uar_file_get_mtime (const struct uar_file *file);  time_t uar_file_get_mtime (const struct uar_file *file);
102    uid_t uar_file_get_uid (const struct uar_file *file);
103    gid_t uar_file_get_gid (const struct uar_file *file);
104  const char *uar_get_error_file (const struct uar_archive *uar);  const char *uar_get_error_file (const struct uar_archive *uar);
105    
106  #ifdef UAR_PRINT_VERBOSE_IMPL_INFO  #ifdef UAR_PRINT_VERBOSE_IMPL_INFO

Legend:
Removed from v.33  
changed lines
  Added in v.40

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26