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
|
from cpython.dict cimport (PyDict_Check, PyDict_CheckExact, PyDict_GetItem,
PyDict_New, PyDict_Next,
PyDict_SetItem, PyDict_Update, PyDict_DelItem)
from cpython.list cimport PyList_Append, PyList_New
from cpython.object cimport PyObject_SetItem
from cpython.ref cimport PyObject, Py_DECREF, Py_INCREF, Py_XDECREF
# Locally defined bindings that differ from `cython.cpython` bindings
from cytoolz.cpython cimport PyDict_Next_Compat, PtrIter_Next
from copy import copy
from collections.abc import Mapping
__all__ = ['merge', 'merge_with', 'valmap', 'keymap', 'itemmap', 'valfilter',
'keyfilter', 'itemfilter', 'assoc', 'dissoc', 'assoc_in', 'get_in',
'update_in']
cdef class _iter_mapping:
""" Keep a handle on the current item to prevent memory clean up too early"""
def __cinit__(self, object it):
self.it = it
self.cur = None
def __iter__(self):
return self
def __next__(self):
self.cur = next(self.it)
return self.cur
cdef int PyMapping_Next(object p, Py_ssize_t *ppos, PyObject* *pkey, PyObject* *pval) except -1:
"""Mimic "PyDict_Next" interface, but for any mapping"""
cdef PyObject *obj
obj = PtrIter_Next(p)
if obj is NULL:
return 0
pkey[0] = <PyObject*>(<object>obj)[0]
pval[0] = <PyObject*>(<object>obj)[1]
Py_XDECREF(obj) # removing this results in memory leak
return 1
cdef f_map_next get_map_iter(object d, PyObject* *ptr) except NULL:
"""Return function pointer to perform iteration over object returned in ptr.
The returned function signature matches "PyDict_Next". If ``d`` is a dict,
then the returned function *is* PyDict_Next, so iteration wil be very fast.
The object returned through ``ptr`` needs to have its reference count
reduced by one once the caller "owns" the object.
This function lets us control exactly how iteration should be performed
over a given mapping. The current rules are:
1) If ``d`` is exactly a dict, use PyDict_Next
2) If ``d`` is subtype of dict, use PyMapping_Next. This lets the user
control the order iteration, such as for ordereddict.
3) If using PyMapping_Next, iterate using ``iteritems`` if possible,
otherwise iterate using ``items``.
"""
cdef object val
cdef f_map_next rv
if PyDict_CheckExact(d):
val = d
rv = &PyDict_Next_Compat
else:
val = _iter_mapping(iter(d.items()))
rv = &PyMapping_Next
Py_INCREF(val)
ptr[0] = <PyObject*>val
return rv
cdef get_factory(name, kwargs):
factory = kwargs.pop('factory', dict)
if kwargs:
raise TypeError("{0}() got an unexpected keyword argument "
"'{1}'".format(name, kwargs.popitem()[0]))
return factory
cdef object c_merge(object dicts, object factory=dict):
cdef object rv
rv = factory()
if PyDict_CheckExact(rv):
for d in dicts:
PyDict_Update(rv, d)
else:
for d in dicts:
rv.update(d)
return rv
def merge(*dicts, **kwargs):
"""
Merge a collection of dictionaries
>>> merge({1: 'one'}, {2: 'two'})
{1: 'one', 2: 'two'}
Later dictionaries have precedence
>>> merge({1: 2, 3: 4}, {3: 3, 4: 4})
{1: 2, 3: 3, 4: 4}
See Also:
merge_with
"""
if len(dicts) == 1 and not isinstance(dicts[0], Mapping):
dicts = dicts[0]
factory = get_factory('merge', kwargs)
return c_merge(dicts, factory)
cdef object c_merge_with(object func, object dicts, object factory=dict):
cdef:
dict result
object rv, d
list seq
f_map_next f
PyObject *obj
PyObject *pkey
PyObject *pval
Py_ssize_t pos
result = PyDict_New()
rv = factory()
for d in dicts:
f = get_map_iter(d, &obj)
d = <object>obj
Py_DECREF(d)
pos = 0
while f(d, &pos, &pkey, &pval):
obj = PyDict_GetItem(result, <object>pkey)
if obj is NULL:
seq = PyList_New(0)
PyList_Append(seq, <object>pval)
PyDict_SetItem(result, <object>pkey, seq)
else:
PyList_Append(<object>obj, <object>pval)
f = get_map_iter(result, &obj)
d = <object>obj
Py_DECREF(d)
pos = 0
while f(d, &pos, &pkey, &pval):
PyObject_SetItem(rv, <object>pkey, func(<object>pval))
return rv
def merge_with(func, *dicts, **kwargs):
"""
Merge dictionaries and apply function to combined values
A key may occur in more than one dict, and all values mapped from the key
will be passed to the function as a list, such as func([val1, val2, ...]).
>>> merge_with(sum, {1: 1, 2: 2}, {1: 10, 2: 20})
{1: 11, 2: 22}
>>> merge_with(first, {1: 1, 2: 2}, {2: 20, 3: 30}) # doctest: +SKIP
{1: 1, 2: 2, 3: 30}
See Also:
merge
"""
if len(dicts) == 1 and not isinstance(dicts[0], Mapping):
dicts = dicts[0]
factory = get_factory('merge_with', kwargs)
return c_merge_with(func, dicts, factory)
cpdef object valmap(object func, object d, object factory=dict):
"""
Apply function to values of dictionary
>>> bills = {"Alice": [20, 15, 30], "Bob": [10, 35]}
>>> valmap(sum, bills) # doctest: +SKIP
{'Alice': 65, 'Bob': 45}
See Also:
keymap
itemmap
"""
cdef:
object rv
f_map_next f
PyObject *obj
PyObject *pkey
PyObject *pval
Py_ssize_t pos = 0
rv = factory()
f = get_map_iter(d, &obj)
d = <object>obj
Py_DECREF(d)
while f(d, &pos, &pkey, &pval):
rv[<object>pkey] = func(<object>pval)
return rv
cpdef object keymap(object func, object d, object factory=dict):
"""
Apply function to keys of dictionary
>>> bills = {"Alice": [20, 15, 30], "Bob": [10, 35]}
>>> keymap(str.lower, bills) # doctest: +SKIP
{'alice': [20, 15, 30], 'bob': [10, 35]}
See Also:
valmap
itemmap
"""
cdef:
object rv
f_map_next f
PyObject *obj
PyObject *pkey
PyObject *pval
Py_ssize_t pos = 0
rv = factory()
f = get_map_iter(d, &obj)
d = <object>obj
Py_DECREF(d)
while f(d, &pos, &pkey, &pval):
rv[func(<object>pkey)] = <object>pval
return rv
cpdef object itemmap(object func, object d, object factory=dict):
"""
Apply function to items of dictionary
>>> accountids = {"Alice": 10, "Bob": 20}
>>> itemmap(reversed, accountids) # doctest: +SKIP
{10: "Alice", 20: "Bob"}
See Also:
keymap
valmap
"""
cdef:
object rv, k, v
f_map_next f
PyObject *obj
PyObject *pkey
PyObject *pval
Py_ssize_t pos = 0
rv = factory()
f = get_map_iter(d, &obj)
d = <object>obj
Py_DECREF(d)
while f(d, &pos, &pkey, &pval):
k, v = func((<object>pkey, <object>pval))
rv[k] = v
return rv
cpdef object valfilter(object predicate, object d, object factory=dict):
"""
Filter items in dictionary by value
>>> iseven = lambda x: x % 2 == 0
>>> d = {1: 2, 2: 3, 3: 4, 4: 5}
>>> valfilter(iseven, d)
{1: 2, 3: 4}
See Also:
keyfilter
itemfilter
valmap
"""
cdef:
object rv
f_map_next f
PyObject *obj
PyObject *pkey
PyObject *pval
Py_ssize_t pos = 0
rv = factory()
f = get_map_iter(d, &obj)
d = <object>obj
Py_DECREF(d)
while f(d, &pos, &pkey, &pval):
if predicate(<object>pval):
rv[<object>pkey] = <object>pval
return rv
cpdef object keyfilter(object predicate, object d, object factory=dict):
"""
Filter items in dictionary by key
>>> iseven = lambda x: x % 2 == 0
>>> d = {1: 2, 2: 3, 3: 4, 4: 5}
>>> keyfilter(iseven, d)
{2: 3, 4: 5}
See Also:
valfilter
itemfilter
keymap
"""
cdef:
object rv
f_map_next f
PyObject *obj
PyObject *pkey
PyObject *pval
Py_ssize_t pos = 0
rv = factory()
f = get_map_iter(d, &obj)
d = <object>obj
Py_DECREF(d)
while f(d, &pos, &pkey, &pval):
if predicate(<object>pkey):
rv[<object>pkey] = <object>pval
return rv
cpdef object itemfilter(object predicate, object d, object factory=dict):
"""
Filter items in dictionary by item
>>> def isvalid(item):
... k, v = item
... return k % 2 == 0 and v < 4
>>> d = {1: 2, 2: 3, 3: 4, 4: 5}
>>> itemfilter(isvalid, d)
{2: 3}
See Also:
keyfilter
valfilter
itemmap
"""
cdef:
object rv, k, v
f_map_next f
PyObject *obj
PyObject *pkey
PyObject *pval
Py_ssize_t pos = 0
rv = factory()
f = get_map_iter(d, &obj)
d = <object>obj
Py_DECREF(d)
while f(d, &pos, &pkey, &pval):
k = <object>pkey
v = <object>pval
if predicate((k, v)):
rv[k] = v
return rv
cpdef object assoc(object d, object key, object value, object factory=dict):
"""
Return a new dict with new key value pair
New dict has d[key] set to value. Does not modify the initial dictionary.
>>> assoc({'x': 1}, 'x', 2)
{'x': 2}
>>> assoc({'x': 1}, 'y', 3) # doctest: +SKIP
{'x': 1, 'y': 3}
"""
cdef object rv
rv = factory()
if PyDict_CheckExact(rv):
PyDict_Update(rv, d)
else:
rv.update(d)
rv[key] = value
return rv
cpdef object assoc_in(object d, object keys, object value, object factory=dict):
"""
Return a new dict with new, potentially nested, key value pair
>>> purchase = {'name': 'Alice',
... 'order': {'items': ['Apple', 'Orange'],
... 'costs': [0.50, 1.25]},
... 'credit card': '5555-1234-1234-1234'}
>>> assoc_in(purchase, ['order', 'costs'], [0.25, 1.00]) # doctest: +SKIP
{'credit card': '5555-1234-1234-1234',
'name': 'Alice',
'order': {'costs': [0.25, 1.00], 'items': ['Apple', 'Orange']}}
"""
cdef object prevkey, key
cdef object rv, inner, dtemp
prevkey, keys = keys[0], keys[1:]
rv = factory()
if PyDict_CheckExact(rv):
PyDict_Update(rv, d)
else:
rv.update(d)
inner = rv
for key in keys:
if prevkey in d:
d = d[prevkey]
dtemp = factory()
if PyDict_CheckExact(dtemp):
PyDict_Update(dtemp, d)
else:
dtemp.update(d)
else:
d = factory()
dtemp = d
inner[prevkey] = dtemp
prevkey = key
inner = dtemp
inner[prevkey] = value
return rv
cdef object c_dissoc(object d, object keys, object factory=dict):
# implementation copied from toolz. Not benchmarked.
cdef object rv
rv = factory()
if len(keys) < len(d) * 0.6:
rv.update(d)
for key in keys:
if key in rv:
del rv[key]
else:
remaining = set(d)
remaining.difference_update(keys)
for k in remaining:
rv[k] = d[k]
return rv
def dissoc(d, *keys, **kwargs):
"""
Return a new dict with the given key(s) removed.
New dict has d[key] deleted for each supplied key.
Does not modify the initial dictionary.
>>> dissoc({'x': 1, 'y': 2}, 'y')
{'x': 1}
>>> dissoc({'x': 1, 'y': 2}, 'y', 'x')
{}
>>> dissoc({'x': 1}, 'y') # Ignores missing keys
{'x': 1}
"""
return c_dissoc(d, keys, get_factory('dissoc', kwargs))
cpdef object update_in(object d, object keys, object func, object default=None, object factory=dict):
"""
Update value in a (potentially) nested dictionary
inputs:
d - dictionary on which to operate
keys - list or tuple giving the location of the value to be changed in d
func - function to operate on that value
If keys == [k0,..,kX] and d[k0]..[kX] == v, update_in returns a copy of the
original dictionary with v replaced by func(v), but does not mutate the
original dictionary.
If k0 is not a key in d, update_in creates nested dictionaries to the depth
specified by the keys, with the innermost value set to func(default).
>>> inc = lambda x: x + 1
>>> update_in({'a': 0}, ['a'], inc)
{'a': 1}
>>> transaction = {'name': 'Alice',
... 'purchase': {'items': ['Apple', 'Orange'],
... 'costs': [0.50, 1.25]},
... 'credit card': '5555-1234-1234-1234'}
>>> update_in(transaction, ['purchase', 'costs'], sum) # doctest: +SKIP
{'credit card': '5555-1234-1234-1234',
'name': 'Alice',
'purchase': {'costs': 1.75, 'items': ['Apple', 'Orange']}}
>>> # updating a value when k0 is not in d
>>> update_in({}, [1, 2, 3], str, default="bar")
{1: {2: {3: 'bar'}}}
>>> update_in({1: 'foo'}, [2, 3, 4], inc, 0)
{1: 'foo', 2: {3: {4: 1}}}
"""
cdef object prevkey, key
cdef object rv, inner, dtemp
prevkey, keys = keys[0], keys[1:]
rv = factory()
if PyDict_CheckExact(rv):
PyDict_Update(rv, d)
else:
rv.update(d)
inner = rv
for key in keys:
if prevkey in d:
d = d[prevkey]
dtemp = factory()
if PyDict_CheckExact(dtemp):
PyDict_Update(dtemp, d)
else:
dtemp.update(d)
else:
d = factory()
dtemp = d
inner[prevkey] = dtemp
prevkey = key
inner = dtemp
if prevkey in d:
key = func(d[prevkey])
else:
key = func(default)
inner[prevkey] = key
return rv
cdef tuple _get_in_exceptions = (KeyError, IndexError, TypeError)
cpdef object get_in(object keys, object coll, object default=None, object no_default=False):
"""
Returns coll[i0][i1]...[iX] where [i0, i1, ..., iX]==keys.
If coll[i0][i1]...[iX] cannot be found, returns ``default``, unless
``no_default`` is specified, then it raises KeyError or IndexError.
``get_in`` is a generalization of ``operator.getitem`` for nested data
structures such as dictionaries and lists.
>>> transaction = {'name': 'Alice',
... 'purchase': {'items': ['Apple', 'Orange'],
... 'costs': [0.50, 1.25]},
... 'credit card': '5555-1234-1234-1234'}
>>> get_in(['purchase', 'items', 0], transaction)
'Apple'
>>> get_in(['name'], transaction)
'Alice'
>>> get_in(['purchase', 'total'], transaction)
>>> get_in(['purchase', 'items', 'apple'], transaction)
>>> get_in(['purchase', 'items', 10], transaction)
>>> get_in(['purchase', 'total'], transaction, 0)
0
>>> get_in(['y'], {}, no_default=True)
Traceback (most recent call last):
...
KeyError: 'y'
See Also:
itertoolz.get
operator.getitem
"""
cdef object item
try:
for item in keys:
coll = coll[item]
return coll
except _get_in_exceptions:
if no_default:
raise
return default
|