forked from brimworks/lua-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathar_entry.c
479 lines (426 loc) · 14.7 KB
/
ar_entry.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
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
#include <archive_entry.h>
#include <ctype.h>
#include <lauxlib.h>
#include <lua.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <sys/stat.h>
#include "ar_entry.h"
#define err(...) (luaL_error(L, __VA_ARGS__))
static int __ref_count = 0;
//////////////////////////////////////////////////////////////////////
// For debugging GC issues.
static int ar_ref_count(lua_State *L) {
lua_pushnumber(L, __ref_count);
return 1;
}
//////////////////////////////////////////////////////////////////////
int ar_entry(lua_State *L) {
struct archive_entry** self_ref = (struct archive_entry**)
lua_newuserdata(L, sizeof(struct archive_entry*)); // ..., {ud}
*self_ref = NULL;
luaL_getmetatable(L, AR_ENTRY); // ..., {ud}, {meta}
lua_setmetatable(L, -2); // ..., {ud}
__ref_count++;
*self_ref = archive_entry_new();
if ( lua_istable(L, 1) ) {
int mt;
// If given a sourcepath, copy stat buffer from there:
lua_pushliteral(L, "sourcepath"); // ..., {ud}, "sourcepath"
lua_rawget(L, 1); // ..., {ud}, src
if ( lua_isstring(L, -1) ) {
struct stat sb;
#ifdef _MSC_VER
stat(lua_tostring(L, -1), &sb);
#else
lstat(lua_tostring(L, -1), &sb);
#endif
archive_entry_copy_stat(*self_ref, &sb);
} else {
// Give a reasonable default mode:
archive_entry_set_mode(*self_ref, S_IFREG);
}
lua_pop(L, 1); // ... {ud}
/* XXX: optimized away by assert */
mt = lua_getmetatable(L, -1); // ..., {ud}, {meta}
assert(mt != 0);
// Iterate over the table and call the method with that name
lua_pushnil(L); // ..., {ud}, {meta}, nil
while (lua_next(L, 1) != 0) { // ..., {ud}, {meta}, key, value
lua_pushvalue(L, -2); // ..., {ud}, {meta}, key, value, key
lua_gettable(L, -4); // ..., {ud}, {meta}, key, value, func
if ( lua_isnil(L, -1) ) {
err("InvalidArgument: '%s' is not a valid field", lua_tostring(L, -3));
}
lua_pushvalue(L, -5); // ..., {ud}, {meta}, key, value, func, {ud}
lua_pushvalue(L, -3); // ..., {ud}, {meta}, key, value, func, {ud}, value
lua_call(L, 2, 0); // ..., {ud}, {meta}, key, value
lua_pop(L, 1); // ..., {ud}, {meta}, key
} // ..., {ud}, {meta}
lua_pop(L, 1);
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_destroy(lua_State *L) {
struct archive_entry** self_ref = ar_entry_check(L, 1);
if ( *self_ref != NULL ) {
__ref_count--;
archive_entry_free(*self_ref);
*self_ref = NULL;
}
return 0;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_fflags(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushstring(L, archive_entry_fflags_text(self));
if ( is_set ) {
const char* invalid = archive_entry_copy_fflags_text(self, lua_tostring(L, 2));
if ( NULL != invalid ) {
err("InvalidFFlag: '%s' is not a known fflag", invalid);
}
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_dev(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushnumber(L, archive_entry_dev(self));
if ( is_set ) {
archive_entry_set_dev(self, lua_tonumber(L, 2));
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_ino(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushnumber(L, archive_entry_ino(self));
if ( is_set ) {
archive_entry_set_ino(self, lua_tonumber(L, 2));
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_mode(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushnumber(L, archive_entry_mode(self));
if ( is_set ) {
__LA_MODE_T mode = lua_tonumber(L, 2);
archive_entry_set_mode(self, mode);
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_nlink(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushnumber(L, archive_entry_nlink(self));
if ( is_set ) {
archive_entry_set_nlink(self, lua_tonumber(L, 2));
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_uid(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushnumber(L, archive_entry_uid(self));
if ( is_set ) {
archive_entry_set_uid(self, lua_tonumber(L, 2));
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_uname(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushstring(L, archive_entry_uname(self));
if ( is_set ) {
archive_entry_copy_uname(self, lua_tostring(L, 2));
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_gid(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushnumber(L, archive_entry_gid(self));
if ( is_set ) {
archive_entry_set_gid(self, lua_tonumber(L, 2));
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_gname(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushstring(L, archive_entry_gname(self));
if ( is_set ) {
archive_entry_copy_gname(self, lua_tostring(L, 2));
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_rdev(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushnumber(L, archive_entry_rdev(self));
if ( is_set ) {
archive_entry_set_rdev(self, lua_tonumber(L, 2));
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_atime(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
int num_results;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) >= 2 );
num_results = 0;
if ( archive_entry_atime_is_set(self) ) {
num_results = 2;
lua_pushnumber(L, archive_entry_atime(self));
lua_pushnumber(L, archive_entry_atime_nsec(self));
}
if ( is_set ) {
if ( lua_isnil(L, 2) ) {
archive_entry_unset_atime(self);
} else if ( lua_istable(L, 2) ) {
lua_rawgeti(L, 2, 1);
lua_rawgeti(L, 2, 2);
archive_entry_set_atime(self,
lua_tonumber(L, -2),
lua_tonumber(L, -1));
} else {
archive_entry_set_atime(self,
lua_tonumber(L, 2),
lua_tonumber(L, 3));
}
}
return num_results;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_mtime(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
int num_results;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) >= 2 );
num_results = 0;
if ( archive_entry_mtime_is_set(self) ) {
num_results = 2;
lua_pushnumber(L, archive_entry_mtime(self));
lua_pushnumber(L, archive_entry_mtime_nsec(self));
}
if ( is_set ) {
if ( lua_isnil(L, 2) ) {
archive_entry_unset_mtime(self);
} else if ( lua_istable(L, 2) ) {
lua_rawgeti(L, 2, 1);
lua_rawgeti(L, 2, 2);
archive_entry_set_mtime(self,
lua_tonumber(L, -2),
lua_tonumber(L, -1));
} else {
archive_entry_set_mtime(self,
lua_tonumber(L, 2),
lua_tonumber(L, 3));
}
}
return num_results;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_ctime(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
int num_results;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) >= 2 );
num_results = 0;
if ( archive_entry_ctime_is_set(self) ) {
num_results = 2;
lua_pushnumber(L, archive_entry_ctime(self));
lua_pushnumber(L, archive_entry_ctime_nsec(self));
}
if ( is_set ) {
if ( lua_isnil(L, 2) ) {
archive_entry_unset_ctime(self);
} else if ( lua_istable(L, 2) ) {
lua_rawgeti(L, 2, 1);
lua_rawgeti(L, 2, 2);
archive_entry_set_ctime(self,
lua_tonumber(L, -2),
lua_tonumber(L, -1));
} else {
archive_entry_set_ctime(self,
lua_tonumber(L, 2),
lua_tonumber(L, 3));
}
}
return num_results;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_birthtime(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
int num_results;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) >= 2 );
num_results = 0;
if ( archive_entry_birthtime_is_set(self) ) {
num_results = 2;
lua_pushnumber(L, archive_entry_birthtime(self));
lua_pushnumber(L, archive_entry_birthtime_nsec(self));
}
if ( is_set ) {
if ( lua_isnil(L, 2) ) {
archive_entry_unset_birthtime(self);
} else if ( lua_istable(L, 2) ) {
lua_rawgeti(L, 2, 1);
lua_rawgeti(L, 2, 2);
archive_entry_set_birthtime(self,
lua_tonumber(L, -2),
lua_tonumber(L, -1));
} else {
archive_entry_set_birthtime(self,
lua_tonumber(L, 2),
lua_tonumber(L, 3));
}
}
return num_results;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_size(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
if ( archive_entry_size_is_set(self) ) {
lua_pushnumber(L, archive_entry_size(self));
} else {
lua_pushnil(L);
}
if ( is_set ) {
if ( lua_isnil(L, 2) ) {
archive_entry_unset_size(self);
} else {
archive_entry_set_size(self, lua_tonumber(L, 2));
}
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_sourcepath(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushstring(L, archive_entry_sourcepath(self));
if ( is_set ) {
archive_entry_copy_sourcepath(self, lua_tostring(L, 2));
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_symlink(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushstring(L, archive_entry_symlink(self));
if ( is_set ) {
archive_entry_copy_symlink(self, lua_tostring(L, 2));
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_hardlink(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushstring(L, archive_entry_hardlink(self));
if ( is_set ) {
archive_entry_copy_hardlink(self, lua_tostring(L, 2));
}
return 1;
}
//////////////////////////////////////////////////////////////////////
static int ar_entry_pathname(lua_State *L) {
struct archive_entry* self = *ar_entry_check(L, 1);
int is_set;
if ( NULL == self ) return 0;
is_set = ( lua_gettop(L) == 2 );
lua_pushstring(L, archive_entry_pathname(self));
if ( is_set ) {
archive_entry_copy_pathname(self, lua_tostring(L, 2));
}
return 1;
}
//////////////////////////////////////////////////////////////////////
int ar_entry_init(lua_State *L) {
static luaL_Reg fns[] = {
{ "entry", ar_entry },
{ "_entry_ref_count", ar_ref_count },
{ NULL, NULL }
};
// So far there are no methods on the entry objects.
static luaL_Reg m_fns[] = {
{ "fflags", ar_entry_fflags },
{ "dev", ar_entry_dev },
{ "ino", ar_entry_ino },
{ "mode", ar_entry_mode },
{ "nlink", ar_entry_nlink },
{ "uid", ar_entry_uid },
{ "uname", ar_entry_uname },
{ "gid", ar_entry_gid },
{ "gname", ar_entry_gname },
{ "rdev", ar_entry_rdev },
{ "atime", ar_entry_atime },
{ "mtime", ar_entry_mtime },
{ "ctime", ar_entry_ctime },
{ "birthtime", ar_entry_birthtime },
{ "size", ar_entry_size },
{ "sourcepath", ar_entry_sourcepath },
{ "symlink", ar_entry_symlink },
{ "hardlink", ar_entry_hardlink },
{ "pathname", ar_entry_pathname },
{ "__gc", ar_entry_destroy },
{ NULL, NULL }
};
luaL_checktype(L, LUA_TTABLE, -1); // {class}
luaL_register(L, NULL, fns); // {class}
luaL_newmetatable(L, AR_ENTRY); // {class}, {meta}
lua_pushvalue(L, -1); // {class}, {meta}, {meta}
lua_setfield(L, -2, "__index"); // {class}, {meta}
luaL_register(L, NULL, m_fns); // {1}
lua_pop(L, 1);
return 0;
}