Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
ltablib.c File Reference
#include "lprefix.h"
#include <limits.h>
#include <stddef.h>
#include <string.h>
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
#include <time.h>

Go to the source code of this file.

Macros

#define ltablib_c
 
#define LUA_LIB
 
#define TAB_R   1 /* read */
 
#define TAB_W   2 /* write */
 
#define TAB_L   4 /* length */
 
#define TAB_RW   (TAB_R | TAB_W) /* read/write */
 
#define aux_getn(L, n, w)   (checktab(L, n, (w) | TAB_L), luaL_len(L, n))
 
#define sof(e)   (sizeof(e) / sizeof(unsigned int))
 
#define RANLIMIT   100u
 

Typedefs

typedef unsigned int IdxT
 

Functions

static int checkfield (lua_State *L, const char *key, int n)
 
static void checktab (lua_State *L, int arg, int what)
 
static int tinsert (lua_State *L)
 
static int tremove (lua_State *L)
 
static int tmove (lua_State *L)
 
static void addfield (lua_State *L, luaL_Buffer *b, lua_Integer i)
 
static int tconcat (lua_State *L)
 
static int tpack (lua_State *L)
 
static int tunpack (lua_State *L)
 
static unsigned int l_randomizePivot (void)
 
static void set2 (lua_State *L, IdxT i, IdxT j)
 
static int sort_comp (lua_State *L, int a, int b)
 
static IdxT partition (lua_State *L, IdxT lo, IdxT up)
 
static IdxT choosePivot (IdxT lo, IdxT up, unsigned int rnd)
 
static void auxsort (lua_State *L, IdxT lo, IdxT up, unsigned int rnd)
 
static int sort (lua_State *L)
 
LUAMOD_API int luaopen_table (lua_State *L)
 

Variables

static const luaL_Reg tab_funcs []
 

Macro Definition Documentation

◆ aux_getn

#define aux_getn ( L,
n,
w )   (checktab(L, n, (w) | TAB_L), luaL_len(L, n))

Definition at line 33 of file lua-5.4.3/src/ltablib.c.

Referenced by sort(), tconcat(), tinsert(), and tremove().

◆ ltablib_c

#define ltablib_c

Definition at line 7 of file lua-5.4.3/src/ltablib.c.

◆ LUA_LIB

#define LUA_LIB

Definition at line 8 of file lua-5.4.3/src/ltablib.c.

◆ RANLIMIT

#define RANLIMIT   100u

Definition at line 261 of file lua-5.4.3/src/ltablib.c.

Referenced by auxsort().

◆ sof

#define sof ( e)    (sizeof(e) / sizeof(unsigned int))

Definition at line 237 of file lua-5.4.3/src/ltablib.c.

Referenced by l_randomizePivot().

◆ TAB_L

#define TAB_L   4 /* length */

Definition at line 29 of file lua-5.4.3/src/ltablib.c.

Referenced by checktab().

◆ TAB_R

#define TAB_R   1 /* read */

Definition at line 27 of file lua-5.4.3/src/ltablib.c.

Referenced by checktab(), tconcat(), and tmove().

◆ TAB_RW

#define TAB_RW   (TAB_R | TAB_W) /* read/write */

Definition at line 30 of file lua-5.4.3/src/ltablib.c.

Referenced by sort(), tinsert(), and tremove().

◆ TAB_W

#define TAB_W   2 /* write */

Definition at line 28 of file lua-5.4.3/src/ltablib.c.

Referenced by checktab(), and tmove().

Typedef Documentation

◆ IdxT

typedef unsigned int IdxT

Definition at line 223 of file lua-5.4.3/src/ltablib.c.

Function Documentation

◆ addfield()

static void addfield ( lua_State * L,
luaL_Buffer * b,
lua_Integer i )
static

Definition at line 146 of file lua-5.4.3/src/ltablib.c.

146 {
147 lua_geti(L, 1, i);
148 if (l_unlikely(!lua_isstring(L, -1)))
149 luaL_error(L, "invalid value (%s) at index %I in table for 'concat'",
150 luaL_typename(L, -1), i);
151 luaL_addvalue(b);
152}
LUA_API int lua_isstring(lua_State *L, int idx)
LUALIB_API void luaL_addvalue(luaL_Buffer *B)
LUALIB_API int luaL_error(lua_State *L, const char *fmt,...)
#define luaL_typename(L, i)
LUA_API int lua_geti(lua_State *L, int idx, lua_Integer n)

References lua_geti(), lua_isstring(), luaL_addvalue(), luaL_error(), and luaL_typename.

Referenced by tconcat().

◆ auxsort()

static void auxsort ( lua_State * L,
IdxT lo,
IdxT up,
unsigned int rnd )
static

Definition at line 344 of file lua-5.4.3/src/ltablib.c.

345 {
346 while (lo < up) { /* loop for tail recursion */
347 IdxT p; /* Pivot index */
348 IdxT n; /* to be used later */
349 /* sort elements 'lo', 'p', and 'up' */
350 lua_geti(L, 1, lo);
351 lua_geti(L, 1, up);
352 if (sort_comp(L, -1, -2)) /* a[up] < a[lo]? */
353 set2(L, lo, up); /* swap a[lo] - a[up] */
354 else
355 lua_pop(L, 2); /* remove both values */
356 if (up - lo == 1) /* only 2 elements? */
357 return; /* already sorted */
358 if (up - lo < RANLIMIT || rnd == 0) /* small interval or no randomize? */
359 p = (lo + up)/2; /* middle element is a good pivot */
360 else /* for larger intervals, it is worth a random pivot */
361 p = choosePivot(lo, up, rnd);
362 lua_geti(L, 1, p);
363 lua_geti(L, 1, lo);
364 if (sort_comp(L, -2, -1)) /* a[p] < a[lo]? */
365 set2(L, p, lo); /* swap a[p] - a[lo] */
366 else {
367 lua_pop(L, 1); /* remove a[lo] */
368 lua_geti(L, 1, up);
369 if (sort_comp(L, -1, -2)) /* a[up] < a[p]? */
370 set2(L, p, up); /* swap a[up] - a[p] */
371 else
372 lua_pop(L, 2);
373 }
374 if (up - lo == 2) /* only 3 elements? */
375 return; /* already sorted */
376 lua_geti(L, 1, p); /* get middle element (Pivot) */
377 lua_pushvalue(L, -1); /* push Pivot */
378 lua_geti(L, 1, up - 1); /* push a[up - 1] */
379 set2(L, p, up - 1); /* swap Pivot (a[p]) with a[up - 1] */
380 p = partition(L, lo, up);
381 /* a[lo .. p - 1] <= a[p] == P <= a[p + 1 .. up] */
382 if (p - lo < up - p) { /* lower interval is smaller? */
383 auxsort(L, lo, p - 1, rnd); /* call recursively for lower interval */
384 n = p - lo; /* size of smaller interval */
385 lo = p + 1; /* tail call for [p + 1 .. up] (upper interval) */
386 }
387 else {
388 auxsort(L, p + 1, up, rnd); /* call recursively for upper interval */
389 n = up - p; /* size of smaller interval */
390 up = p - 1; /* tail call for [lo .. p - 1] (lower interval) */
391 }
392 if ((up - lo) / 128 > n) /* partition too imbalanced? */
393 rnd = l_randomizePivot(); /* try a new randomization */
394 } /* tail call auxsort(L, lo, up, rnd) */
395}
LUA_API void lua_pushvalue(lua_State *L, int idx)
#define lua_pop(L, n)
unsigned int IdxT
static void auxsort(lua_State *L, IdxT lo, IdxT up, unsigned int rnd)
static IdxT partition(lua_State *L, IdxT lo, IdxT up)
static void set2(lua_State *L, IdxT i, IdxT j)
static unsigned int l_randomizePivot(void)
static IdxT choosePivot(IdxT lo, IdxT up, unsigned int rnd)
static int sort_comp(lua_State *L, int a, int b)
#define RANLIMIT

References auxsort(), choosePivot(), l_randomizePivot(), lua_geti(), lua_pop, lua_pushvalue(), partition(), RANLIMIT, set2(), and sort_comp().

Referenced by auxsort(), and sort().

◆ checkfield()

static int checkfield ( lua_State * L,
const char * key,
int n )
static

Definition at line 36 of file lua-5.4.3/src/ltablib.c.

36 {
37 lua_pushstring(L, key);
38 return (lua_rawget(L, -n) != LUA_TNIL);
39}
LUA_API void lua_pushstring(lua_State *L, const char *s)
LUA_API void lua_rawget(lua_State *L, int idx)
#define LUA_TNIL

References lua_pushstring(), lua_rawget(), and LUA_TNIL.

Referenced by checktab().

◆ checktab()

static void checktab ( lua_State * L,
int arg,
int what )
static

Definition at line 46 of file lua-5.4.3/src/ltablib.c.

46 {
47 if (lua_type(L, arg) != LUA_TTABLE) { /* is it not a table? */
48 int n = 1; /* number of elements to pop */
49 if (lua_getmetatable(L, arg) && /* must have metatable */
50 (!(what & TAB_R) || checkfield(L, "__index", ++n)) &&
51 (!(what & TAB_W) || checkfield(L, "__newindex", ++n)) &&
52 (!(what & TAB_L) || checkfield(L, "__len", ++n))) {
53 lua_pop(L, n); /* pop metatable and tested metamethods */
54 }
55 else
56 luaL_checktype(L, arg, LUA_TTABLE); /* force an error */
57 }
58}
CURL_EXTERN int void * arg
Definition curl.h:2622
LUA_API int lua_getmetatable(lua_State *L, int objindex)
LUA_API int lua_type(lua_State *L, int idx)
LUALIB_API void luaL_checktype(lua_State *L, int narg, int t)
#define LUA_TTABLE
#define TAB_L
static int checkfield(lua_State *L, const char *key, int n)
#define TAB_R
#define TAB_W

References arg, checkfield(), lua_getmetatable(), lua_pop, LUA_TTABLE, lua_type(), luaL_checktype(), TAB_L, TAB_R, and TAB_W.

Referenced by tmove().

◆ choosePivot()

static IdxT choosePivot ( IdxT lo,
IdxT up,
unsigned int rnd )
static

Definition at line 333 of file lua-5.4.3/src/ltablib.c.

333 {
334 IdxT r4 = (up - lo) / 4; /* range/4 */
335 IdxT p = rnd % (r4 * 2) + (lo + r4);
336 lua_assert(lo + r4 <= p && p <= up - r4);
337 return p;
338}
#define lua_assert(c)

References lua_assert.

Referenced by auxsort().

◆ l_randomizePivot()

static unsigned int l_randomizePivot ( void )
static

Definition at line 245 of file lua-5.4.3/src/ltablib.c.

245 {
246 clock_t c = clock();
247 time_t t = time(NULL);
248 unsigned int buff[sof(c) + sof(t)];
249 unsigned int i, rnd = 0;
250 memcpy(buff, &c, sof(c) * sizeof(unsigned int));
251 memcpy(buff + sof(c), &t, sof(t) * sizeof(unsigned int));
252 for (i = 0; i < sof(buff); i++)
253 rnd += buff[i];
254 return rnd;
255}
#define NULL
Definition gmacros.h:924
#define sof(e)

References NULL, and sof.

Referenced by auxsort().

◆ luaopen_table()

LUAMOD_API int luaopen_table ( lua_State * L)

Definition at line 425 of file lua-5.4.3/src/ltablib.c.

425 {
427 return 1;
428}
#define luaL_newlib(L, l)
static const luaL_Reg tab_funcs[]

References luaL_newlib, and tab_funcs.

◆ partition()

static IdxT partition ( lua_State * L,
IdxT lo,
IdxT up )
static

Definition at line 297 of file lua-5.4.3/src/ltablib.c.

297 {
298 IdxT i = lo; /* will be incremented before first use */
299 IdxT j = up - 1; /* will be decremented before first use */
300 /* loop invariant: a[lo .. i] <= P <= a[j .. up] */
301 for (;;) {
302 /* next loop: repeat ++i while a[i] < P */
303 while ((void)lua_geti(L, 1, ++i), sort_comp(L, -1, -2)) {
304 if (l_unlikely(i == up - 1)) /* a[i] < P but a[up - 1] == P ?? */
305 luaL_error(L, "invalid order function for sorting");
306 lua_pop(L, 1); /* remove a[i] */
307 }
308 /* after the loop, a[i] >= P and a[lo .. i - 1] < P */
309 /* next loop: repeat --j while P < a[j] */
310 while ((void)lua_geti(L, 1, --j), sort_comp(L, -3, -1)) {
311 if (l_unlikely(j < i)) /* j < i but a[j] > P ?? */
312 luaL_error(L, "invalid order function for sorting");
313 lua_pop(L, 1); /* remove a[j] */
314 }
315 /* after the loop, a[j] <= P and a[j + 1 .. up] >= P */
316 if (j < i) { /* no elements out of place? */
317 /* a[lo .. i - 1] <= P <= a[j + 1 .. i .. up] */
318 lua_pop(L, 1); /* pop a[j] */
319 /* swap pivot (a[up - 1]) with a[i] to satisfy pos-condition */
320 set2(L, up - 1, i);
321 return i;
322 }
323 /* otherwise, swap a[i] - a[j] to restore invariant and repeat */
324 set2(L, i, j);
325 }
326}

References lua_geti(), lua_pop, luaL_error(), set2(), and sort_comp().

Referenced by auxsort().

◆ set2()

static void set2 ( lua_State * L,
IdxT i,
IdxT j )
static

Definition at line 264 of file lua-5.4.3/src/ltablib.c.

264 {
265 lua_seti(L, 1, i);
266 lua_seti(L, 1, j);
267}
LUA_API void lua_seti(lua_State *L, int idx, lua_Integer n)

References lua_seti().

Referenced by auxsort(), and partition().

◆ sort()

static int sort ( lua_State * L)
static

Definition at line 398 of file lua-5.4.3/src/ltablib.c.

398 {
399 lua_Integer n = aux_getn(L, 1, TAB_RW);
400 if (n > 1) { /* non-trivial interval? */
401 luaL_argcheck(L, n < INT_MAX, 1, "array too big");
402 if (!lua_isnoneornil(L, 2)) /* is there a 2nd argument? */
403 luaL_checktype(L, 2, LUA_TFUNCTION); /* must be a function */
404 lua_settop(L, 2); /* make sure there are two arguments */
405 auxsort(L, 1, (IdxT)n, 0);
406 }
407 return 0;
408}
LUA_API void lua_settop(lua_State *L, int idx)
#define luaL_argcheck(L, cond, numarg, extramsg)
LUA_INTEGER lua_Integer
#define LUA_TFUNCTION
#define lua_isnoneornil(L, n)
#define aux_getn(L, n, w)
#define TAB_RW

References aux_getn, auxsort(), lua_isnoneornil, lua_settop(), LUA_TFUNCTION, luaL_argcheck, luaL_checktype(), and TAB_RW.

◆ sort_comp()

static int sort_comp ( lua_State * L,
int a,
int b )
static

Definition at line 274 of file lua-5.4.3/src/ltablib.c.

274 {
275 if (lua_isnil(L, 2)) /* no function? */
276 return lua_compare(L, a, b, LUA_OPLT); /* a < b */
277 else { /* function */
278 int res;
279 lua_pushvalue(L, 2); /* push function */
280 lua_pushvalue(L, a-1); /* -1 to compensate function */
281 lua_pushvalue(L, b-2); /* -2 to compensate function and 'a' */
282 lua_call(L, 2, 1); /* call function */
283 res = lua_toboolean(L, -1); /* get result */
284 lua_pop(L, 1); /* pop result */
285 return res;
286 }
287}
LUA_API int lua_toboolean(lua_State *L, int idx)
#define lua_isnil(L, n)
LUA_API int lua_compare(lua_State *L, int index1, int index2, int op)
#define LUA_OPLT
#define lua_call(L, n, r)

References lua_call, lua_compare(), lua_isnil, LUA_OPLT, lua_pop, lua_pushvalue(), and lua_toboolean().

Referenced by auxsort(), and partition().

◆ tconcat()

static int tconcat ( lua_State * L)
static

Definition at line 155 of file lua-5.4.3/src/ltablib.c.

155 {
156 luaL_Buffer b;
157 lua_Integer last = aux_getn(L, 1, TAB_R);
158 size_t lsep;
159 const char *sep = luaL_optlstring(L, 2, "", &lsep);
160 lua_Integer i = luaL_optinteger(L, 3, 1);
161 last = luaL_optinteger(L, 4, last);
162 luaL_buffinit(L, &b);
163 for (; i < last; i++) {
164 addfield(L, &b, i);
165 luaL_addlstring(&b, sep, lsep);
166 }
167 if (i == last) /* add last value (if interval was not empty) */
168 addfield(L, &b, i);
169 luaL_pushresult(&b);
170 return 1;
171}
LUALIB_API void luaL_buffinit(lua_State *L, luaL_Buffer *B)
LUALIB_API void luaL_addlstring(luaL_Buffer *B, const char *s, size_t l)
LUALIB_API void luaL_pushresult(luaL_Buffer *B)
LUALIB_API lua_Integer luaL_optinteger(lua_State *L, int narg, lua_Integer def)
LUALIB_API const char * luaL_optlstring(lua_State *L, int narg, const char *def, size_t *len)
static void addfield(lua_State *L, luaL_Buffer *b, lua_Integer i)

References addfield(), aux_getn, luaL_addlstring(), luaL_buffinit(), luaL_optinteger(), luaL_optlstring(), luaL_pushresult(), and TAB_R.

◆ tinsert()

static int tinsert ( lua_State * L)
static

Definition at line 61 of file lua-5.4.3/src/ltablib.c.

61 {
62 lua_Integer e = aux_getn(L, 1, TAB_RW) + 1; /* first empty element */
63 lua_Integer pos; /* where to insert new element */
64 switch (lua_gettop(L)) {
65 case 2: { /* called with only 2 arguments */
66 pos = e; /* insert new element at the end */
67 break;
68 }
69 case 3: {
71 pos = luaL_checkinteger(L, 2); /* 2nd argument is the position */
72 /* check whether 'pos' is in [1, e] */
73 luaL_argcheck(L, (lua_Unsigned)pos - 1u < (lua_Unsigned)e, 2,
74 "position out of bounds");
75 for (i = e; i > pos; i--) { /* move up elements */
76 lua_geti(L, 1, i - 1);
77 lua_seti(L, 1, i); /* t[i] = t[i - 1] */
78 }
79 break;
80 }
81 default: {
82 return luaL_error(L, "wrong number of arguments to 'insert'");
83 }
84 }
85 lua_seti(L, 1, pos); /* t[pos] = v */
86 return 0;
87}
LUA_API int lua_gettop(lua_State *L)
LUALIB_API lua_Integer luaL_checkinteger(lua_State *L, int narg)
LUA_UNSIGNED lua_Unsigned

References aux_getn, lua_geti(), lua_gettop(), lua_seti(), luaL_argcheck, luaL_checkinteger(), luaL_error(), and TAB_RW.

◆ tmove()

static int tmove ( lua_State * L)
static

Definition at line 114 of file lua-5.4.3/src/ltablib.c.

114 {
118 int tt = !lua_isnoneornil(L, 5) ? 5 : 1; /* destination table */
119 checktab(L, 1, TAB_R);
120 checktab(L, tt, TAB_W);
121 if (e >= f) { /* otherwise, nothing to move */
122 lua_Integer n, i;
123 luaL_argcheck(L, f > 0 || e < LUA_MAXINTEGER + f, 3,
124 "too many elements to move");
125 n = e - f + 1; /* number of elements to move */
126 luaL_argcheck(L, t <= LUA_MAXINTEGER - n + 1, 4,
127 "destination wrap around");
128 if (t > e || t <= f || (tt != 1 && !lua_compare(L, 1, tt, LUA_OPEQ))) {
129 for (i = 0; i < n; i++) {
130 lua_geti(L, 1, f + i);
131 lua_seti(L, tt, t + i);
132 }
133 }
134 else {
135 for (i = n - 1; i >= 0; i--) {
136 lua_geti(L, 1, f + i);
137 lua_seti(L, tt, t + i);
138 }
139 }
140 }
141 lua_pushvalue(L, tt); /* return destination table */
142 return 1;
143}
#define LUA_OPEQ
static void checktab(lua_State *L, int arg, int what)

References checktab(), lua_compare(), lua_geti(), lua_isnoneornil, LUA_OPEQ, lua_pushvalue(), lua_seti(), luaL_argcheck, luaL_checkinteger(), TAB_R, and TAB_W.

◆ tpack()

static int tpack ( lua_State * L)
static

Definition at line 180 of file lua-5.4.3/src/ltablib.c.

180 {
181 int i;
182 int n = lua_gettop(L); /* number of elements to pack */
183 lua_createtable(L, n, 1); /* create result table */
184 lua_insert(L, 1); /* put it at index 1 */
185 for (i = n; i >= 1; i--) /* assign elements */
186 lua_seti(L, 1, i);
187 lua_pushinteger(L, n);
188 lua_setfield(L, 1, "n"); /* t.n = number of elements */
189 return 1; /* return table */
190}
LUA_API void lua_setfield(lua_State *L, int idx, const char *k)
LUA_API void lua_createtable(lua_State *L, int narray, int nrec)
LUA_API void lua_pushinteger(lua_State *L, lua_Integer n)
#define lua_insert(L, idx)

References lua_createtable(), lua_gettop(), lua_insert, lua_pushinteger(), lua_setfield(), and lua_seti().

◆ tremove()

static int tremove ( lua_State * L)
static

Definition at line 90 of file lua-5.4.3/src/ltablib.c.

90 {
91 lua_Integer size = aux_getn(L, 1, TAB_RW);
92 lua_Integer pos = luaL_optinteger(L, 2, size);
93 if (pos != size) /* validate 'pos' if given */
94 /* check whether 'pos' is in [1, size + 1] */
95 luaL_argcheck(L, (lua_Unsigned)pos - 1u <= (lua_Unsigned)size, 1,
96 "position out of bounds");
97 lua_geti(L, 1, pos); /* result = t[pos] */
98 for ( ; pos < size; pos++) {
99 lua_geti(L, 1, pos + 1);
100 lua_seti(L, 1, pos); /* t[pos] = t[pos + 1] */
101 }
102 lua_pushnil(L);
103 lua_seti(L, 1, pos); /* remove entry t[pos] */
104 return 1;
105}
LUA_API void lua_pushnil(lua_State *L)

References aux_getn, lua_geti(), lua_pushnil(), lua_seti(), luaL_argcheck, luaL_optinteger(), and TAB_RW.

◆ tunpack()

static int tunpack ( lua_State * L)
static

Definition at line 193 of file lua-5.4.3/src/ltablib.c.

193 {
194 lua_Unsigned n;
195 lua_Integer i = luaL_optinteger(L, 2, 1);
197 if (i > e) return 0; /* empty range */
198 n = (lua_Unsigned)e - i; /* number of elements minus 1 (avoid overflows) */
199 if (l_unlikely(n >= (unsigned int)INT_MAX ||
200 !lua_checkstack(L, (int)(++n))))
201 return luaL_error(L, "too many results to unpack");
202 for (; i < e; i++) { /* push arg[i..e - 1] (to avoid overflows) */
203 lua_geti(L, 1, i);
204 }
205 lua_geti(L, 1, e); /* push last element */
206 return (int)n;
207}
LUA_API int lua_checkstack(lua_State *L, int size)
#define luaL_opt(L, f, n, d)
LUALIB_API int luaL_len(lua_State *L, int idx)

References lua_checkstack(), lua_geti(), luaL_checkinteger(), luaL_error(), luaL_len(), luaL_opt, and luaL_optinteger().

Variable Documentation

◆ tab_funcs

const luaL_Reg tab_funcs[]
static
Initial value:
= {
{"concat", tconcat},
{"insert", tinsert},
{"pack", tpack},
{"unpack", tunpack},
{"remove", tremove},
{"move", tmove},
{"sort", sort},
}
static int tinsert(lua_State *L)
static int tmove(lua_State *L)
static int tpack(lua_State *L)
static int tremove(lua_State *L)
static int tconcat(lua_State *L)
static int tunpack(lua_State *L)
static int sort(lua_State *L)

Definition at line 413 of file lua-5.4.3/src/ltablib.c.

413 {
414 {"concat", tconcat},
415 {"insert", tinsert},
416 {"pack", tpack},
417 {"unpack", tunpack},
418 {"remove", tremove},
419 {"move", tmove},
420 {"sort", sort},
421 {NULL, NULL}
422};

Referenced by luaopen_table().