123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- #ifndef PHP_ZIP_H
- #define PHP_ZIP_H
- extern zend_module_entry zip_module_entry;
- #define phpext_zip_ptr &zip_module_entry
- #ifdef ZTS
- #include "TSRM.h"
- #endif
- #if defined(HAVE_LIBZIP)
- #include <zip.h>
- #else
- #include "lib/zip.h"
- #endif
- #ifndef ZIP_OVERWRITE
- #define ZIP_OVERWRITE ZIP_TRUNCATE
- #endif
- #define PHP_ZIP_VERSION "1.12.5"
- #if ((PHP_MAJOR_VERSION >= 5 && PHP_MINOR_VERSION >= 2) || PHP_MAJOR_VERSION >= 6)
- # define PHP_ZIP_USE_OO 1
- #endif
- #ifndef Z_SET_REFCOUNT_P
- # if PHP_MAJOR_VERSION < 6 && (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION < 3)
- # define Z_SET_REFCOUNT_P(pz, rc) pz->refcount = rc
- # define Z_UNSET_ISREF_P(pz) pz->is_ref = 0
- # endif
- #endif
- #if PHP_API_VERSION < 20100412
- # define ZIP_OPENBASEDIR_CHECKPATH(filename) \
- (PG(safe_mode) && (!php_checkuid(filename, NULL, CHECKUID_CHECK_FILE_AND_DIR))) || php_check_open_basedir(filename TSRMLS_CC)
- #else
- #define ZIP_OPENBASEDIR_CHECKPATH(filename) \
- php_check_open_basedir(filename TSRMLS_CC)
- #endif
- typedef struct _ze_zip_rsrc {
- struct zip *za;
- int index_current;
- int num_files;
- } zip_rsrc;
- typedef zip_rsrc * zip_rsrc_ptr;
- typedef struct _ze_zip_read_rsrc {
- struct zip_file *zf;
- struct zip_stat sb;
- } zip_read_rsrc;
- #ifdef PHP_ZIP_USE_OO
- #define ZIPARCHIVE_ME(name, arg_info, flags) {#name, c_ziparchive_ ##name, arg_info,(zend_uint) (sizeof(arg_info)/sizeof(struct _zend_arg_info)-1), flags },
- #define ZIPARCHIVE_METHOD(name) ZEND_NAMED_FUNCTION(c_ziparchive_ ##name)
- typedef struct _ze_zip_object {
- zend_object zo;
- struct zip *za;
- int buffers_cnt;
- char **buffers;
- HashTable *prop_handler;
- char *filename;
- int filename_len;
- } ze_zip_object;
- php_stream *php_stream_zip_opener(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
- php_stream *php_stream_zip_open(const char *filename, const char *path, const char *mode STREAMS_DC TSRMLS_DC);
- extern php_stream_wrapper php_stream_zip_wrapper;
- #endif
- #endif
|