FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Modules/_functoolsmodule.c at pythoncapi · pythoncapi/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pythoncapi
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Modules
/
_functoolsmodule.c
Copy path
More file actions
More file actions
Latest commit
History
History
History
1294 lines (1155 loc) · 37.7 KB
Breadcrumbs
cpython
/
Modules
/
_functoolsmodule.c
Copy path
File metadata and controls
1294 lines (1155 loc) · 37.7 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#include
"Python.h"
#include
"internal/mem.h"
#include
"internal/pystate.h"
#include
"structmember.h"
/* _functools module written and maintained
by Hye-Shik Chang <perky@FreeBSD.org>
with adaptations by Raymond Hettinger <python@rcn.com>
Copyright (c) 2004, 2005, 2006 Python Software Foundation.
All rights reserved.
*/
/* partial object **********************************************************/
typedef
struct
{
PyObject_HEAD
PyObject
*
fn
;
PyObject
*
args
;
PyObject
*
kw
;
PyObject
*
dict
;
PyObject
*
weakreflist
;
/* List of weak references */
int
use_fastcall
;
}
partialobject
;
static
PyTypeObject
partial_type
;
static
PyObject
*
partial_new
(
PyTypeObject
*
type
,
PyObject
*
args
,
PyObject
*
kw
)
{
PyObject
*
func
,
*
pargs
,
*
nargs
,
*
pkw
;
partialobject
*
pto
;
if
(
PyTuple_GET_SIZE
(
args
)
<
1
) {
PyErr_SetString
(
PyExc_TypeError
,
"type 'partial' takes at least one argument"
);
return
NULL
;
}
pargs
=
pkw
=
NULL
;
func
=
PyTuple_GET_ITEM
(
args
,
0
);
if
(
Py_TYPE
(
func
)
==
&
partial_type
&&
type
==
&
partial_type
) {
partialobject
*
part
=
(
partialobject
*
)
func
;
if
(
part
->
dict
==
NULL
) {
pargs
=
part
->
args
;
pkw
=
part
->
kw
;
func
=
part
->
fn
;
assert
(
PyTuple_Check
(
pargs
));
assert
(
PyDict_Check
(
pkw
));
}
}
if
(!
PyCallable_Check
(
func
)) {
PyErr_SetString
(
PyExc_TypeError
,
"the first argument must be callable"
);
return
NULL
;
}
/* create partialobject structure */
pto
=
(
partialobject
*
)
type
->
tp_alloc
(
type
,
0
);
if
(
pto
==
NULL
)
return
NULL
;
pto
->
fn
=
func
;
Py_INCREF
(
func
);
nargs
=
PyTuple_GetSlice
(
args
,
1
,
PY_SSIZE_T_MAX
);
if
(
nargs
==
NULL
) {
Py_DECREF
(
pto
);
return
NULL
;
}
if
(
pargs
==
NULL
) {
pto
->
args
=
nargs
;
}
else
{
pto
->
args
=
PySequence_Concat
(
pargs
,
nargs
);
Py_DECREF
(
nargs
);
if
(
pto
->
args
==
NULL
) {
Py_DECREF
(
pto
);
return
NULL
;
}
assert
(
PyTuple_Check
(
pto
->
args
));
}
if
(
pkw
==
NULL
||
PyDict_GET_SIZE
(
pkw
)
==
0
) {
if
(
kw
==
NULL
) {
pto
->
kw
=
PyDict_New
();
}
else
if
(
Py_REFCNT
(
kw
)
==
1
) {
Py_INCREF
(
kw
);
pto
->
kw
=
kw
;
}
else
{
pto
->
kw
=
PyDict_Copy
(
kw
);
}
}
else
{
pto
->
kw
=
PyDict_Copy
(
pkw
);
if
(
kw
!=
NULL
&&
pto
->
kw
!=
NULL
) {
if
(
PyDict_Merge
(
pto
->
kw
,
kw
,
1
)
!=
0
) {
Py_DECREF
(
pto
);
return
NULL
;
}
}
}
if
(
pto
->
kw
==
NULL
) {
Py_DECREF
(
pto
);
return
NULL
;
}
pto
->
use_fastcall
=
_PyObject_HasFastCall
(
func
);
return
(
PyObject
*
)
pto
;
}
static
void
partial_dealloc
(
partialobject
*
pto
)
{
/* bpo-31095: UnTrack is needed before calling any callbacks */
PyObject_GC_UnTrack
(
pto
);
if
(
pto
->
weakreflist
!=
NULL
)
PyObject_ClearWeakRefs
((
PyObject
*
)
pto
);
Py_XDECREF
(
pto
->
fn
);
Py_XDECREF
(
pto
->
args
);
Py_XDECREF
(
pto
->
kw
);
Py_XDECREF
(
pto
->
dict
);
Py_TYPE
(
pto
)
->
tp_free
(
pto
);
}
static
PyObject
*
partial_fastcall
(
partialobject
*
pto
,
PyObject
*
*
args
,
Py_ssize_t
nargs
,
PyObject
*
kwargs
)
{
PyObject
*
small_stack
[
_PY_FASTCALL_SMALL_STACK
];
PyObject
*
ret
;
PyObject
*
*
stack
,
*
*
stack_buf
=
NULL
;
Py_ssize_t
nargs2
,
pto_nargs
;
pto_nargs
=
PyTuple_GET_SIZE
(
pto
->
args
);
nargs2
=
pto_nargs
+
nargs
;
if
(
pto_nargs
==
0
) {
stack
=
args
;
}
else
if
(
nargs
==
0
) {
stack
=
&
PyTuple_GET_ITEM
(
pto
->
args
,
0
);
}
else
{
if
(
nargs2
<= (
Py_ssize_t
)
Py_ARRAY_LENGTH
(
small_stack
)) {
stack
=
small_stack
;
}
else
{
stack_buf
=
PyMem_Malloc
(
nargs2
*
sizeof
(
PyObject
*
));
if
(
stack_buf
==
NULL
) {
PyErr_NoMemory
();
return
NULL
;
}
stack
=
stack_buf
;
}
/* use borrowed references */
memcpy
(
stack
,
&
PyTuple_GET_ITEM
(
pto
->
args
,
0
),
pto_nargs
*
sizeof
(
PyObject
*
));
memcpy
(
&
stack
[
pto_nargs
],
args
,
nargs
*
sizeof
(
PyObject
*
));
}
ret
=
_PyObject_FastCallDict
(
pto
->
fn
,
stack
,
nargs2
,
kwargs
);
PyMem_Free
(
stack_buf
);
return
ret
;
}
static
PyObject
*
partial_call_impl
(
partialobject
*
pto
,
PyObject
*
args
,
PyObject
*
kwargs
)
{
PyObject
*
ret
,
*
args2
;
/* Note: tupleconcat() is optimized for empty tuples */
args2
=
PySequence_Concat
(
pto
->
args
,
args
);
if
(
args2
==
NULL
) {
return
NULL
;
}
assert
(
PyTuple_Check
(
args2
));
ret
=
PyObject_Call
(
pto
->
fn
,
args2
,
kwargs
);
Py_DECREF
(
args2
);
return
ret
;
}
static
PyObject
*
partial_call
(
partialobject
*
pto
,
PyObject
*
args
,
PyObject
*
kwargs
)
{
PyObject
*
kwargs2
,
*
res
;
assert
(
PyCallable_Check
(
pto
->
fn
));
assert
(
PyTuple_Check
(
pto
->
args
));
assert
(
PyDict_Check
(
pto
->
kw
));
if
(
PyDict_GET_SIZE
(
pto
->
kw
)
==
0
) {
/* kwargs can be NULL */
kwargs2
=
kwargs
;
Py_XINCREF
(
kwargs2
);
}
else
{
/* bpo-27840, bpo-29318: dictionary of keyword parameters must be
copied, because a function using "**kwargs" can modify the
dictionary. */
kwargs2
=
PyDict_Copy
(
pto
->
kw
);
if
(
kwargs2
==
NULL
) {
return
NULL
;
}
if
(
kwargs
!=
NULL
) {
if
(
PyDict_Merge
(
kwargs2
,
kwargs
,
1
)
!=
0
) {
Py_DECREF
(
kwargs2
);
return
NULL
;
}
}
}
if
(
pto
->
use_fastcall
) {
res
=
partial_fastcall
(
pto
,
&
PyTuple_GET_ITEM
(
args
,
0
),
PyTuple_GET_SIZE
(
args
),
kwargs2
);
}
else
{
res
=
partial_call_impl
(
pto
,
args
,
kwargs2
);
}
Py_XDECREF
(
kwargs2
);
return
res
;
}
static
int
partial_traverse
(
partialobject
*
pto
,
visitproc
visit
,
void
*
arg
)
{
Py_VISIT
(
pto
->
fn
);
Py_VISIT
(
pto
->
args
);
Py_VISIT
(
pto
->
kw
);
Py_VISIT
(
pto
->
dict
);
return
0
;
}
PyDoc_STRVAR
(
partial_doc
,
"partial(func, *args, **keywords) - new function with partial application\n\
of the given arguments and keywords.\n"
);
#define
OFF
(
x
) offsetof(partialobject, x)
static
PyMemberDef
partial_memberlist
[]
=
{
{
"func"
,
T_OBJECT
,
OFF
(
fn
),
READONLY
,
"function object to use in future partial calls"
},
{
"args"
,
T_OBJECT
,
OFF
(
args
),
READONLY
,
"tuple of arguments to future partial calls"
},
{
"keywords"
,
T_OBJECT
,
OFF
(
kw
),
READONLY
,
"dictionary of keyword arguments to future partial calls"
},
{
NULL
}
/* Sentinel */
};
static
PyGetSetDef
partial_getsetlist
[]
=
{
{
"__dict__"
,
PyObject_GenericGetDict
,
PyObject_GenericSetDict
},
{
NULL
}
/* Sentinel */
};
static
PyObject
*
partial_repr
(
partialobject
*
pto
)
{
PyObject
*
result
=
NULL
;
PyObject
*
arglist
;
Py_ssize_t
i
,
n
;
PyObject
*
key
,
*
value
;
int
status
;
status
=
Py_ReprEnter
((
PyObject
*
)
pto
);
if
(
status
!=
0
) {
if
(
status
<
0
)
return
NULL
;
return
PyUnicode_FromString
(
"..."
);
}
arglist
=
PyUnicode_FromString
(
""
);
if
(
arglist
==
NULL
)
goto
done
;
/* Pack positional arguments */
assert
(
PyTuple_Check
(
pto
->
args
));
n
=
PyTuple_GET_SIZE
(
pto
->
args
);
for
(
i
=
0
;
i
<
n
;
i
++
) {
Py_SETREF
(
arglist
,
PyUnicode_FromFormat
(
"%U, %R"
,
arglist
,
PyTuple_GET_ITEM
(
pto
->
args
,
i
)));
if
(
arglist
==
NULL
)
goto
done
;
}
/* Pack keyword arguments */
assert
(
PyDict_Check
(
pto
->
kw
));
for
(
i
=
0
;
PyDict_Next
(
pto
->
kw
,
&
i
,
&
key
,
&
value
);) {
/* Prevent key.__str__ from deleting the value. */
Py_INCREF
(
value
);
Py_SETREF
(
arglist
,
PyUnicode_FromFormat
(
"%U, %S=%R"
,
arglist
,
key
,
value
));
Py_DECREF
(
value
);
if
(
arglist
==
NULL
)
goto
done
;
}
result
=
PyUnicode_FromFormat
(
"%s(%R%U)"
,
Py_TYPE
(
pto
)
->
tp_name
,
pto
->
fn
,
arglist
);
Py_DECREF
(
arglist
);
done
:
Py_ReprLeave
((
PyObject
*
)
pto
);
return
result
;
}
/* Pickle strategy:
__reduce__ by itself doesn't support getting kwargs in the unpickle
operation so we define a __setstate__ that replaces all the information
about the partial. If we only replaced part of it someone would use
it as a hook to do strange things.
*/
static
PyObject
*
partial_reduce
(
partialobject
*
pto
,
PyObject
*
unused
)
{
return
Py_BuildValue
(
"O(O)(OOOO)"
,
Py_TYPE
(
pto
),
pto
->
fn
,
pto
->
fn
,
pto
->
args
,
pto
->
kw
,
pto
->
dict
?
pto
->
dict
:
Py_None
);
}
static
PyObject
*
partial_setstate
(
partialobject
*
pto
,
PyObject
*
state
)
{
PyObject
*
fn
,
*
fnargs
,
*
kw
,
*
dict
;
if
(!
PyTuple_Check
(
state
)
||
!
PyArg_ParseTuple
(
state
,
"OOOO"
,
&
fn
,
&
fnargs
,
&
kw
,
&
dict
)
||
!
PyCallable_Check
(
fn
)
||
!
PyTuple_Check
(
fnargs
)
||
(
kw
!=
Py_None
&&
!
PyDict_Check
(
kw
)))
{
PyErr_SetString
(
PyExc_TypeError
,
"invalid partial state"
);
return
NULL
;
}
if
(!
PyTuple_CheckExact
(
fnargs
))
fnargs
=
PySequence_Tuple
(
fnargs
);
else
Py_INCREF
(
fnargs
);
if
(
fnargs
==
NULL
)
return
NULL
;
if
(
kw
==
Py_None
)
kw
=
PyDict_New
();
else
if
(!
PyDict_CheckExact
(
kw
))
kw
=
PyDict_Copy
(
kw
);
else
Py_INCREF
(
kw
);
if
(
kw
==
NULL
) {
Py_DECREF
(
fnargs
);
return
NULL
;
}
if
(
dict
==
Py_None
)
dict
=
NULL
;
else
Py_INCREF
(
dict
);
Py_INCREF
(
fn
);
pto
->
use_fastcall
=
_PyObject_HasFastCall
(
fn
);
Py_SETREF
(
pto
->
fn
,
fn
);
Py_SETREF
(
pto
->
args
,
fnargs
);
Py_SETREF
(
pto
->
kw
,
kw
);
Py_XSETREF
(
pto
->
dict
,
dict
);
Py_RETURN_NONE
;
}
static
PyMethodDef
partial_methods
[]
=
{
{
"__reduce__"
, (
PyCFunction
)
partial_reduce
,
METH_NOARGS
},
{
"__setstate__"
, (
PyCFunction
)
partial_setstate
,
METH_O
},
{
NULL
,
NULL
}
/* sentinel */
};
static
PyTypeObject
partial_type
=
{
PyVarObject_HEAD_INIT
(
NULL
,
0
)
"functools.partial"
,
/* tp_name */
sizeof
(
partialobject
),
/* tp_basicsize */
0
,
/* tp_itemsize */
/* methods */
(
destructor
)
partial_dealloc
,
/* tp_dealloc */
0
,
/* tp_print */
0
,
/* tp_getattr */
0
,
/* tp_setattr */
0
,
/* tp_reserved */
(
reprfunc
)
partial_repr
,
/* tp_repr */
0
,
/* tp_as_number */
0
,
/* tp_as_sequence */
0
,
/* tp_as_mapping */
0
,
/* tp_hash */
(
ternaryfunc
)
partial_call
,
/* tp_call */
0
,
/* tp_str */
PyObject_GenericGetAttr
,
/* tp_getattro */
PyObject_GenericSetAttr
,
/* tp_setattro */
0
,
/* tp_as_buffer */
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_HAVE_GC
|
Py_TPFLAGS_BASETYPE
,
/* tp_flags */
partial_doc
,
/* tp_doc */
(
traverseproc
)
partial_traverse
,
/* tp_traverse */
0
,
/* tp_clear */
0
,
/* tp_richcompare */
offsetof(
partialobject
,
weakreflist
),
/* tp_weaklistoffset */
0
,
/* tp_iter */
0
,
/* tp_iternext */
partial_methods
,
/* tp_methods */
partial_memberlist
,
/* tp_members */
partial_getsetlist
,
/* tp_getset */
0
,
/* tp_base */
0
,
/* tp_dict */
0
,
/* tp_descr_get */
0
,
/* tp_descr_set */
offsetof(
partialobject
,
dict
),
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_alloc */
partial_new
,
/* tp_new */
PyObject_GC_Del
,
/* tp_free */
};
/* cmp_to_key ***************************************************************/
typedef
struct
{
PyObject_HEAD
PyObject
*
cmp
;
PyObject
*
object
;
}
keyobject
;
static
void
keyobject_dealloc
(
keyobject
*
ko
)
{
Py_DECREF
(
ko
->
cmp
);
Py_XDECREF
(
ko
->
object
);
PyObject_FREE
(
ko
);
}
static
int
keyobject_traverse
(
keyobject
*
ko
,
visitproc
visit
,
void
*
arg
)
{
Py_VISIT
(
ko
->
cmp
);
if
(
ko
->
object
)
Py_VISIT
(
ko
->
object
);
return
0
;
}
static
int
keyobject_clear
(
keyobject
*
ko
)
{
Py_CLEAR
(
ko
->
cmp
);
if
(
ko
->
object
)
Py_CLEAR
(
ko
->
object
);
return
0
;
}
static
PyMemberDef
keyobject_members
[]
=
{
{
"obj"
,
T_OBJECT
,
offsetof(
keyobject
,
object
),
0
,
PyDoc_STR
(
"Value wrapped by a key function."
)},
{
NULL
}
};
static
PyObject
*
keyobject_call
(
keyobject
*
ko
,
PyObject
*
args
,
PyObject
*
kwds
);
static
PyObject
*
keyobject_richcompare
(
PyObject
*
ko
,
PyObject
*
other
,
int
op
);
static
PyTypeObject
keyobject_type
=
{
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
"functools.KeyWrapper"
,
/* tp_name */
sizeof
(
keyobject
),
/* tp_basicsize */
0
,
/* tp_itemsize */
/* methods */
(
destructor
)
keyobject_dealloc
,
/* tp_dealloc */
0
,
/* tp_print */
0
,
/* tp_getattr */
0
,
/* tp_setattr */
0
,
/* tp_reserved */
0
,
/* tp_repr */
0
,
/* tp_as_number */
0
,
/* tp_as_sequence */
0
,
/* tp_as_mapping */
0
,
/* tp_hash */
(
ternaryfunc
)
keyobject_call
,
/* tp_call */
0
,
/* tp_str */
PyObject_GenericGetAttr
,
/* tp_getattro */
0
,
/* tp_setattro */
0
,
/* tp_as_buffer */
Py_TPFLAGS_DEFAULT
,
/* tp_flags */
0
,
/* tp_doc */
(
traverseproc
)
keyobject_traverse
,
/* tp_traverse */
(
inquiry
)
keyobject_clear
,
/* tp_clear */
keyobject_richcompare
,
/* tp_richcompare */
0
,
/* tp_weaklistoffset */
0
,
/* tp_iter */
0
,
/* tp_iternext */
0
,
/* tp_methods */
keyobject_members
,
/* tp_members */
0
,
/* tp_getset */
};
static
PyObject
*
keyobject_call
(
keyobject
*
ko
,
PyObject
*
args
,
PyObject
*
kwds
)
{
PyObject
*
object
;
keyobject
*
result
;
static
char
*
kwargs
[]
=
{
"obj"
,
NULL
};
if
(!
PyArg_ParseTupleAndKeywords
(
args
,
kwds
,
"O:K"
,
kwargs
,
&
object
))
return
NULL
;
result
=
PyObject_New
(
keyobject
,
&
keyobject_type
);
if
(!
result
)
return
NULL
;
Py_INCREF
(
ko
->
cmp
);
result
->
cmp
=
ko
->
cmp
;
Py_INCREF
(
object
);
result
->
object
=
object
;
return
(
PyObject
*
)
result
;
}
static
PyObject
*
keyobject_richcompare
(
PyObject
*
ko
,
PyObject
*
other
,
int
op
)
{
PyObject
*
res
;
PyObject
*
x
;
PyObject
*
y
;
PyObject
*
compare
;
PyObject
*
answer
;
PyObject
*
stack
[
2
];
if
(
Py_TYPE
(
other
)
!=
&
keyobject_type
){
PyErr_Format
(
PyExc_TypeError
,
"other argument must be K instance"
);
return
NULL
;
}
compare
=
((
keyobject
*
)
ko
)
->
cmp
;
assert
(
compare
!=
NULL
);
x
=
((
keyobject
*
)
ko
)
->
object
;
y
=
((
keyobject
*
)
other
)
->
object
;
if
(!
x
||
!
y
){
PyErr_Format
(
PyExc_AttributeError
,
"object"
);
return
NULL
;
}
/* Call the user's comparison function and translate the 3-way
* result into true or false (or error).
*/
stack
[
0
]
=
x
;
stack
[
1
]
=
y
;
res
=
_PyObject_FastCall
(
compare
,
stack
,
2
);
if
(
res
==
NULL
) {
return
NULL
;
}
answer
=
PyObject_RichCompare
(
res
,
_PyLong_Zero
,
op
);
Py_DECREF
(
res
);
return
answer
;
}
static
PyObject
*
functools_cmp_to_key
(
PyObject
*
self
,
PyObject
*
args
,
PyObject
*
kwds
)
{
PyObject
*
cmp
;
static
char
*
kwargs
[]
=
{
"mycmp"
,
NULL
};
keyobject
*
object
;
if
(!
PyArg_ParseTupleAndKeywords
(
args
,
kwds
,
"O:cmp_to_key"
,
kwargs
,
&
cmp
))
return
NULL
;
object
=
PyObject_New
(
keyobject
,
&
keyobject_type
);
if
(!
object
)
return
NULL
;
Py_INCREF
(
cmp
);
object
->
cmp
=
cmp
;
object
->
object
=
NULL
;
return
(
PyObject
*
)
object
;
}
PyDoc_STRVAR
(
functools_cmp_to_key_doc
,
"Convert a cmp= function into a key= function."
);
/* reduce (used to be a builtin) ********************************************/
static
PyObject
*
functools_reduce
(
PyObject
*
self
,
PyObject
*
args
)
{
PyObject
*
seq
,
*
func
,
*
result
=
NULL
,
*
it
;
if
(!
PyArg_UnpackTuple
(
args
,
"reduce"
,
2
,
3
,
&
func
,
&
seq
,
&
result
))
return
NULL
;
if
(
result
!=
NULL
)
Py_INCREF
(
result
);
it
=
PyObject_GetIter
(
seq
);
if
(
it
==
NULL
) {
if
(
PyErr_ExceptionMatches
(
PyExc_TypeError
))
PyErr_SetString
(
PyExc_TypeError
,
"reduce() arg 2 must support iteration"
);
Py_XDECREF
(
result
);
return
NULL
;
}
if
((
args
=
PyTuple_New
(
2
))
==
NULL
)
goto
Fail
;
for
(;;) {
PyObject
*
op2
;
if
(
args
->
ob_refcnt
>
1
) {
Py_DECREF
(
args
);
if
((
args
=
PyTuple_New
(
2
))
==
NULL
)
goto
Fail
;
}
op2
=
PyIter_Next
(
it
);
if
(
op2
==
NULL
) {
if
(
PyErr_Occurred
())
goto
Fail
;
break
;
}
if
(
result
==
NULL
)
result
=
op2
;
else
{
PyTuple_SetItem
(
args
,
0
,
result
);
PyTuple_SetItem
(
args
,
1
,
op2
);
if
((
result
=
PyEval_CallObject
(
func
,
args
))
==
NULL
)
goto
Fail
;
}
}
Py_DECREF
(
args
);
if
(
result
==
NULL
)
PyErr_SetString
(
PyExc_TypeError
,
"reduce() of empty sequence with no initial value"
);
Py_DECREF
(
it
);
return
result
;
Fail
:
Py_XDECREF
(
args
);
Py_XDECREF
(
result
);
Py_DECREF
(
it
);
return
NULL
;
}
PyDoc_STRVAR
(
functools_reduce_doc
,
"reduce(function, sequence[, initial]) -> value\n\
\n\
Apply a function of two arguments cumulatively to the items of a sequence,\n\
from left to right, so as to reduce the sequence to a single value.\n\
For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates\n\
((((1+2)+3)+4)+5). If initial is present, it is placed before the items\n\
of the sequence in the calculation, and serves as a default when the\n\
sequence is empty."
);
/* lru_cache object **********************************************************/
/* this object is used delimit args and keywords in the cache keys */
static
PyObject
*
kwd_mark
=
NULL
;
struct
lru_list_elem
;
struct
lru_cache_object
;
typedef
struct
lru_list_elem
{
PyObject_HEAD
struct
lru_list_elem
*
prev
,
*
next
;
/* borrowed links */
Py_hash_t
hash
;
PyObject
*
key
,
*
result
;
}
lru_list_elem
;
static
void
lru_list_elem_dealloc
(
lru_list_elem
*
link
)
{
Py_XDECREF
(
link
->
key
);
Py_XDECREF
(
link
->
result
);
PyObject_Del
(
link
);
}
static
PyTypeObject
lru_list_elem_type
=
{
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
"functools._lru_list_elem"
,
/* tp_name */
sizeof
(
lru_list_elem
),
/* tp_basicsize */
0
,
/* tp_itemsize */
/* methods */
(
destructor
)
lru_list_elem_dealloc
,
/* tp_dealloc */
0
,
/* tp_print */
0
,
/* tp_getattr */
0
,
/* tp_setattr */
0
,
/* tp_reserved */
0
,
/* tp_repr */
0
,
/* tp_as_number */
0
,
/* 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 */
};
typedef
PyObject
*
(
*
lru_cache_ternaryfunc
)(
struct
lru_cache_object
*
,
PyObject
*
,
PyObject
*
);
typedef
struct
lru_cache_object
{
lru_list_elem
root
;
/* includes PyObject_HEAD */
Py_ssize_t
maxsize
;
PyObject
*
maxsize_O
;
PyObject
*
func
;
lru_cache_ternaryfunc
wrapper
;
PyObject
*
cache
;
PyObject
*
cache_info_type
;
Py_ssize_t
misses
,
hits
;
int
typed
;
PyObject
*
dict
;
int
full
;
}
lru_cache_object
;
static
PyTypeObject
lru_cache_type
;
static
PyObject
*
lru_cache_make_key
(
PyObject
*
args
,
PyObject
*
kwds
,
int
typed
)
{
PyObject
*
key
,
*
keyword
,
*
value
;
Py_ssize_t
key_size
,
pos
,
key_pos
,
kwds_size
;
/* short path, key will match args anyway, which is a tuple */
if
(!
typed
&&
!
kwds
) {
Py_INCREF
(
args
);
return
args
;
}
kwds_size
=
kwds
?
PyDict_GET_SIZE
(
kwds
) :
0
;
assert
(
kwds_size
>=
0
);
key_size
=
PyTuple_GET_SIZE
(
args
);
if
(
kwds_size
)
key_size
+=
kwds_size
*
2
+
1
;
if
(
typed
)
key_size
+=
PyTuple_GET_SIZE
(
args
)
+
kwds_size
;
key
=
PyTuple_New
(
key_size
);
if
(
key
==
NULL
)
return
NULL
;
key_pos
=
0
;
for
(
pos
=
0
;
pos
<
PyTuple_GET_SIZE
(
args
);
++
pos
) {
PyObject
*
item
=
PyTuple_GET_ITEM
(
args
,
pos
);
Py_INCREF
(
item
);
PyTuple_SET_ITEM
(
key
,
key_pos
++
,
item
);
}
if
(
kwds_size
) {
Py_INCREF
(
kwd_mark
);
PyTuple_SET_ITEM
(
key
,
key_pos
++
,
kwd_mark
);
for
(
pos
=
0
;
PyDict_Next
(
kwds
,
&
pos
,
&
keyword
,
&
value
);) {
Py_INCREF
(
keyword
);
PyTuple_SET_ITEM
(
key
,
key_pos
++
,
keyword
);
Py_INCREF
(
value
);
PyTuple_SET_ITEM
(
key
,
key_pos
++
,
value
);
}
assert
(
key_pos
==
PyTuple_GET_SIZE
(
args
)
+
kwds_size
*
2
+
1
);
}
if
(
typed
) {
for
(
pos
=
0
;
pos
<
PyTuple_GET_SIZE
(
args
);
++
pos
) {
PyObject
*
item
=
(
PyObject
*
)
Py_TYPE
(
PyTuple_GET_ITEM
(
args
,
pos
));
Py_INCREF
(
item
);
PyTuple_SET_ITEM
(
key
,
key_pos
++
,
item
);
}
if
(
kwds_size
) {
for
(
pos
=
0
;
PyDict_Next
(
kwds
,
&
pos
,
&
keyword
,
&
value
);) {
PyObject
*
item
=
(
PyObject
*
)
Py_TYPE
(
value
);
Py_INCREF
(
item
);
PyTuple_SET_ITEM
(
key
,
key_pos
++
,
item
);
}
}
}
assert
(
key_pos
==
key_size
);
return
key
;
}
static
PyObject
*
uncached_lru_cache_wrapper
(
lru_cache_object
*
self
,
PyObject
*
args
,
PyObject
*
kwds
)
{
PyObject
*
result
=
PyObject_Call
(
self
->
func
,
args
,
kwds
);
if
(!
result
)
return
NULL
;
self
->
misses
++
;
return
result
;
}
static
PyObject
*
infinite_lru_cache_wrapper
(
lru_cache_object
*
self
,
PyObject
*
args
,
PyObject
*
kwds
)
{
PyObject
*
result
;
Py_hash_t
hash
;
PyObject
*
key
=
lru_cache_make_key
(
args
,
kwds
,
self
->
typed
);
if
(!
key
)
return
NULL
;
hash
=
PyObject_Hash
(
key
);
if
(
hash
==
-1
) {
Py_DECREF
(
key
);
return
NULL
;
}
result
=
_PyDict_GetItem_KnownHash
(
self
->
cache
,
key
,
hash
);
if
(
result
) {
Py_INCREF
(
result
);
self
->
hits
++
;
Py_DECREF
(
key
);
return
result
;
}
if
(
PyErr_Occurred
()) {
Py_DECREF
(
key
);
return
NULL
;
}
result
=
PyObject_Call
(
self
->
func
,
args
,
kwds
);
if
(!
result
) {
Py_DECREF
(
key
);
return
NULL
;
}
if
(
_PyDict_SetItem_KnownHash
(
self
->
cache
,
key
,
result
,
hash
)
<
0
) {
Py_DECREF
(
result
);
Py_DECREF
(
key
);
return
NULL
;
}
Py_DECREF
(
key
);
self
->
misses
++
;
return
result
;
}
static
void
lru_cache_extricate_link
(
lru_list_elem
*
link
)
{
link
->
prev
->
next
=
link
->
next
;
link
->
next
->
prev
=
link
->
prev
;
}
static
void
lru_cache_append_link
(
lru_cache_object
*
self
,
lru_list_elem
*
link
)
{
lru_list_elem
*
root
=
&
self
->
root
;
lru_list_elem
*
last
=
root
->
prev
;
last
->
next
=
root
->
prev
=
link
;
link
->
prev
=
last
;
link
->
next
=
root
;
}
static
PyObject
*
bounded_lru_cache_wrapper
(
lru_cache_object
*
self
,
PyObject
*
args
,
PyObject
*
kwds
)
{
lru_list_elem
*
link
;
PyObject
*
key
,
*
result
;
Py_hash_t
hash
;
key
=
lru_cache_make_key
(
args
,
kwds
,
self
->
typed
);
if
(!
key
)
return
NULL
;
hash
=
PyObject_Hash
(
key
);
if
(
hash
==
-1
) {
Py_DECREF
(
key
);
return
NULL
;
}
link
=
(
lru_list_elem
*
)
_PyDict_GetItem_KnownHash
(
self
->
cache
,
key
,
hash
);
if
(
link
) {
lru_cache_extricate_link
(
link
);
lru_cache_append_link
(
self
,
link
);
self
->
hits
++
;
result
=
link
->
result
;
Py_INCREF
(
result
);
Py_DECREF
(
key
);
return
result
;
}
if
(
PyErr_Occurred
()) {
Py_DECREF
(
key
);
return
NULL
;
}
result
=
PyObject_Call
(
self
->
func
,
args
,
kwds
);
if
(!
result
) {
Py_DECREF
(
key
);
return
NULL
;
}
if
(
self
->
full
&&
self
->
root
.
next
!=
&
self
->
root
) {
/* Use the oldest item to store the new key and result. */
PyObject
*
oldkey
,
*
oldresult
,
*
popresult
;
/* Extricate the oldest item. */
link
=
self
->
root
.
next
;
lru_cache_extricate_link
(
link
);
/* Remove it from the cache.
The cache dict holds one reference to the link,
and the linked list holds yet one reference to it. */
popresult
=
_PyDict_Pop_KnownHash
(
self
->
cache
,
link
->
key
,
link
->
hash
,
Py_None
);
if
(
popresult
==
Py_None
) {
/* Getting here means that this same key was added to the
cache while the lock was released. Since the link
update is already done, we need only return the
computed result and update the count of misses. */
Py_DECREF
(
popresult
);
Py_DECREF
(
link
);
Py_DECREF
(
key
);
}
else
if
(
popresult
==
NULL
) {
lru_cache_append_link
(
self
,
link
);
Py_DECREF
(
key
);
Py_DECREF
(
result
);
return
NULL
;
}
else
{
Py_DECREF
(
popresult
);
/* Keep a reference to the old key and old result to
prevent their ref counts from going to zero during the
update. That will prevent potentially arbitrary object
clean-up code (i.e. __del__) from running while we're
still adjusting the links. */
oldkey
=
link
->
key
;
oldresult
=
link
->
result
;
link
->
hash
=
hash
;
link
->
key
=
key
;
link
->
result
=
result
;
if
(
_PyDict_SetItem_KnownHash
(
self
->
cache
,
key
, (
PyObject
*
)
link
,
hash
)
<
0
) {
Py_DECREF
(
link
);
Py_DECREF
(
oldkey
);
Py_DECREF
(
oldresult
);
return
NULL
;
}
lru_cache_append_link
(
self
,
link
);
Py_INCREF
(
result
);
/* for return */
Py_DECREF
(
oldkey
);
Py_DECREF
(
oldresult
);
}
}
else
{
/* Put result in a new link at the front of the queue. */
link
=
(
lru_list_elem
*
)
PyObject_New
(
lru_list_elem
,
&
lru_list_elem_type
);
if
(
link
==
NULL
) {
Py_DECREF
(
key
);
Py_DECREF
(
result
);
return
NULL
;
}
link
->
hash
=
hash
;
link
->
key
=
key
;
link
->
result
=
result
;
if
(
_PyDict_SetItem_KnownHash
(
self
->
cache
,
key
, (
PyObject
*
)
link
,
hash
)
<
0
) {
Py_DECREF
(
link
);
return
NULL
;
}
lru_cache_append_link
(
self
,
link
);
Py_INCREF
(
result
);
/* for return */
self
->
full
=
(
PyDict_GET_SIZE
(
self
->
cache
) >=
self
->
maxsize
);
}
self
->
misses
++
;
return
result
;
}
static
PyObject
*
lru_cache_new
(
PyTypeObject
*
type
,
PyObject
*
args
,
PyObject
*
kw
)
{
PyObject
*
func
,
*
maxsize_O
,
*
cache_info_type
,
*
cachedict
;
int
typed
;
lru_cache_object
*
obj
;
Py_ssize_t
maxsize
;
PyObject
*
(
*
wrapper
)(
lru_cache_object
*
,
PyObject
*
,
PyObject
*
);
static
char
*
keywords
[]
=
{
"user_function"
,
"maxsize"
,
"typed"
,
"cache_info_type"
,
NULL
};
if
(!
PyArg_ParseTupleAndKeywords
(
args
,
kw
,
"OOpO:lru_cache"
,
keywords
,
&
func
,
&
maxsize_O
,
&
typed
,
&
cache_info_type
)) {
return
NULL
;
}
if
(!
PyCallable_Check
(
func
)) {
PyErr_SetString
(
PyExc_TypeError
,
"the first argument must be callable"
);
return
NULL
;
}
/* select the caching function, and make/inc maxsize_O */
if
(
maxsize_O
==
Py_None
) {
wrapper
=
infinite_lru_cache_wrapper
;
/* use this only to initialize lru_cache_object attribute maxsize */
maxsize
=
-1
;
}
else
if
(
PyIndex_Check
(
maxsize_O
)) {
maxsize
=
PyNumber_AsSsize_t
(
maxsize_O
,
PyExc_OverflowError
);
if
(
maxsize
==
-1
&&
PyErr_Occurred
())
return
NULL
;
if
(
maxsize
==
0
)
wrapper
=
uncached_lru_cache_wrapper
;
else
View remainder of file in raw view
Back
|
FazBrowse Home
|
New Git URL