file.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. /* Synced with php 3.0 revision 1.30 1999-06-16 [ssb] */
  20. #ifndef FILE_H
  21. #define FILE_H
  22. PHP_MINIT_FUNCTION(file);
  23. PHP_MSHUTDOWN_FUNCTION(file);
  24. PHP_FUNCTION(tempnam);
  25. PHP_NAMED_FUNCTION(php_if_tmpfile);
  26. PHP_NAMED_FUNCTION(php_if_fopen);
  27. PHPAPI PHP_FUNCTION(fclose);
  28. PHP_FUNCTION(popen);
  29. PHP_FUNCTION(pclose);
  30. PHPAPI PHP_FUNCTION(feof);
  31. PHPAPI PHP_FUNCTION(fread);
  32. PHPAPI PHP_FUNCTION(fgetc);
  33. PHPAPI PHP_FUNCTION(fgets);
  34. PHP_FUNCTION(fscanf);
  35. PHPAPI PHP_FUNCTION(fgetss);
  36. PHP_FUNCTION(fgetcsv);
  37. PHP_FUNCTION(fputcsv);
  38. PHPAPI PHP_FUNCTION(fwrite);
  39. PHPAPI PHP_FUNCTION(fflush);
  40. PHPAPI PHP_FUNCTION(rewind);
  41. PHPAPI PHP_FUNCTION(ftell);
  42. PHPAPI PHP_FUNCTION(fseek);
  43. PHP_FUNCTION(mkdir);
  44. PHP_FUNCTION(rmdir);
  45. PHPAPI PHP_FUNCTION(fpassthru);
  46. PHP_FUNCTION(readfile);
  47. PHP_FUNCTION(umask);
  48. PHP_FUNCTION(rename);
  49. PHP_FUNCTION(unlink);
  50. PHP_FUNCTION(copy);
  51. PHP_FUNCTION(file);
  52. PHP_FUNCTION(file_get_contents);
  53. PHP_FUNCTION(file_put_contents);
  54. PHP_FUNCTION(get_meta_tags);
  55. PHP_FUNCTION(flock);
  56. PHP_FUNCTION(fd_set);
  57. PHP_FUNCTION(fd_isset);
  58. #if (!defined(__BEOS__) && !defined(NETWARE) && HAVE_REALPATH) || defined(ZTS)
  59. PHP_FUNCTION(realpath);
  60. #endif
  61. #ifdef HAVE_FNMATCH
  62. PHP_FUNCTION(fnmatch);
  63. #endif
  64. PHP_NAMED_FUNCTION(php_if_ftruncate);
  65. PHP_NAMED_FUNCTION(php_if_fstat);
  66. PHP_FUNCTION(sys_get_temp_dir);
  67. PHP_MINIT_FUNCTION(user_streams);
  68. PHPAPI int php_le_stream_context(TSRMLS_D);
  69. PHPAPI int php_set_sock_blocking(int socketd, int block TSRMLS_DC);
  70. PHPAPI int php_copy_file(const char *src, const char *dest TSRMLS_DC);
  71. PHPAPI int php_copy_file_ex(const char *src, const char *dest, int src_chk TSRMLS_DC);
  72. PHPAPI int php_copy_file_ctx(const char *src, const char *dest, int src_chk, php_stream_context *ctx TSRMLS_DC);
  73. PHPAPI int php_mkdir_ex(const char *dir, long mode, int options TSRMLS_DC);
  74. PHPAPI int php_mkdir(const char *dir, long mode TSRMLS_DC);
  75. PHPAPI void php_fgetcsv(php_stream *stream, char delimiter, char enclosure, char escape_char, size_t buf_len, char *buf, zval *return_value TSRMLS_DC);
  76. PHPAPI int php_fputcsv(php_stream *stream, zval *fields, char delimiter, char enclosure, char escape_char TSRMLS_DC);
  77. #define META_DEF_BUFSIZE 8192
  78. #define PHP_FILE_USE_INCLUDE_PATH 1
  79. #define PHP_FILE_IGNORE_NEW_LINES 2
  80. #define PHP_FILE_SKIP_EMPTY_LINES 4
  81. #define PHP_FILE_APPEND 8
  82. #define PHP_FILE_NO_DEFAULT_CONTEXT 16
  83. typedef enum _php_meta_tags_token {
  84. TOK_EOF = 0,
  85. TOK_OPENTAG,
  86. TOK_CLOSETAG,
  87. TOK_SLASH,
  88. TOK_EQUAL,
  89. TOK_SPACE,
  90. TOK_ID,
  91. TOK_STRING,
  92. TOK_OTHER
  93. } php_meta_tags_token;
  94. typedef struct _php_meta_tags_data {
  95. php_stream *stream;
  96. int ulc;
  97. int lc;
  98. char *input_buffer;
  99. char *token_data;
  100. int token_len;
  101. int in_meta;
  102. } php_meta_tags_data;
  103. php_meta_tags_token php_next_meta_token(php_meta_tags_data * TSRMLS_DC);
  104. typedef struct {
  105. int pclose_ret;
  106. size_t def_chunk_size;
  107. long auto_detect_line_endings;
  108. long default_socket_timeout;
  109. char *user_agent; /* for the http wrapper */
  110. char *from_address; /* for the ftp and http wrappers */
  111. const char *user_stream_current_filename; /* for simple recursion protection */
  112. php_stream_context *default_context;
  113. HashTable *stream_wrappers; /* per-request copy of url_stream_wrappers_hash */
  114. HashTable *stream_filters; /* per-request copy of stream_filters_hash */
  115. HashTable *wrapper_errors; /* key: wrapper address; value: linked list of char* */
  116. int pclose_wait;
  117. } php_file_globals;
  118. #ifdef ZTS
  119. #define FG(v) TSRMG(file_globals_id, php_file_globals *, v)
  120. extern PHPAPI int file_globals_id;
  121. #else
  122. #define FG(v) (file_globals.v)
  123. extern PHPAPI php_file_globals file_globals;
  124. #endif
  125. #endif /* FILE_H */