ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Coro/CoroAPI.h
Revision: 1.33
Committed: Wed Mar 11 09:47:17 2020 UTC (4 years, 2 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-6_57, HEAD
Changes since 1.32: +15 -3 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #ifndef CORO_API_H
2     #define CORO_API_H
3    
4     #include "EXTERN.h"
5     #include "perl.h"
6     #include "XSUB.h"
7    
8 pcg 1.5 #ifndef pTHX_
9     # define pTHX_
10     # define aTHX_
11     # define pTHX
12     # define aTHX
13     #endif
14    
15 root 1.21 /* C-level coroutine struct, opaque, not used much */
16     struct coro;
17 root 1.1
18 root 1.21 /* used for schedule-like-function prepares */
19     struct coro_transfer_args
20     {
21     struct coro *prev, *next;
22 root 1.19 };
23    
24 root 1.33 /* this is the per-perl-coro slf frame info
25     * it is treated like other "global" interpreter data
26     * and unfortunately is copied around, so keep it small
27     *
28     * Workflow:
29     *
30     * 1. init function is called to parse arguments and fill out the CoroSLF frame
31     * 2. loop starts by calling frame->prepare, providing transfer arguments
32     * 3. transfer is called, transsferring control to another coro
33     * 4. if at this point, the coro is destroyed: frame->destroy is called, then no further processing
34     * 5. otherwise: eventually control is transferred back to coro
35     * 6. frame->check is called
36     * 7. check returns 0 => wait not finished, loop to 2
37     * 8. otherwise, check puts results on stack, returns 1 => finish
38     */
39 root 1.19 struct CoroSLF
40     {
41 root 1.23 void (*prepare) (pTHX_ struct coro_transfer_args *ta); /* 0 means not yet initialised */
42 root 1.22 int (*check) (pTHX_ struct CoroSLF *frame);
43 root 1.29 void *data; /* for use by prepare/check/destroy */
44 root 1.30 void (*destroy) (pTHX_ struct CoroSLF *frame);
45 root 1.19 };
46    
47 root 1.22 /* needs to fill in the *frame */
48 root 1.24 typedef void (*coro_slf_cb) (pTHX_ struct CoroSLF *frame, CV *cv, SV **arg, int items);
49 root 1.22
50 root 1.32 /* called on enter/leave */
51     typedef void (*coro_enterleave_hook) (pTHX_ void *arg);
52    
53 root 1.10 /* private structure, always use the provided macros below */
54 root 1.19 struct CoroAPI
55     {
56 root 1.28 /* private */
57 root 1.1 I32 ver;
58 root 1.15 I32 rev;
59 root 1.29 #define CORO_API_VERSION 7 /* reorder CoroSLF on change */
60 root 1.32 #define CORO_API_REVISION 2
61 root 1.19
62 root 1.20 /* Coro */
63     int nready;
64     SV *current;
65 root 1.26 SV *except;
66 root 1.20 void (*readyhook) (void);
67    
68     void (*schedule) (pTHX);
69 root 1.27 void (*schedule_to) (pTHX_ SV *coro_sv);
70 root 1.19 int (*cede) (pTHX);
71     int (*cede_notself) (pTHX);
72     int (*ready) (pTHX_ SV *coro_sv);
73     int (*is_ready) (pTHX_ SV *coro_sv);
74 root 1.18
75 root 1.20 /* Coro::State */
76     void (*transfer) (pTHX_ SV *prev_sv, SV *next_sv); /* Coro::State */
77 root 1.22
78     /* SLF */
79 root 1.32 struct coro *(*sv_state) (pTHX_ SV *coro_sv);
80 root 1.25 void (*execute_slf) (pTHX_ CV *cv, coro_slf_cb init_cb, I32 ax);
81 root 1.28
82     /* public */
83 root 1.22 /* for use as CoroSLF.prepare */
84 root 1.23 void (*prepare_nop) (pTHX_ struct coro_transfer_args *ta);
85     void (*prepare_schedule) (pTHX_ struct coro_transfer_args *ta);
86     void (*prepare_cede) (pTHX_ struct coro_transfer_args *ta);
87     void (*prepare_cede_notself) (pTHX_ struct coro_transfer_args *ta);
88 root 1.32
89     /* private */
90     void (*enterleave_hook)(pTHX_ SV *coro_sv, coro_enterleave_hook enter, void *enter_arg, coro_enterleave_hook leave, void *leave_arg);
91     void (*enterleave_unhook)(pTHX_ SV *coro_sv, coro_enterleave_hook enter, coro_enterleave_hook leave);
92     void (*enterleave_scope_hook)(pTHX_ coro_enterleave_hook enter, void *enter_arg, coro_enterleave_hook leave, void *leave_arg); /* XS caller must LEAVE/ENTER */
93 root 1.1 };
94    
95     static struct CoroAPI *GCoroAPI;
96    
97 root 1.11 /* public API macros */
98     #define CORO_TRANSFER(prev,next) GCoroAPI->transfer (aTHX_ (prev), (next))
99 root 1.22
100     #define CORO_SV_STATE(coro) GCoroAPI->sv_state (aTHX_ (coro))
101 root 1.25 #define CORO_EXECUTE_SLF(cv,init,ax) GCoroAPI->execute_slf (aTHX_ (cv), (init), (ax))
102     #define CORO_EXECUTE_SLF_XS(init) CORO_EXECUTE_SLF (cv, (init), ax)
103 root 1.22
104 root 1.19 #define CORO_SCHEDULE GCoroAPI->schedule (aTHX)
105     #define CORO_CEDE GCoroAPI->cede (aTHX)
106     #define CORO_CEDE_NOTSELF GCoroAPI->cede_notself (aTHX)
107     #define CORO_READY(coro) GCoroAPI->ready (aTHX_ coro)
108 root 1.11 #define CORO_IS_READY(coro) GCoroAPI->is_ready (coro)
109 root 1.26 #define CORO_NREADY (GCoroAPI->nready)
110     #define CORO_THROW (GCoroAPI->except)
111 root 1.22 #define CORO_CURRENT SvRV (GCoroAPI->current)
112 root 1.26 #define CORO_READYHOOK (GCoroAPI->readyhook)
113 root 1.21
114 root 1.32 #define CORO_ENTERLEAVE_HOOK(coro,enter,enter_arg,leave,leave_arg) GCoroAPI->enterleave_hook (aTHX_ coro, enter, enter_arg, leave, leave_arg)
115     #define CORO_ENTERLEAVE_UNHOOK(coro,enter,leave) GCoroAPI->enterleave_hook (aTHX_ coro, enter , leave )
116     #define CORO_ENTERLEAVE_SCOPE_HOOK(enter,enter_arg,leave,leave_arg) GCoroAPI->enterleave_scope_hook (aTHX_ enter, enter_arg, leave, leave_arg)
117    
118 root 1.31 #define I_CORO_API(YourName) \
119     STMT_START { \
120     SV *sv = perl_get_sv ("Coro::API", 0); \
121     if (!sv) croak ("Coro::API not found"); \
122     GCoroAPI = (struct CoroAPI*) SvIV (sv); \
123     if (GCoroAPI->ver != CORO_API_VERSION \
124     || GCoroAPI->rev < CORO_API_REVISION) \
125     croak ("Coro::API version mismatch (%d.%d vs. %d.%d) -- please recompile %s", \
126     (int)GCoroAPI->ver, (int)GCoroAPI->rev, CORO_API_VERSION, CORO_API_REVISION, YourName); \
127 root 1.1 } STMT_END
128    
129     #endif
130