-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtableExt.lua
321 lines (278 loc) · 5.94 KB
/
tableExt.lua
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
function table.each(t, func)
for k, v in pairs(t) do
if func(v, k) == true then
return true
end
end
return false
end
function table.indexEach(t, func)
for index = 1, #t do
if func(t[index], index) == true then
return true
end
end
return false
end
function table.reverseIndexEach(t, func)
for index = #t, 1, -1 do
if func(t[index], index) == true then
return true
end
end
return false
end
function table.filter(t, func)
local ret = {}
for k, v in pairs(t) do
if func(v) == true then
table.insert(ret, v)
end
end
return ret
end
function table.map(func, ...)
local paras = {...}
local tables = paras
local ret = {}
for k, v in pairs(tables[1]) do
local values = {}
for _, t in ipairs(tables) do
values[#values + 1] = t[k]
end
ret[k] = func(table.unpack(values))
end
return ret
end
function table.sum(t)
return table.reduce(t, function(a, b)
return a + b
end)
end
function table.reduce(t, func)
local ret = t[1]
local index = 2
while index <= #t do
ret = func(ret, t[index])
index = index + 1
end
return ret
end
function table.clone(t, meta)
local u = {}
if nometa then
setmetatable(u, getmetatable(t))
end
for i, v in pairs(t) do
if type(v) == "table" then
u[i] = table.clone(v)
else
u[i] = v
end
end
return u
end
function table.simpleClone(t)
return table.map(t, function(v) return v end)
end
function table.indexOf(t, v)
for i, v_ in ipairs(t) do
if v_ == v then return i end
end
return nil
end
function table.keyOf(t, v)
for k, v_ in pairs(t) do
if v_ == v then return k end
end
return nil
end
function table.removeValue(t, value)
local index = table.indexOf(t, value)
if index then
table.remove(t, index)
return
end
local key = table.keyOf(t, value)
if key then
t[key] = nil
end
end
function table.unique(t)
local seen = {}
for i, v in ipairs(t) do
if not table.includes(seen, v) then table.insert(seen, v) end
end
return seen
end
function table.union(t0, t1)
local t = {}
for i, v in ipairs(t0) do table.insert(t, v) end
for i, v in ipairs(t1) do table.insert(t, v) end
return t
end
function table.merge(t0, t1)
local t = {}
for k, v in pairs(t0) do t[k] = v end
for k, v in pairs(t1) do t[k] = v end
return t
end
function table.removeAll(t)
for k, v in pairs(t) do
t[k] = nil
end
end
function table.keys(t)
local keys = {}
for k, v in pairs(t) do
table.insert(keys, k)
end
return keys
end
function table.values(t)
local values = {}
for k, v in pairs(t) do
table.insert(values, v)
end
return values
end
function table.last(t)
return t[#t]
end
function table.append(t, moreValues)
for i, v in ipairs(moreValues) do
table.insert(t, v)
end
return t
end
function table.find(t, func)
for k, v in pairs(t) do
if func(v) then
return v, k
end
end
return nil
end
function table.groupBy(t, func)
local grouped = {}
for k, v in pairs(t) do
local groupKey = func(v)
if not grouped[groupKey] then
grouped[groupKey] = {}
end
table.insert(grouped[groupKey], v)
end
return grouped
end
function table.tostring(tbl, indent, limit, depth, jstack)
limit = limit or 1000
depth = depth or 7
jstack = jstack or {name="top"}
local i = 0
local output = {}
if type(tbl) == "table" then
-- very important to avoid disgracing ourselves with circular referencs...
for i,t in pairs(jstack) do
if tbl == t then
return "<" .. i .. ">,\n"
end
end
jstack[jstack.name] = tbl
table.insert(output, "{\n")
local name = jstack.name
for key, value in pairs(tbl) do
local innerIndent = (indent or " ") .. (indent or " ")
table.insert(output, innerIndent .. tostring(key) .. " = ")
jstack.name = name .. "." .. tostring(key)
table.insert(output,
value == tbl and "<parent>," or table.tostring(value, innerIndent, limit, depth, jstack)
)
i = i + 1
if i > limit then
table.insert(output, (innerIndent or "") .. "...\n")
break
end
end
table.insert(output, indent and (indent or "") .. "},\n" or "}")
else
if type(tbl) == "string" then tbl = string.format("%q", tbl) end -- quote strings
table.insert(output, tostring(tbl) .. ",\n")
end
return table.concat(output)
end
function table.insertIfNotExist(t, v)
if t then
if not table.indexOf(t, v) then table.insert(t, v) end
else
t = {v}
end
return t
end
function table.removeIfExist(t, v)
if t then
local i = table.indexOf(t, v)
if i then return table.remove(t, i) end
for k, v_ in pairs(t) do
if v_ == v then t[k] = nil; return v_; end
end
end
return nil
end
function table.size(t)
local s = 0
for k,v in pairs(t) do
if v ~= nil then
s = s+1
end
end
return s;
end
function table.exist(t,v)
for k,v_ in pairs(t) do
if v_ == v then
return true
end
end
return false
end
function table.serialize(t)
return json.encode(t)
end
function table.deserialize(str)
return json.decode(str)
end
function table.const(t)
local const = {}
local metadata = {
__o = t,
__index = function(a, k)
local v = t[k]
if nil == v then
error("fail to retrieve undefined key '" .. k .. "' from a constants table.", 2)
end
return v
end,
__newindex = function(a, k, b)
error("fail to modify a constants table with key of '" .. k .. "'", 2)
end
}
setmetatable(const, metadata)
return const
end
function If(condition, trueRet, falseRet)
if condition == true then
return trueRet
elseif condition == false then
return falseRet
end
end
function ifNil(value, defaultValue)
return If(value == nil, defaultValue, value)
end
function checkValue(value, typeName, defaultValue)
if type(value) == typeName then
return value
else
return defaultValue
end
end