serial.c
10.6 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
/*
TE4 - T-Engine 4
Copyright (C) 2009, 2010, 2011 Nicolas Casalini
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Nicolas Casalini "DarkGod"
darkgod@te4.org
*/
#include "display.h"
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
#include "auxiliar.h"
#include "types.h"
#include "serial.h"
#include "script.h"
#include "physfs.h"
#include "physfsrwops.h"
static int serial_new(lua_State *L)
{
zipFile *zf = (zipFile*)auxiliar_checkclass(L, "physfs{zip}", 1);
luaL_checktype(L, 2, LUA_TFUNCTION);
luaL_checktype(L, 3, LUA_TFUNCTION);
if (!lua_isnil(L, 4) && !lua_istable(L, 4)) { lua_pushstring(L, "argument 4 is not nil or table"); lua_error(L); }
if (!lua_isnil(L, 5) && !lua_istable(L, 5)) { lua_pushstring(L, "argument 5 is not nil or table"); lua_error(L); }
if (!lua_isnil(L, 6) && !lua_istable(L, 6)) { lua_pushstring(L, "argument 6 is not nil or table"); lua_error(L); }
int d2_ref = luaL_ref(L, LUA_REGISTRYINDEX);
int d_ref = luaL_ref(L, LUA_REGISTRYINDEX);
int a_ref = luaL_ref(L, LUA_REGISTRYINDEX);
int fadd_ref = luaL_ref(L, LUA_REGISTRYINDEX);
int fname_ref = luaL_ref(L, LUA_REGISTRYINDEX);
serial_type *s = (serial_type*)lua_newuserdata(L, sizeof(serial_type));
auxiliar_setclass(L, "core{serial}", -1);
s->zf = *zf;
s->fname = fname_ref;
s->fadd = fadd_ref;
s->allow = a_ref;
s->disallow = d_ref;
s->disallow2 = d2_ref;
return 1;
}
static int serial_free(lua_State *L)
{
serial_type *s = (serial_type*)auxiliar_checkclass(L, "core{serial}", 1);
luaL_unref(L, LUA_REGISTRYINDEX, s->fname);
luaL_unref(L, LUA_REGISTRYINDEX, s->fadd);
lua_pushnumber(L, 1);
return 1;
}
static const char *get_name(lua_State *L, serial_type *s, int idx)
{
lua_rawgeti(L, LUA_REGISTRYINDEX, s->fname);
lua_pushvalue(L, idx - 1);
lua_call(L, 1, 1);
const char *name = lua_tostring(L, -1);
lua_pop(L, 1);
return name;
}
static void add_process(lua_State *L, serial_type *s, int idx)
{
lua_rawgeti(L, LUA_REGISTRYINDEX, s->fadd);
lua_pushvalue(L, idx - 1);
lua_call(L, 1, 0);
}
#define writeZip(s, data) { /*printf("%s", data);*/ zipWriteInFileInZip(s->zf, data, strlen(data)); }
#define writeZipFixed(s, data, len) { /*printf("%s", data);*/ zipWriteInFileInZip(s->zf, data, len); }
static void dump_string(serial_type *s, const char *str, size_t l)
{
while (l--) {
switch (*str) {
case '"': case '\\': case '\n': {
writeZipFixed(s, "\\", 1);
writeZipFixed(s, str, 1);
break;
}
case '\r': {
writeZipFixed(s, "\\r", 2);
break;
}
case '\0': {
writeZipFixed(s, "\\000", 4);
break;
}
default: {
writeZipFixed(s, str, 1);
break;
}
}
str++;
}
}
static int dump_function(lua_State *L, const void* p, size_t sz, void* ud)
{
serial_type *s = (serial_type*)ud;
// fwrite(p, sz, 1, stdout);
// zipWriteInFileInZip(s->zf, p, sz);
dump_string(s, p, sz);
return 0;
}
static void basic_serialize(lua_State *L, serial_type *s, int type, int idx)
{
if (type == LUA_TBOOLEAN) {
if (lua_toboolean(L, idx)) { writeZipFixed(s, "true", 4); }
else { writeZipFixed(s, "false", 5); }
} else if (type == LUA_TNUMBER) {
lua_pushvalue(L, idx);
size_t len;
const char *n = lua_tolstring(L, -1, &len);
writeZipFixed(s, n, len);
lua_pop(L, 1);
} else if (type == LUA_TSTRING) {
size_t len;
const char *str = lua_tolstring(L, idx, &len);
writeZipFixed(s, "\"", 1);
dump_string(s, str, len);
writeZipFixed(s, "\"", 1);
} else if (type == LUA_TFUNCTION) {
writeZipFixed(s, "loadstring(\"", 12);
lua_dump(L, dump_function, s);
writeZipFixed(s, "\")", 2);
} else if (type == LUA_TTABLE) {
lua_pushstring(L, "__CLASSNAME");
lua_rawget(L, idx - 1);
// This is an object, register for saving later
if (!lua_isnil(L, -1))
{
lua_pop(L, 1);
writeZipFixed(s, "loadObject('", 12);
writeZip(s, get_name(L, s, idx));
writeZipFixed(s, "')", 2);
add_process(L, s, idx);
}
// This is just a table, save it
else
{
lua_pop(L, 1);
int ktype, etype;
writeZipFixed(s, "{", 1);
/* table is in the stack at index 't' */
lua_pushnil(L); /* first key */
while (lua_next(L, idx - 1) != 0)
{
ktype = lua_type(L, -2);
etype = lua_type(L, -1);
// Only save allowed types
if (
((ktype == LUA_TBOOLEAN) || (ktype == LUA_TNUMBER) || (ktype == LUA_TSTRING) || (ktype == LUA_TFUNCTION) || (ktype == LUA_TTABLE)) &&
((etype == LUA_TBOOLEAN) || (etype == LUA_TNUMBER) || (etype == LUA_TSTRING) || (etype == LUA_TFUNCTION) || (etype == LUA_TTABLE))
)
{
writeZipFixed(s, "[", 1);
basic_serialize(L, s, ktype, -2);
writeZipFixed(s, "]=", 2);
basic_serialize(L, s, etype, -1);
writeZipFixed(s, ",\n", 2);
}
/* removes 'value'; keeps 'key' for next iteration */
lua_pop(L, 1);
}
writeZipFixed(s, "}\n", 2);
}
} else {
printf("*WARNING* can not save value of type %s\n", lua_typename(L, type));
}
}
static int serial_tozip(lua_State *L)
{
serial_type *s = (serial_type*)auxiliar_checkclass(L, "core{serial}", 1);
int ktype, etype;
bool skip;
/* Allows & disallows */
lua_rawgeti(L, LUA_REGISTRYINDEX, s->allow); // -5
lua_rawgeti(L, LUA_REGISTRYINDEX, s->disallow); // -4
lua_rawgeti(L, LUA_REGISTRYINDEX, s->disallow2); // -3
/* table is in the stack at index 't' */
lua_pushvalue(L, 2); /* table */
lua_pushnil(L); /* first key */
/* Init the zip entry */
int err=0;
int opt_compress_level = 4;
zip_fileinfo zi;
unsigned long crcFile=0;
zi.tmz_date.tm_sec = zi.tmz_date.tm_min = zi.tmz_date.tm_hour =
zi.tmz_date.tm_mday = zi.tmz_date.tm_mon = zi.tmz_date.tm_year = 0;
zi.dosDate = 0;
zi.internal_fa = 0;
zi.external_fa = 0;
err = zipOpenNewFileInZip3(s->zf, get_name(L, s, -2), &zi,
NULL,0,NULL,0,NULL /* comment*/,
(opt_compress_level != 0) ? Z_DEFLATED : 0,
opt_compress_level,0,
-MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY,
NULL,crcFile);
if (err != ZIP_OK)
{
lua_pushnil(L);
lua_pushstring(L, "could not add file to zip");
return 2;
}
writeZipFixed(s, "d={}\n", 5);
writeZipFixed(s, "setLoaded('", 11);
writeZip(s, get_name(L, s, -2));
writeZipFixed(s, "', d)\n", 6);
while (lua_next(L, -2) != 0)
{
skip = FALSE;
ktype = lua_type(L, -2);
etype = lua_type(L, -1);
if (s->allow != LUA_REFNIL)
{
lua_pushvalue(L, -2); lua_rawget(L, -7);
skip = lua_isnil(L, -1); lua_pop(L, 1);
}
else if (s->disallow != LUA_REFNIL)
{
lua_pushvalue(L, -2); lua_rawget(L, -6);
skip = !lua_isnil(L, -1); lua_pop(L, 1);
}
if (s->disallow2 != LUA_REFNIL)
{
lua_pushvalue(L, -2); lua_rawget(L, -5);
skip = !lua_isnil(L, -1); lua_pop(L, 1);
}
if (!skip)
{
writeZipFixed(s, "d[", 2);
basic_serialize(L, s, ktype, -2);
writeZipFixed(s, "]=", 2);
basic_serialize(L, s, etype, -1);
writeZipFixed(s, "\n", 1);
}
/* removes 'value'; keeps 'key' for next iteration */
lua_pop(L, 1);
}
writeZipFixed(s, "\nreturn d", 9);
zipCloseFileInZip(s->zf);
lua_pushboolean(L, TRUE);
return 1;
}
#define CLONETABLE 2
#define CLONETABLE_LIST 3
static int serial_clonefull_recurs(lua_State *L, int idx)
{
int ktype, etype;
int nb = 0;
// We are called with the newtable on top of the stack
lua_pushnil(L); /* first key */
while (lua_next(L, idx - 2) != 0)
{
ktype = lua_type(L, -2);
etype = lua_type(L, -1);
// Forbid cloning of fields named __threads
if (ktype == LUA_TSTRING)
{
const char *s = lua_tostring(L, -2);
if (!strcmp(s, "__threads"))
{
lua_pop(L, 1);
continue;
}
}
if (ktype == LUA_TTABLE)
{
// Check clonetable first
lua_pushvalue(L, -2);
lua_rawget(L, CLONETABLE);
if (lua_isnil(L, -1))
{
// If not found, clone it
lua_pop(L, 1);
lua_newtable(L);
// Store in the clonetable
lua_pushvalue(L, -3);
lua_pushvalue(L, -2);
lua_rawset(L, CLONETABLE);
lua_pushvalue(L, -3);
lua_pushvalue(L, -2);
lua_rawset(L, CLONETABLE_LIST);
}
}
else
{
lua_pushvalue(L, -2);
}
if (etype == LUA_TTABLE)
{
// Check clonetable first
lua_pushvalue(L, -2);
lua_rawget(L, CLONETABLE);
if (lua_isnil(L, -1))
{
// If not found, clone it
lua_pop(L, 1);
lua_newtable(L);
// Store in the clonetable
lua_pushvalue(L, -3);
lua_pushvalue(L, -2);
lua_rawset(L, CLONETABLE);
lua_pushvalue(L, -3);
lua_pushvalue(L, -2);
lua_rawset(L, CLONETABLE_LIST);
}
}
else
{
lua_pushvalue(L, -2);
}
// Now set in the new table
lua_rawset(L, -5);
/* removes 'value'; keeps 'key' for next iteration */
lua_pop(L, 1);
}
// Setup metatable
if (lua_getmetatable(L, idx - 1))
{
lua_setmetatable(L, -2); // -2 because -1 was the newtable before we push the metatable
}
// Check for class
lua_pushstring(L, "__CLASSNAME");
lua_rawget(L, -2);
if (lua_isstring(L, -1))
{
lua_pop(L, 1);
nb++;
lua_getfield(L, -1, "cloned");
if (lua_isfunction(L, -1))
{
lua_pushvalue(L, -2);
lua_pushvalue(L, idx-2);
lua_call(L, 2, 0);
}
else lua_pop(L, 1);
}
else lua_pop(L, 1);
return nb;
}
static int serial_clonefull(lua_State *L)
{
luaL_checktype(L, 1, LUA_TTABLE);
lua_newtable(L); // idx 2 == clonetable_all
lua_newtable(L); // idx 3 == clonetable
// Store in the clonetable
lua_pushvalue(L, 1);
lua_newtable(L);
lua_rawset(L, CLONETABLE);
lua_pushvalue(L, 1);
lua_newtable(L);
lua_rawset(L, CLONETABLE_LIST);
int nb = 0;
lua_pushnil(L); /* first key */
while (lua_next(L, CLONETABLE_LIST) != 0)
{
// printf("<TOP %d\n", lua_gettop(L));
nb += serial_clonefull_recurs(L, -1);
// printf(">TOP %d // %d\n", lua_gettop(L), nb);
// Remove from list
lua_pop(L, 1); // remove value
lua_pushnil(L); // set to nil
lua_rawset(L, CLONETABLE_LIST);
// Reset the next()
lua_pushnil(L);
}
lua_pushnumber(L, nb);
return 2;
}
static const struct luaL_reg seriallib[] =
{
{"new", serial_new},
{"cloneFull", serial_clonefull},
{NULL, NULL},
};
static const struct luaL_reg serial_reg[] =
{
{"__gc", serial_free},
{"toZip", serial_tozip},
{NULL, NULL},
};
int luaopen_serial(lua_State *L)
{
auxiliar_newclass(L, "core{serial}", serial_reg);
luaL_openlib(L, "core.serial", seriallib, 0);
lua_pop(L, 1);
return 1;
}