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 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
|
/*
mxQueue -- A queue implementation
Copyright (c) 1999-2000, Marc-Andre Lemburg; mailto:mal@lemburg.com
Copyright (c) 2000-2014, eGenix.com Software GmbH; mailto:info@egenix.com
See the documentation for further copyright information or contact
the author (mailto:mal@lemburg.com).
*/
/* Define this to aid in finding memory leaks */
/*#define MAL_MEM_DEBUG*/
/*#define MAL_DEBUG*/
/* Logging file used by debugging facility */
#ifndef MAL_DEBUG_OUTPUTFILE
# define MAL_DEBUG_OUTPUTFILE "mxQueue.log"
#endif
/* We want all our symbols to be exported */
#define MX_BUILDING_MXQUEUE
/* Mark the module as Py_ssize_t clean. */
#define PY_SSIZE_T_CLEAN 1
/* Setup mxstdlib memory management */
#if 1
# define MAL_USE_PYMALLOC
#else
# define MAL_USE_C_MALLOC
#endif
#include "mx.h"
#include "mxQueue.h"
#define MXQUEUE_VERSION "3.2.8"
/* The minimal size of queues; must be > 1 */
#define MINIMAL_QUEUESIZE 4
/* Grow strategy to be used: */
#if 1
/* Fibonacci-like */
# define GROW(size) size += size >> 1
#else
/* Double */
# define GROW(size) size <<= 1
#endif
/* --- module doc-string -------------------------------------------------- */
static char *Module_docstring =
MXQUEUE_MODULE" -- A queue implementation. Version "MXQUEUE_VERSION"\n\n"
"Copyright (c) 1999-2000, Marc-Andre Lemburg; mailto:mal@lemburg.com\n"
"Copyright (c) 2000-2014, eGenix.com Software GmbH; mailto:info@egenix.com\n\n"
" All Rights Reserved\n\n"
"See the documentation for further information on copyrights,\n"
"or contact the author."
;
/* --- module globals ----------------------------------------------------- */
static PyObject *mxQueue_Error; /* Error Exception
object */
static PyObject *mxQueue_EmptyError; /* EmptyError Exception
object */
/* Flag telling us whether the module was initialized or not. */
static int mxQueue_Initialized = 0;
/* --- forward declarations ----------------------------------------------- */
staticforward PyTypeObject mxQueue_Type;
staticforward PyMethodDef mxQueue_Methods[];
/* --- internal macros ---------------------------------------------------- */
#define _mxQueue_Check(v) \
(((mxQueueObject *)(v))->ob_type == &mxQueue_Type)
/* --- module helpers ----------------------------------------------------- */
/* Create an exception object, insert it into the module dictionary
under the given name and return the object pointer; this is NULL in
case an error occurred. base can be given to indicate the base
object to be used by the exception object. It should be NULL
otherwise */
static
PyObject *insexc(PyObject *moddict,
char *name,
PyObject *base)
{
PyObject *v;
char fullname[256];
char *modname;
char *dot;
v = PyDict_GetItemString(moddict, "__name__");
if (v == NULL)
modname = NULL;
else
modname = PyString_AsString(v);
if (modname == NULL) {
PyErr_Clear();
modname = MXQUEUE_MODULE;
}
/* The symbols from this extension are imported into
mx.<packagename>. We trim the name to not confuse the user with
an overly long package path. */
strcpy(fullname, modname);
dot = strchr(fullname, '.');
if (dot)
dot = strchr(dot+1, '.');
if (dot)
strcpy(dot+1, name);
else
sprintf(fullname, "%s.%s", modname, name);
v = PyErr_NewException(fullname, base, NULL);
if (v == NULL)
return NULL;
if (PyDict_SetItemString(moddict,name,v))
return NULL;
return v;
}
#if 0
/* Helper for adding integer constants. Check for errors with
PyErr_Occurred() */
static
void insint(PyObject *dict,
char *name,
int value)
{
PyObject *v = PyInt_FromLong((long)value);
PyDict_SetItemString(dict, name, v);
Py_XDECREF(v);
}
#endif
static
PyObject *notimplemented1(PyObject *v)
{
Py_Error(PyExc_TypeError,
"operation not implemented");
onError:
return NULL;
}
static
PyObject *notimplemented2(PyObject *v, PyObject *w)
{
Py_Error(PyExc_TypeError,
"operation not implemented");
onError:
return NULL;
}
static
PyObject *notimplemented3(PyObject *u, PyObject *v, PyObject *w)
{
Py_Error(PyExc_TypeError,
"operation not implemented");
onError:
return NULL;
}
/* --- Queue Object -------------------------------------------------*/
/* --- allocation --- */
static
mxQueueObject *mxQueue_New(Py_ssize_t size)
{
mxQueueObject *queue;
PyObject **w;
queue = PyObject_NEW(mxQueueObject,&mxQueue_Type);
if (queue == NULL)
return NULL;
/* Init vars */
if (size < MINIMAL_QUEUESIZE)
size = MINIMAL_QUEUESIZE;
w = new(PyObject*,size);
if (w == NULL) {
PyErr_NoMemory();
return NULL;
}
queue->array = w;
queue->size = size;
queue->tail = queue->head = size - 1;
DPRINTF("Created Queue object at 0x%0lx with size %i\n",
(long)queue,size);
return queue;
}
/* --- deallocation --- */
static
void mxQueue_Free(register mxQueueObject *queue)
{
if (queue->array) {
register Py_ssize_t i;
Py_ssize_t head = queue->head,
size = queue->size;
for (i = queue->tail; i != head; i = (i+1) % size)
Py_DECREF(queue->array[i]);
free(queue->array);
}
PyObject_Del(queue);
}
/* --- internal functions --- */
/* --- API functions --- */
static
Py_ssize_t _mxQueue_Length(register mxQueueObject *queue)
{
register Py_ssize_t len = queue->head - queue->tail;
if (len < 0)
len += queue->size;
return len;
}
static
Py_ssize_t mxQueue_Length(register PyObject *queue)
{
return _mxQueue_Length((mxQueueObject *)queue);
}
static
int mxQueue_Push(register mxQueueObject *queue,
PyObject *v)
{
Py_ssize_t tail,size = queue->size;
if (queue == NULL) {
PyErr_BadInternalCall();
goto onError;
}
tail = queue->tail - 1;
if (tail < 0)
tail += size;
DPRINTF("Old tail=%i, New tail=%i\n",queue->tail,tail);
/* Grow the queue first, if we have touching ends */
if (queue->head == tail) {
PyObject **w;
Py_ssize_t oldsize,oldtail;
oldsize = size;
oldtail = queue->tail;
GROW(size);
w = resize(queue->array,PyObject*,size);
if (w == NULL) {
PyErr_NoMemory();
goto onError;
}
queue->array = w;
queue->size = size;
/* Adjust the pointers and copy the right part of the queue to
the end of the array */
queue->tail += size - oldsize;
if (oldtail < queue->head)
queue->head += size - oldsize;
memmove(&w[queue->tail],
&w[oldtail],
(oldsize - oldtail) * sizeof(PyObject *));
/* Recalculate the new tail position */
tail = queue->tail - 1;
}
Py_INCREF(v);
queue->array[tail] = v;
queue->tail = tail;
return 0;
onError:
return -1;
}
#if 0
static
int mxQueue_PushMany(register mxQueueObject *queue,
PyObject *seq)
{
Py_ssize_t tail;
register Py_ssize_t i;
Py_ssize_t length;
if (queue == NULL) {
PyErr_BadInternalCall();
goto onError;
}
length = PySequence_Length(seq);
if (length < 0)
goto onError;
tail = queue->tail;
/* Grow the queue, if we hit the array boundary */
if (tail + length >= queue->size) {
register PyObject **w;
register Py_ssize_t size;
size = queue->size;
while (tail + length >= size)
GROW(size);
w = resize(queue->array,PyObject*,size);
if (w == NULL) {
PyErr_NoMemory();
goto onError;
}
queue->array = w;
queue->size = size;
}
/* Push the entries from left to right onto the queue */
for (i = 0; i < length; i++) {
register PyObject *v;
if (PyTuple_Check(seq)) {
v = PyTuple_GET_ITEM(seq,i);
Py_INCREF(v);
}
else if (PyList_Check(seq)) {
v = PyList_GET_ITEM(seq,i);
Py_INCREF(v);
}
else {
v = PySequence_GetItem(seq,i);
if (!v) {
/* Rollback */
while (i > 0) {
Py_DECREF(queue->array[tail--]);
i--;
}
queue->tail = tail;
goto onError;
}
}
queue->array[++tail] = v;
}
queue->tail = tail;
return 0;
onError:
return -1;
}
#endif
static
PyObject *mxQueue_Pop(register mxQueueObject *queue)
{
PyObject *v;
Py_ssize_t head = queue->head;
if (queue == NULL) {
PyErr_BadInternalCall();
goto onError;
}
Py_Assert(head != queue->tail,
mxQueue_EmptyError,
"queue is empty");
head--;
if (head < 0)
head += queue->size;
v = queue->array[head];
queue->head = head;
return v;
onError:
return NULL;
}
#if 0
/* Pop up to n entries into a Python tuple from the tail of the queue;
order is tail to bottom. */
static
PyObject *mxQueue_PopMany(register mxQueueObject *queue,
Py_ssize_t n)
{
PyObject *t;
register Py_ssize_t i;
if (queue == NULL) {
PyErr_BadInternalCall();
goto onError;
}
n = min(queue->tail + 1, n);
t = PyTuple_New(n);
if (!t)
goto onError;
for (i = 0; i < n; i++)
PyTuple_SET_ITEM(t,i,queue->array[queue->tail--]);
return t;
onError:
return NULL;
}
#endif
static
int mxQueue_Clear(register mxQueueObject *queue)
{
register Py_ssize_t i;
Py_ssize_t size = queue->size,
head = queue->head;
if (head != queue->tail)
for (i = queue->tail;; i = (i+1) % size) {
Py_DECREF(queue->array[i]);
if (i == head)
break;
}
queue->tail = queue->head = queue->size - 1;
return 0;
}
#if 0
static
mxQueueObject *mxQueue_FromSequence(PyObject *seq)
{
mxQueueObject *queue = 0;
/* Create an "empty" queue */
queue = mxQueue_New(0);
if (queue == NULL)
goto onError;
/* Insert items */
if (mxQueue_PushMany(queue,seq))
goto onError;
return queue;
onError:
if (queue)
mxQueue_Free(queue);
return NULL;
}
static
PyObject *mxQueue_AsTuple(register mxQueueObject *queue)
{
PyObject *t = 0;
Py_ssize_t i,len;
if (queue == NULL) {
PyErr_BadInternalCall();
goto onError;
}
len = queue->tail + 1;
t = PyTuple_New(len);
if (t == NULL)
goto onError;
for (i = 0; i < len; i++) {
PyObject *v;
v = queue->array[i];
Py_INCREF(v);
PyTuple_SET_ITEM(t,i,v);
}
return t;
onError:
if (t) {
Py_DECREF(t);
}
return NULL;
}
static
PyObject *mxQueue_AsList(register mxQueueObject *queue)
{
PyObject *l = 0;
Py_ssize_t i,len;
if (queue == NULL) {
PyErr_BadInternalCall();
goto onError;
}
len = queue->tail + 1;
l = PyList_New(len);
if (l == NULL)
goto onError;
for (i = 0; i < len; i++) {
PyObject *v;
v = queue->array[i];
Py_INCREF(v);
PyList_SET_ITEM(l,i,v);
}
return l;
onError:
if (l) {
Py_DECREF(l);
}
return NULL;
}
#endif
#if 0
static
int mxQueue_Resize(register mxQueueObject *self,
Py_ssize_t size)
{
register PyObject **w;
if (self == NULL) {
PyErr_BadInternalCall();
goto onError;
}
if (size < self->tail)
size = self->tail + 1;
if (size < MINIMAL_QUEUESIZE)
size = MINIMAL_QUEUESIZE;
GROW(size);
w = resize(self->array,PyObject*,size);
if (w == NULL) {
PyErr_NoMemory();
goto onError;
}
self->array = w;
self->size = size;
return 0;
onError:
return -1;
}
#endif
/* --- methods --- (should have lowercase extension) */
#define queue ((mxQueueObject*)self)
Py_C_Function( mxQueue_new,
"Queue([intialsize])")
{
PyObject *v;
Py_ssize_t size = 0;
Py_GetArg("|"Py_SSIZE_T_PARSERMARKER, size);
v = (PyObject *)mxQueue_New(size);
if (v == NULL)
goto onError;
return v;
onError:
return NULL;
}
Py_C_Function( mxQueue_push,
"push(o)")
{
PyObject *v;
Py_GetArgObject(v);
if (mxQueue_Push(queue,v))
goto onError;
Py_ReturnNone();
onError:
return NULL;
}
#if 0
Py_C_Function( mxQueue_push_many,
"push_many(sequence)")
{
PyObject *seq;
Py_GetSingleArg("O",seq);
if (mxQueue_PushMany(queue,seq))
goto onError;
Py_ReturnNone();
onError:
return NULL;
}
#endif
Py_C_Function( mxQueue_pop,
"pop()")
{
register PyObject *v;
Py_NoArgsCheck();
v = mxQueue_Pop(queue);
if (v == NULL)
goto onError;
return v;
onError:
return NULL;
}
#if 0
Py_C_Function( mxQueue_pop_many,
"pop_many(n)")
{
register PyObject *v;
Py_ssize_t n;
Py_GetSingleArg(Py_SSIZE_T_PARSERMARKER, n);
v = mxQueue_PopMany(queue,n);
if (v == NULL)
goto onError;
return v;
onError:
return NULL;
}
#endif
Py_C_Function( mxQueue_clear,
"clear()")
{
Py_NoArgsCheck();
if (mxQueue_Clear(queue))
goto onError;
Py_ReturnNone();
onError:
return NULL;
}
#if 0
Py_C_Function( mxQueue_as_tuple,
"as_tuple()")
{
register PyObject *v;
Py_NoArgsCheck();
v = mxQueue_AsTuple(queue);
if (v == NULL)
goto onError;
return v;
onError:
return NULL;
}
Py_C_Function( mxQueue_as_list,
"as_list()")
{
register PyObject *v;
Py_NoArgsCheck();
v = mxQueue_AsList(queue);
if (v == NULL)
goto onError;
return v;
onError:
return NULL;
}
Py_C_Function( mxQueue_resize,
"resize([size=len(queue)])")
{
Py_ssize_t size = mxQueue_Length(queue);
Py_GetArg("|"Py_SSIZE_T_PARSERMARKER,size);
if (mxQueue_Resize(queue,size))
goto onError;
Py_ReturnNone();
onError:
return NULL;
}
#endif
#undef queue
/* --- slots --- */
static
int mxQueue_Print(PyObject *obj,
FILE *fp,
int flags)
{
mxQueueObject *self = (mxQueueObject *)obj;
Py_ssize_t i,
head = self->head,
tail = self->tail,
size = self->size;
fprintf(fp, "Queue[");
#if 1
for (i = tail; i != head; i = (i+1) % size) {
if (i != tail)
fprintf(fp, ", ");
if (PyObject_Print(self->array[i], fp, flags))
goto onError;
}
#else
/* To ease debugging... */
for (i = 0; i < size; i++) {
if (i > 0)
fprintf(fp, ", ");
fprintf(fp, "0x%lx", (long)self->array[i]);
}
#endif
fprintf(fp, "]");
return 0;
onError:
return -1;
}
static
PyObject *mxQueue_Repr(PyObject *obj)
{
mxQueueObject *self = (mxQueueObject *)obj;
char s[256];
#if 1
sprintf(s,"<Queue object at %lx>", (long)self);
#else
/* To ease debugging... */
sprintf(s,"<Queue object at %lx, head=%i, tail=%i, size=%i, len=%i>",
(long)self,
self->head,self->tail,self->size,mxQueue_Length(self));
#endif
return PyString_FromString(s);
}
static
int mxQueue_Compare(PyObject *left,
PyObject *right)
{
mxQueueObject *v = (mxQueueObject *)left;
mxQueueObject *w = (mxQueueObject *)right;
Py_ssize_t v_len = _mxQueue_Length(v);
Py_ssize_t w_len = _mxQueue_Length(w);
Py_ssize_t len = min(v_len,w_len);
Py_ssize_t i,j,k;
for (i = v->tail, j = w->tail, k = 0;
k < len;
k++, i = (i+1) % v->size, j = (j+1) % w->size) {
int cmp = PyObject_Compare(v->array[i],w->array[j]);
if (cmp != 0)
return cmp;
}
if (v_len < w_len)
return -1;
else if (v_len == w_len)
return 0;
else
return 1;
}
static
PyObject *mxQueue_Getattr(PyObject *obj,
char *name)
{
return Py_FindMethod(mxQueue_Methods, obj, name);
}
static
int mxQueue_NonZero(PyObject *obj)
{
mxQueueObject *self = (mxQueueObject *)obj;
return self->head != self->tail;
}
/* Undocumented feature:
queue << x does queue.push(x) and returns queue
queue >> 1 return queue.pop()
queue >> n returns queue.pop_many(n)
To make this work, we need a few hacks... :-(
We make anything coerce and then check the arguments to the number
slot functions. Unfortunately this only works if the left hand
argument is a Queue. If the left hand argument is something else,
you better press your thumbs and duck cover... (Na, it's not that
dangerous, but the results are pretty much undefined.)
*/
static
int mxQueue_Coerce(PyObject **pv,
PyObject **pw)
{
if (_mxQueue_Check(*pv)) {
/* Anything goes... */
Py_INCREF(*pv);
Py_INCREF(*pw);
DPRINTF("Queue coerced ok\n");
return 0;
}
DPRINTF("Queue coerce failed\n");
return 1;
}
static
PyObject *mxQueue_LeftShift(PyObject *left,
PyObject *right)
{
mxQueueObject *self = (mxQueueObject *)left;
/* Queue << Object -> (Queue.push(Object),Queue) */
mxQueue_Push(self, right);
Py_INCREF(self);
return left;
}
static
PyObject *mxQueue_RightShift(PyObject *left,
PyObject *right)
{
mxQueueObject *self = (mxQueueObject *)left;
long n;
/* Queue >> Integer -> Queue.pop_many(Integer) */
if (!PyInt_Check(right))
Py_Error(PyExc_TypeError,
"right side of >> must an integer");
n = PyInt_AS_LONG(right);
/* XXX Doesn't work yet... */
n = 1;
#if 0
Py_Assert(n > 0,
PyExc_TypeError,
"you can only pop 1 or more entries");
if (n == 1)
return mxQueue_Pop(self);
else
return mxQueue_PopMany(self, n);
#else
return mxQueue_Pop(self);
#endif
onError:
return NULL;
}
/* Python Type Tables */
static
PySequenceMethods mxQueue_TypeAsSequence = {
mxQueue_Length, /*sq_length*/
0, /*sq_concat*/
0, /*sq_repeat*/
0, /*sq_item*/
0, /*sq_slice*/
0, /*sq_ass_item*/
0, /*sq_ass_slice*/
};
static
PyNumberMethods mxQueue_TypeAsNumber = {
/* These slots are not NULL-checked, so we must provide dummy functions */
notimplemented2, /*nb_add*/
notimplemented2, /*nb_subtract*/
notimplemented2, /*nb_multiply*/
notimplemented2, /*nb_divide*/
notimplemented2, /*nb_remainder*/
notimplemented2, /*nb_divmod*/
notimplemented3, /*nb_power*/
notimplemented1, /*nb_negative*/
notimplemented1, /*nb_positive*/
/* Everything below this line EXCEPT nb_nonzero (!) is NULL checked */
0, /*nb_absolute*/
mxQueue_NonZero, /*nb_nonzero*/
0, /*nb_invert*/
mxQueue_LeftShift, /*nb_lshift*/
mxQueue_RightShift, /*nb_rshift*/
notimplemented2, /*nb_and*/
notimplemented2, /*nb_xor*/
notimplemented2, /*nb_or*/
mxQueue_Coerce, /*nb_coerce*/
0, /*nb_int*/
0, /*nb_long*/
0, /*nb_float*/
0, /*nb_oct*/
0, /*nb_hex*/
};
statichere
PyTypeObject mxQueue_Type = {
PyObject_HEAD_INIT(0) /* init at startup ! */
0, /*ob_size*/
"Queue", /*tp_name*/
sizeof(mxQueueObject), /*tp_basicsize*/
0, /*tp_itemsize*/
/* slots */
(destructor)mxQueue_Free, /*tp_dealloc*/
mxQueue_Print, /*tp_print*/
mxQueue_Getattr, /*tp_getattr*/
0, /*tp_setattr*/
mxQueue_Compare, /*tp_compare*/
mxQueue_Repr, /*tp_repr*/
&mxQueue_TypeAsNumber, /*tp_as_number*/
&mxQueue_TypeAsSequence, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT, /*tp_flags*/
0, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
mxQueue_Methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
0, /* tp_free */
};
/* Python Method Table */
statichere
PyMethodDef mxQueue_Methods[] =
{
Py_MethodListEntrySingleArg("push",mxQueue_push),
Py_MethodListEntryNoArgs("pop",mxQueue_pop),
Py_MethodListEntryNoArgs("clear",mxQueue_clear),
#if 0
Py_MethodListEntrySingleArg("push_many",mxQueue_push_many),
Py_MethodListEntrySingleArg("pop_many",mxQueue_pop_many),
Py_MethodListEntryNoArgs("as_tuple",mxQueue_as_tuple),
Py_MethodListEntryNoArgs("as_list",mxQueue_as_list),
Py_MethodListEntry("resize",mxQueue_resize),
#endif
{NULL,NULL} /* end of list */
};
/* --- Other functions ----------------------------------------------------- */
#if 0
Py_C_Function( mxQueue_QueueFromSequence,
"QueueFromSequence(seq)")
{
PyObject *v;
PyObject *queue;
Py_GetArg("O",v);
Py_Assert(PySequence_Check(v),
PyExc_TypeError,
"argument must be a sequence");
queue = (PyObject *)mxQueue_FromSequence(v);
if (queue == NULL)
goto onError;
return queue;
onError:
return NULL;
}
#endif
/* --- module init --------------------------------------------------------- */
/* Python Method Table */
static
PyMethodDef Module_methods[] =
{
Py_MethodListEntry("Queue",mxQueue_new),
#if 0
Py_MethodListEntry("QueueFromSequence",mxQueue_QueueFromSequence),
#endif
{NULL,NULL} /* end of list */
};
/* C API table */
static
mxQueueModule_APIObject mxQueueModuleAPI =
{
&mxQueue_Type,
mxQueue_New,
mxQueue_Push,
mxQueue_Pop,
mxQueue_Clear,
_mxQueue_Length
#if 0
,mxQueue_FromSequence,
mxQueue_AsTuple,
mxQueue_AsList,
mxQueue_PopMany,
mxQueue_PushMany
#endif
};
/* Cleanup function */
static
void mxQueueModule_Cleanup(void)
{
/* Reset mxQueue_Initialized flag */
mxQueue_Initialized = 0;
}
/* create PyMethodObjects and register them in the module's dict */
MX_EXPORT(void)
initmxQueue(void)
{
PyObject *module, *moddict, *api;
if (mxQueue_Initialized)
Py_Error(PyExc_SystemError,
"can't initialize "MXQUEUE_MODULE" more than once");
/* Init type objects */
PyType_Init(mxQueue_Type);
/* create module */
module = Py_InitModule4(MXQUEUE_MODULE, /* Module name */
Module_methods, /* Method list */
Module_docstring, /* Module doc-string */
(PyObject *)NULL, /* always pass this as *self */
PYTHON_API_VERSION); /* API Version */
if (module == NULL)
goto onError;
/* Register cleanup function */
if (Py_AtExit(mxQueueModule_Cleanup)) {
/* XXX what to do if we can't register that function ??? */
DPRINTF("* Failed to register mxQueue cleanup function\n");
}
/* Add some constants to the module's dict */
moddict = PyModule_GetDict(module);
PyDict_SetItemString(moddict,
"__version__",
PyString_FromString(MXQUEUE_VERSION));
/* Errors */
if (!(mxQueue_Error = insexc(moddict,"Error",PyExc_IndexError)))
goto onError;
if (!(mxQueue_EmptyError = insexc(moddict,"EmptyError",mxQueue_Error)))
goto onError;
/* Type objects */
Py_INCREF(&mxQueue_Type);
PyDict_SetItemString(moddict, "QueueType",
(PyObject *)&mxQueue_Type);
/* Export C API */
api = PyCObject_FromVoidPtr((void *)&mxQueueModuleAPI, NULL);
if (api == NULL)
goto onError;
PyDict_SetItemString(moddict,MXQUEUE_MODULE"API",api);
Py_DECREF(api);
/* We are now initialized */
mxQueue_Initialized = 1;
onError:
/* Check for errors and report them */
if (PyErr_Occurred())
Py_ReportModuleInitError(MXQUEUE_MODULE);
return;
}
|