4 ** See Copyright Notice in lua.h
21 static lua_State
*getco (lua_State
*L
) {
22 lua_State
*co
= lua_tothread(L
, 1);
23 luaL_argexpected(L
, co
, 1, "thread");
29 ** Resumes a coroutine. Returns the number of results for non-error
30 ** cases or -1 for errors.
32 static int auxresume (lua_State
*L
, lua_State
*co
, int narg
) {
34 if (l_unlikely(!lua_checkstack(co
, narg
))) {
35 lua_pushliteral(L
, "too many arguments to resume");
36 return -1; /* error flag */
38 lua_xmove(L
, co
, narg
);
39 status
= lua_resume(co
, L
, narg
, &nres
);
40 if (l_likely(status
== LUA_OK
|| status
== LUA_YIELD
)) {
41 if (l_unlikely(!lua_checkstack(L
, nres
+ 1))) {
42 lua_pop(co
, nres
); /* remove results anyway */
43 lua_pushliteral(L
, "too many results to resume");
44 return -1; /* error flag */
46 lua_xmove(co
, L
, nres
); /* move yielded values */
50 lua_xmove(co
, L
, 1); /* move error message */
51 return -1; /* error flag */
56 static int luaB_coresume (lua_State
*L
) {
57 lua_State
*co
= getco(L
);
59 r
= auxresume(L
, co
, lua_gettop(L
) - 1);
60 if (l_unlikely(r
< 0)) {
61 lua_pushboolean(L
, 0);
63 return 2; /* return false + error message */
66 lua_pushboolean(L
, 1);
67 lua_insert(L
, -(r
+ 1));
68 return r
+ 1; /* return true + 'resume' returns */
73 static int luaB_auxwrap (lua_State
*L
) {
74 lua_State
*co
= lua_tothread(L
, lua_upvalueindex(1));
75 int r
= auxresume(L
, co
, lua_gettop(L
));
76 if (l_unlikely(r
< 0)) { /* error? */
77 int stat
= lua_status(co
);
78 if (stat
!= LUA_OK
&& stat
!= LUA_YIELD
) { /* error in the coroutine? */
79 stat
= lua_closethread(co
, L
); /* close its tbc variables */
80 lua_assert(stat
!= LUA_OK
);
81 lua_xmove(co
, L
, 1); /* move error message to the caller */
83 if (stat
!= LUA_ERRMEM
&& /* not a memory error and ... */
84 lua_type(L
, -1) == LUA_TSTRING
) { /* ... error object is a string? */
85 luaL_where(L
, 1); /* add extra info, if available */
89 return lua_error(L
); /* propagate error */
95 static int luaB_cocreate (lua_State
*L
) {
97 luaL_checktype(L
, 1, LUA_TFUNCTION
);
98 NL
= lua_newthread(L
);
99 lua_pushvalue(L
, 1); /* move function to top */
100 lua_xmove(L
, NL
, 1); /* move function from L to NL */
105 static int luaB_cowrap (lua_State
*L
) {
107 lua_pushcclosure(L
, luaB_auxwrap
, 1);
112 static int luaB_yield (lua_State
*L
) {
113 return lua_yield(L
, lua_gettop(L
));
123 static const char *const statname
[] =
124 {"running", "dead", "suspended", "normal"};
127 static int auxstatus (lua_State
*L
, lua_State
*co
) {
128 if (L
== co
) return COS_RUN
;
130 switch (lua_status(co
)) {
135 if (lua_getstack(co
, 0, &ar
)) /* does it have frames? */
136 return COS_NORM
; /* it is running */
137 else if (lua_gettop(co
) == 0)
140 return COS_YIELD
; /* initial state */
142 default: /* some error occurred */
149 static int luaB_costatus (lua_State
*L
) {
150 lua_State
*co
= getco(L
);
151 lua_pushstring(L
, statname
[auxstatus(L
, co
)]);
156 static int luaB_yieldable (lua_State
*L
) {
157 lua_State
*co
= lua_isnone(L
, 1) ? L
: getco(L
);
158 lua_pushboolean(L
, lua_isyieldable(co
));
163 static int luaB_corunning (lua_State
*L
) {
164 int ismain
= lua_pushthread(L
);
165 lua_pushboolean(L
, ismain
);
170 static int luaB_close (lua_State
*L
) {
171 lua_State
*co
= getco(L
);
172 int status
= auxstatus(L
, co
);
174 case COS_DEAD
: case COS_YIELD
: {
175 status
= lua_closethread(co
, L
);
176 if (status
== LUA_OK
) {
177 lua_pushboolean(L
, 1);
181 lua_pushboolean(L
, 0);
182 lua_xmove(co
, L
, 1); /* move error message */
186 default: /* normal or running coroutine */
187 return luaL_error(L
, "cannot close a %s coroutine", statname
[status
]);
192 static const luaL_Reg co_funcs
[] = {
193 {"create", luaB_cocreate
},
194 {"resume", luaB_coresume
},
195 {"running", luaB_corunning
},
196 {"status", luaB_costatus
},
197 {"wrap", luaB_cowrap
},
198 {"yield", luaB_yield
},
199 {"isyieldable", luaB_yieldable
},
200 {"close", luaB_close
},
206 LUAMOD_API
int luaopen_coroutine (lua_State
*L
) {
207 luaL_newlib(L
, co_funcs
);