operator.c 19.3 KB
Newer Older
1 2 3 4 5

#include "Python.h"

PyDoc_STRVAR(operator_doc,
"Operator interface.\n\
6 7 8 9 10
\n\
This module exports a set of functions implemented in C corresponding\n\
to the intrinsic operators of Python.  For example, operator.add(x, y)\n\
is equivalent to the expression x+y.  The function names are those\n\
used for special class methods; variants without leading and trailing\n\
11
'__' are also provided for convenience.");
12

13
#define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \
14 15
  return AOP(a1); }

Fred Drake's avatar
Fred Drake committed
16
#define spam2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
17
  PyObject *a1, *a2; \
18
  if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
19 20
  return AOP(a1,a2); }

Fred Drake's avatar
Fred Drake committed
21
#define spamoi(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
22
  PyObject *a1; int a2; \
23
  if(! PyArg_ParseTuple(a,"Oi:" #OP,&a1,&a2)) return NULL; \
24 25
  return AOP(a1,a2); }

Fred Drake's avatar
Fred Drake committed
26
#define spam2n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
27
  PyObject *a1, *a2; \
28
  if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
29 30 31 32
  if(-1 == AOP(a1,a2)) return NULL; \
  Py_INCREF(Py_None); \
  return Py_None; }

Fred Drake's avatar
Fred Drake committed
33
#define spam3n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
34
  PyObject *a1, *a2, *a3; \
35
  if(! PyArg_UnpackTuple(a,#OP,3,3,&a1,&a2,&a3)) return NULL; \
36 37 38 39
  if(-1 == AOP(a1,a2,a3)) return NULL; \
  Py_INCREF(Py_None); \
  return Py_None; }

40 41
#define spami(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \
  long r; \
42
  if(-1 == (r=AOP(a1))) return NULL; \
43
  return PyBool_FromLong(r); }
44

Fred Drake's avatar
Fred Drake committed
45
#define spami2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
46
  PyObject *a1, *a2; long r; \
47
  if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
48
  if(-1 == (r=AOP(a1,a2))) return NULL; \
49
  return PyLong_FromLong(r); }
50

51 52 53 54
#define spamn2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
  PyObject *a1, *a2; Py_ssize_t r; \
  if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
  if(-1 == (r=AOP(a1,a2))) return NULL; \
55
  return PyLong_FromSsize_t(r); }
56

57 58
#define spami2b(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
  PyObject *a1, *a2; long r; \
59
  if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
60 61 62
  if(-1 == (r=AOP(a1,a2))) return NULL; \
  return PyBool_FromLong(r); }

63 64
#define spamrc(OP,A) static PyObject *OP(PyObject *s, PyObject *a) { \
  PyObject *a1, *a2; \
65
  if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
66 67
  return PyObject_RichCompare(a1,a2,A); }

68
spami(truth            , PyObject_IsTrue)
69 70 71
spam2(op_add           , PyNumber_Add)
spam2(op_sub           , PyNumber_Subtract)
spam2(op_mul           , PyNumber_Multiply)
72 73
spam2(op_floordiv      , PyNumber_FloorDivide)
spam2(op_truediv       , PyNumber_TrueDivide)
74 75 76 77 78
spam2(op_mod           , PyNumber_Remainder)
spam1(op_neg           , PyNumber_Negative)
spam1(op_pos           , PyNumber_Positive)
spam1(op_abs           , PyNumber_Absolute)
spam1(op_inv           , PyNumber_Invert)
79
spam1(op_invert        , PyNumber_Invert)
80 81
spam2(op_lshift        , PyNumber_Lshift)
spam2(op_rshift        , PyNumber_Rshift)
Guido van Rossum's avatar
Guido van Rossum committed
82
spami(op_not_          , PyObject_Not)
83 84 85
spam2(op_and_          , PyNumber_And)
spam2(op_xor           , PyNumber_Xor)
spam2(op_or_           , PyNumber_Or)
86 87 88 89 90 91 92 93 94 95 96
spam2(op_iadd          , PyNumber_InPlaceAdd)
spam2(op_isub          , PyNumber_InPlaceSubtract)
spam2(op_imul          , PyNumber_InPlaceMultiply)
spam2(op_ifloordiv     , PyNumber_InPlaceFloorDivide)
spam2(op_itruediv      , PyNumber_InPlaceTrueDivide)
spam2(op_imod          , PyNumber_InPlaceRemainder)
spam2(op_ilshift       , PyNumber_InPlaceLshift)
spam2(op_irshift       , PyNumber_InPlaceRshift)
spam2(op_iand          , PyNumber_InPlaceAnd)
spam2(op_ixor          , PyNumber_InPlaceXor)
spam2(op_ior           , PyNumber_InPlaceOr)
97
spam2(op_concat        , PySequence_Concat)
98
spam2(op_iconcat       , PySequence_InPlaceConcat)
99
spami2b(op_contains     , PySequence_Contains)
100 101
spamn2(indexOf         , PySequence_Index)
spamn2(countOf         , PySequence_Count)
102 103 104
spam2(op_getitem       , PyObject_GetItem)
spam2n(op_delitem       , PyObject_DelItem)
spam3n(op_setitem      , PyObject_SetItem)
105 106 107 108 109 110
spamrc(op_lt           , Py_LT)
spamrc(op_le           , Py_LE)
spamrc(op_eq           , Py_EQ)
spamrc(op_ne           , Py_NE)
spamrc(op_gt           , Py_GT)
spamrc(op_ge           , Py_GE)
111

112 113 114 115
static PyObject*
op_pow(PyObject *s, PyObject *a)
{
	PyObject *a1, *a2;
116
	if (PyArg_UnpackTuple(a,"pow", 2, 2, &a1, &a2))
117 118 119 120
		return PyNumber_Power(a1, a2, Py_None);
	return NULL;
}

121 122 123 124 125 126 127 128 129
static PyObject*
op_ipow(PyObject *s, PyObject *a)
{
	PyObject *a1, *a2;
	if (PyArg_UnpackTuple(a,"ipow", 2, 2, &a1, &a2))
		return PyNumber_InPlacePower(a1, a2, Py_None);
	return NULL;
}

130 131 132
static PyObject *
op_index(PyObject *s, PyObject *a)
{
133
	return PyNumber_Index(a);
134 135
}

136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
static PyObject*
is_(PyObject *s, PyObject *a)
{
	PyObject *a1, *a2, *result = NULL;
	if (PyArg_UnpackTuple(a,"is_", 2, 2, &a1, &a2)) {
		result = (a1 == a2) ? Py_True : Py_False;
		Py_INCREF(result);
	}
	return result;
}

static PyObject*
is_not(PyObject *s, PyObject *a)
{
	PyObject *a1, *a2, *result = NULL;
	if (PyArg_UnpackTuple(a,"is_not", 2, 2, &a1, &a2)) {
		result = (a1 != a2) ? Py_True : Py_False;
		Py_INCREF(result);
	}
	return result;
}

158 159
#undef spam1
#undef spam2
160 161
#undef spam1o
#undef spam1o
162
#define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)},
Armin Rigo's avatar
Armin Rigo committed
163
#define spam2(OP,ALTOP,DOC) {#OP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, \
164
			   {#ALTOP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, 
165
#define spam1o(OP,DOC) {#OP, OP, METH_O, PyDoc_STR(DOC)},
Armin Rigo's avatar
Armin Rigo committed
166
#define spam2o(OP,ALTOP,DOC) {#OP, op_##OP, METH_O, PyDoc_STR(DOC)}, \
167
			   {#ALTOP, op_##OP, METH_O, PyDoc_STR(DOC)}, 
168 169 170

static struct PyMethodDef operator_methods[] = {

171
spam1o(truth,
172
 "truth(a) -- Return True if a is true, False otherwise.")
173
spam2(contains,__contains__,
174
 "contains(a, b) -- Same as b in a (note reversed operands).")
175
spam1(indexOf,
176
 "indexOf(a, b) -- Return the first index of b in a.")
177 178
spam1(countOf,
 "countOf(a, b) -- Return the number of times b occurs in a.")
179

180 181
spam1(is_, "is_(a, b) -- Same as a is b.")
spam1(is_not, "is_not(a, b) -- Same as a is not b.")
182
spam2o(index, __index__, "index(a) -- Same as a.__index__()")
183 184 185
spam2(add,__add__, "add(a, b) -- Same as a + b.")
spam2(sub,__sub__, "sub(a, b) -- Same as a - b.")
spam2(mul,__mul__, "mul(a, b) -- Same as a * b.")
186
spam2(floordiv,__floordiv__, "floordiv(a, b) -- Same as a // b.")
187
spam2(truediv,__truediv__, "truediv(a, b) -- Same as a / b.")
188
spam2(mod,__mod__, "mod(a, b) -- Same as a % b.")
189 190 191 192 193
spam2o(neg,__neg__, "neg(a) -- Same as -a.")
spam2o(pos,__pos__, "pos(a) -- Same as +a.")
spam2o(abs,__abs__, "abs(a) -- Same as abs(a).")
spam2o(inv,__inv__, "inv(a) -- Same as ~a.")
spam2o(invert,__invert__, "invert(a) -- Same as ~a.")
194 195
spam2(lshift,__lshift__, "lshift(a, b) -- Same as a << b.")
spam2(rshift,__rshift__, "rshift(a, b) -- Same as a >> b.")
196
spam2o(not_,__not__, "not_(a) -- Same as not a.")
197 198 199
spam2(and_,__and__, "and_(a, b) -- Same as a & b.")
spam2(xor,__xor__, "xor(a, b) -- Same as a ^ b.")
spam2(or_,__or__, "or_(a, b) -- Same as a | b.")
200 201 202 203
spam2(iadd,__iadd__, "iadd(a, b) -- Same as a += b.")
spam2(isub,__isub__, "isub(a, b) -- Same as a -= b.")
spam2(imul,__imul__, "imul(a, b) -- Same as a *= b.")
spam2(ifloordiv,__ifloordiv__, "ifloordiv(a, b) -- Same as a //= b.")
204
spam2(itruediv,__itruediv__, "itruediv(a, b) -- Same as a /= b.")
205 206 207 208 209 210
spam2(imod,__imod__, "imod(a, b) -- Same as a %= b.")
spam2(ilshift,__ilshift__, "ilshift(a, b) -- Same as a <<= b.")
spam2(irshift,__irshift__, "irshift(a, b) -- Same as a >>= b.")
spam2(iand,__iand__, "iand(a, b) -- Same as a &= b.")
spam2(ixor,__ixor__, "ixor(a, b) -- Same as a ^= b.")
spam2(ior,__ior__, "ior(a, b) -- Same as a |= b.")
211
spam2(concat,__concat__,
212
 "concat(a, b) -- Same as a + b, for a and b sequences.")
213 214
spam2(iconcat,__iconcat__,
 "iconcat(a, b) -- Same as a += b, for a and b sequences.")
215
spam2(getitem,__getitem__,
216
 "getitem(a, b) -- Same as a[b].")
217
spam2(setitem,__setitem__,
218
 "setitem(a, b, c) -- Same as a[b] = c.")
219
spam2(delitem,__delitem__,
220
 "delitem(a, b) -- Same as del a[b].")
221 222
spam2(pow,__pow__, "pow(a, b) -- Same as a ** b.")
spam2(ipow,__ipow__, "ipow(a, b) -- Same as a **= b.")
223 224 225 226 227 228
spam2(lt,__lt__, "lt(a, b) -- Same as a<b.")
spam2(le,__le__, "le(a, b) -- Same as a<=b.")
spam2(eq,__eq__, "eq(a, b) -- Same as a==b.")
spam2(ne,__ne__, "ne(a, b) -- Same as a!=b.")
spam2(gt,__gt__, "gt(a, b) -- Same as a>b.")
spam2(ge,__ge__, "ge(a, b) -- Same as a>=b.")
229

230
	{NULL,		NULL}		/* sentinel */
231 232 233

};

234
/* itemgetter object **********************************************************/
235

236 237
typedef struct {
	PyObject_HEAD
238
	Py_ssize_t nitems;
239 240 241 242 243 244 245 246 247 248
	PyObject *item;
} itemgetterobject;

static PyTypeObject itemgetter_type;

static PyObject *
itemgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
	itemgetterobject *ig;
	PyObject *item;
249
	Py_ssize_t nitems;
250

251 252 253
	if (!_PyArg_NoKeywords("itemgetter()", kwds))
		return NULL;

254 255 256 257 258 259
	nitems = PyTuple_GET_SIZE(args);
	if (nitems <= 1) {
		if (!PyArg_UnpackTuple(args, "itemgetter", 1, 1, &item))
			return NULL;
	} else 
		item = args;
260 261 262 263 264 265 266 267

	/* create itemgetterobject structure */
	ig = PyObject_GC_New(itemgetterobject, &itemgetter_type);
	if (ig == NULL) 
		return NULL;	
	
	Py_INCREF(item);
	ig->item = item;
268
	ig->nitems = nitems;
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284

	PyObject_GC_Track(ig);
	return (PyObject *)ig;
}

static void
itemgetter_dealloc(itemgetterobject *ig)
{
	PyObject_GC_UnTrack(ig);
	Py_XDECREF(ig->item);
	PyObject_GC_Del(ig);
}

static int
itemgetter_traverse(itemgetterobject *ig, visitproc visit, void *arg)
{
285
	Py_VISIT(ig->item);
286 287 288 289 290 291
	return 0;
}

static PyObject *
itemgetter_call(itemgetterobject *ig, PyObject *args, PyObject *kw)
{
292
	PyObject *obj, *result;
293
	Py_ssize_t i, nitems=ig->nitems;
294 295 296

	if (!PyArg_UnpackTuple(args, "itemgetter", 1, 1, &obj))
		return NULL;
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
	if (nitems == 1)
		return PyObject_GetItem(obj, ig->item);

	assert(PyTuple_Check(ig->item));
	assert(PyTuple_GET_SIZE(ig->item) == nitems);

	result = PyTuple_New(nitems);
	if (result == NULL)
		return NULL;

	for (i=0 ; i < nitems ; i++) {
		PyObject *item, *val;
		item = PyTuple_GET_ITEM(ig->item, i);
		val = PyObject_GetItem(obj, item);
		if (val == NULL) {
			Py_DECREF(result);
			return NULL;
		}
		PyTuple_SET_ITEM(result, i, val);
	}
	return result;
318 319 320
}

PyDoc_STRVAR(itemgetter_doc,
321
"itemgetter(item, ...) --> itemgetter object\n\
322
\n\
323 324 325
Return a callable object that fetches the given item(s) from its operand.\n\
After, f=itemgetter(2), the call f(r) returns r[2].\n\
After, g=itemgetter(2,5,3), the call g(r) returns (r[2], r[5], r[3])");
326 327

static PyTypeObject itemgetter_type = {
328
	PyVarObject_HEAD_INIT(NULL, 0)
Raymond Hettinger's avatar
Raymond Hettinger committed
329
	"operator.itemgetter",		/* tp_name */
330 331 332 333 334 335 336
	sizeof(itemgetterobject),	/* tp_basicsize */
	0,				/* tp_itemsize */
	/* methods */
	(destructor)itemgetter_dealloc,	/* tp_dealloc */
	0,				/* tp_print */
	0,				/* tp_getattr */
	0,				/* tp_setattr */
337
	0,				/* tp_reserved */
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
	0,				/* tp_repr */
	0,				/* tp_as_number */
	0,				/* tp_as_sequence */
	0,				/* tp_as_mapping */
	0,				/* tp_hash */
	(ternaryfunc)itemgetter_call,	/* tp_call */
	0,				/* tp_str */
	PyObject_GenericGetAttr,	/* tp_getattro */
	0,				/* tp_setattro */
	0,				/* tp_as_buffer */
	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,	/* tp_flags */
	itemgetter_doc,			/* tp_doc */
	(traverseproc)itemgetter_traverse,	/* tp_traverse */
	0,				/* tp_clear */
	0,				/* tp_richcompare */
	0,				/* tp_weaklistoffset */
	0,				/* tp_iter */
	0,				/* tp_iternext */
	0,				/* 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 */
	itemgetter_new,			/* tp_new */
	0,				/* tp_free */
};


/* attrgetter object **********************************************************/

typedef struct {
	PyObject_HEAD
375
	Py_ssize_t nattrs;
376 377 378 379 380 381 382 383 384 385
	PyObject *attr;
} attrgetterobject;

static PyTypeObject attrgetter_type;

static PyObject *
attrgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
	attrgetterobject *ag;
	PyObject *attr;
386
	Py_ssize_t nattrs;
387

388 389 390
	if (!_PyArg_NoKeywords("attrgetter()", kwds))
		return NULL;

391 392 393 394 395 396
	nattrs = PyTuple_GET_SIZE(args);
	if (nattrs <= 1) {
		if (!PyArg_UnpackTuple(args, "attrgetter", 1, 1, &attr))
			return NULL;
	} else 
		attr = args;
397 398 399 400 401 402 403 404

	/* create attrgetterobject structure */
	ag = PyObject_GC_New(attrgetterobject, &attrgetter_type);
	if (ag == NULL) 
		return NULL;	
	
	Py_INCREF(attr);
	ag->attr = attr;
405
	ag->nattrs = nattrs;
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421

	PyObject_GC_Track(ag);
	return (PyObject *)ag;
}

static void
attrgetter_dealloc(attrgetterobject *ag)
{
	PyObject_GC_UnTrack(ag);
	Py_XDECREF(ag->attr);
	PyObject_GC_Del(ag);
}

static int
attrgetter_traverse(attrgetterobject *ag, visitproc visit, void *arg)
{
422
	Py_VISIT(ag->attr);
423 424 425
	return 0;
}

426 427 428 429 430 431 432 433 434 435 436
static PyObject *
dotted_getattr(PyObject *obj, PyObject *attr)
{
	char *s, *p;

	if (!PyUnicode_Check(attr)) {
		PyErr_SetString(PyExc_TypeError,
				"attribute name must be a string");
		return NULL;
	}

437
	s = _PyUnicode_AsString(attr);
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
	Py_INCREF(obj);
	for (;;) {
		PyObject *newobj, *str;
		p = strchr(s, '.');
		str = p ? PyUnicode_FromStringAndSize(s, (p-s)) : 
			  PyUnicode_FromString(s);
		if (str == NULL) {
			Py_DECREF(obj);
			return NULL;
		}
		newobj = PyObject_GetAttr(obj, str);
		Py_DECREF(str);
		Py_DECREF(obj);
		if (newobj == NULL)
			return NULL;
		obj = newobj;
		if (p == NULL) break;
		s = p+1;
	}

	return obj;
}

461 462 463
static PyObject *
attrgetter_call(attrgetterobject *ag, PyObject *args, PyObject *kw)
{
464
	PyObject *obj, *result;
465
	Py_ssize_t i, nattrs=ag->nattrs;
466 467 468

	if (!PyArg_UnpackTuple(args, "attrgetter", 1, 1, &obj))
		return NULL;
469
	if (ag->nattrs == 1)
470
		return dotted_getattr(obj, ag->attr);
471 472 473 474 475 476 477 478 479 480 481

	assert(PyTuple_Check(ag->attr));
	assert(PyTuple_GET_SIZE(ag->attr) == nattrs);

	result = PyTuple_New(nattrs);
	if (result == NULL)
		return NULL;

	for (i=0 ; i < nattrs ; i++) {
		PyObject *attr, *val;
		attr = PyTuple_GET_ITEM(ag->attr, i);
482
		val = dotted_getattr(obj, attr);
483 484 485 486 487 488 489
		if (val == NULL) {
			Py_DECREF(result);
			return NULL;
		}
		PyTuple_SET_ITEM(result, i, val);
	}
	return result;
490 491 492
}

PyDoc_STRVAR(attrgetter_doc,
493
"attrgetter(attr, ...) --> attrgetter object\n\
494
\n\
495 496
Return a callable object that fetches the given attribute(s) from its operand.\n\
After, f=attrgetter('name'), the call f(r) returns r.name.\n\
497 498 499
After, g=attrgetter('name', 'date'), the call g(r) returns (r.name, r.date).\n\
After, h=attrgetter('name.first', 'name.last'), the call h(r) returns\n\
(r.name.first, r.name.last).");
500 501

static PyTypeObject attrgetter_type = {
502
	PyVarObject_HEAD_INIT(NULL, 0)
Raymond Hettinger's avatar
Raymond Hettinger committed
503
	"operator.attrgetter",		/* tp_name */
504 505 506 507 508 509 510
	sizeof(attrgetterobject),	/* tp_basicsize */
	0,				/* tp_itemsize */
	/* methods */
	(destructor)attrgetter_dealloc,	/* tp_dealloc */
	0,				/* tp_print */
	0,				/* tp_getattr */
	0,				/* tp_setattr */
511
	0,				/* tp_reserved */
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
	0,				/* tp_repr */
	0,				/* tp_as_number */
	0,				/* tp_as_sequence */
	0,				/* tp_as_mapping */
	0,				/* tp_hash */
	(ternaryfunc)attrgetter_call,	/* tp_call */
	0,				/* tp_str */
	PyObject_GenericGetAttr,	/* tp_getattro */
	0,				/* tp_setattro */
	0,				/* tp_as_buffer */
	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,	/* tp_flags */
	attrgetter_doc,			/* tp_doc */
	(traverseproc)attrgetter_traverse,	/* tp_traverse */
	0,				/* tp_clear */
	0,				/* tp_richcompare */
	0,				/* tp_weaklistoffset */
	0,				/* tp_iter */
	0,				/* tp_iternext */
	0,				/* 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 */
	attrgetter_new,			/* tp_new */
	0,				/* tp_free */
};
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


/* methodcaller object **********************************************************/

typedef struct {
	PyObject_HEAD
	PyObject *name;
	PyObject *args;
	PyObject *kwds;
} methodcallerobject;

static PyTypeObject methodcaller_type;

static PyObject *
methodcaller_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
	methodcallerobject *mc;
	PyObject *name, *newargs;

	if (PyTuple_GET_SIZE(args) < 1) {
		PyErr_SetString(PyExc_TypeError, "methodcaller needs at least "
				"one argument, the method name");
		return NULL;
	}

	/* create methodcallerobject structure */
	mc = PyObject_GC_New(methodcallerobject, &methodcaller_type);
	if (mc == NULL) 
		return NULL;	

	newargs = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
	if (newargs == NULL) {
		Py_DECREF(mc);
		return NULL;
	}
	mc->args = newargs;

	name = PyTuple_GET_ITEM(args, 0);
	Py_INCREF(name);
	mc->name = name;

	Py_XINCREF(kwds);
	mc->kwds = kwds;

	PyObject_GC_Track(mc);
	return (PyObject *)mc;
}

static void
methodcaller_dealloc(methodcallerobject *mc)
{
	PyObject_GC_UnTrack(mc);
	Py_XDECREF(mc->name);
	Py_XDECREF(mc->args);
	Py_XDECREF(mc->kwds);
	PyObject_GC_Del(mc);
}

static int
methodcaller_traverse(methodcallerobject *mc, visitproc visit, void *arg)
{
	Py_VISIT(mc->args);
	Py_VISIT(mc->kwds);
	return 0;
}

static PyObject *
methodcaller_call(methodcallerobject *mc, PyObject *args, PyObject *kw)
{
	PyObject *method, *obj, *result;

	if (!PyArg_UnpackTuple(args, "methodcaller", 1, 1, &obj))
		return NULL;
	method = PyObject_GetAttr(obj, mc->name);
	if (method == NULL)
		return NULL;
	result = PyObject_Call(method, mc->args, mc->kwds);
	Py_DECREF(method);
	return result;
}

PyDoc_STRVAR(methodcaller_doc,
"methodcaller(name, ...) --> methodcaller object\n\
\n\
Return a callable object that calls the given method on its operand.\n\
After, f = methodcaller('name'), the call f(r) returns r.name().\n\
After, g = methodcaller('name', 'date', foo=1), the call g(r) returns\n\
r.name('date', foo=1).");

static PyTypeObject methodcaller_type = {
	PyVarObject_HEAD_INIT(NULL, 0)
	"operator.methodcaller",	/* tp_name */
	sizeof(methodcallerobject),	/* tp_basicsize */
	0,				/* tp_itemsize */
	/* methods */
	(destructor)methodcaller_dealloc, /* tp_dealloc */
	0,				/* tp_print */
	0,				/* tp_getattr */
	0,				/* tp_setattr */
642
	0,				/* tp_reserved */
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
	0,				/* tp_repr */
	0,				/* tp_as_number */
	0,				/* tp_as_sequence */
	0,				/* tp_as_mapping */
	0,				/* tp_hash */
	(ternaryfunc)methodcaller_call,	/* tp_call */
	0,				/* tp_str */
	PyObject_GenericGetAttr,	/* tp_getattro */
	0,				/* tp_setattro */
	0,				/* tp_as_buffer */
	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
	methodcaller_doc,			/* tp_doc */
	(traverseproc)methodcaller_traverse,	/* tp_traverse */
	0,				/* tp_clear */
	0,				/* tp_richcompare */
	0,				/* tp_weaklistoffset */
	0,				/* tp_iter */
	0,				/* tp_iternext */
	0,				/* 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 */
	methodcaller_new,		/* tp_new */
	0,				/* tp_free */
};


676 677 678 679 680 681 682 683 684 685 686 687 688 689
/* Initialization function for the module (*must* be called PyInit_operator) */


static struct PyModuleDef operatormodule = {
	PyModuleDef_HEAD_INIT,
	"operator",
	operator_doc,
	-1,
	operator_methods,
	NULL,
	NULL,
	NULL,
	NULL
};
690

691
PyMODINIT_FUNC
692
PyInit_operator(void)
693
{
694 695 696
	PyObject *m;
        
	/* Create the module and add the functions */
697
        m = PyModule_Create(&operatormodule);
698
	if (m == NULL)
699
		return NULL;
700 701

	if (PyType_Ready(&itemgetter_type) < 0)
702
		return NULL;
703 704 705 706
	Py_INCREF(&itemgetter_type);
	PyModule_AddObject(m, "itemgetter", (PyObject *)&itemgetter_type);

	if (PyType_Ready(&attrgetter_type) < 0)
707
		return NULL;
708 709
	Py_INCREF(&attrgetter_type);
	PyModule_AddObject(m, "attrgetter", (PyObject *)&attrgetter_type);
710 711

	if (PyType_Ready(&methodcaller_type) < 0)
712
		return NULL;
713 714
	Py_INCREF(&methodcaller_type);
	PyModule_AddObject(m, "methodcaller", (PyObject *)&methodcaller_type);
715
	return m;
716
}