This repository was archived by the owner on Jan 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlua-file.c
140 lines (118 loc) · 3.13 KB
/
lua-file.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
#include "tinydir.h"
#include "lua-file.h"
#include <lua.h>
#include <lauxlib.h>
#include <skalibs/skalibs.h>
#include <skalibs/stralloc.h>
#include <skalibs/djbunix.h>
#include <string.h>
#ifdef __cplusplus
extern "C" {
#endif
#if !defined(luaL_newlibtable) \
&& (!defined LUA_VERSION_NUM || LUA_VERSION_NUM==501)
static void luaL_setfuncs (lua_State *L, const luaL_Reg *l, int nup) {
luaL_checkstack(L, nup+1, "too many upvalues");
for (; l->name != NULL; l++) { /* fill the table with given functions */
int i;
lua_pushlstring(L, l->name,strlen(l->name));
for (i = 0; i < nup; i++) /* copy upvalues to the top */
lua_pushvalue(L, -(nup+1));
lua_pushcclosure(L, l->func, nup); /* closure with those upvalues */
lua_settable(L, -(nup + 3));
}
lua_pop(L, nup); /* remove upvalues */
}
#endif
static int
lua_file_exists(lua_State *L) {
const char *filename = luaL_checkstring(L,1);
if(access(filename,F_OK) != -1) {
lua_pushboolean(L,1);
return 1;
}
return 0;
}
static int
lua_file_realpath(lua_State *L) {
stralloc sa = STRALLOC_ZERO;
const char *path = luaL_checkstring(L,1);
sarealpath(&sa,path);
lua_pushlstring(L,sa.s,sa.len);
stralloc_free(&sa);
return 1;
}
static int
lua_file_basename(lua_State *L) {
stralloc sa = STRALLOC_ZERO;
const char *folder = luaL_checkstring(L,1);
sabasename(&sa,folder,strlen(folder));
lua_pushlstring(L,sa.s,sa.len);
stralloc_free(&sa);
return 1;
}
static int
lua_file_dirname(lua_State *L) {
stralloc sa = STRALLOC_ZERO;
const char *folder = luaL_checkstring(L,1);
sadirname(&sa,folder,strlen(folder));
lua_pushlstring(L,sa.s,sa.len);
stralloc_free(&sa);
return 1;
}
static int
lua_file_getcwd(lua_State *L) {
stralloc sa = STRALLOC_ZERO;
sagetcwd(&sa);
lua_pushlstring(L,sa.s,sa.len);
stralloc_free(&sa);
return 1;
}
static int
lua_file_list(lua_State *L) {
const char *folder = luaL_checkstring(L,1);
tinydir_dir dir;
unsigned long int i;
int j = 1;
if(tinydir_open_sorted(&dir,folder) == -1) {
return 0;
}
lua_newtable(L);
for(i=0;i<dir.n_files;i++) {
tinydir_file file;
struct stat st;
tinydir_readfile_n(&dir,&file,i);
if(file.is_dir) {
continue;
}
stat(file.path,&st);
lua_pushinteger(L,j);
lua_newtable(L);
lua_pushlstring(L,file.path,strlen(file.path));
lua_setfield(L,-2,"file");
lua_pushinteger(L,st.st_mtime);
lua_setfield(L,-2,"mtime");
lua_settable(L,-3);
j++;
}
tinydir_close(&dir);
return 1;
}
static const struct luaL_Reg lua_file_methods[] = {
{ "ls" , lua_file_list },
{ "exists" , lua_file_exists },
{ "dirname" , lua_file_dirname },
{ "basename" , lua_file_basename },
{ "realpath" , lua_file_realpath },
{ "getcwd" , lua_file_getcwd },
{ NULL , NULL },
};
int luaopen_file(lua_State *L) {
lua_newtable(L);
luaL_setfuncs(L,lua_file_methods,0);
lua_setglobal(L,"file");
return 0;
}
#ifdef __cplusplus
}
#endif