-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcvs.lua
432 lines (391 loc) · 8.63 KB
/
cvs.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
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
local function genNumber(s)
local val = tonumber(s)
if val == nil then
return 0
else
return val
end
end
local function genString(s)
return s
end
local function genTable(s)
return assert(loadstring("return { " .. s .. " }"))()
end
local function genFunction0(s)
return assert(loadstring("return function() return " .. s .. " end"))()
end
local function genFunction1(s)
return assert(loadstring("return function(z) return " .. s .. " end"))()
end
local function genFunction2(s)
return assert(loadstring("return function(a,b) return " .. s .. " end"))()
end
local function genFunction3(s)
return assert(loadstring("return function(a,b,c) return " .. s .. " end"))()
end
local function genBoolean(s)
local val = tonumber(s)
if val == nil or val == 0 then
return false
else
return true
end
end
local function genValue(s)
return assert(loadstring("return " .. s))()
end
local conv_map =
{
n=genNumber,
s=genString,
t=genTable,
v=genValue,
f0=genFunction0,
f1=genFunction1,
f2=genFunction2,
f3=genFunction3,
c=nil, --ignore the column
b=genBoolean,
kn=genNumber,
ks=genString,
}
local function getFieldInfo(field)
local pos = string.find(field, '_')
local isKey = false
local name = nil
local datatype = nil
if pos then
name = string.sub(field, 1, pos - 1)
datatype = string.sub(field, pos + 1)
if string.sub(datatype, -1) == '\n' then
datatype = string.sub(datatype, 1, #datatype - 1)
end
if string.sub(datatype, -1) == '\r' then
datatype = string.sub(datatype, 1, #datatype - 1)
end
if datatype == "kn" or datatype == "ks" then
isKey = true
end
if string.byte(name) == string.byte("$")
or string.byte(name) == string.byte("#") then
name = string.sub(name, 2)
end
return name, conv_map[datatype], isKey
else
name = field
if string.sub(name, -1) == '\n' then
name = string.sub(name, 1, #name - 1)
end
if string.sub(name, -1) == '\r' then
name = string.sub(name, 1, #name - 1)
end
if string.byte(name) == string.byte("$")
or string.byte(name) == string.byte("#") then
name = string.sub(name, 2)
end
return name, conv_map["n"], isKey
end
end
local function getFieldLocation(field)
local location = 2
if string.byte(field) == string.byte("$") then
location = 1
elseif string.byte(field) == string.byte("#") then
location = 3
else
location = 2
end
return location
end
local function fromCSV (s, head)
s = s .. ',' -- ending comma
local t = {} -- table to collect fields
local fieldstart = 1
local index = 1
local val = nil
local name = nil
local conv_func = nil
local key = nil
local key1 = nil
local isKey = false
repeat
-- next field is quoted? (start with `"'?)
if string.find(s, '^"', fieldstart) then
local a, c
local i = fieldstart
repeat
-- find closing quote
a, i, c = string.find(s, '"("?)', i+1)
until c ~= '"' -- quote not followed by quote?
if not i then error('unmatched "') end
local f = string.sub(s, fieldstart+1, i-1)
val = string.gsub(f, '""', '"')
if head then
name, conv_func, isKey = getFieldInfo(head[index])
if conv_func then
if isKey then
if key then
key1 = conv_func(val)
t[name] = key1
else
key = conv_func(val)
t[name] = key
end
else
t[name] = conv_func(val)
end
end
index = index + 1
else
table.insert(t, val)
end
fieldstart = string.find(s, ',', i) + 1
else -- unquoted; find next comma
local nexti = string.find(s, ',', fieldstart)
val = string.sub(s, fieldstart,nexti-1)
if head then
name, conv_func, isKey = getFieldInfo(head[index])
if conv_func then
if isKey then
if key then
key1 = conv_func(val)
t[name] = key1
else
key = conv_func(val)
t[name] = key
end
else
t[name] = conv_func(val)
end
end
index = index + 1
else
table.insert(t, val)
end
fieldstart = nexti + 1
end
until fieldstart > string.len(s)
return t, key, key1
end
function readCSV(file)
print('read the configuration file [' .. file .. ']')
return readCSVEx(file, 2, true)
end
function readCSVEx(file, start_line, table_head)
local fp = assert(io.open (file))
local csv = {}
local count = 0
local first_line = true
local head = nil
local row = nil
local key = nil
local key1 = nil
local data = nil
local lastLine = ""
local quote = false
local function checkCompleteLine(line)
for i = 1, #line do
if string.byte(line, i) == string.byte('"') then
quote = not quote
end
end
if quote then
lastLine = lastLine .. line .. "\n"
return false, nil
else
local completeLine = lastLine .. line
lastLine = ""
return true, completeLine
end
end
local complete
local line
for l in fp:lines() do
complete, line = checkCompleteLine(l)
if complete then
count = count + 1
if count >= start_line then
if table_head then
if first_line then
head = fromCSV(line)
else
data, key, key1 = fromCSV(line, head)
if key then
if key1 then
if not csv[key] then
csv[key] = {}
end
csv[key][key1] = data
else
csv[key] = data
end
else
csv[#csv+1] = data
end
end
else
csv[#csv+1] = fromCSV(line)
end
first_line = false
end
end
end
return csv
end
local function splitLine(s, head)
s = s .. ',' -- ending comma
local sl
local cl
local fieldstart = 1
local index = 1
local val = nil
repeat
-- next field is quoted? (start with `"'?)
if string.find(s, '^"', fieldstart) then
local a, c
local i = fieldstart
repeat
-- find closing quote
a, i, c = string.find(s, '"("?)', i+1)
until c ~= '"' -- quote not followed by quote?
if not i then error('unmatched "') end
local f = string.sub(s, fieldstart+1, i-1)
val = string.gsub(f, '""', '"')
local location = getFieldLocation(head[index])
if location == 1 then
if cl then
cl = cl .. ',"' .. f .. '"'
else
cl = '"' .. f .. '"'
end
elseif location == 2 then
if sl then
sl = sl .. ',"' .. f .. '"'
else
sl = '"' .. f .. '"'
end
elseif location == 3 then
if cl then
cl = cl .. ',"' .. f .. '"'
else
cl = '"' .. f .. '"'
end
if sl then
sl = sl .. ',"' .. f .. '"'
else
sl = '"' .. f .. '"'
end
end
index = index + 1
fieldstart = string.find(s, ',', i) + 1
else -- unquoted; find next comma
local nexti = string.find(s, ',', fieldstart)
val = string.sub(s, fieldstart,nexti-1)
local location = getFieldLocation(head[index])
if location == 1 then
if cl then
cl = cl .. "," .. val
else
cl = val
end
elseif location == 2 then
if sl then
sl = sl .. "," .. val
else
sl = val
end
elseif location == 3 then
if cl then
cl = cl .. "," .. val
else
cl = val
end
if sl then
sl = sl .. "," .. val
else
sl = val
end
end
index = index + 1
fieldstart = nexti + 1
end
until fieldstart > string.len(s)
return cl, sl
end
function splitCSV(file, serverfile, clientfile)
return splitCSVEx(file, 2, true, serverfile, clientfile)
end
function splitCSVEx(file, start_line, table_head, serverfile, clientfile)
local fp = assert(io.open (file))
local sfp = assert(io.open (serverfile, "w+"))
local cfp = assert(io.open (clientfile, "w+"))
local sf_is_empty = true
local cf_is_empty = true
local count = 0
local first_line = true
local head = nil
local row = nil
local key = nil
local key1 = nil
local data = nil
local lastLine = ""
local quote = false
local function checkCompleteLine(line)
for i = 1, #line do
if string.byte(line, i) == string.byte('"') then
quote = not quote
end
end
if quote then
lastLine = lastLine .. line .. "\n"
return false, nil
else
local completeLine = lastLine .. line
lastLine = ""
return true, completeLine
end
end
local complete
local line
for l in fp:lines() do
complete, line = checkCompleteLine(l)
if complete then
count = count + 1
if count >= start_line then
if table_head then
if first_line then
head = fromCSV(line)
end
local cl
local sl
cl, sl = splitLine(line, head)
if cl then
cfp:write(cl .. "\n")
if first_line then
cfp:write(cl .. "\n")
end
cf_is_empty = false
end
if sl then
sfp:write(sl .. "\n")
if first_line then
sfp:write(sl .. "\n")
end
sf_is_empty = false
end
end
first_line = false
end
end
end
fp:close()
cfp:close()
sfp:close()
if cf_is_empty then
os.remove(clientfile)
end
if sf_is_empty then
os.remove(serverfile)
end
end