-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgreenstack.c
More file actions
1525 lines (1369 loc) · 40.5 KB
/
Copy pathgreenstack.c
File metadata and controls
1525 lines (1369 loc) · 40.5 KB
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
/* vim:set noet ts=8 sw=8 : */
#define GREENSTACK_MODULE
/* explaination of everything would go here but i'm probably just going to delete this */
#include "greenstack.h"
#include "structmember.h"
/* Python <= 2.5 support */
#if PY_MAJOR_VERSION < 3
#ifndef Py_REFCNT
# define Py_REFCNT(ob) (((PyObject *) (ob))->ob_refcnt)
#endif
#ifndef Py_TYPE
# define Py_TYPE(ob) (((PyObject *) (ob))->ob_type)
#endif
#ifndef PyVarObject_HEAD_INIT
# define PyVarObject_HEAD_INIT(type, size) \
PyObject_HEAD_INIT(type) size,
#endif
#endif
#if PY_VERSION_HEX < 0x02060000
#define PyLong_FromSsize_t PyInt_FromLong
#endif
#if PY_VERSION_HEX < 0x02050000
typedef int Py_ssize_t;
#endif
extern PyTypeObject PyGreenstack_Type;
/* Defines that customize greenstack module behaviour */
#ifndef GREENSTACK_USE_GC
#define GREENSTACK_USE_GC 1
#endif
#ifndef GREENSTACK_USE_TRACING
#define GREENSTACK_USE_TRACING 1
#endif
/*** global state ***/
/* In the presence of multithreading, this is a bit tricky:
- ts_current always store a reference to a greenstack, but it is
not really the current greenstack after a thread switch occurred.
- each *running* greenstack uses its run_info field to know which
thread it is attached to. A greenstack can only run in the thread
where it was created. This run_info is a ref to tstate->dict.
- the thread state dict is used to save and restore ts_current,
using the dictionary key 'ts_curkey'.
*/
/* Weak reference to the switching-to greenstack during the slp switch */
static PyGreenstack* volatile ts_target = NULL;
/* Strong reference to the switching from greenstack after the switch */
static PyGreenstack* volatile ts_origin = NULL;
/* Strong reference to the current greenstack in this thread state */
static PyGreenstack* volatile ts_current = NULL;
/* NULL if error, otherwise args tuple to pass around during coro switch */
static PyObject* volatile ts_passaround_args = NULL;
static PyObject* volatile ts_passaround_kwargs = NULL;
/***********************************************************/
/* Thread-aware routines, switching global variables when needed */
#define STATE_OK (ts_current->run_info == PyThreadState_GET()->dict \
|| !green_updatecurrent())
static PyObject* ts_curkey;
static PyObject* ts_delkey;
#if GREENSTACK_USE_TRACING
static PyObject* ts_tracekey;
static PyObject* ts_event_switch;
static PyObject* ts_event_throw;
#endif
static PyObject* PyExc_GreenstackError;
static PyObject* PyExc_GreenstackExit;
static PyObject* ts_empty_tuple;
static PyObject* ts_empty_dict;
/*
* To reduce the cost of allocating and destroying stacks for greenstacks,
* greenstack stacks are never destroyed. Instead they are saved in a stack (a
* stack of stacks, if you will) and reused for future greenstacks.
*/
#define STACK_CACHE_SIZE 8192
#define STACK_CACHE_FULL (stack_cache_top >= STACK_CACHE_SIZE)
static struct coro_stack stack_cache[STACK_CACHE_SIZE];
static int stack_cache_top;
/* State handlers are used by C extensions to save and restore custom state.
* Switch wrappers are called by g_switch and state initializers are called
* from g_trampoline. */
typedef struct _statehandler statehandler;
static void g_realswitchstack(void *);
static statehandler main_statehandler = {
g_realswitchstack, /* switchwrapper */
NULL, /* stateinit */
NULL
};
static statehandler *statehandlers = &main_statehandler;
#if GREENSTACK_USE_GC
#define GREENSTACK_GC_FLAGS Py_TPFLAGS_HAVE_GC
#define GREENSTACK_tp_alloc PyType_GenericAlloc
#define GREENSTACK_tp_free PyObject_GC_Del
#define GREENSTACK_tp_traverse green_traverse
#define GREENSTACK_tp_clear green_clear
#define GREENSTACK_tp_is_gc green_is_gc
#else /* GREENSTACK_USE_GC */
#define GREENSTACK_GC_FLAGS 0
#define GREENSTACK_tp_alloc 0
#define GREENSTACK_tp_free 0
#define GREENSTACK_tp_traverse 0
#define GREENSTACK_tp_clear 0
#define GREENSTACK_tp_is_gc 0
#endif /* !GREENSTACK_USE_GC */
static PyGreenstack* green_create_main(void)
{
PyGreenstack* gmain;
PyObject* dict = PyThreadState_GetDict();
if (dict == NULL) {
if (!PyErr_Occurred())
PyErr_NoMemory();
return NULL;
}
/* create the main greenstack for this thread */
gmain = (PyGreenstack*) PyType_GenericAlloc(&PyGreenstack_Type, 0);
if (gmain == NULL)
return NULL;
coro_create(&gmain->context, NULL, NULL, NULL, 0);
gmain->stack = (void *) 1;
gmain->stack_size = (size_t) -1;
gmain->run_info = dict;
Py_INCREF(dict);
return gmain;
}
static int green_updatecurrent(void)
{
PyObject *exc, *val, *tb;
PyThreadState* tstate;
PyGreenstack* current;
PyGreenstack* previous;
PyObject* deleteme;
green_updatecurrent_restart:
/* save current exception */
PyErr_Fetch(&exc, &val, &tb);
/* get ts_current from the active tstate */
tstate = PyThreadState_GET();
if (tstate->dict && (current =
(PyGreenstack*) PyDict_GetItem(tstate->dict, ts_curkey))) {
/* found -- remove it, to avoid keeping a ref */
Py_INCREF(current);
PyDict_DelItem(tstate->dict, ts_curkey);
}
else {
/* first time we see this tstate */
current = green_create_main();
if (current == NULL) {
Py_XDECREF(exc);
Py_XDECREF(val);
Py_XDECREF(tb);
return -1;
}
}
assert(current->run_info == tstate->dict);
green_updatecurrent_retry:
/* update ts_current as soon as possible, in case of nested switches */
Py_INCREF(current);
previous = ts_current;
ts_current = current;
/* save ts_current as the current greenstack of its own thread */
if (PyDict_SetItem(previous->run_info, ts_curkey, (PyObject*) previous)) {
Py_DECREF(previous);
Py_DECREF(current);
Py_XDECREF(exc);
Py_XDECREF(val);
Py_XDECREF(tb);
return -1;
}
Py_DECREF(previous);
/* green_dealloc() cannot delete greenstacks from other threads, so
it stores them in the thread dict; delete them now. */
deleteme = PyDict_GetItem(tstate->dict, ts_delkey);
if (deleteme != NULL) {
PyList_SetSlice(deleteme, 0, INT_MAX, NULL);
}
if (ts_current != current) {
/* some Python code executed above and there was a thread switch,
* so ts_current points to some other thread again. We need to
* delete ts_curkey (it's likely there) and retry. */
PyDict_DelItem(tstate->dict, ts_curkey);
goto green_updatecurrent_retry;
}
/* release an extra reference */
Py_DECREF(current);
/* restore current exception */
PyErr_Restore(exc, val, tb);
/* thread switch could happen during PyErr_Restore, in that
case there's nothing to do except restart from scratch. */
if (ts_current->run_info != tstate->dict)
goto green_updatecurrent_restart;
return 0;
}
static PyObject* green_statedict(PyGreenstack* g)
{
while (!PyGreenstack_STARTED(g)) {
g = g->parent;
if (g == NULL) {
/* garbage collected greenstack in chain */
return NULL;
}
}
return g->run_info;
}
/***********************************************************/
static void g_realswitchstack(void *next)
{
PyThreadState *tstate;
PyGreenstack *current;
int recursion_depth;
PyObject *exc_type, *exc_value, *exc_traceback;
/* save state */
tstate = PyThreadState_GET();
current = ts_current;
recursion_depth = tstate->recursion_depth;
current->top_frame = tstate->frame;
exc_type = tstate->exc_type;
exc_value = tstate->exc_value;
exc_traceback = tstate->exc_traceback;
ts_origin = current;
Py_INCREF(ts_target);
ts_current = ts_target;
coro_transfer(¤t->context, &ts_target->context);
/* restore state */
tstate = PyThreadState_GET();
tstate->recursion_depth = recursion_depth;
tstate->frame = current->top_frame;
tstate->exc_type = exc_type;
tstate->exc_value = exc_value;
tstate->exc_traceback = exc_traceback;
}
static void g_switchstack(PyGreenstack *target) {
ts_target = target;
PyGreenstack_CALL_SWITCH(statehandlers);
ts_target = NULL;
}
static int g_create(PyGreenstack *self, PyObject *args, PyObject *kwargs);
#if GREENSTACK_USE_TRACING
static int
g_calltrace(PyObject* tracefunc, PyObject* event, PyGreenstack* origin, PyGreenstack* target)
{
PyObject *retval;
PyObject *exc_type, *exc_val, *exc_tb;
PyThreadState *tstate;
PyErr_Fetch(&exc_type, &exc_val, &exc_tb);
tstate = PyThreadState_GET();
tstate->tracing++;
tstate->use_tracing = 0;
retval = PyObject_CallFunction(tracefunc, "O(OO)", event, origin, target);
tstate->tracing--;
tstate->use_tracing = (tstate->tracing <= 0 &&
((tstate->c_tracefunc != NULL) ||
(tstate->c_profilefunc != NULL)));
if (retval == NULL) {
/* In case of exceptions trace function is removed */
if (PyDict_GetItem(tstate->dict, ts_tracekey))
PyDict_DelItem(tstate->dict, ts_tracekey);
Py_XDECREF(exc_type);
Py_XDECREF(exc_val);
Py_XDECREF(exc_tb);
return -1;
} else
Py_DECREF(retval);
PyErr_Restore(exc_type, exc_val, exc_tb);
return 0;
}
#endif
static PyObject *
g_switch(PyGreenstack* target, PyObject* args, PyObject* kwargs)
{
/* _consumes_ a reference to the args tuple and kwargs dict,
and return a new tuple reference */
int err = 0;
PyObject* run_info;
/* check ts_current */
if (!STATE_OK) {
Py_XDECREF(args);
Py_XDECREF(kwargs);
return NULL;
}
run_info = green_statedict(target);
if (run_info == NULL || run_info != ts_current->run_info) {
Py_XDECREF(args);
Py_XDECREF(kwargs);
PyErr_SetString(PyExc_GreenstackError, run_info
? "cannot switch to a different thread"
: "cannot switch to a garbage collected greenstack");
return NULL;
}
ts_passaround_args = args;
ts_passaround_kwargs = kwargs;
/* find the real target by ignoring dead greenstacks, and if necessary
* starting a greenstack. */
while (target) {
if (PyGreenstack_ACTIVE(target)) {
g_switchstack(target);
break;
}
if (!PyGreenstack_STARTED(target)) {
err = g_create(target, args, kwargs);
if (err == 1) {
continue;
}
break;
}
target = target->parent;
}
/* For a very short time, immediately after the 'atomic'
g_switchstack() call, global variables are in a known state.
We need to save everything we need, before it is destroyed
by calls into arbitrary Python code. */
args = ts_passaround_args;
ts_passaround_args = NULL;
kwargs = ts_passaround_kwargs;
ts_passaround_kwargs = NULL;
if (err < 0) {
/* Turn switch errors into switch throws */
assert(ts_origin == NULL);
Py_CLEAR(kwargs);
Py_CLEAR(args);
} else {
PyGreenstack *origin;
#if GREENSTACK_USE_TRACING
PyGreenstack *current;
PyObject *tracefunc;
#endif
origin = ts_origin;
ts_origin = NULL;
#if GREENSTACK_USE_TRACING
current = ts_current;
if ((tracefunc = PyDict_GetItem(current->run_info, ts_tracekey)) != NULL) {
Py_INCREF(tracefunc);
if (g_calltrace(tracefunc, args ? ts_event_switch : ts_event_throw, origin, current) < 0) {
/* Turn trace errors into switch throws */
Py_CLEAR(kwargs);
Py_CLEAR(args);
}
Py_DECREF(tracefunc);
}
#endif
Py_DECREF(origin);
}
/* We need to figure out what values to pass to the target greenstack
based on the arguments that have been passed to greenstack.switch(). If
switch() was just passed an arg tuple, then we'll just return that.
If only keyword arguments were passed, then we'll pass the keyword
argument dict. Otherwise, we'll create a tuple of (args, kwargs) and
return both. */
if (kwargs == NULL)
{
return args;
}
else if (PyDict_Size(kwargs) == 0)
{
Py_DECREF(kwargs);
return args;
}
else if (PySequence_Length(args) == 0)
{
Py_DECREF(args);
return kwargs;
}
else
{
PyObject *tuple = PyTuple_New(2);
if (tuple == NULL) {
Py_DECREF(args);
Py_DECREF(kwargs);
return NULL;
}
PyTuple_SET_ITEM(tuple, 0, args);
PyTuple_SET_ITEM(tuple, 1, kwargs);
return tuple;
}
}
static PyObject *
g_handle_exit(PyObject *result)
{
if (result == NULL && PyErr_ExceptionMatches(PyExc_GreenstackExit))
{
/* catch and ignore GreenstackExit */
PyObject *exc, *val, *tb;
PyErr_Fetch(&exc, &val, &tb);
if (val == NULL)
{
Py_INCREF(Py_None);
val = Py_None;
}
result = val;
Py_DECREF(exc);
Py_XDECREF(tb);
}
if (result != NULL)
{
/* package the result into a 1-tuple */
PyObject *r = result;
result = PyTuple_New(1);
if (result)
{
PyTuple_SET_ITEM(result, 0, r);
}
else
{
Py_DECREF(r);
}
}
return result;
}
struct trampoline_data {
PyGreenstack *self;
PyObject *args;
PyObject *run;
PyObject *kwargs;
};
static void g_trampoline(struct trampoline_data *data) {
PyThreadState *tstate;
PyObject *result, *o;
PyGreenstack *parent;
#if GREENSTACK_USE_TRACING
PyObject *tracefunc;
#endif
statehandler *handler;
PyGreenstack *self = data->self;
PyObject *run = data->run;
PyObject *args = data->args;
PyObject *kwargs = data->kwargs;
/* now use run_info to store the statedict */
o = self->run_info;
self->run_info = green_statedict(self->parent);
Py_INCREF(self->run_info);
Py_XDECREF(o);
#if GREENSTACK_USE_TRACING
if ((tracefunc = PyDict_GetItem(ts_current->run_info, ts_tracekey)) != NULL) {
Py_INCREF(tracefunc);
if (g_calltrace(tracefunc, args ? ts_event_switch : ts_event_throw, ts_origin, ts_current) < 0) {
/* Turn trace errors into switch throws */
Py_CLEAR(kwargs);
Py_CLEAR(args);
}
Py_DECREF(tracefunc);
}
#endif
Py_DECREF(ts_origin);
ts_origin = NULL;
/* g_trampoline is responsible for setting up a nice clean slate */
tstate = PyThreadState_GET();
tstate->recursion_depth = 0;
tstate->frame = NULL;
tstate->exc_type = NULL;
tstate->exc_value = NULL;
tstate->exc_traceback = NULL;
handler = statehandlers;
while (handler != NULL) {
if (handler->stateinit != NULL) {
handler->stateinit();
}
handler = handler->next;
}
if (args == NULL) {
/* pending exception */
result = NULL;
} else {
/* call g.run(*args, **kwargs) */
result = PyEval_CallObjectWithKeywords(
run, args, kwargs);
Py_DECREF(args);
Py_XDECREF(kwargs);
}
Py_DECREF(run);
result = g_handle_exit(result);
/* free the stack */
if (STACK_CACHE_FULL) {
coro_stack_free(&stack_cache[stack_cache_top--]);
}
stack_cache[stack_cache_top].sptr = self->stack;
stack_cache[stack_cache_top].ssze = self->stack_size;
stack_cache_top++;
self->stack = NULL;
/* leave stack_size where it is as an indication the greenstack was once alive */
/* jump back to parent */
for (parent = self->parent; parent != NULL; parent = parent->parent) {
result = g_switch(parent, result, NULL);
/* Return here means switch to parent failed,
* in which case we throw *current* exception
* to the next parent in chain.
*/
assert(result == NULL);
}
/* We ran out of parents, cannot continue */
PyErr_WriteUnraisable((PyObject *) self);
Py_FatalError("greenstack cannot continue");
}
static int g_create(PyGreenstack *self, PyObject *args, PyObject *kwargs)
{
PyObject *run;
PyObject *exc, *val, *tb;
PyObject *run_info;
struct coro_stack stack;
struct trampoline_data data;
/* save exception in case getattr clears it */
PyErr_Fetch(&exc, &val, &tb);
/* self.run is the object to call in the new greenstack */
run = PyObject_GetAttrString((PyObject*) self, "run");
if (run == NULL) {
Py_XDECREF(exc);
Py_XDECREF(val);
Py_XDECREF(tb);
return -1;
}
/* restore saved exception */
PyErr_Restore(exc, val, tb);
/* recheck the state in case getattr caused thread switches */
if (!STATE_OK) {
Py_DECREF(run);
return -1;
}
/* recheck run_info in case greenstack reparented anywhere above */
run_info = green_statedict(self);
if (run_info == NULL || run_info != ts_current->run_info) {
Py_DECREF(run);
PyErr_SetString(PyExc_GreenstackError, run_info
? "cannot switch to a different thread"
: "cannot switch to a garbage collected greenstack");
return -1;
}
/* by the time we got here another start could happen elsewhere,
* that means it should now be a regular switch
*/
if (PyGreenstack_STARTED(self)) {
Py_DECREF(run);
ts_passaround_args = args;
ts_passaround_kwargs = kwargs;
return 1;
}
/* start the greenstack */
/* default stack size is 256k * sizeof(void *) */
if (stack_cache_top != 0) {
stack = stack_cache[--stack_cache_top];
} else {
if (!coro_stack_alloc(&stack, 0)) {
Py_DECREF(run);
return -1;
}
}
self->stack = stack.sptr;
self->stack_size = stack.ssze;
data.self = self;
data.run = run;
data.args = args;
data.kwargs = kwargs;
coro_create(&self->context, (coro_func) g_trampoline, &data, self->stack, self->stack_size);
self->top_frame = NULL;
g_switchstack(self);
return 0;
}
/***********************************************************/
static PyObject* green_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject* o = PyBaseObject_Type.tp_new(type, ts_empty_tuple, ts_empty_dict);
if (o != NULL) {
if (!STATE_OK) {
Py_DECREF(o);
return NULL;
}
Py_INCREF(ts_current);
((PyGreenstack*) o)->parent = ts_current;
}
return o;
}
static int green_setrun(PyGreenstack* self, PyObject* nrun, void* c);
static int green_setparent(PyGreenstack* self, PyObject* nparent, void* c);
static int green_init(PyGreenstack *self, PyObject *args, PyObject *kwargs)
{
PyObject *run = NULL;
PyObject* nparent = NULL;
static char *kwlist[] = {"run", "parent", 0};
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|OO:green", kwlist,
&run, &nparent))
return -1;
if (run != NULL) {
if (green_setrun(self, run, NULL))
return -1;
}
if (nparent != NULL && nparent != Py_None)
return green_setparent(self, nparent, NULL);
return 0;
}
static int kill_greenstack(PyGreenstack* self)
{
/* Cannot raise an exception to kill the greenstack if
it is not running in the same thread! */
if (self->run_info == PyThreadState_GET()->dict) {
/* The dying greenstack cannot be a parent of ts_current
because the 'parent' field chain would hold a
reference */
PyObject* result;
PyGreenstack* oldparent;
PyGreenstack* tmp;
if (!STATE_OK) {
return -1;
}
oldparent = self->parent;
self->parent = ts_current;
Py_INCREF(self->parent);
/* Send the greenstack a GreenstackExit exception. */
PyErr_SetNone(PyExc_GreenstackExit);
result = g_switch(self, NULL, NULL);
tmp = self->parent;
self->parent = oldparent;
Py_XDECREF(tmp);
if (result == NULL)
return -1;
Py_DECREF(result);
return 0;
}
else {
/* Not the same thread! Temporarily save the greenstack
into its thread's ts_delkey list. */
PyObject* lst;
lst = PyDict_GetItem(self->run_info, ts_delkey);
if (lst == NULL) {
lst = PyList_New(0);
if (lst == NULL || PyDict_SetItem(self->run_info,
ts_delkey, lst) < 0)
return -1;
}
if (PyList_Append(lst, (PyObject*) self) < 0)
return -1;
if (!STATE_OK) /* to force ts_delkey to be reconsidered */
return -1;
return 0;
}
}
#if GREENSTACK_USE_GC
static int
green_traverse(PyGreenstack *self, visitproc visit, void *arg)
{
/* We must only visit referenced objects, i.e. only objects
Py_INCREF'ed by this greenstack (directly or indirectly):
- stack_prev is not visited: holds previous stack pointer, but it's not referenced
- frames are not visited: alive greenstacks are not garbage collected anyway */
Py_VISIT((PyObject*)self->parent);
Py_VISIT(self->run_info);
Py_VISIT(self->dict);
return 0;
}
static int green_is_gc(PyGreenstack* self)
{
/* Main greenstack can be garbage collected since it can only
become unreachable if the underlying thread exited.
Active greenstack cannot be garbage collected, however. */
if (PyGreenstack_MAIN(self) || !PyGreenstack_ACTIVE(self))
return 1;
return 0;
}
static int green_clear(PyGreenstack* self)
{
/* Greenstack is only cleared if it is about to be collected.
Since active greenstacks are not garbage collectable, we can
be sure that, even if they are deallocated during clear,
nothing they reference is in unreachable or finalizers,
so even if it switches we are relatively safe. */
Py_CLEAR(self->parent);
Py_CLEAR(self->run_info);
Py_CLEAR(self->dict);
return 0;
}
#endif
static void green_dealloc_safe(PyGreenstack* self)
{
PyObject *error_type, *error_value, *error_traceback;
if (PyGreenstack_ACTIVE(self) && self->run_info != NULL && !PyGreenstack_MAIN(self)) {
/* Hacks hacks hacks copied from instance_dealloc() */
/* Temporarily resurrect the greenstack. */
assert(Py_REFCNT(self) == 0);
Py_REFCNT(self) = 1;
/* Save the current exception, if any. */
PyErr_Fetch(&error_type, &error_value, &error_traceback);
if (kill_greenstack(self) < 0) {
PyErr_WriteUnraisable((PyObject*) self);
/* XXX what else should we do? */
}
/* Check for no resurrection must be done while we keep
* our internal reference, otherwise PyFile_WriteObject
* causes recursion if using Py_INCREF/Py_DECREF
*/
if (Py_REFCNT(self) == 1 && PyGreenstack_ACTIVE(self)) {
/* Not resurrected, but still not dead!
XXX what else should we do? we complain. */
PyObject* f = PySys_GetObject("stderr");
Py_INCREF(self); /* leak! */
if (f != NULL) {
PyFile_WriteString("GreenstackExit did not kill ",
f);
PyFile_WriteObject((PyObject*) self, f, 0);
PyFile_WriteString("\n", f);
}
}
/* Restore the saved exception. */
PyErr_Restore(error_type, error_value, error_traceback);
/* Undo the temporary resurrection; can't use DECREF here,
* it would cause a recursive call.
*/
assert(Py_REFCNT(self) > 0);
if (--Py_REFCNT(self) != 0) {
/* Resurrected! */
Py_ssize_t refcnt = Py_REFCNT(self);
_Py_NewReference((PyObject*) self);
Py_REFCNT(self) = refcnt;
#if GREENSTACK_USE_GC
PyObject_GC_Track((PyObject *)self);
#endif
_Py_DEC_REFTOTAL;
#ifdef COUNT_ALLOCS
--Py_TYPE(self)->tp_frees;
--Py_TYPE(self)->tp_allocs;
#endif /* COUNT_ALLOCS */
return;
}
}
if (self->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) self);
Py_CLEAR(self->parent);
Py_CLEAR(self->run_info);
Py_CLEAR(self->dict);
Py_TYPE(self)->tp_free((PyObject*) self);
}
#if GREENSTACK_USE_GC
static void green_dealloc(PyGreenstack* self)
{
PyObject_GC_UnTrack((PyObject *)self);
if (PyObject_IS_GC((PyObject *)self)) {
Py_TRASHCAN_SAFE_BEGIN(self);
green_dealloc_safe(self);
Py_TRASHCAN_SAFE_END(self);
} else {
/* This object cannot be garbage collected, so trashcan is not allowed */
green_dealloc_safe(self);
}
}
#else
#define green_dealloc green_dealloc_safe
#endif
static PyObject* single_result(PyObject* results)
{
if (results != NULL && PyTuple_Check(results) &&
PyTuple_GET_SIZE(results) == 1) {
PyObject *result = PyTuple_GET_ITEM(results, 0);
Py_INCREF(result);
Py_DECREF(results);
return result;
}
else
return results;
}
static PyObject *
throw_greenstack(PyGreenstack *self, PyObject *typ, PyObject *val, PyObject *tb)
{
/* Note: _consumes_ a reference to typ, val, tb */
PyObject *result = NULL;
PyErr_Restore(typ, val, tb);
if (PyGreenstack_STARTED(self) && !PyGreenstack_ACTIVE(self))
{
/* dead greenstack: turn GreenstackExit into a regular return */
result = g_handle_exit(result);
}
return single_result(g_switch(self, result, NULL));
}
PyDoc_STRVAR(green_switch_doc,
"switch(*args, **kwargs)\n"
"\n"
"Switch execution to this greenstack.\n"
"\n"
"If this greenstack has never been run, then this greenstack\n"
"will be switched to using the body of self.run(*args, **kwargs).\n"
"\n"
"If the greenstack is active (has been run, but was switch()'ed\n"
"out before leaving its run function), then this greenstack will\n"
"be resumed and the return value to its switch call will be\n"
"None if no arguments are given, the given argument if one\n"
"argument is given, or the args tuple and keyword args dict if\n"
"multiple arguments are given.\n"
"\n"
"If the greenstack is dead, or is the current greenstack then this\n"
"function will simply return the arguments using the same rules as\n"
"above.\n");
static PyObject* green_switch(
PyGreenstack* self,
PyObject* args,
PyObject* kwargs)
{
Py_INCREF(args);
Py_XINCREF(kwargs);
return single_result(g_switch(self, args, kwargs));
}
/* Macros required to support Python < 2.6 for green_throw() */
#ifndef PyExceptionClass_Check
# define PyExceptionClass_Check PyClass_Check
#endif
#ifndef PyExceptionInstance_Check
# define PyExceptionInstance_Check PyInstance_Check
#endif
#ifndef PyExceptionInstance_Class
# define PyExceptionInstance_Class(x) \
((PyObject *) ((PyInstanceObject *)(x))->in_class)
#endif
PyDoc_STRVAR(green_throw_doc,
"Switches execution to the greenstack ``g``, but immediately raises the\n"
"given exception in ``g``. If no argument is provided, the exception\n"
"defaults to ``greenstack.GreenstackExit``. The normal exception\n"
"propagation rules apply, as described above. Note that calling this\n"
"method is almost equivalent to the following::\n"
"\n"
" def raiser():\n"
" raise typ, val, tb\n"
" g_raiser = greenstack(raiser, parent=g)\n"
" g_raiser.switch()\n"
"\n"
"except that this trick does not work for the\n"
"``greenstack.GreenstackExit`` exception, which would not propagate\n"
"from ``g_raiser`` to ``g``.\n");
static PyObject *
green_throw(PyGreenstack *self, PyObject *args)
{
PyObject *typ = PyExc_GreenstackExit;
PyObject *val = NULL;
PyObject *tb = NULL;
if (!PyArg_ParseTuple(args, "|OOO:throw", &typ, &val, &tb))
{
return NULL;
}
/* First, check the traceback argument, replacing None, with NULL */
if (tb == Py_None)
{
tb = NULL;
}
else if (tb != NULL && !PyTraceBack_Check(tb))
{
PyErr_SetString(
PyExc_TypeError,
"throw() third argument must be a traceback object");
return NULL;
}
Py_INCREF(typ);
Py_XINCREF(val);
Py_XINCREF(tb);
if (PyExceptionClass_Check(typ))
{
PyErr_NormalizeException(&typ, &val, &tb);
}
else if (PyExceptionInstance_Check(typ))
{
/* Raising an instance. The value should be a dummy. */
if (val && val != Py_None)
{
PyErr_SetString(
PyExc_TypeError,
"instance exception may not have a separate value");
goto failed_throw;
}
else
{
/* Normalize to raise <class>, <instance> */
Py_XDECREF(val);
val = typ;
typ = PyExceptionInstance_Class(typ);
Py_INCREF(typ);
}
}
else
{
/* Not something you can raise. throw() fails. */
PyErr_Format(
PyExc_TypeError,
"exceptions must be classes, or instances, not %s",
Py_TYPE(typ)->tp_name);
goto failed_throw;
}
return throw_greenstack(self, typ, val, tb);
failed_throw:
/* Didn't use our arguments, so restore their original refcounts */
Py_DECREF(typ);
Py_XDECREF(val);
Py_XDECREF(tb);
return NULL;
}
static int green_bool(PyGreenstack* self)
{
return PyGreenstack_ACTIVE(self);
}
static PyObject* green_getdict(PyGreenstack* self, void* c)
{
if (self->dict == NULL) {
self->dict = PyDict_New();
if (self->dict == NULL)
return NULL;
}
Py_INCREF(self->dict);
return self->dict;
}
static int green_setdict(PyGreenstack* self, PyObject* val, void* c)
{
PyObject* tmp;