fileutils.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. #ifndef Py_FILEUTILS_H
  2. #define Py_FILEUTILS_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. PyAPI_FUNC(PyObject *) _Py_device_encoding(int);
  7. PyAPI_FUNC(wchar_t *) Py_DecodeLocale(
  8. const char *arg,
  9. size_t *size);
  10. PyAPI_FUNC(char*) Py_EncodeLocale(
  11. const wchar_t *text,
  12. size_t *error_pos);
  13. #ifndef Py_LIMITED_API
  14. #ifdef MS_WINDOWS
  15. struct _Py_stat_struct {
  16. unsigned long st_dev;
  17. __int64 st_ino;
  18. unsigned short st_mode;
  19. int st_nlink;
  20. int st_uid;
  21. int st_gid;
  22. unsigned long st_rdev;
  23. __int64 st_size;
  24. time_t st_atime;
  25. int st_atime_nsec;
  26. time_t st_mtime;
  27. int st_mtime_nsec;
  28. time_t st_ctime;
  29. int st_ctime_nsec;
  30. unsigned long st_file_attributes;
  31. };
  32. #else
  33. # define _Py_stat_struct stat
  34. #endif
  35. PyAPI_FUNC(int) _Py_fstat(
  36. int fd,
  37. struct _Py_stat_struct *status);
  38. PyAPI_FUNC(int) _Py_fstat_noraise(
  39. int fd,
  40. struct _Py_stat_struct *status);
  41. #endif /* Py_LIMITED_API */
  42. PyAPI_FUNC(int) _Py_stat(
  43. PyObject *path,
  44. struct stat *status);
  45. #ifndef Py_LIMITED_API
  46. PyAPI_FUNC(int) _Py_open(
  47. const char *pathname,
  48. int flags);
  49. PyAPI_FUNC(int) _Py_open_noraise(
  50. const char *pathname,
  51. int flags);
  52. #endif
  53. PyAPI_FUNC(FILE *) _Py_wfopen(
  54. const wchar_t *path,
  55. const wchar_t *mode);
  56. PyAPI_FUNC(FILE*) _Py_fopen(
  57. const char *pathname,
  58. const char *mode);
  59. PyAPI_FUNC(FILE*) _Py_fopen_obj(
  60. PyObject *path,
  61. const char *mode);
  62. PyAPI_FUNC(Py_ssize_t) _Py_read(
  63. int fd,
  64. void *buf,
  65. size_t count);
  66. PyAPI_FUNC(Py_ssize_t) _Py_write(
  67. int fd,
  68. const void *buf,
  69. size_t count);
  70. PyAPI_FUNC(Py_ssize_t) _Py_write_noraise(
  71. int fd,
  72. const void *buf,
  73. size_t count);
  74. #ifdef HAVE_READLINK
  75. PyAPI_FUNC(int) _Py_wreadlink(
  76. const wchar_t *path,
  77. wchar_t *buf,
  78. size_t bufsiz);
  79. #endif
  80. #ifdef HAVE_REALPATH
  81. PyAPI_FUNC(wchar_t*) _Py_wrealpath(
  82. const wchar_t *path,
  83. wchar_t *resolved_path,
  84. size_t resolved_path_size);
  85. #endif
  86. PyAPI_FUNC(wchar_t*) _Py_wgetcwd(
  87. wchar_t *buf,
  88. size_t size);
  89. #ifndef Py_LIMITED_API
  90. PyAPI_FUNC(int) _Py_get_inheritable(int fd);
  91. PyAPI_FUNC(int) _Py_set_inheritable(int fd, int inheritable,
  92. int *atomic_flag_works);
  93. PyAPI_FUNC(int) _Py_dup(int fd);
  94. #ifndef MS_WINDOWS
  95. PyAPI_FUNC(int) _Py_get_blocking(int fd);
  96. PyAPI_FUNC(int) _Py_set_blocking(int fd, int blocking);
  97. #endif /* !MS_WINDOWS */
  98. #if defined _MSC_VER && _MSC_VER >= 1400 && _MSC_VER < 1900
  99. /* A routine to check if a file descriptor is valid on Windows. Returns 0
  100. * and sets errno to EBADF if it isn't. This is to avoid Assertions
  101. * from various functions in the Windows CRT beginning with
  102. * Visual Studio 2005
  103. */
  104. int _PyVerify_fd(int fd);
  105. #else
  106. #define _PyVerify_fd(A) (1) /* dummy */
  107. #endif
  108. #endif /* Py_LIMITED_API */
  109. #ifdef __cplusplus
  110. }
  111. #endif
  112. #endif /* !Py_FILEUTILS_H */