-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathwork.c
327 lines (273 loc) · 9.06 KB
/
work.c
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
/*
* Copyright 2014 The Luvit Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include "private.h"
typedef struct {
lua_State** vms;
unsigned int nvms;
unsigned int idx_vms;
uv_mutex_t vm_mutex;
} luv_work_vms_t;
typedef struct {
lua_State* L; /* vm in main */
char* code; /* thread entry code */
size_t len;
int after_work_cb; /* ref, run in main ,call after work cb*/
luv_work_vms_t* vms; /* userdata owned by L, so parent thread can clean up old states */
} luv_work_ctx_t;
typedef struct {
uv_work_t work;
luv_work_ctx_t* ctx;
luv_thread_arg_t args;
luv_thread_arg_t rets;
int ref; /* ref to luv_work_ctx_t, which create a new uv_work_t*/
} luv_work_t;
static uv_once_t once_vmkey = UV_ONCE_INIT;
static uv_key_t tls_vmkey; /* thread local storage key for Lua state */
#if LUV_UV_VERSION_GEQ(1, 30, 0)
#define MAX_THREADPOOL_SIZE 1024
#else
#define MAX_THREADPOOL_SIZE 128
#endif
static luv_work_ctx_t* luv_check_work_ctx(lua_State* L, int index) {
luv_work_ctx_t* ctx = (luv_work_ctx_t*)luaL_checkudata(L, index, "luv_work_ctx");
return ctx;
}
static int luv_work_ctx_gc(lua_State *L) {
luv_work_ctx_t* ctx = luv_check_work_ctx(L, 1);
free(ctx->code);
luaL_unref(L, LUA_REGISTRYINDEX, ctx->after_work_cb);
return 0;
}
static int luv_work_ctx_tostring(lua_State* L) {
luv_work_ctx_t* ctx = luv_check_work_ctx(L, 1);
lua_pushfstring(L, "luv_work_ctx_t: %p", ctx);
return 1;
}
static int luv_work_cb(lua_State* L) {
uv_work_t* req = lua_touserdata(L, 1);
luv_work_t* work = (luv_work_t*)req->data;
luv_work_ctx_t* ctx = work->ctx;
luv_ctx_t *lctx = luv_context(L);
lua_pop(L, 1);
int top = lua_gettop(L);
/* push lua function */
lua_pushlstring(L, ctx->code, ctx->len);
lua_rawget(L, LUA_REGISTRYINDEX);
if (lua_isnil(L, -1)) {
lua_pop(L, 1);
lua_pushlstring(L, ctx->code, ctx->len);
if (luaL_loadbuffer(L, ctx->code, ctx->len, "=pool") != 0)
{
fprintf(stderr, "Uncaught Error in work callback: %s\n", lua_tostring(L, -1));
lua_pop(L, 2);
lua_pushnil(L);
} else {
lua_pushvalue(L, -1);
lua_insert(L, lua_gettop(L) - 2);
lua_rawset(L, LUA_REGISTRYINDEX);
}
}
if (lua_isfunction(L, -1)) {
int i = luv_thread_arg_push(L, &work->args, LUVF_THREAD_SIDE_CHILD);
// If exit is called on a thread in the thread pool, abort is called in
// uv__threadpool_cleanup, so exit is not called in luv_cfpcall.
i = lctx->thrd_pcall(L, i, LUA_MULTRET, LUVF_CALLBACK_NOEXIT);
if ( i>=0 ) {
//clear in main threads, luv_after_work_cb
i = luv_thread_arg_set(L, &work->rets, top + 1, lua_gettop(L),
LUVF_THREAD_MODE_ASYNC|LUVF_THREAD_SIDE_CHILD);
if (i < 0) {
return luv_thread_arg_error(L);
}
lua_pop(L, i); // pop all returned value
luv_thread_arg_clear(L, &work->rets, LUVF_THREAD_MODE_ASYNC|LUVF_THREAD_SIDE_CHILD);
}
luv_thread_arg_clear(L, &work->args, LUVF_THREAD_SIDE_CHILD);
} else {
lua_pop(L, 1);
luv_thread_arg_clear(L, &work->args, LUVF_THREAD_SIDE_CHILD);
return luaL_error(L, "Uncaught Error: %s can't be work entry\n",
lua_typename(L, lua_type(L,-1)));
}
if (top!=lua_gettop(L))
return luaL_error(L, "stack not balance in luv_work_cb, need %d but %d", top, lua_gettop(L));
return LUA_OK;
}
static lua_State* luv_work_acquire_vm(luv_work_vms_t* vms)
{
lua_State* L = uv_key_get(&tls_vmkey);
if (L == NULL)
{
L = acquire_vm_cb();
uv_key_set(&tls_vmkey, L);
lua_pushboolean(L, 1);
lua_setglobal(L, "_THREAD");
uv_mutex_lock(&vms->vm_mutex);
vms->vms[vms->idx_vms] = L;
vms->idx_vms += 1;
uv_mutex_unlock(&vms->vm_mutex);
}
return L;
}
static int luv_work_cleanup(lua_State *L)
{
unsigned int i;
luv_work_vms_t *vms = (luv_work_vms_t*)lua_touserdata(L, 1);
if (!vms || vms->nvms == 0)
return 0;
for (i = 0; i < vms->nvms && vms->vms[i]; i++)
release_vm_cb(vms->vms[i]);
free(vms->vms);
uv_mutex_destroy(&vms->vm_mutex);
vms->nvms = 0;
return 0;
}
static void luv_work_cb_wrapper(uv_work_t* req) {
luv_work_t* work = (luv_work_t*)req->data;
lua_State *L = luv_work_acquire_vm(work->ctx->vms);
luv_ctx_t* lctx = luv_context(L);
// If exit is called on a thread in the thread pool, abort is called in
// uv__threadpool_cleanup, so exit is not called in luv_cfpcall.
int i = lctx->thrd_cpcall(L, luv_work_cb, (void*)req, LUVF_CALLBACK_NOEXIT);
if (i != LUA_OK) {
luv_thread_arg_clear(L, &work->rets, LUVF_THREAD_MODE_ASYNC|LUVF_THREAD_SIDE_CHILD);
luv_thread_arg_clear(L, &work->args, LUVF_THREAD_SIDE_CHILD);
}
}
static void luv_after_work_cb(uv_work_t* req, int status) {
luv_work_t* work = (luv_work_t*)req->data;
luv_work_ctx_t* ctx = work->ctx;
lua_State* L = ctx->L;
luv_ctx_t *lctx = luv_context(L);
int i;
(void)status;
lua_rawgeti(L, LUA_REGISTRYINDEX, ctx->after_work_cb);
i = luv_thread_arg_push(L, &work->rets, LUVF_THREAD_SIDE_MAIN);
lctx->cb_pcall(L, i, 0, 0);
//ref down to ctx, up in luv_queue_work()
luaL_unref(L, LUA_REGISTRYINDEX, work->ref);
work->ref = LUA_NOREF;
luv_thread_arg_clear(L, &work->args, LUVF_THREAD_SIDE_MAIN);
luv_thread_arg_clear(L, &work->rets, LUVF_THREAD_MODE_ASYNC|LUVF_THREAD_SIDE_MAIN);
free(work);
}
static int luv_new_work(lua_State* L) {
size_t len;
char* code;
luv_work_ctx_t* ctx;
luv_thread_dumped(L, 1);
len = lua_rawlen(L, -1);
code = malloc(len);
memcpy(code, lua_tostring(L, -1), len);
lua_pop(L, 1);
luaL_checktype(L, 2, LUA_TFUNCTION);
ctx = (luv_work_ctx_t*)lua_newuserdata(L, sizeof(*ctx));
memset(ctx, 0, sizeof(*ctx));
lua_rawgetp(L, LUA_REGISTRYINDEX, &luv_work_cleanup);
ctx->vms = (luv_work_vms_t*)lua_touserdata(L, -1);
lua_pop(L, 1);
ctx->len = len;
ctx->code = code;
lua_pushvalue(L, 2);
ctx->after_work_cb = luaL_ref(L, LUA_REGISTRYINDEX);
ctx->L = luv_state(L);
luaL_getmetatable(L, "luv_work_ctx");
lua_setmetatable(L, -2);
return 1;
}
static int luv_queue_work(lua_State* L) {
int top = lua_gettop(L);
luv_work_ctx_t* ctx = luv_check_work_ctx(L, 1);
luv_work_t* work = (luv_work_t*)malloc(sizeof(*work));
int ret;
memset(work, 0, sizeof(*work));
ret = luv_thread_arg_set(L, &work->args, 2, top, LUVF_THREAD_SIDE_MAIN); //clear in sub threads,luv_work_cb
if (ret < 0) {
luv_thread_arg_clear(L, &work->args, LUVF_THREAD_SIDE_MAIN);
free(work);
return luv_thread_arg_error(L);
}
work->ctx = ctx;
work->work.data = work;
ret = uv_queue_work(luv_loop(L), &work->work, luv_work_cb_wrapper, luv_after_work_cb);
if (ret < 0) {
luv_thread_arg_clear(L, &work->args, LUVF_THREAD_SIDE_MAIN);
free(work);
return luv_error(L, ret);
}
//ref up to ctx
lua_pushvalue(L, 1);
work->ref = luaL_ref(L, LUA_REGISTRYINDEX);
lua_pushboolean(L, 1);
return 1;
}
static const luaL_Reg luv_work_ctx_methods[] = {
{"queue", luv_queue_work},
{NULL, NULL}
};
static void luv_key_init_once(void)
{
int status = uv_key_create(&tls_vmkey);
if (status != 0)
{
fprintf(stderr, "*** threadpool not works\n");
fprintf(stderr, "Error to uv_key_create with %s: %s\n",
uv_err_name(status), uv_strerror(status));
abort();
}
}
static void luv_work_init(lua_State* L) {
luaL_newmetatable(L, "luv_work_ctx");
lua_pushcfunction(L, luv_work_ctx_tostring);
lua_setfield(L, -2, "__tostring");
lua_pushcfunction(L, luv_work_ctx_gc);
lua_setfield(L, -2, "__gc");
luaL_newlib(L, luv_work_ctx_methods);
lua_setfield(L, -2, "__index");
lua_pop(L, 1);
luaL_newmetatable(L, "luv_work_vms");
lua_pushcfunction(L, luv_work_cleanup);
lua_setfield(L, -2, "__gc");
lua_pop(L, 1);
/* ref to https://github.com/libuv/libuv/blob/v1.x/src/threadpool.c init_threads */
const char* val;
unsigned int nvms = 4;
val = getenv("UV_THREADPOOL_SIZE");
if (val != NULL)
nvms = atoi(val);
if (nvms == 0)
nvms = 1;
if (nvms > MAX_THREADPOOL_SIZE)
nvms = MAX_THREADPOOL_SIZE;
luv_work_vms_t* vms = (luv_work_vms_t*)lua_newuserdata(L, sizeof(luv_work_vms_t));
int status = uv_mutex_init(&vms->vm_mutex);
if (status != 0)
{
fprintf(stderr, "*** threadpool not works\n");
fprintf(stderr, "Error to uv_mutex_init with %s: %s\n",
uv_err_name(status), uv_strerror(status));
abort();
}
vms->vms = (lua_State**)calloc(nvms, sizeof(lua_State*));
vms->nvms = nvms;
vms->idx_vms = 0;
luaL_getmetatable(L, "luv_work_vms");
lua_setmetatable(L, -2);
// store the luv_work_vms_t in registry
lua_rawsetp(L, LUA_REGISTRYINDEX, &luv_work_cleanup);
uv_once(&once_vmkey, luv_key_init_once);
}