forked from pygame-community/pygame-ce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrwobject.c
877 lines (760 loc) · 22.6 KB
/
rwobject.c
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
/*
pygame-ce - Python Game Library
Copyright (C) 2000-2001 Pete Shinners
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Pete Shinners
*/
/*
* SDL_RWops support for python objects
*/
#define NO_PYGAME_C_API
#define PYGAMEAPI_RWOBJECT_INTERNAL
#include "pygame.h"
#include "pgcompat.h"
#include "doc/pygame_doc.h"
#if defined(_WIN32)
#define PG_LSEEK _lseeki64
#elif defined(__APPLE__)
/* Mac does not implement lseek64 */
#define PG_LSEEK lseek
#else
#define PG_LSEEK lseek64
#endif
typedef struct {
PyObject *read;
PyObject *write;
PyObject *seek;
PyObject *tell;
PyObject *close;
PyObject *file;
int fileno;
} pgRWHelper;
/*static const char pg_default_encoding[] = "unicode_escape";*/
/*static const char pg_default_errors[] = "backslashreplace";*/
static const char pg_default_encoding[] = "unicode_escape";
static const char pg_default_errors[] = "backslashreplace";
static PyObject *os_module = NULL;
static Sint64
_pg_rw_size(SDL_RWops *);
static Sint64
_pg_rw_seek(SDL_RWops *, Sint64, int);
static size_t
_pg_rw_read(SDL_RWops *, void *, size_t, size_t);
static size_t
_pg_rw_write(SDL_RWops *, const void *, size_t, size_t);
static int
_pg_rw_close(SDL_RWops *);
/* Converter function used by PyArg_ParseTupleAndKeywords with the "O&" format.
*
* Returns: 1 on success
* 0 on fail (with exception set)
*/
static int
_pg_is_exception_class(PyObject *obj, void **optr)
{
PyObject **rval = (PyObject **)optr;
PyObject *oname;
PyObject *tmp;
if (!PyType_Check(obj) || /* conditional or */
!PyObject_IsSubclass(obj, PyExc_BaseException)) {
oname = PyObject_Str(obj);
if (oname == NULL) {
PyErr_SetString(PyExc_TypeError,
"invalid exception class argument");
return 0;
}
tmp = PyUnicode_AsEncodedString(oname, "ascii", "replace");
Py_DECREF(oname);
if (tmp == NULL) {
PyErr_SetString(PyExc_TypeError,
"invalid exception class argument");
return 0;
}
oname = tmp;
PyErr_Format(PyExc_TypeError,
"Expected an exception class: got %.1024s",
PyBytes_AS_STRING(oname));
Py_DECREF(oname);
return 0;
}
*rval = obj;
return 1;
}
static int
fetch_object_methods(pgRWHelper *helper, PyObject *obj)
{
helper->read = helper->write = helper->seek = helper->tell =
helper->close = NULL;
if (PyObject_HasAttrString(obj, "read")) {
helper->read = PyObject_GetAttrString(obj, "read");
if (helper->read && !PyCallable_Check(helper->read)) {
Py_DECREF(helper->read);
helper->read = NULL;
}
}
if (PyObject_HasAttrString(obj, "write")) {
helper->write = PyObject_GetAttrString(obj, "write");
if (helper->write && !PyCallable_Check(helper->write)) {
Py_DECREF(helper->write);
helper->write = NULL;
}
}
if (!helper->read && !helper->write) {
PyErr_SetString(PyExc_TypeError, "not a file object");
return -1;
}
if (PyObject_HasAttrString(obj, "seek")) {
helper->seek = PyObject_GetAttrString(obj, "seek");
if (helper->seek && !PyCallable_Check(helper->seek)) {
Py_DECREF(helper->seek);
helper->seek = NULL;
}
}
if (PyObject_HasAttrString(obj, "tell")) {
helper->tell = PyObject_GetAttrString(obj, "tell");
if (helper->tell && !PyCallable_Check(helper->tell)) {
Py_DECREF(helper->tell);
helper->tell = NULL;
}
}
if (PyObject_HasAttrString(obj, "close")) {
helper->close = PyObject_GetAttrString(obj, "close");
if (helper->close && !PyCallable_Check(helper->close)) {
Py_DECREF(helper->close);
helper->close = NULL;
}
}
return 0;
}
/* This function is meant to decode a pathlib object into its str/bytes
* representation. */
static PyObject *
_trydecode_pathlibobj(PyObject *obj)
{
PyObject *ret = PyOS_FSPath(obj);
if (!ret) {
/* A valid object was not passed. But we do not consider it an error */
PyErr_Clear();
Py_INCREF(obj);
return obj;
}
return ret;
}
static PyObject *
pg_EncodeString(PyObject *obj, const char *encoding, const char *errors,
PyObject *eclass)
{
PyObject *oencoded, *exc_type, *exc_value, *exc_trace, *str, *ret;
if (obj == NULL) {
/* Assume an error was raise; forward it */
return NULL;
}
if (encoding == NULL) {
encoding = pg_default_encoding;
}
if (errors == NULL) {
errors = pg_default_errors;
}
ret = _trydecode_pathlibobj(obj);
if (!ret)
return NULL;
if (PyUnicode_Check(ret)) {
oencoded = PyUnicode_AsEncodedString(ret, encoding, errors);
Py_DECREF(ret);
if (oencoded != NULL) {
return oencoded;
}
else if (PyErr_ExceptionMatches(PyExc_MemoryError)) {
/* Forward memory errors */
return NULL;
}
else if (eclass != NULL) {
/* Forward as eclass error */
PyErr_Fetch(&exc_type, &exc_value, &exc_trace);
Py_DECREF(exc_type);
Py_XDECREF(exc_trace);
if (exc_value == NULL) {
PyErr_SetString(eclass, "Unicode encoding error");
}
else {
str = PyObject_Str(exc_value);
Py_DECREF(exc_value);
if (str != NULL) {
PyErr_SetObject(eclass, str);
Py_DECREF(str);
}
}
return NULL;
}
else if (encoding == pg_default_encoding &&
errors == pg_default_errors) {
/* The default encoding and error handling should not fail */
return RAISE(PyExc_SystemError,
"Pygame bug (in pg_EncodeString):"
" unexpected encoding error");
}
PyErr_Clear();
Py_RETURN_NONE;
}
if (PyBytes_Check(ret)) {
return ret;
}
Py_DECREF(ret);
Py_RETURN_NONE;
}
static PyObject *
pg_EncodeFilePath(PyObject *obj, PyObject *eclass)
{
PyObject *result = pg_EncodeString(obj, Py_FileSystemDefaultEncoding,
UNICODE_DEF_FS_ERROR, eclass);
if (result == NULL || result == Py_None) {
return result;
}
if ((size_t)PyBytes_GET_SIZE(result) !=
strlen(PyBytes_AS_STRING(result))) {
if (eclass != NULL) {
Py_DECREF(result);
result = pg_EncodeString(obj, NULL, NULL, NULL);
if (result == NULL) {
return NULL;
}
PyErr_Format(eclass,
"File path '%.1024s' contains null characters",
PyBytes_AS_STRING(result));
Py_DECREF(result);
return NULL;
}
Py_DECREF(result);
Py_RETURN_NONE;
}
return result;
}
static int
pgRWops_IsFileObject(SDL_RWops *rw)
{
return rw->close == _pg_rw_close;
}
static Sint64
_pg_rw_size(SDL_RWops *context)
{
pgRWHelper *helper = (pgRWHelper *)context->hidden.unknown.data1;
PyObject *pos = NULL;
PyObject *tmp = NULL;
Sint64 size;
Sint64 retval = -1;
#ifdef WITH_THREAD
PyGILState_STATE state;
#endif /* WITH_THREAD */
if (!helper->seek || !helper->tell)
return retval;
#ifdef WITH_THREAD
state = PyGILState_Ensure();
#endif /* WITH_THREAD */
/* Current file position; need to restore it later.
*/
pos = PyObject_CallFunction(helper->tell, NULL);
if (!pos) {
PyErr_Print();
goto end;
}
/* Relocate to end of file.
*/
tmp = PyObject_CallFunction(helper->seek, "ii", 0, SEEK_END);
if (!tmp) {
PyErr_Print();
goto end;
}
Py_DECREF(tmp);
/* Record file size.
*/
tmp = PyObject_CallFunction(helper->tell, NULL);
if (!tmp) {
PyErr_Print();
goto end;
}
size = PyLong_AsLongLong(tmp);
if (size == -1 && PyErr_Occurred() != NULL) {
PyErr_Print();
goto end;
}
Py_DECREF(tmp);
/* Return to original position.
*/
tmp = PyObject_CallFunctionObjArgs(helper->seek, pos, NULL);
if (!tmp) {
PyErr_Print();
goto end;
}
/* Success.
*/
retval = size;
end:
/* Cleanup.
*/
Py_XDECREF(pos);
Py_XDECREF(tmp);
#ifdef WITH_THREAD
PyGILState_Release(state);
#endif
return retval;
}
static size_t
_pg_rw_write(SDL_RWops *context, const void *ptr, size_t size, size_t num)
{
#ifndef WITH_THREAD
pgRWHelper *helper = (pgRWHelper *)context->hidden.unknown.data1;
PyObject *result;
if (!helper->write)
return -1;
result = PyObject_CallFunction(helper->write, "y#", (const char *)ptr,
(Py_ssize_t)size * num);
if (!result)
return -1;
Py_DECREF(result);
return num;
#else /* WITH_THREAD */
pgRWHelper *helper = (pgRWHelper *)context->hidden.unknown.data1;
PyObject *result;
size_t retval;
PyGILState_STATE state;
if (!helper->write)
return -1;
state = PyGILState_Ensure();
result = PyObject_CallFunction(helper->write, "y#", (const char *)ptr,
(Py_ssize_t)size * num);
if (!result) {
PyErr_Print();
retval = -1;
goto end;
}
Py_DECREF(result);
retval = num;
end:
PyGILState_Release(state);
return retval;
#endif /* WITH_THREAD */
}
static int
_pg_rw_close(SDL_RWops *context)
{
pgRWHelper *helper = (pgRWHelper *)context->hidden.unknown.data1;
PyObject *result;
int retval = 0;
#ifdef WITH_THREAD
PyGILState_STATE state;
state = PyGILState_Ensure();
#endif /* WITH_THREAD */
if (helper->close) {
result = PyObject_CallFunction(helper->close, NULL);
if (!result) {
PyErr_Print();
retval = -1;
}
Py_XDECREF(result);
}
Py_XDECREF(helper->seek);
Py_XDECREF(helper->tell);
Py_XDECREF(helper->write);
Py_XDECREF(helper->read);
Py_XDECREF(helper->close);
Py_XDECREF(helper->file);
PyMem_Free(helper);
#ifdef WITH_THREAD
PyGILState_Release(state);
#endif /* WITH_THREAD */
SDL_FreeRW(context);
return retval;
}
static SDL_RWops *
pgRWops_FromFileObject(PyObject *obj)
{
SDL_RWops *rw;
pgRWHelper *helper;
if (obj == NULL) {
return (SDL_RWops *)RAISE(PyExc_TypeError, "Invalid filetype object");
}
helper = PyMem_New(pgRWHelper, 1);
if (helper == NULL) {
return (SDL_RWops *)PyErr_NoMemory();
}
helper->fileno = PyObject_AsFileDescriptor(obj);
if (helper->fileno == -1)
PyErr_Clear();
if (fetch_object_methods(helper, obj)) {
PyMem_Free(helper);
return NULL;
}
rw = SDL_AllocRW();
if (rw == NULL) {
PyMem_Free(helper);
return (SDL_RWops *)PyErr_NoMemory();
}
helper->file = obj;
Py_INCREF(obj);
/* Adding a helper to the hidden data to support file-like object RWops */
rw->hidden.unknown.data1 = (void *)helper;
rw->size = _pg_rw_size;
rw->seek = _pg_rw_seek;
rw->read = _pg_rw_read;
rw->write = _pg_rw_write;
rw->close = _pg_rw_close;
return rw;
}
static int
pgRWops_ReleaseObject(SDL_RWops *context)
{
int ret = 0;
if (pgRWops_IsFileObject(context)) {
#ifdef WITH_THREAD
PyGILState_STATE state = PyGILState_Ensure();
#endif /* WITH_THREAD */
pgRWHelper *helper = (pgRWHelper *)context->hidden.unknown.data1;
PyObject *fileobj = helper->file;
/* 5 helper functions */
Py_ssize_t filerefcnt = Py_REFCNT(fileobj) - 1 - 5;
if (filerefcnt) {
Py_XDECREF(helper->seek);
Py_XDECREF(helper->tell);
Py_XDECREF(helper->write);
Py_XDECREF(helper->read);
Py_XDECREF(helper->close);
Py_DECREF(fileobj);
PyMem_Free(helper);
SDL_FreeRW(context);
}
else {
ret = SDL_RWclose(context);
if (ret < 0) {
PyErr_SetString(PyExc_IOError, SDL_GetError());
Py_DECREF(fileobj);
}
}
#ifdef WITH_THREAD
PyGILState_Release(state);
#endif /* WITH_THREAD */
}
else {
ret = SDL_RWclose(context);
if (ret < 0)
PyErr_SetString(PyExc_IOError, SDL_GetError());
}
return ret;
}
static Sint64
_pg_rw_seek(SDL_RWops *context, Sint64 offset, int whence)
{
pgRWHelper *helper = (pgRWHelper *)context->hidden.unknown.data1;
PyObject *result;
Sint64 retval;
#ifdef WITH_THREAD
PyGILState_STATE state;
if (helper->fileno != -1) {
return PG_LSEEK(helper->fileno, offset, whence);
}
if (!helper->seek || !helper->tell)
return -1;
state = PyGILState_Ensure();
if (!(offset == 0 &&
whence == SEEK_CUR)) /* being seek'd, not just tell'd */
{
result = PyObject_CallFunction(helper->seek, "Li", (long long)offset,
whence);
if (!result) {
PyErr_Print();
retval = -1;
goto end;
}
Py_DECREF(result);
}
result = PyObject_CallFunction(helper->tell, NULL);
if (!result) {
PyErr_Print();
retval = -1;
goto end;
}
retval = PyLong_AsLongLong(result);
if (retval == -1 && PyErr_Occurred())
PyErr_Clear();
Py_DECREF(result);
end:
PyGILState_Release(state);
return retval;
#else /* ~WITH_THREAD */
if (helper->fileno != -1) {
return PG_LSEEK(helper->fileno, offset, whence);
}
if (!helper->seek || !helper->tell)
return -1;
if (!(offset == 0 && whence == SEEK_CUR)) /*being called only for 'tell'*/
{
result = PyObject_CallFunction(helper->seek, "Li", (long long)offset,
whence);
if (!result)
return -1;
Py_DECREF(result);
}
result = PyObject_CallFunction(helper->tell, NULL);
if (!result)
return -1;
retval = PyLong_AsLongLong(result);
if (retval == -1 && PyErr_Occurred())
PyErr_Clear();
Py_DECREF(result);
return retval;
#endif /* ~WITH_THREAD*/
}
static size_t
_pg_rw_read(SDL_RWops *context, void *ptr, size_t size, size_t maxnum)
{
pgRWHelper *helper = (pgRWHelper *)context->hidden.unknown.data1;
PyObject *result;
Py_ssize_t retval;
#ifdef WITH_THREAD
PyGILState_STATE state;
#endif /* WITH_THREAD */
if (helper->fileno != -1) {
retval = read(helper->fileno, ptr, (unsigned int)(size * maxnum));
if (retval == -1) {
return -1;
}
retval /= size;
return retval;
}
if (!helper->read)
return -1;
#ifdef WITH_THREAD
state = PyGILState_Ensure();
#endif /* WITH_THREAD */
result = PyObject_CallFunction(helper->read, "K",
(unsigned long long)size * maxnum);
if (!result) {
PyErr_Print();
retval = -1;
goto end;
}
if (!PyBytes_Check(result)) {
Py_DECREF(result);
PyErr_Print();
retval = -1;
goto end;
}
retval = PyBytes_GET_SIZE(result);
if (retval) {
memcpy(ptr, PyBytes_AsString(result), retval);
retval /= size;
}
Py_DECREF(result);
end:
#ifdef WITH_THREAD
PyGILState_Release(state);
#endif /* WITH_THREAD */
return retval;
}
static SDL_RWops *
_rwops_from_pystr(PyObject *obj, char **extptr)
{
SDL_RWops *rw = NULL;
PyObject *oencoded;
char *encoded = NULL;
/* If a valid extptr has been passed, we want it to default to NULL
* to show that an extension hasn't been procured (if it has it will
* get set to that later) */
if (extptr) {
*extptr = NULL;
}
if (!obj) {
// forward any errors
return NULL;
}
oencoded = pg_EncodeString(obj, "UTF-8", NULL, NULL);
if (!oencoded || oencoded == Py_None) {
/* if oencoded is NULL, we are forwarding an error. If it is None, the
* object passed was not a bytes/string/pathlib object so handling of
* that is done after this function, exit early here */
Py_XDECREF(oencoded);
return NULL;
}
encoded = PyBytes_AS_STRING(oencoded);
rw = SDL_RWFromFile(encoded, "rb");
if (rw) {
/* If a valid extptr has been passed, populate it with a dynamically
* allocated field for the file extension. */
if (extptr) {
char *ext = strrchr(encoded, '.');
if (ext && strlen(ext) > 1) {
ext++;
*extptr = malloc(strlen(ext) + 1);
if (!(*extptr)) {
/* If out of memory, decref oencoded to be safe, and try
* to close out `rw` as well. */
Py_DECREF(oencoded);
if (SDL_RWclose(rw) < 0) {
PyErr_SetString(PyExc_IOError, SDL_GetError());
}
return (SDL_RWops *)PyErr_NoMemory();
}
strcpy(*extptr, ext);
}
}
Py_DECREF(oencoded);
return rw;
}
Py_DECREF(oencoded);
/* Clear SDL error and set our own error message for filenotfound errors
* TODO: Check SDL error here and forward any non filenotfound related
* errors correctly here */
SDL_ClearError();
PyObject *cwd = NULL, *path = NULL, *isabs = NULL;
if (!os_module)
goto simple_case;
cwd = PyObject_CallMethod(os_module, "getcwd", NULL);
if (!cwd)
goto simple_case;
path = PyObject_GetAttrString(os_module, "path");
if (!path)
goto simple_case;
isabs = PyObject_CallMethod(path, "isabs", "O", obj);
Py_DECREF(path);
if (!isabs || isabs == Py_True)
goto simple_case;
PyErr_Format(PyExc_FileNotFoundError,
"No file '%S' found in working directory '%S'.", obj, cwd);
Py_DECREF(cwd);
Py_DECREF(isabs);
return NULL;
simple_case:
Py_XDECREF(cwd);
Py_XDECREF(isabs);
PyErr_Format(PyExc_FileNotFoundError, "No such file or directory: '%S'.",
obj);
return NULL;
}
static SDL_RWops *
pgRWops_FromObject(PyObject *obj, char **extptr)
{
#if __EMSCRIPTEN__
SDL_RWops *rw;
int retry = 0;
again:
rw = _rwops_from_pystr(obj, extptr);
if (retry)
Py_XDECREF(obj);
if (!rw) {
if (PyErr_Occurred())
return NULL;
}
else {
return rw;
}
fail:
if (retry)
return RAISE(PyExc_RuntimeError, "can't access resource on platform");
retry = 1;
PyObject *name = PyObject_GetAttrString(obj, "name");
if (name) {
obj = name;
goto again;
}
goto fail;
// unreachable.
#else
SDL_RWops *rw = _rwops_from_pystr(obj, extptr);
if (!rw) {
if (PyErr_Occurred())
return NULL;
}
else {
return rw;
}
return pgRWops_FromFileObject(obj);
#endif
}
static PyObject *
pg_encode_string(PyObject *self, PyObject *args, PyObject *keywds)
{
PyObject *obj = NULL;
PyObject *eclass = NULL;
const char *encoding = NULL;
const char *errors = NULL;
static char *kwids[] = {"obj", "encoding", "errors", "etype", NULL};
if (!PyArg_ParseTupleAndKeywords(args, keywds, "|OssO&", kwids, &obj,
&encoding, &errors,
&_pg_is_exception_class, &eclass)) {
return NULL;
}
if (obj == NULL) {
PyErr_SetString(PyExc_SyntaxError, "Forwarded exception");
}
return pg_EncodeString(obj, encoding, errors, eclass);
}
static PyObject *
pg_encode_file_path(PyObject *self, PyObject *args, PyObject *keywds)
{
PyObject *obj = NULL;
PyObject *eclass = NULL;
static char *kwids[] = {"obj", "etype", NULL};
if (!PyArg_ParseTupleAndKeywords(args, keywds, "|OO&", kwids, &obj,
&_pg_is_exception_class, &eclass)) {
return NULL;
}
if (obj == NULL) {
PyErr_SetString(PyExc_SyntaxError, "Forwarded exception");
}
return pg_EncodeFilePath(obj, eclass);
}
static PyMethodDef _pg_rwobject_methods[] = {
{"encode_string", (PyCFunction)pg_encode_string,
METH_VARARGS | METH_KEYWORDS, DOC_ENCODESTRING},
{"encode_file_path", (PyCFunction)pg_encode_file_path,
METH_VARARGS | METH_KEYWORDS, DOC_ENCODEFILEPATH},
{NULL, NULL, 0, NULL}};
/*DOC*/ static char _pg_rwobject_doc[] =
/*DOC*/ "SDL_RWops support";
MODINIT_DEFINE(rwobject)
{
PyObject *module, *apiobj;
static void *c_api[PYGAMEAPI_RWOBJECT_NUMSLOTS];
static struct PyModuleDef _module = {PyModuleDef_HEAD_INIT,
"rwobject",
_pg_rwobject_doc,
-1,
_pg_rwobject_methods,
NULL,
NULL,
NULL,
NULL};
/* Create the module and add the functions */
module = PyModule_Create(&_module);
if (module == NULL) {
return NULL;
}
/* export the c api */
c_api[0] = pgRWops_FromObject;
c_api[1] = pgRWops_IsFileObject;
c_api[2] = pg_EncodeFilePath;
c_api[3] = pg_EncodeString;
c_api[4] = pgRWops_FromFileObject;
c_api[5] = pgRWops_ReleaseObject;
apiobj = encapsulate_api(c_api, "rwobject");
if (PyModule_AddObject(module, PYGAMEAPI_LOCAL_ENTRY, apiobj)) {
Py_XDECREF(apiobj);
Py_DECREF(module);
return NULL;
}
/* import os, don't sweat if it errors, it will be checked before use */
os_module = PyImport_ImportModule("os");
if (os_module == NULL)
PyErr_Clear();
return module;
}