1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
#ifndef __ZRAN_FILE_UTIL_H__
#define __ZRAN_FILE_UTIL_H__
/*
* File utilities used to manipulate either
* Python file-like objects or file descriptors.
*/
#include <stdlib.h>
#include <stdint.h>
#define PY_SSIZE_T_CLEAN
#include <Python.h>
/*
* Implements a method analogous to fread that is performed on Python
* file-like objects.
*/
size_t _fread_python(void *ptr, size_t size, size_t nmemb, PyObject *f);
/*
* Implements a method analogous to ftell that is performed on Python
* file-like objects.
*/
int64_t _ftell_python(PyObject *f);
/*
* Implements a method analogous to fseek that is performed on Python
* file-like objects.
*/
int _fseek_python(PyObject *f, int64_t offset, int whence);
/*
* Implements a method analogous to feof that is performed on Python file-like
* objects.
*/
int _feof_python(PyObject *f, size_t f_ret);
/*
* Implements a method analogous to ferror that is performed on Python
* file-like objects.
*/
int _ferror_python(PyObject *f);
/*
* Implements a method analogous to fflush that is performed on Python
* file-like objects.
*/
int _fflush_python(PyObject *f);
/*
* Implements a method analogous to fwrite that is performed on Python
* file-like objects.
*/
size_t _fwrite_python(const void *ptr, size_t size, size_t nmemb, PyObject *f);
/*
* Implements a method analogous to getc that is performed on Python
* file-like objects.
*/
int _getc_python(PyObject *f);
/*
* Calls the .seekable() method on Python file-like objects.
*/
int _seekable_python(PyObject *f);
/*
* Calls ferror on fd if specified, otherwise the Python-specific method on f.
*/
int ferror_(FILE *fd, PyObject *f);
/*
* Calls fseek on fd if specified, otherwise the Python-specific method on f.
*/
int fseek_(FILE *fd, PyObject *f, int64_t offset, int whence);
/*
* Calls ftell on fd if specified, otherwise the Python-specific method on f.
*/
int64_t ftell_(FILE *fd, PyObject *f);
/*
* Calls fread on fd if specified, otherwise the Python-specific method on f.
*/
size_t fread_(void *ptr, size_t size, size_t nmemb, FILE *fd, PyObject *f);
/*
* Calls feof on fd if specified, otherwise the Python-specific method on f.
*/
int feof_(FILE *fd, PyObject *f, size_t f_ret);
/*
* Calls fflush on fd if specified, otherwise the Python-specific method on f.
*/
int fflush_(FILE *fd, PyObject *f);
/*
* Calls fwrite on fd if specified, otherwise the Python-specific method on f.
*/
size_t fwrite_(
const void *ptr, size_t size, size_t nmemb, FILE *fd, PyObject *f);
/*
* Calls getc on fd if specified, otherwise the Python-specific method on f.
*/
int getc_(FILE *fd, PyObject *f);
/*
* Returns whether the given file is seekable. If fd is specified, assumes it's always seekable.
* If f is specified, calls f.seekable() to see if the Python file object is seekable.
*/
int seekable_(FILE *fd, PyObject *f);
#endif /* __ZRAN_FILE_UTIL_H__ */
|