123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622 |
- #ifndef PHP_STREAMS_H
- #define PHP_STREAMS_H
- #ifdef HAVE_SYS_TIME_H
- #include <sys/time.h>
- #endif
- #include <sys/types.h>
- #include <sys/stat.h>
- #include "zend.h"
- #include "zend_stream.h"
- BEGIN_EXTERN_C()
- PHPAPI int php_file_le_stream(void);
- PHPAPI int php_file_le_pstream(void);
- PHPAPI int php_file_le_stream_filter(void);
- END_EXTERN_C()
- #if ZEND_DEBUG
- # define STREAMS_D int __php_stream_call_depth ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC
- # define STREAMS_C 0 ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC
- # define STREAMS_REL_C __php_stream_call_depth + 1 ZEND_FILE_LINE_CC, \
- __php_stream_call_depth ? __zend_orig_filename : __zend_filename, \
- __php_stream_call_depth ? __zend_orig_lineno : __zend_lineno
- # define STREAMS_DC , STREAMS_D
- # define STREAMS_CC , STREAMS_C
- # define STREAMS_REL_CC , STREAMS_REL_C
- #else
- # define STREAMS_D
- # define STREAMS_C
- # define STREAMS_REL_C
- # define STREAMS_DC
- # define STREAMS_CC
- # define STREAMS_REL_CC
- #endif
- #define php_stream_alloc_rel(ops, thisptr, persistent, mode) _php_stream_alloc((ops), (thisptr), (persistent), (mode) STREAMS_REL_CC)
- #define php_stream_copy_to_mem_rel(src, maxlen, persistent) _php_stream_copy_to_mem((src), (buf), (maxlen), (persistent) STREAMS_REL_CC)
- #define php_stream_fopen_rel(filename, mode, opened, options) _php_stream_fopen((filename), (mode), (opened), (options) STREAMS_REL_CC)
- #define php_stream_fopen_with_path_rel(filename, mode, path, opened, options) _php_stream_fopen_with_path((filename), (mode), (path), (opened), (options) STREAMS_REL_CC)
- #define php_stream_fopen_from_fd_rel(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), (persistent_id) STREAMS_REL_CC)
- #define php_stream_fopen_from_file_rel(file, mode) _php_stream_fopen_from_file((file), (mode) STREAMS_REL_CC)
- #define php_stream_fopen_from_pipe_rel(file, mode) _php_stream_fopen_from_pipe((file), (mode) STREAMS_REL_CC)
- #define php_stream_fopen_tmpfile_rel() _php_stream_fopen_tmpfile(0 STREAMS_REL_CC)
- #define php_stream_fopen_temporary_file_rel(dir, pfx, opened_path) _php_stream_fopen_temporary_file((dir), (pfx), (opened_path) STREAMS_REL_CC)
- #define php_stream_open_wrapper_rel(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), NULL STREAMS_REL_CC)
- #define php_stream_open_wrapper_ex_rel(path, mode, options, opened, context) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), (context) STREAMS_REL_CC)
- #define php_stream_make_seekable_rel(origstream, newstream, flags) _php_stream_make_seekable((origstream), (newstream), (flags) STREAMS_REL_CC)
- typedef struct _php_stream php_stream;
- typedef struct _php_stream_wrapper php_stream_wrapper;
- typedef struct _php_stream_context php_stream_context;
- typedef struct _php_stream_filter php_stream_filter;
- #include "streams/php_stream_context.h"
- #include "streams/php_stream_filter_api.h"
- typedef struct _php_stream_statbuf {
- zend_stat_t sb;
-
- } php_stream_statbuf;
- typedef struct _php_stream_dirent {
- char d_name[MAXPATHLEN];
- } php_stream_dirent;
- typedef struct _php_stream_ops {
-
- ssize_t (*write)(php_stream *stream, const char *buf, size_t count);
- ssize_t (*read)(php_stream *stream, char *buf, size_t count);
- int (*close)(php_stream *stream, int close_handle);
- int (*flush)(php_stream *stream);
- const char *label;
-
- int (*seek)(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);
- int (*cast)(php_stream *stream, int castas, void **ret);
- int (*stat)(php_stream *stream, php_stream_statbuf *ssb);
- int (*set_option)(php_stream *stream, int option, int value, void *ptrparam);
- } php_stream_ops;
- typedef struct _php_stream_wrapper_ops {
-
- php_stream *(*stream_opener)(php_stream_wrapper *wrapper, const char *filename, const char *mode,
- int options, zend_string **opened_path, php_stream_context *context STREAMS_DC);
-
- int (*stream_closer)(php_stream_wrapper *wrapper, php_stream *stream);
-
- int (*stream_stat)(php_stream_wrapper *wrapper, php_stream *stream, php_stream_statbuf *ssb);
-
- int (*url_stat)(php_stream_wrapper *wrapper, const char *url, int flags, php_stream_statbuf *ssb, php_stream_context *context);
-
- php_stream *(*dir_opener)(php_stream_wrapper *wrapper, const char *filename, const char *mode,
- int options, zend_string **opened_path, php_stream_context *context STREAMS_DC);
- const char *label;
-
- int (*unlink)(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context *context);
-
- int (*rename)(php_stream_wrapper *wrapper, const char *url_from, const char *url_to, int options, php_stream_context *context);
-
- int (*stream_mkdir)(php_stream_wrapper *wrapper, const char *url, int mode, int options, php_stream_context *context);
- int (*stream_rmdir)(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context *context);
-
- int (*stream_metadata)(php_stream_wrapper *wrapper, const char *url, int options, void *value, php_stream_context *context);
- } php_stream_wrapper_ops;
- struct _php_stream_wrapper {
- const php_stream_wrapper_ops *wops;
- void *abstract;
- int is_url;
- };
- #define PHP_STREAM_FLAG_NO_SEEK 0x1
- #define PHP_STREAM_FLAG_NO_BUFFER 0x2
- #define PHP_STREAM_FLAG_EOL_UNIX 0x0
- #define PHP_STREAM_FLAG_DETECT_EOL 0x4
- #define PHP_STREAM_FLAG_EOL_MAC 0x8
- #define PHP_STREAM_FLAG_AVOID_BLOCKING 0x10
- #define PHP_STREAM_FLAG_NO_CLOSE 0x20
- #define PHP_STREAM_FLAG_IS_DIR 0x40
- #define PHP_STREAM_FLAG_NO_FCLOSE 0x80
- #define PHP_STREAM_FLAG_SUPPRESS_ERRORS 0x100
- #define PHP_STREAM_FLAG_WAS_WRITTEN 0x80000000
- struct _php_stream {
- const php_stream_ops *ops;
- void *abstract;
- php_stream_filter_chain readfilters, writefilters;
- php_stream_wrapper *wrapper;
- void *wrapperthis;
- zval wrapperdata;
- uint8_t is_persistent:1;
- uint8_t in_free:2;
- uint8_t eof:1;
- uint8_t __exposed:1;
-
- uint8_t fclose_stdiocast:2;
- char mode[16];
- uint32_t flags;
- zend_resource *res;
- FILE *stdiocast;
- char *orig_path;
- zend_resource *ctx;
-
- zend_off_t position;
- unsigned char *readbuf;
- size_t readbuflen;
- zend_off_t readpos;
- zend_off_t writepos;
-
- size_t chunk_size;
- #if ZEND_DEBUG
- const char *open_filename;
- uint32_t open_lineno;
- #endif
- struct _php_stream *enclosing_stream;
- };
- #define PHP_STREAM_CONTEXT(stream) \
- ((php_stream_context*) ((stream)->ctx ? ((stream)->ctx->ptr) : NULL))
- #define PHP_STREAM_FCLOSE_NONE 0
- #define PHP_STREAM_FCLOSE_FDOPEN 1
- #define PHP_STREAM_FCLOSE_FOPENCOOKIE 2
- BEGIN_EXTERN_C()
- PHPAPI php_stream *_php_stream_alloc(const php_stream_ops *ops, void *abstract,
- const char *persistent_id, const char *mode STREAMS_DC);
- END_EXTERN_C()
- #define php_stream_alloc(ops, thisptr, persistent_id, mode) _php_stream_alloc((ops), (thisptr), (persistent_id), (mode) STREAMS_CC)
- #define php_stream_get_resource_id(stream) ((php_stream *)(stream))->res->handle
- #define php_stream_auto_cleanup(stream) { (stream)->__exposed = 1; }
- #define php_stream_to_zval(stream, zval) { ZVAL_RES(zval, (stream)->res); (stream)->__exposed = 1; }
- #define php_stream_from_zval(xstr, pzval) do { \
- if (((xstr) = (php_stream*)zend_fetch_resource2_ex((pzval), \
- "stream", php_file_le_stream(), php_file_le_pstream())) == NULL) { \
- return; \
- } \
- } while (0)
- #define php_stream_from_res(xstr, res) do { \
- if (((xstr) = (php_stream*)zend_fetch_resource2((res), \
- "stream", php_file_le_stream(), php_file_le_pstream())) == NULL) { \
- return; \
- } \
- } while (0)
- #define php_stream_from_res_no_verify(xstr, pzval) (xstr) = (php_stream*)zend_fetch_resource2((res), "stream", php_file_le_stream(), php_file_le_pstream())
- #define php_stream_from_zval_no_verify(xstr, pzval) (xstr) = (php_stream*)zend_fetch_resource2_ex((pzval), "stream", php_file_le_stream(), php_file_le_pstream())
- BEGIN_EXTERN_C()
- PHPAPI php_stream *php_stream_encloses(php_stream *enclosing, php_stream *enclosed);
- #define php_stream_free_enclosed(stream_enclosed, close_options) _php_stream_free_enclosed((stream_enclosed), (close_options))
- PHPAPI int _php_stream_free_enclosed(php_stream *stream_enclosed, int close_options);
- PHPAPI int php_stream_from_persistent_id(const char *persistent_id, php_stream **stream);
- #define PHP_STREAM_PERSISTENT_SUCCESS 0
- #define PHP_STREAM_PERSISTENT_FAILURE 1
- #define PHP_STREAM_PERSISTENT_NOT_EXIST 2
- #define PHP_STREAM_FREE_CALL_DTOR 1
- #define PHP_STREAM_FREE_RELEASE_STREAM 2
- #define PHP_STREAM_FREE_PRESERVE_HANDLE 4
- #define PHP_STREAM_FREE_RSRC_DTOR 8
- #define PHP_STREAM_FREE_PERSISTENT 16
- #define PHP_STREAM_FREE_IGNORE_ENCLOSING 32
- #define PHP_STREAM_FREE_KEEP_RSRC 64
- #define PHP_STREAM_FREE_CLOSE (PHP_STREAM_FREE_CALL_DTOR | PHP_STREAM_FREE_RELEASE_STREAM)
- #define PHP_STREAM_FREE_CLOSE_CASTED (PHP_STREAM_FREE_CLOSE | PHP_STREAM_FREE_PRESERVE_HANDLE)
- #define PHP_STREAM_FREE_CLOSE_PERSISTENT (PHP_STREAM_FREE_CLOSE | PHP_STREAM_FREE_PERSISTENT)
- PHPAPI int _php_stream_free(php_stream *stream, int close_options);
- #define php_stream_free(stream, close_options) _php_stream_free((stream), (close_options))
- #define php_stream_close(stream) _php_stream_free((stream), PHP_STREAM_FREE_CLOSE)
- #define php_stream_pclose(stream) _php_stream_free((stream), PHP_STREAM_FREE_CLOSE_PERSISTENT)
- PHPAPI int _php_stream_seek(php_stream *stream, zend_off_t offset, int whence);
- #define php_stream_rewind(stream) _php_stream_seek((stream), 0L, SEEK_SET)
- #define php_stream_seek(stream, offset, whence) _php_stream_seek((stream), (offset), (whence))
- PHPAPI zend_off_t _php_stream_tell(php_stream *stream);
- #define php_stream_tell(stream) _php_stream_tell((stream))
- PHPAPI ssize_t _php_stream_read(php_stream *stream, char *buf, size_t count);
- #define php_stream_read(stream, buf, count) _php_stream_read((stream), (buf), (count))
- PHPAPI zend_string *php_stream_read_to_str(php_stream *stream, size_t len);
- PHPAPI ssize_t _php_stream_write(php_stream *stream, const char *buf, size_t count);
- #define php_stream_write_string(stream, str) _php_stream_write(stream, str, strlen(str))
- #define php_stream_write(stream, buf, count) _php_stream_write(stream, (buf), (count))
- PHPAPI int _php_stream_fill_read_buffer(php_stream *stream, size_t size);
- #define php_stream_fill_read_buffer(stream, size) _php_stream_fill_read_buffer((stream), (size))
- PHPAPI ssize_t _php_stream_printf(php_stream *stream, const char *fmt, ...) PHP_ATTRIBUTE_FORMAT(printf, 2, 3);
- #define php_stream_printf _php_stream_printf
- PHPAPI int _php_stream_eof(php_stream *stream);
- #define php_stream_eof(stream) _php_stream_eof((stream))
- PHPAPI int _php_stream_getc(php_stream *stream);
- #define php_stream_getc(stream) _php_stream_getc((stream))
- PHPAPI int _php_stream_putc(php_stream *stream, int c);
- #define php_stream_putc(stream, c) _php_stream_putc((stream), (c))
- PHPAPI int _php_stream_flush(php_stream *stream, int closing);
- #define php_stream_flush(stream) _php_stream_flush((stream), 0)
- PHPAPI int _php_stream_sync(php_stream *stream, bool data_only);
- #define php_stream_sync(stream, d) _php_stream_sync((stream), (d))
- PHPAPI char *_php_stream_get_line(php_stream *stream, char *buf, size_t maxlen, size_t *returned_len);
- #define php_stream_gets(stream, buf, maxlen) _php_stream_get_line((stream), (buf), (maxlen), NULL)
- #define php_stream_get_line(stream, buf, maxlen, retlen) _php_stream_get_line((stream), (buf), (maxlen), (retlen))
- PHPAPI zend_string *php_stream_get_record(php_stream *stream, size_t maxlen, const char *delim, size_t delim_len);
- PHPAPI int _php_stream_puts(php_stream *stream, const char *buf);
- #define php_stream_puts(stream, buf) _php_stream_puts((stream), (buf))
- PHPAPI int _php_stream_stat(php_stream *stream, php_stream_statbuf *ssb);
- #define php_stream_stat(stream, ssb) _php_stream_stat((stream), (ssb))
- PHPAPI int _php_stream_stat_path(const char *path, int flags, php_stream_statbuf *ssb, php_stream_context *context);
- #define php_stream_stat_path(path, ssb) _php_stream_stat_path((path), 0, (ssb), NULL)
- #define php_stream_stat_path_ex(path, flags, ssb, context) _php_stream_stat_path((path), (flags), (ssb), (context))
- PHPAPI int _php_stream_mkdir(const char *path, int mode, int options, php_stream_context *context);
- #define php_stream_mkdir(path, mode, options, context) _php_stream_mkdir(path, mode, options, context)
- PHPAPI int _php_stream_rmdir(const char *path, int options, php_stream_context *context);
- #define php_stream_rmdir(path, options, context) _php_stream_rmdir(path, options, context)
- PHPAPI php_stream *_php_stream_opendir(const char *path, int options, php_stream_context *context STREAMS_DC);
- #define php_stream_opendir(path, options, context) _php_stream_opendir((path), (options), (context) STREAMS_CC)
- PHPAPI php_stream_dirent *_php_stream_readdir(php_stream *dirstream, php_stream_dirent *ent);
- #define php_stream_readdir(dirstream, dirent) _php_stream_readdir((dirstream), (dirent))
- #define php_stream_closedir(dirstream) php_stream_close((dirstream))
- #define php_stream_rewinddir(dirstream) php_stream_rewind((dirstream))
- PHPAPI int php_stream_dirent_alphasort(const zend_string **a, const zend_string **b);
- PHPAPI int php_stream_dirent_alphasortr(const zend_string **a, const zend_string **b);
- PHPAPI int _php_stream_scandir(const char *dirname, zend_string **namelist[], int flags, php_stream_context *context,
- int (*compare) (const zend_string **a, const zend_string **b));
- #define php_stream_scandir(dirname, namelist, context, compare) _php_stream_scandir((dirname), (namelist), 0, (context), (compare))
- PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam);
- #define php_stream_set_option(stream, option, value, ptrvalue) _php_stream_set_option((stream), (option), (value), (ptrvalue))
- #define php_stream_set_chunk_size(stream, size) _php_stream_set_option((stream), PHP_STREAM_OPTION_SET_CHUNK_SIZE, (size), NULL)
- END_EXTERN_C()
- #define PHP_STREAM_MKDIR_RECURSIVE 1
- #define PHP_STREAM_URL_STAT_LINK 1
- #define PHP_STREAM_URL_STAT_QUIET 2
- #define PHP_STREAM_URL_STAT_IGNORE_OPEN_BASEDIR 4
- #define PHP_STREAM_OPTION_BLOCKING 1
- #define PHP_STREAM_OPTION_READ_BUFFER 2
- #define PHP_STREAM_OPTION_WRITE_BUFFER 3
- #define PHP_STREAM_BUFFER_NONE 0
- #define PHP_STREAM_BUFFER_LINE 1
- #define PHP_STREAM_BUFFER_FULL 2
- #define PHP_STREAM_OPTION_READ_TIMEOUT 4
- #define PHP_STREAM_OPTION_SET_CHUNK_SIZE 5
- #define PHP_STREAM_OPTION_LOCKING 6
- #define PHP_STREAM_LOCK_SUPPORTED 1
- #define php_stream_supports_lock(stream) (_php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, 0, (void *) PHP_STREAM_LOCK_SUPPORTED) == 0 ? 1 : 0)
- #define php_stream_lock(stream, mode) _php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, (mode), (void *) NULL)
- #define PHP_STREAM_OPTION_XPORT_API 7
- #define PHP_STREAM_OPTION_CRYPTO_API 8
- #define PHP_STREAM_OPTION_MMAP_API 9
- #define PHP_STREAM_OPTION_TRUNCATE_API 10
- #define PHP_STREAM_TRUNCATE_SUPPORTED 0
- #define PHP_STREAM_TRUNCATE_SET_SIZE 1
- #define php_stream_truncate_supported(stream) (_php_stream_set_option((stream), PHP_STREAM_OPTION_TRUNCATE_API, PHP_STREAM_TRUNCATE_SUPPORTED, NULL) == PHP_STREAM_OPTION_RETURN_OK ? 1 : 0)
- BEGIN_EXTERN_C()
- PHPAPI int _php_stream_truncate_set_size(php_stream *stream, size_t newsize);
- #define php_stream_truncate_set_size(stream, size) _php_stream_truncate_set_size((stream), (size))
- END_EXTERN_C()
- #define PHP_STREAM_OPTION_META_DATA_API 11
- #define php_stream_populate_meta_data(stream, zv) (_php_stream_set_option((stream), PHP_STREAM_OPTION_META_DATA_API, 0, zv) == PHP_STREAM_OPTION_RETURN_OK ? 1 : 0)
- #define PHP_STREAM_OPTION_CHECK_LIVENESS 12
- #define PHP_STREAM_OPTION_PIPE_BLOCKING 13
- #define PHP_STREAM_OPTION_SYNC_API 14
- #define PHP_STREAM_SYNC_SUPPORTED 0
- #define PHP_STREAM_SYNC_FSYNC 1
- #define PHP_STREAM_SYNC_FDSYNC 2
- #define php_stream_sync_supported(stream) (_php_stream_set_option((stream), PHP_STREAM_OPTION_SYNC_API, PHP_STREAM_SYNC_SUPPORTED, NULL) == PHP_STREAM_OPTION_RETURN_OK ? 1 : 0)
- #define PHP_STREAM_OPTION_RETURN_OK 0
- #define PHP_STREAM_OPTION_RETURN_ERR -1
- #define PHP_STREAM_OPTION_RETURN_NOTIMPL -2
- #define PHP_STREAM_COPY_ALL ((size_t)-1)
- BEGIN_EXTERN_C()
- ZEND_ATTRIBUTE_DEPRECATED
- PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_DC);
- #define php_stream_copy_to_stream(src, dest, maxlen) _php_stream_copy_to_stream((src), (dest), (maxlen) STREAMS_CC)
- PHPAPI int _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, size_t *len STREAMS_DC);
- #define php_stream_copy_to_stream_ex(src, dest, maxlen, len) _php_stream_copy_to_stream_ex((src), (dest), (maxlen), (len) STREAMS_CC)
- PHPAPI zend_string *_php_stream_copy_to_mem(php_stream *src, size_t maxlen, int persistent STREAMS_DC);
- #define php_stream_copy_to_mem(src, maxlen, persistent) _php_stream_copy_to_mem((src), (maxlen), (persistent) STREAMS_CC)
- PHPAPI ssize_t _php_stream_passthru(php_stream * src STREAMS_DC);
- #define php_stream_passthru(stream) _php_stream_passthru((stream) STREAMS_CC)
- END_EXTERN_C()
- #include "streams/php_stream_transport.h"
- #include "streams/php_stream_plain_wrapper.h"
- #include "streams/php_stream_glob_wrapper.h"
- #include "streams/php_stream_userspace.h"
- #include "streams/php_stream_mmap.h"
- #define PHP_STREAM_AS_STDIO 0
- #define PHP_STREAM_AS_FD 1
- #define PHP_STREAM_AS_SOCKETD 2
- #define PHP_STREAM_AS_FD_FOR_SELECT 3
- #define PHP_STREAM_CAST_TRY_HARD 0x80000000
- #define PHP_STREAM_CAST_RELEASE 0x40000000
- #define PHP_STREAM_CAST_INTERNAL 0x20000000
- #define PHP_STREAM_CAST_MASK (PHP_STREAM_CAST_TRY_HARD | PHP_STREAM_CAST_RELEASE | PHP_STREAM_CAST_INTERNAL)
- BEGIN_EXTERN_C()
- PHPAPI int _php_stream_cast(php_stream *stream, int castas, void **ret, int show_err);
- END_EXTERN_C()
- #define php_stream_can_cast(stream, as) _php_stream_cast((stream), (as), NULL, 0)
- #define php_stream_cast(stream, as, ret, show_err) _php_stream_cast((stream), (as), (ret), (show_err))
- #define php_stream_is(stream, anops) ((stream)->ops == anops)
- #define PHP_STREAM_IS_STDIO &php_stream_stdio_ops
- #define php_stream_is_persistent(stream) (stream)->is_persistent
- #define IGNORE_PATH 0x00000000
- #define USE_PATH 0x00000001
- #define IGNORE_URL 0x00000002
- #define REPORT_ERRORS 0x00000008
- #define STREAM_MUST_SEEK 0x00000010
- #define STREAM_WILL_CAST 0x00000020
- #define STREAM_LOCATE_WRAPPERS_ONLY 0x00000040
- #define STREAM_OPEN_FOR_INCLUDE 0x00000080
- #define STREAM_USE_URL 0x00000100
- #define STREAM_ONLY_GET_HEADERS 0x00000200
- #define STREAM_DISABLE_OPEN_BASEDIR 0x00000400
- #define STREAM_OPEN_PERSISTENT 0x00000800
- #define STREAM_USE_GLOB_DIR_OPEN 0x00001000
- #define STREAM_DISABLE_URL_PROTECTION 0x00002000
- #define STREAM_ASSUME_REALPATH 0x00004000
- #define STREAM_USE_BLOCKING_PIPE 0x00008000
- #define STREAM_OPEN_FOR_ZEND_STREAM 0x00010000
- int php_init_stream_wrappers(int module_number);
- int php_shutdown_stream_wrappers(int module_number);
- void php_shutdown_stream_hashes(void);
- PHP_RSHUTDOWN_FUNCTION(streams);
- BEGIN_EXTERN_C()
- PHPAPI int php_register_url_stream_wrapper(const char *protocol, const php_stream_wrapper *wrapper);
- PHPAPI int php_unregister_url_stream_wrapper(const char *protocol);
- PHPAPI int php_register_url_stream_wrapper_volatile(zend_string *protocol, php_stream_wrapper *wrapper);
- PHPAPI int php_unregister_url_stream_wrapper_volatile(zend_string *protocol);
- PHPAPI php_stream *_php_stream_open_wrapper_ex(const char *path, const char *mode, int options, zend_string **opened_path, php_stream_context *context STREAMS_DC);
- PHPAPI php_stream_wrapper *php_stream_locate_url_wrapper(const char *path, const char **path_for_open, int options);
- PHPAPI const char *php_stream_locate_eol(php_stream *stream, zend_string *buf);
- #define php_stream_open_wrapper(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), NULL STREAMS_CC)
- #define php_stream_open_wrapper_ex(path, mode, options, opened, context) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), (context) STREAMS_CC)
- PHPAPI void php_stream_wrapper_log_error(const php_stream_wrapper *wrapper, int options, const char *fmt, ...) PHP_ATTRIBUTE_FORMAT(printf, 3, 4);
- #define PHP_STREAM_UNCHANGED 0
- #define PHP_STREAM_RELEASED 1
- #define PHP_STREAM_FAILED 2
- #define PHP_STREAM_CRITICAL 3
- #define PHP_STREAM_NO_PREFERENCE 0
- #define PHP_STREAM_PREFER_STDIO 1
- #define PHP_STREAM_FORCE_CONVERSION 2
- PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STREAMS_DC);
- #define php_stream_make_seekable(origstream, newstream, flags) _php_stream_make_seekable((origstream), (newstream), (flags) STREAMS_CC)
- PHPAPI HashTable *_php_stream_get_url_stream_wrappers_hash(void);
- #define php_stream_get_url_stream_wrappers_hash() _php_stream_get_url_stream_wrappers_hash()
- PHPAPI HashTable *php_stream_get_url_stream_wrappers_hash_global(void);
- PHPAPI HashTable *_php_get_stream_filters_hash(void);
- #define php_get_stream_filters_hash() _php_get_stream_filters_hash()
- PHPAPI HashTable *php_get_stream_filters_hash_global(void);
- extern const php_stream_wrapper_ops *php_stream_user_wrapper_ops;
- END_EXTERN_C()
- #endif
- #define PHP_STREAM_IS_URL 1
- #define PHP_STREAM_META_TOUCH 1
- #define PHP_STREAM_META_OWNER_NAME 2
- #define PHP_STREAM_META_OWNER 3
- #define PHP_STREAM_META_GROUP_NAME 4
- #define PHP_STREAM_META_GROUP 5
- #define PHP_STREAM_META_ACCESS 6
|