1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 #ifndef PHP_STREAMS_H
22 #define PHP_STREAMS_H
23
24 #ifdef HAVE_SYS_TIME_H
25 #include <sys/time.h>
26 #endif
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include "zend.h"
30 #include "zend_stream.h"
31
32 BEGIN_EXTERN_C()
33 PHPAPI int php_file_le_stream(void);
34 PHPAPI int php_file_le_pstream(void);
35 PHPAPI int php_file_le_stream_filter(void);
36 END_EXTERN_C()
37
38
39
40 #if ZEND_DEBUG
41
42
43 # define STREAMS_D int __php_stream_call_depth ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC
44 # define STREAMS_C 0 ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC
45 # define STREAMS_REL_C __php_stream_call_depth + 1 ZEND_FILE_LINE_CC, \
46 __php_stream_call_depth ? __zend_orig_filename : __zend_filename, \
47 __php_stream_call_depth ? __zend_orig_lineno : __zend_lineno
48
49 # define STREAMS_DC , STREAMS_D
50 # define STREAMS_CC , STREAMS_C
51 # define STREAMS_REL_CC , STREAMS_REL_C
52
53 #else
54 # define STREAMS_D
55 # define STREAMS_C
56 # define STREAMS_REL_C
57 # define STREAMS_DC
58 # define STREAMS_CC
59 # define STREAMS_REL_CC
60 #endif
61
62
63
64 #define php_stream_alloc_rel(ops, thisptr, persistent, mode) _php_stream_alloc((ops), (thisptr), (persistent), (mode) STREAMS_REL_CC)
65
66 #define php_stream_copy_to_mem_rel(src, maxlen, persistent) _php_stream_copy_to_mem((src), (buf), (maxlen), (persistent) STREAMS_REL_CC)
67
68 #define php_stream_fopen_rel(filename, mode, opened, options) _php_stream_fopen((filename), (mode), (opened), (options) STREAMS_REL_CC)
69
70 #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)
71
72 #define php_stream_fopen_from_fd_rel(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), (persistent_id) STREAMS_REL_CC)
73 #define php_stream_fopen_from_file_rel(file, mode) _php_stream_fopen_from_file((file), (mode) STREAMS_REL_CC)
74
75 #define php_stream_fopen_from_pipe_rel(file, mode) _php_stream_fopen_from_pipe((file), (mode) STREAMS_REL_CC)
76
77 #define php_stream_fopen_tmpfile_rel() _php_stream_fopen_tmpfile(0 STREAMS_REL_CC)
78
79 #define php_stream_fopen_temporary_file_rel(dir, pfx, opened_path) _php_stream_fopen_temporary_file((dir), (pfx), (opened_path) STREAMS_REL_CC)
80
81 #define php_stream_open_wrapper_rel(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), NULL STREAMS_REL_CC)
82 #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)
83
84 #define php_stream_make_seekable_rel(origstream, newstream, flags) _php_stream_make_seekable((origstream), (newstream), (flags) STREAMS_REL_CC)
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100 typedef struct _php_stream php_stream;
101 typedef struct _php_stream_wrapper php_stream_wrapper;
102 typedef struct _php_stream_context php_stream_context;
103 typedef struct _php_stream_filter php_stream_filter;
104
105 #include "streams/php_stream_context.h"
106 #include "streams/php_stream_filter_api.h"
107
108 typedef struct _php_stream_statbuf {
109 zend_stat_t sb;
110
111 } php_stream_statbuf;
112
113 typedef struct _php_stream_dirent {
114 char d_name[MAXPATHLEN];
115 } php_stream_dirent;
116
117
118 typedef struct _php_stream_ops {
119
120 size_t (*write)(php_stream *stream, const char *buf, size_t count);
121 size_t (*read)(php_stream *stream, char *buf, size_t count);
122 int (*close)(php_stream *stream, int close_handle);
123 int (*flush)(php_stream *stream);
124
125 const char *label;
126
127
128 int (*seek)(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);
129 int (*cast)(php_stream *stream, int castas, void **ret);
130 int (*stat)(php_stream *stream, php_stream_statbuf *ssb);
131 int (*set_option)(php_stream *stream, int option, int value, void *ptrparam);
132 } php_stream_ops;
133
134 typedef struct _php_stream_wrapper_ops {
135
136 php_stream *(*stream_opener)(php_stream_wrapper *wrapper, const char *filename, const char *mode,
137 int options, zend_string **opened_path, php_stream_context *context STREAMS_DC);
138
139 int (*stream_closer)(php_stream_wrapper *wrapper, php_stream *stream);
140
141 int (*stream_stat)(php_stream_wrapper *wrapper, php_stream *stream, php_stream_statbuf *ssb);
142
143 int (*url_stat)(php_stream_wrapper *wrapper, const char *url, int flags, php_stream_statbuf *ssb, php_stream_context *context);
144
145 php_stream *(*dir_opener)(php_stream_wrapper *wrapper, const char *filename, const char *mode,
146 int options, zend_string **opened_path, php_stream_context *context STREAMS_DC);
147
148 const char *label;
149
150
151 int (*unlink)(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context *context);
152
153
154 int (*rename)(php_stream_wrapper *wrapper, const char *url_from, const char *url_to, int options, php_stream_context *context);
155
156
157 int (*stream_mkdir)(php_stream_wrapper *wrapper, const char *url, int mode, int options, php_stream_context *context);
158 int (*stream_rmdir)(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context *context);
159
160 int (*stream_metadata)(php_stream_wrapper *wrapper, const char *url, int options, void *value, php_stream_context *context);
161 } php_stream_wrapper_ops;
162
163 struct _php_stream_wrapper {
164 php_stream_wrapper_ops *wops;
165 void *abstract;
166 int is_url;
167 };
168
169 #define PHP_STREAM_FLAG_NO_SEEK 0x1
170 #define PHP_STREAM_FLAG_NO_BUFFER 0x2
171
172 #define PHP_STREAM_FLAG_EOL_UNIX 0x0
173 #define PHP_STREAM_FLAG_DETECT_EOL 0x4
174 #define PHP_STREAM_FLAG_EOL_MAC 0x8
175
176
177
178
179
180 #define PHP_STREAM_FLAG_AVOID_BLOCKING 0x10
181
182 #define PHP_STREAM_FLAG_NO_CLOSE 0x20
183
184 #define PHP_STREAM_FLAG_IS_DIR 0x40
185
186 #define PHP_STREAM_FLAG_NO_FCLOSE 0x80
187
188 #define PHP_STREAM_FLAG_WAS_WRITTEN 0x80000000
189
190 struct _php_stream {
191 php_stream_ops *ops;
192 void *abstract;
193
194 php_stream_filter_chain readfilters, writefilters;
195
196 php_stream_wrapper *wrapper;
197 void *wrapperthis;
198 zval wrapperdata;
199
200 int fgetss_state;
201 int is_persistent;
202 char mode[16];
203 zend_resource *res;
204 int in_free;
205
206
207 int fclose_stdiocast;
208 FILE *stdiocast;
209 int __exposed;
210 char *orig_path;
211
212 zend_resource *ctx;
213 int flags;
214
215 int eof;
216
217
218 zend_off_t position;
219 unsigned char *readbuf;
220 size_t readbuflen;
221 zend_off_t readpos;
222 zend_off_t writepos;
223
224
225 size_t chunk_size;
226
227 #if ZEND_DEBUG
228 const char *open_filename;
229 uint open_lineno;
230 #endif
231
232 struct _php_stream *enclosing_stream;
233 };
234
235 #define PHP_STREAM_CONTEXT(stream) \
236 ((php_stream_context*) ((stream)->ctx ? ((stream)->ctx->ptr) : NULL))
237
238
239 #define PHP_STREAM_FCLOSE_NONE 0
240 #define PHP_STREAM_FCLOSE_FDOPEN 1
241 #define PHP_STREAM_FCLOSE_FOPENCOOKIE 2
242
243
244 BEGIN_EXTERN_C()
245 PHPAPI php_stream *_php_stream_alloc(php_stream_ops *ops, void *abstract,
246 const char *persistent_id, const char *mode STREAMS_DC);
247 END_EXTERN_C()
248 #define php_stream_alloc(ops, thisptr, persistent_id, mode) _php_stream_alloc((ops), (thisptr), (persistent_id), (mode) STREAMS_CC)
249
250 #define php_stream_get_resource_id(stream) ((php_stream *)(stream))->res->handle
251
252 #define php_stream_auto_cleanup(stream) { (stream)->__exposed++; }
253
254
255
256 #define php_stream_to_zval(stream, zval) { ZVAL_RES(zval, (stream)->res); (stream)->__exposed++; }
257
258 #define php_stream_from_zval(xstr, pzval) do { \
259 if (((xstr) = (php_stream*)zend_fetch_resource2_ex((pzval), \
260 "stream", php_file_le_stream(), php_file_le_pstream())) == NULL) { \
261 RETURN_FALSE; \
262 } \
263 } while (0)
264 #define php_stream_from_res(xstr, res) do { \
265 if (((xstr) = (php_stream*)zend_fetch_resource2((res), \
266 "stream", php_file_le_stream(), php_file_le_pstream())) == NULL) { \
267 RETURN_FALSE; \
268 } \
269 } while (0)
270 #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())
271 #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())
272
273 BEGIN_EXTERN_C()
274 PHPAPI php_stream *php_stream_encloses(php_stream *enclosing, php_stream *enclosed);
275 #define php_stream_free_enclosed(stream_enclosed, close_options) _php_stream_free_enclosed((stream_enclosed), (close_options))
276 PHPAPI int _php_stream_free_enclosed(php_stream *stream_enclosed, int close_options);
277
278 PHPAPI int php_stream_from_persistent_id(const char *persistent_id, php_stream **stream);
279 #define PHP_STREAM_PERSISTENT_SUCCESS 0
280 #define PHP_STREAM_PERSISTENT_FAILURE 1
281 #define PHP_STREAM_PERSISTENT_NOT_EXIST 2
282
283 #define PHP_STREAM_FREE_CALL_DTOR 1
284 #define PHP_STREAM_FREE_RELEASE_STREAM 2
285 #define PHP_STREAM_FREE_PRESERVE_HANDLE 4
286 #define PHP_STREAM_FREE_RSRC_DTOR 8
287 #define PHP_STREAM_FREE_PERSISTENT 16
288 #define PHP_STREAM_FREE_IGNORE_ENCLOSING 32
289 #define PHP_STREAM_FREE_KEEP_RSRC 64
290 #define PHP_STREAM_FREE_CLOSE (PHP_STREAM_FREE_CALL_DTOR | PHP_STREAM_FREE_RELEASE_STREAM)
291 #define PHP_STREAM_FREE_CLOSE_CASTED (PHP_STREAM_FREE_CLOSE | PHP_STREAM_FREE_PRESERVE_HANDLE)
292 #define PHP_STREAM_FREE_CLOSE_PERSISTENT (PHP_STREAM_FREE_CLOSE | PHP_STREAM_FREE_PERSISTENT)
293
294 PHPAPI int _php_stream_free(php_stream *stream, int close_options);
295 #define php_stream_free(stream, close_options) _php_stream_free((stream), (close_options))
296 #define php_stream_close(stream) _php_stream_free((stream), PHP_STREAM_FREE_CLOSE)
297 #define php_stream_pclose(stream) _php_stream_free((stream), PHP_STREAM_FREE_CLOSE_PERSISTENT)
298
299 PHPAPI int _php_stream_seek(php_stream *stream, zend_off_t offset, int whence);
300 #define php_stream_rewind(stream) _php_stream_seek((stream), 0L, SEEK_SET)
301 #define php_stream_seek(stream, offset, whence) _php_stream_seek((stream), (offset), (whence))
302
303 PHPAPI zend_off_t _php_stream_tell(php_stream *stream);
304 #define php_stream_tell(stream) _php_stream_tell((stream))
305
306 PHPAPI size_t _php_stream_read(php_stream *stream, char *buf, size_t count);
307 #define php_stream_read(stream, buf, count) _php_stream_read((stream), (buf), (count))
308
309 PHPAPI size_t _php_stream_write(php_stream *stream, const char *buf, size_t count);
310 #define php_stream_write_string(stream, str) _php_stream_write(stream, str, strlen(str))
311 #define php_stream_write(stream, buf, count) _php_stream_write(stream, (buf), (count))
312
313 PHPAPI void _php_stream_fill_read_buffer(php_stream *stream, size_t size);
314 #define php_stream_fill_read_buffer(stream, size) _php_stream_fill_read_buffer((stream), (size))
315
316 PHPAPI size_t _php_stream_printf(php_stream *stream, const char *fmt, ...) PHP_ATTRIBUTE_FORMAT(printf, 2, 3);
317
318
319 #define php_stream_printf _php_stream_printf
320
321 PHPAPI int _php_stream_eof(php_stream *stream);
322 #define php_stream_eof(stream) _php_stream_eof((stream))
323
324 PHPAPI int _php_stream_getc(php_stream *stream);
325 #define php_stream_getc(stream) _php_stream_getc((stream))
326
327 PHPAPI int _php_stream_putc(php_stream *stream, int c);
328 #define php_stream_putc(stream, c) _php_stream_putc((stream), (c))
329
330 PHPAPI int _php_stream_flush(php_stream *stream, int closing);
331 #define php_stream_flush(stream) _php_stream_flush((stream), 0)
332
333 PHPAPI char *_php_stream_get_line(php_stream *stream, char *buf, size_t maxlen, size_t *returned_len);
334 #define php_stream_gets(stream, buf, maxlen) _php_stream_get_line((stream), (buf), (maxlen), NULL)
335
336 #define php_stream_get_line(stream, buf, maxlen, retlen) _php_stream_get_line((stream), (buf), (maxlen), (retlen))
337 PHPAPI zend_string *php_stream_get_record(php_stream *stream, size_t maxlen, const char *delim, size_t delim_len);
338
339
340 PHPAPI int _php_stream_puts(php_stream *stream, const char *buf);
341 #define php_stream_puts(stream, buf) _php_stream_puts((stream), (buf))
342
343 PHPAPI int _php_stream_stat(php_stream *stream, php_stream_statbuf *ssb);
344 #define php_stream_stat(stream, ssb) _php_stream_stat((stream), (ssb))
345
346 PHPAPI int _php_stream_stat_path(const char *path, int flags, php_stream_statbuf *ssb, php_stream_context *context);
347 #define php_stream_stat_path(path, ssb) _php_stream_stat_path((path), 0, (ssb), NULL)
348 #define php_stream_stat_path_ex(path, flags, ssb, context) _php_stream_stat_path((path), (flags), (ssb), (context))
349
350 PHPAPI int _php_stream_mkdir(const char *path, int mode, int options, php_stream_context *context);
351 #define php_stream_mkdir(path, mode, options, context) _php_stream_mkdir(path, mode, options, context)
352
353 PHPAPI int _php_stream_rmdir(const char *path, int options, php_stream_context *context);
354 #define php_stream_rmdir(path, options, context) _php_stream_rmdir(path, options, context)
355
356 PHPAPI php_stream *_php_stream_opendir(const char *path, int options, php_stream_context *context STREAMS_DC);
357 #define php_stream_opendir(path, options, context) _php_stream_opendir((path), (options), (context) STREAMS_CC)
358 PHPAPI php_stream_dirent *_php_stream_readdir(php_stream *dirstream, php_stream_dirent *ent);
359 #define php_stream_readdir(dirstream, dirent) _php_stream_readdir((dirstream), (dirent))
360 #define php_stream_closedir(dirstream) php_stream_close((dirstream))
361 #define php_stream_rewinddir(dirstream) php_stream_rewind((dirstream))
362
363 PHPAPI int php_stream_dirent_alphasort(const zend_string **a, const zend_string **b);
364 PHPAPI int php_stream_dirent_alphasortr(const zend_string **a, const zend_string **b);
365
366 PHPAPI int _php_stream_scandir(const char *dirname, zend_string **namelist[], int flags, php_stream_context *context,
367 int (*compare) (const zend_string **a, const zend_string **b));
368 #define php_stream_scandir(dirname, namelist, context, compare) _php_stream_scandir((dirname), (namelist), 0, (context), (compare))
369
370 PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam);
371 #define php_stream_set_option(stream, option, value, ptrvalue) _php_stream_set_option((stream), (option), (value), (ptrvalue))
372
373 #define php_stream_set_chunk_size(stream, size) _php_stream_set_option((stream), PHP_STREAM_OPTION_SET_CHUNK_SIZE, (size), NULL)
374
375 END_EXTERN_C()
376
377
378
379 #define PHP_STREAM_MKDIR_RECURSIVE 1
380
381
382
383
384
385
386 #define PHP_STREAM_URL_STAT_LINK 1
387 #define PHP_STREAM_URL_STAT_QUIET 2
388 #define PHP_STREAM_URL_STAT_NOCACHE 4
389
390
391 #define PHP_STREAM_OPTION_BLOCKING 1
392
393
394
395 #define PHP_STREAM_OPTION_READ_BUFFER 2
396 #define PHP_STREAM_OPTION_WRITE_BUFFER 3
397
398 #define PHP_STREAM_BUFFER_NONE 0
399 #define PHP_STREAM_BUFFER_LINE 1
400 #define PHP_STREAM_BUFFER_FULL 2
401
402
403 #define PHP_STREAM_OPTION_READ_TIMEOUT 4
404 #define PHP_STREAM_OPTION_SET_CHUNK_SIZE 5
405
406
407 #define PHP_STREAM_OPTION_LOCKING 6
408
409
410 #define PHP_STREAM_OPTION_PIPE_BLOCKING 7
411
412
413 #define PHP_STREAM_LOCK_SUPPORTED 1
414
415 #define php_stream_supports_lock(stream) _php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, 0, (void *) PHP_STREAM_LOCK_SUPPORTED) == 0 ? 1 : 0
416 #define php_stream_lock(stream, mode) _php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, (mode), (void *) NULL)
417
418
419 #define PHP_STREAM_OPTION_XPORT_API 7
420 #define PHP_STREAM_OPTION_CRYPTO_API 8
421 #define PHP_STREAM_OPTION_MMAP_API 9
422 #define PHP_STREAM_OPTION_TRUNCATE_API 10
423
424 #define PHP_STREAM_TRUNCATE_SUPPORTED 0
425 #define PHP_STREAM_TRUNCATE_SET_SIZE 1
426
427 #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)
428
429 BEGIN_EXTERN_C()
430 PHPAPI int _php_stream_truncate_set_size(php_stream *stream, size_t newsize);
431 #define php_stream_truncate_set_size(stream, size) _php_stream_truncate_set_size((stream), (size))
432 END_EXTERN_C()
433
434 #define PHP_STREAM_OPTION_META_DATA_API 11
435 #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)
436
437
438
439 #define PHP_STREAM_OPTION_CHECK_LIVENESS 12
440
441 #define PHP_STREAM_OPTION_RETURN_OK 0
442 #define PHP_STREAM_OPTION_RETURN_ERR -1
443 #define PHP_STREAM_OPTION_RETURN_NOTIMPL -2
444
445
446
447 #define PHP_STREAM_COPY_ALL ((size_t)-1)
448
449 BEGIN_EXTERN_C()
450 ZEND_ATTRIBUTE_DEPRECATED
451 PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_DC);
452 #define php_stream_copy_to_stream(src, dest, maxlen) _php_stream_copy_to_stream((src), (dest), (maxlen) STREAMS_CC)
453 PHPAPI int _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, size_t *len STREAMS_DC);
454 #define php_stream_copy_to_stream_ex(src, dest, maxlen, len) _php_stream_copy_to_stream_ex((src), (dest), (maxlen), (len) STREAMS_CC)
455
456
457
458
459 PHPAPI zend_string *_php_stream_copy_to_mem(php_stream *src, size_t maxlen, int persistent STREAMS_DC);
460 #define php_stream_copy_to_mem(src, maxlen, persistent) _php_stream_copy_to_mem((src), (maxlen), (persistent) STREAMS_CC)
461
462
463 PHPAPI size_t _php_stream_passthru(php_stream * src STREAMS_DC);
464 #define php_stream_passthru(stream) _php_stream_passthru((stream) STREAMS_CC)
465 END_EXTERN_C()
466
467 #include "streams/php_stream_transport.h"
468 #include "streams/php_stream_plain_wrapper.h"
469 #include "streams/php_stream_glob_wrapper.h"
470 #include "streams/php_stream_userspace.h"
471 #include "streams/php_stream_mmap.h"
472
473
474
475 #define PHP_STREAM_AS_STDIO 0
476
477 #define PHP_STREAM_AS_FD 1
478
479 #define PHP_STREAM_AS_SOCKETD 2
480
481 #define PHP_STREAM_AS_FD_FOR_SELECT 3
482
483
484 #define PHP_STREAM_CAST_TRY_HARD 0x80000000
485 #define PHP_STREAM_CAST_RELEASE 0x40000000
486 #define PHP_STREAM_CAST_INTERNAL 0x20000000
487 #define PHP_STREAM_CAST_MASK (PHP_STREAM_CAST_TRY_HARD | PHP_STREAM_CAST_RELEASE | PHP_STREAM_CAST_INTERNAL)
488 BEGIN_EXTERN_C()
489 PHPAPI int _php_stream_cast(php_stream *stream, int castas, void **ret, int show_err);
490 END_EXTERN_C()
491
492 #define php_stream_can_cast(stream, as) _php_stream_cast((stream), (as), NULL, 0)
493 #define php_stream_cast(stream, as, ret, show_err) _php_stream_cast((stream), (as), (ret), (show_err))
494
495
496
497 #define php_stream_is(stream, anops) ((stream)->ops == anops)
498 #define PHP_STREAM_IS_STDIO &php_stream_stdio_ops
499
500 #define php_stream_is_persistent(stream) (stream)->is_persistent
501
502
503
504 #define IGNORE_PATH 0x00000000
505 #define USE_PATH 0x00000001
506 #define IGNORE_URL 0x00000002
507 #define REPORT_ERRORS 0x00000008
508
509
510
511 #define STREAM_MUST_SEEK 0x00000010
512
513
514
515
516
517
518
519 #define STREAM_WILL_CAST 0x00000020
520
521
522 #define STREAM_LOCATE_WRAPPERS_ONLY 0x00000040
523
524
525 #define STREAM_OPEN_FOR_INCLUDE 0x00000080
526
527
528 #define STREAM_USE_URL 0x00000100
529
530
531 #define STREAM_ONLY_GET_HEADERS 0x00000200
532
533
534 #define STREAM_DISABLE_OPEN_BASEDIR 0x00000400
535
536
537 #define STREAM_OPEN_PERSISTENT 0x00000800
538
539
540 #define STREAM_USE_GLOB_DIR_OPEN 0x00001000
541
542
543 #define STREAM_DISABLE_URL_PROTECTION 0x00002000
544
545
546 #define STREAM_ASSUME_REALPATH 0x00004000
547
548
549 #define STREAM_USE_BLOCKING_PIPE 0x00008000
550
551
552 #define IGNORE_URL_WIN 0
553
554 int php_init_stream_wrappers(int module_number);
555 int php_shutdown_stream_wrappers(int module_number);
556 void php_shutdown_stream_hashes(void);
557 PHP_RSHUTDOWN_FUNCTION(streams);
558
559 BEGIN_EXTERN_C()
560 PHPAPI int php_register_url_stream_wrapper(const char *protocol, php_stream_wrapper *wrapper);
561 PHPAPI int php_unregister_url_stream_wrapper(const char *protocol);
562 PHPAPI int php_register_url_stream_wrapper_volatile(const char *protocol, php_stream_wrapper *wrapper);
563 PHPAPI int php_unregister_url_stream_wrapper_volatile(const char *protocol);
564 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);
565 PHPAPI php_stream_wrapper *php_stream_locate_url_wrapper(const char *path, const char **path_for_open, int options);
566 PHPAPI const char *php_stream_locate_eol(php_stream *stream, zend_string *buf);
567
568 #define php_stream_open_wrapper(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), NULL STREAMS_CC)
569 #define php_stream_open_wrapper_ex(path, mode, options, opened, context) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), (context) STREAMS_CC)
570
571
572 PHPAPI void php_stream_wrapper_log_error(php_stream_wrapper *wrapper, int options, const char *fmt, ...) PHP_ATTRIBUTE_FORMAT(printf, 3, 4);
573
574 #define PHP_STREAM_UNCHANGED 0
575 #define PHP_STREAM_RELEASED 1
576 #define PHP_STREAM_FAILED 2
577 #define PHP_STREAM_CRITICAL 3
578 #define PHP_STREAM_NO_PREFERENCE 0
579 #define PHP_STREAM_PREFER_STDIO 1
580 #define PHP_STREAM_FORCE_CONVERSION 2
581
582 PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STREAMS_DC);
583 #define php_stream_make_seekable(origstream, newstream, flags) _php_stream_make_seekable((origstream), (newstream), (flags) STREAMS_CC)
584
585
586 PHPAPI HashTable *_php_stream_get_url_stream_wrappers_hash(void);
587 #define php_stream_get_url_stream_wrappers_hash() _php_stream_get_url_stream_wrappers_hash()
588 PHPAPI HashTable *php_stream_get_url_stream_wrappers_hash_global(void);
589 PHPAPI HashTable *_php_get_stream_filters_hash(void);
590 #define php_get_stream_filters_hash() _php_get_stream_filters_hash()
591 PHPAPI HashTable *php_get_stream_filters_hash_global(void);
592 extern php_stream_wrapper_ops *php_stream_user_wrapper_ops;
593 END_EXTERN_C()
594 #endif
595
596
597 #define PHP_STREAM_IS_URL 1
598
599
600
601 #define PHP_STREAM_META_TOUCH 1
602 #define PHP_STREAM_META_OWNER_NAME 2
603 #define PHP_STREAM_META_OWNER 3
604 #define PHP_STREAM_META_GROUP_NAME 4
605 #define PHP_STREAM_META_GROUP 5
606 #define PHP_STREAM_META_ACCESS 6
607
608
609
610
611
612
613
614