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
|
/*
pygame - 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
pete@shinners.org
*/
/*
* 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"
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";
#if IS_SDLv1
static int
_pg_rw_seek(SDL_RWops *, int, int);
static int
_pg_rw_read(SDL_RWops *, void *, int, int);
static int
_pg_rw_write(SDL_RWops *, const void *, int, int);
static int
_pg_rw_close(SDL_RWops *);
#else /* IS_SDLv2 */
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 *);
#endif /* IS_SDLv2 */
static int
_pg_is_exception_class(PyObject *obj, void **optr)
{
PyObject **rval = (PyObject **)optr;
PyObject *oname;
#if PY3
PyObject *tmp;
#endif
if (!PyType_Check(obj) || /* conditional or */
!PyObject_IsSubclass(obj, PyExc_BaseException)) {
oname = PyObject_Str(obj);
if (oname == NULL) {
return 0;
}
#if PY3
tmp = PyUnicode_AsEncodedString(oname, "ascii", "replace");
Py_DECREF(tmp);
if (tmp == NULL) {
return 0;
}
oname = tmp;
#endif
PyErr_Format(PyExc_TypeError,
"Expected an exception class: got %.1024s",
Bytes_AS_STRING(oname));
Py_DECREF(oname);
return 0;
}
*rval = obj;
return 1;
}
static void
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 (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;
}
}
}
static PyObject *
pg_EncodeString(PyObject *obj, const char *encoding, const char *errors,
PyObject *eclass)
{
PyObject *oencoded;
PyObject *exc_type;
PyObject *exc_value;
PyObject *exc_trace;
PyObject *str;
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;
}
if (PyUnicode_Check(obj)) {
oencoded = PyUnicode_AsEncodedString(obj, encoding, errors);
if (oencoded != NULL) {
return oencoded;
}
else if (PyErr_ExceptionMatches(PyExc_MemoryError)) {
/* Forward memory errors */
return NULL;
}
else if (eclass != NULL) {
/* Foward 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();
}
else if (Bytes_Check(obj)) {
Py_INCREF(obj);
return obj;
}
Py_RETURN_NONE;
}
static PyObject *
pg_EncodeFilePath(PyObject *obj, PyObject *eclass)
{
PyObject *result = pg_EncodeString(obj, UNICODE_DEF_FS_CODEC,
UNICODE_DEF_FS_ERROR, eclass);
if (result == NULL || result == Py_None) {
return result;
}
if ((size_t)Bytes_GET_SIZE(result) != strlen(Bytes_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",
Bytes_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;
}
#if IS_SDLv2
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 = PyInt_AsLong(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;
}
#endif /* IS_SDLv2 */
#if IS_SDLv1
static int
_pg_rw_write(SDL_RWops *context, const void *ptr, int size, int num)
#else /* IS_SDLv2 */
static size_t
_pg_rw_write(SDL_RWops *context, const void *ptr, size_t size, size_t num)
#endif /* IS_SDLv2 */
{
#ifndef WITH_THREAD
pgRWHelper *helper = (pgRWHelper *)context->hidden.unknown.data1;
PyObject *result;
if (!helper->write)
return -1;
result = PyObject_CallFunction(helper->write, "s#", ptr, 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, "s#", ptr, 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_Del(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();
}
rw = SDL_AllocRW();
if (rw == NULL) {
PyMem_Del(helper);
return (SDL_RWops *)PyErr_NoMemory();
}
helper->fileno = PyObject_AsFileDescriptor(obj);
if (helper->fileno == -1)
PyErr_Clear();
fetch_object_methods(helper, obj);
helper->file = obj;
Py_INCREF(obj);
rw->hidden.unknown.data1 = (void *)helper;
#if IS_SDLv2
rw->size = _pg_rw_size;
#endif /* IS_SDLv2 */
rw->seek = _pg_rw_seek;
rw->read = _pg_rw_read;
rw->write = _pg_rw_write;
rw->close = _pg_rw_close;
#ifdef WITH_THREAD
PyEval_InitThreads();
#endif /* WITH_THREAD */
return rw;
}
static int
pgRWops_ReleaseObject(SDL_RWops *context)
{
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;
int filerefcnt = Py_REFCNT(fileobj) - 1 - 5 /* 5 helper functions */;
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_Del(helper);
SDL_FreeRW(context);
}
else {
int ret;
if ((ret = SDL_RWclose(context)) < 0) {
RAISE(PyExc_IOError, SDL_GetError());
Py_DECREF(fileobj);
return ret;
}
}
#ifdef WITH_THREAD
PyGILState_Release(state);
#endif /* WITH_THREAD */
}
else {
int ret;
if ((ret = SDL_RWclose(context)) < 0) {
RAISE(PyExc_IOError, SDL_GetError());
return ret;
}
}
return 0;
}
#if IS_SDLv1
static int
_pg_rw_seek(SDL_RWops *context, int offset, int whence)
{
pgRWHelper *helper = (pgRWHelper *)context->hidden.unknown.data1;
PyObject *result;
int retval;
#else /* IS_SDLv2 */
static Sint64
_pg_rw_seek(SDL_RWops *context, Sint64 offset, int whence)
{
pgRWHelper *helper = (pgRWHelper *)context->hidden.unknown.data1;
PyObject *result;
Sint64 retval;
#endif /* IS_SDLv2 */
#ifdef WITH_THREAD
PyGILState_STATE state;
if (helper->fileno != -1) {
return 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, "ii", 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 = PyInt_AsLong(result);
Py_DECREF(result);
end:
PyGILState_Release(state);
return retval;
#else /* ~WITH_THREAD */
if (helper->fileno != -1) {
return 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, "ii", offset, whence);
if (!result)
return -1;
Py_DECREF(result);
}
result = PyObject_CallFunction(helper->tell, NULL);
if (!result)
return -1;
retval = PyInt_AsLong(result);
Py_DECREF(result);
return retval;
#endif /* ~WITH_THREAD*/
}
#if IS_SDLv1
static int
_pg_rw_read(SDL_RWops *context, void *ptr, int size, int maxnum)
{
pgRWHelper *helper = (pgRWHelper *)context->hidden.unknown.data1;
PyObject *result;
int retval;
#else /* IS_SDLv2 */
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;
size_t retval;
#endif /* IS_SDLv2 */
#ifdef WITH_THREAD
PyGILState_STATE state;
#endif /* WITH_THREAD */
if (helper->fileno != -1) {
retval = read(helper->fileno, ptr, 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, "i", size * maxnum);
if (!result) {
PyErr_Print();
retval = -1;
goto end;
}
if (!Bytes_Check(result)) {
Py_DECREF(result);
PyErr_Print();
retval = -1;
goto end;
}
retval = Bytes_GET_SIZE(result);
memcpy(ptr, Bytes_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)
{
if (obj != NULL) {
SDL_RWops *rw = NULL;
PyObject *oencoded;
oencoded = pg_EncodeString(obj, "UTF-8", NULL, NULL);
if (oencoded == NULL) {
return NULL;
}
if (oencoded != Py_None) {
rw = SDL_RWFromFile(Bytes_AS_STRING(oencoded), "rb");
}
Py_DECREF(oencoded);
if (rw) {
return rw;
} else {
#if PY3
if (PyUnicode_Check(obj)) {
SDL_ClearError();
RAISE(PyExc_FileNotFoundError, "No such file or directory.");
#else
if (PyUnicode_Check(obj) || PyString_Check(obj)) {
SDL_ClearError();
RAISE(PyExc_IOError, "No such file or directory.");
#endif
return NULL;
}
}
SDL_ClearError();
}
return NULL;
}
static SDL_RWops *
pgRWops_FromObject(PyObject *obj)
{
SDL_RWops *rw = _rwops_from_pystr(obj);
if (!rw) {
if (PyErr_Occurred())
return NULL;
} else {
return rw;
}
return pgRWops_FromFileObject(obj);
}
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) {
RAISE(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) {
RAISE(PyExc_SyntaxError, "Forwarded exception");
}
return pg_EncodeFilePath(obj, eclass);
}
static PyMethodDef _pg_module_methods[] = {
{"encode_string", (PyCFunction)pg_encode_string,
METH_VARARGS | METH_KEYWORDS, DOC_PYGAMEENCODESTRING},
{"encode_file_path", (PyCFunction)pg_encode_file_path,
METH_VARARGS | METH_KEYWORDS, DOC_PYGAMEENCODEFILEPATH},
{NULL, NULL, 0, NULL}};
/*DOC*/ static char _pg_module_doc[] =
/*DOC*/ "SDL_RWops support";
MODINIT_DEFINE(rwobject)
{
PyObject *module, *dict, *apiobj;
int ecode;
static void *c_api[PYGAMEAPI_RWOBJECT_NUMSLOTS];
#if PY3
static struct PyModuleDef _module = {PyModuleDef_HEAD_INIT,
"rwobject",
_pg_module_doc,
-1,
_pg_module_methods,
NULL,
NULL,
NULL,
NULL};
#endif
/* Create the module and add the functions */
#if PY3
module = PyModule_Create(&_module);
#else
module = Py_InitModule3(MODPREFIX "rwobject", _pg_module_methods,
_pg_module_doc);
#endif
if (module == NULL) {
MODINIT_ERROR;
}
dict = PyModule_GetDict(module);
/* 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 (apiobj == NULL) {
DECREF_MOD(module);
MODINIT_ERROR;
}
ecode = PyDict_SetItemString(dict, PYGAMEAPI_LOCAL_ENTRY, apiobj);
Py_DECREF(apiobj);
if (ecode == -1) {
DECREF_MOD(module);
MODINIT_ERROR;
}
MODINIT_RETURN(module);
}
|