-
Notifications
You must be signed in to change notification settings - Fork 584
/
Copy pathhelper-fileobj.i
113 lines (108 loc) · 3.05 KB
/
helper-fileobj.i
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
%{
//-------------------------------------
// fz_output for Python file objects
//-------------------------------------
static void
JM_bytesio_write(fz_context *ctx, void *opaque, const void *data, size_t len)
{ // bio.write(bytes object)
PyObject *bio = opaque, *b, *name, *rc;
fz_try(ctx){
b = PyBytes_FromStringAndSize((const char *) data, (Py_ssize_t) len);
name = PyUnicode_FromString("write");
PyObject_CallMethodObjArgs(bio, name, b, NULL);
rc = PyErr_Occurred();
if (rc) {
RAISEPY(ctx, "could not write to Py file obj", rc);
}
}
fz_always(ctx) {
Py_XDECREF(b);
Py_XDECREF(name);
Py_XDECREF(rc);
PyErr_Clear();
}
fz_catch(ctx) {
fz_rethrow(ctx);
}
}
static void
JM_bytesio_truncate(fz_context *ctx, void *opaque)
{ // bio.truncate(bio.tell()) !!!
PyObject *bio = opaque, *trunc = NULL, *tell = NULL, *rctell= NULL, *rc = NULL;
fz_try(ctx) {
trunc = PyUnicode_FromString("truncate");
tell = PyUnicode_FromString("tell");
rctell = PyObject_CallMethodObjArgs(bio, tell, NULL);
PyObject_CallMethodObjArgs(bio, trunc, rctell, NULL);
rc = PyErr_Occurred();
if (rc) {
RAISEPY(ctx, "could not truncate Py file obj", rc);
}
}
fz_always(ctx) {
Py_XDECREF(tell);
Py_XDECREF(trunc);
Py_XDECREF(rc);
Py_XDECREF(rctell);
PyErr_Clear();
}
fz_catch(ctx) {
fz_rethrow(ctx);
}
}
static int64_t
JM_bytesio_tell(fz_context *ctx, void *opaque)
{ // returns bio.tell() -> int
PyObject *bio = opaque, *rc = NULL, *name = NULL;
int64_t pos = 0;
fz_try(ctx) {
name = PyUnicode_FromString("tell");
rc = PyObject_CallMethodObjArgs(bio, name, NULL);
if (!rc) {
RAISEPY(ctx, "could not tell Py file obj", PyErr_Occurred());
}
pos = (int64_t) PyLong_AsUnsignedLongLong(rc);
}
fz_always(ctx) {
Py_XDECREF(name);
Py_XDECREF(rc);
PyErr_Clear();
}
fz_catch(ctx) {
fz_rethrow(ctx);
}
return pos;
}
static void
JM_bytesio_seek(fz_context *ctx, void *opaque, int64_t off, int whence)
{ // bio.seek(off, whence=0)
PyObject *bio = opaque, *rc = NULL, *name = NULL, *pos = NULL;
fz_try(ctx) {
name = PyUnicode_FromString("seek");
pos = PyLong_FromUnsignedLongLong((unsigned long long) off);
PyObject_CallMethodObjArgs(bio, name, pos, whence, NULL);
rc = PyErr_Occurred();
if (rc) {
RAISEPY(ctx, "could not seek Py file obj", rc);
}
}
fz_always(ctx) {
Py_XDECREF(rc);
Py_XDECREF(name);
Py_XDECREF(pos);
PyErr_Clear();
}
fz_catch(ctx) {
fz_rethrow(ctx);
}
}
fz_output *
JM_new_output_fileptr(fz_context *ctx, PyObject *bio)
{
fz_output *out = fz_new_output(ctx, 0, bio, JM_bytesio_write, NULL, NULL);
out->seek = JM_bytesio_seek;
out->tell = JM_bytesio_tell;
out->truncate = JM_bytesio_truncate;
return out;
}
%}