]> granicus.if.org Git - zziplib/blob - zzip/lib.h
indentation
[zziplib] / zzip / lib.h
1 /*
2  * Author: 
3  *      Guido Draheim <guidod@gmx.de>
4  *      Tomi Ollila <Tomi.Ollila@iki.fi>
5  *
6  * Copyright (c) 1999,2000,2001,2002,2003 Guido Draheim
7  *          All rights reserved
8  *          use under the restrictions of the
9  *          Lesser GNU General Public License
10  *          or alternatively the restrictions 
11  *          of the Mozilla Public License 1.1
12  *
13  * This is the private header containing definitions that are not
14  * use by a libzzip user application. Writing an extension lib that
15  * uses libzzip will still want to include this. The extension
16  * write should make way to have the ISO C9X integer types defined.
17  */
18 #ifndef _ZZIP_LIB_H /* zzip.h */
19 #define _ZZIP_LIB_H
20
21 #include <zzip/zzip.h>
22 #include <zzip/plugin.h>
23 #include <zzip/stdint.h>
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 /*
30  * this structure cannot be wildly enlarged... (see zzip-zip.c)
31  */
32 struct zzip_dir_hdr
33 {
34     uint32_t    d_usize;        /* uncompressed size */
35     uint32_t    d_csize;        /* compressed size */
36     uint32_t    d_crc32;        /* the adler32-checksum */
37     uint32_t    d_off;          /* offset of file in zipfile */
38     uint16_t    d_reclen;       /* next dir_hdr structure offset */
39     uint16_t    d_namlen;       /* explicit namelen of d_name */
40     uint8_t     d_compr;        /* the compression type, 0 = store, 8 = inflate */
41     char        d_name[1];      /* the actual name of the entry, may contain DIRSEPs */
42 };
43 #define _ZZIP_DIRENT_HAVE_D_NAMLEN
44 #define _ZZIP_DIRENT_HAVE_D_OFF
45 #define _ZZIP_DIRENT_HAVE_D_RECLEN
46
47 /*
48  * you shall not use this struct anywhere else than in zziplib sources.
49  */
50 struct zzip_dir
51 {
52     int fd;
53     int errcode; /* zzip_error_t */
54     long refcount;
55     struct { /* reduce a lot of alloc/deallocations by caching these: */
56         int * volatile locked;
57         struct zzip_file * volatile fp;  
58         char * volatile buf32k; 
59     } cache;
60     struct zzip_dir_hdr * hdr0;  /* zfi; */
61     struct zzip_dir_hdr * hdr;   /* zdp; directory pointer, for dirent stuff */
62     struct zzip_file * currentfp; /* last fp used... */
63     struct zzip_dirent dirent;
64     void*  realdir;               /* e.g. DIR* from posix dirent.h */
65     char*  realname;
66     zzip_strings_t* fileext;      /* list of fileext to test for */
67     zzip_plugin_io_t io;          /* vtable for io routines */
68 }; 
69
70 #define ZZIP_32K 32768
71
72 /* try to open a zip-basename with default_fileext */
73 int      __zzip_try_open (zzip_char_t* filename, int filemode,
74                           zzip_strings_t* ext, zzip_plugin_io_t io);
75
76 ZZIP_DIR * 
77 zzip_dir_fdopen(int fd, zzip_error_t * errcode_p);
78
79 ZZIP_DIR* 
80 zzip_dir_fdopen_ext_io(int fd, zzip_error_t * errorcode_p,
81                        zzip_strings_t* ext, const zzip_plugin_io_t io);
82
83 ZZIP_DIR* /*depracated*/
84 zzip_dir_alloc_ext_io (zzip_strings_t* ext, const zzip_plugin_io_t io);
85
86 #ifdef __cplusplus
87 }
88 #endif
89 #endif /* _ZZIP_H */
90