-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathExcel2Json.js
986 lines (829 loc) · 28.3 KB
/
Excel2Json.js
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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
/*****
Excel2JSON, Excel - JSON Builder v1.0
You may use/distribute freely under the A-CUP-OF-BEER license.
*English*
Copyright (c) 2013, Hojin Choi <[email protected]>
All rights reserved.
Redistribution and use in source and binary forms, with or
without modification, are permitted provided that
the following conditions are met:
Conditions:
1. Redistributions of source code must retain the above
copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Offering A CUP OF BEER with braveness for expressing "thank you"
for using/redistributing of source code or binary form to copyright holder
must be remembered. In spite of this condition, the copyright holder can
say 'no thank you' for expressing to decline the beer.
DISCLAIMER:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS
AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
다음의 조건들을 충족시키는 한, 소스형식과 바이너리형식을 통한
재배포와 사용은 수정여부에 관계없이 허용된다.
조건들
1. 소스코드의 재배포는 위의 저작권표시와 여기 나열된 조건들,
그리고 아래의 보증부인 고지를 포함해야 한다.
2. 바이너리형식으로 재배포할때는 위의 저작권표시와 여기 나열된
조건들 그리고 아래의 보증부인고지를 배포할 때 제공되는 문서
및 기타자료에 포함해야 한다.
3. 재배포 혹은 사용에 대한 "고맙습니다"의 표시로써, 저작권자에게
용기내어 맥주 한 잔을 대접해야겠다는 것은 언제든지 기억해야한다.
그러나 이 조건에도 불구하고 저작권자는 거절의 표시로 "됐습니다"라고
말할 수 있다.
보증부인 고지사항
저작권자와 기여자는 이 소프트웨어를 “있는 그대로의” 상태로
제공하며, 상품성 여부나 특정한 목적에 대한 적합성에 대한 묵시적
보증을 포함한 어떠한 형태의 보증도 명시적이나 묵시적으로
제공되지 않는다. 손해 가능성을 사전에 알고 있었다 하더라도,
저작권자나 기여자는 어떠한 경우에도 이 소프트웨어의 사용으로
인하여 발생한, 직접적이거나 간접적인 손해, 우발적이거나 결과적
손해, 특수하거나 일반적인 손해에 대하여, 그 발생의 원인이나
책임론, 계약이나 무과실책임이나 불법행위(과실 등을 포함)와
관계 없이 책임을 지지 않는다. 이러한 조건은 대체 재화나 용역의
구입 및 유용성이나 데이터, 이익의 손실, 그리고 영업 방해 등을
포함하나 이에 국한되지는 않는다.
*****/
/* NOTICE
* IF YOUR BEFORE JOB IS NOT CLEANLY DONE, DO THIS AT CMD LINE
* taskkill /f /im wscript.exe
* CLOSE ALL EXCEL JOBS
*/
// Global Stubs for Active-X
var W = WScript;
var S = WScript.CreateObject("WScript.Shell");
var F = WScript.CreateObject("Scripting.FileSystemObject");
var E = WScript.CreateObject("Excel.Application");
// Turn off excel alert
E.DisplayAlerts = false;
E.Visible = true;
var g_scriptFolder = W.ScriptFullName.replace( W.ScriptName, "" );
var g_logFd = null;
var g_popupMsg = "";
var g_localConfig = g_scriptFolder + "Excel2Json.config.js";
// Default Configuration
// DO NOT CHANGE THIS VALUE, MAKE Excel2Json.config.js FILE AND COPY THESE LINES AND EDIT THEM!!
var g_sourceFolder = g_scriptFolder;
var g_targetFolder = "output"; // subdirectory in g_sourceFolder
var g_tempSuffix = ".$$$";
var g_prettyOutput = true; // false for compact
if( F.FileExists( g_localConfig ) ) {
var fd = F.OpenTextFile( g_localConfig, 1, false, 0 );
var content = fd.ReadAll();
fd.Close();
eval(content);
}
// Parsing context
var scanning = {
file : "",
row : 0,
col : 0
};
/* Code snippet from json.org */
/*
json2.js
2012-10-08
Public Domain.
NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
See http://www.JSON.org/js.html
*/
// Create a JSON object only if one does not already exist. We create the
// methods in a closure to avoid creating global variables.
if (typeof JSON !== 'object') {
JSON = {};
}
(function () {
'use strict';
function f(n) {
// Format integers to have at least two digits.
return n < 10 ? '0' + n : n;
}
if (typeof Date.prototype.toJSON !== 'function') {
Date.prototype.toJSON = function (key) {
return isFinite(this.valueOf())
? this.getUTCFullYear() + '-' +
f(this.getUTCMonth() + 1) + '-' +
f(this.getUTCDate()) + 'T' +
f(this.getUTCHours()) + ':' +
f(this.getUTCMinutes()) + ':' +
f(this.getUTCSeconds()) + 'Z'
: null;
};
String.prototype.toJSON =
Number.prototype.toJSON =
Boolean.prototype.toJSON = function (key) {
return this.valueOf();
};
}
var cx = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
escapable = /[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
gap,
indent,
meta = { // table of character substitutions
'\b': '\\b',
'\t': '\\t',
'\n': '\\n',
'\f': '\\f',
'\r': '\\r',
'"' : '\\"',
'\\': '\\\\'
},
rep;
function quote(string) {
// If the string contains no control characters, no quote characters, and no
// backslash characters, then we can safely slap some quotes around it.
// Otherwise we must also replace the offending characters with safe escape
// sequences.
escapable.lastIndex = 0;
return escapable.test(string) ? '"' + string.replace(escapable, function (a) {
var c = meta[a];
return typeof c === 'string'
? c
: '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4);
}) + '"' : '"' + string + '"';
}
function str(key, holder) {
// Produce a string from holder[key].
var i, // The loop counter.
k, // The member key.
v, // The member value.
length,
mind = gap,
partial,
value = holder[key];
// If the value has a toJSON method, call it to obtain a replacement value.
if (value && typeof value === 'object' &&
typeof value.toJSON === 'function') {
value = value.toJSON(key);
}
// If we were called with a replacer function, then call the replacer to
// obtain a replacement value.
if (typeof rep === 'function') {
value = rep.call(holder, key, value);
}
// What happens next depends on the value's type.
switch (typeof value) {
case 'string':
return quote(value);
case 'number':
// JSON numbers must be finite. Encode non-finite numbers as null.
return isFinite(value) ? String(value) : 'null';
case 'boolean':
case 'null':
// If the value is a boolean or null, convert it to a string. Note:
// typeof null does not produce 'null'. The case is included here in
// the remote chance that this gets fixed someday.
return String(value);
// If the type is 'object', we might be dealing with an object or an array or
// null.
case 'object':
// Due to a specification blunder in ECMAScript, typeof null is 'object',
// so watch out for that case.
if (!value) {
return 'null';
}
// Make an array to hold the partial results of stringifying this object value.
gap += indent;
partial = [];
// Is the value an array?
if (Object.prototype.toString.apply(value) === '[object Array]') {
// The value is an array. Stringify every element. Use null as a placeholder
// for non-JSON values.
length = value.length;
for (i = 0; i < length; i += 1) {
partial[i] = str(i, value) || 'null';
}
// Join all of the elements together, separated with commas, and wrap them in
// brackets.
v = partial.length === 0
? '[]'
: gap
? '[\n' + gap + partial.join(',\n' + gap) + '\n' + mind + ']'
: '[' + partial.join(',') + ']';
gap = mind;
return v;
}
// If the replacer is an array, use it to select the members to be stringified.
if (rep && typeof rep === 'object') {
length = rep.length;
for (i = 0; i < length; i += 1) {
if (typeof rep[i] === 'string') {
k = rep[i];
v = str(k, value);
if (v) {
partial.push(quote(k) + (gap ? ': ' : ':') + v);
}
}
}
} else {
// Otherwise, iterate through all of the keys in the object.
for (k in value) {
if (Object.prototype.hasOwnProperty.call(value, k)) {
v = str(k, value);
if (v) {
partial.push(quote(k) + (gap ? ': ' : ':') + v);
}
}
}
}
// Join all of the member texts together, separated with commas,
// and wrap them in braces.
v = partial.length === 0
? '{}'
: gap
? '{\n' + gap + partial.join(',\n' + gap) + '\n' + mind + '}'
: '{' + partial.join(',') + '}';
gap = mind;
return v;
}
}
// If the JSON object does not yet have a stringify method, give it one.
if (typeof JSON.stringify !== 'function') {
JSON.stringify = function (value, replacer, space) {
// The stringify method takes a value and an optional replacer, and an optional
// space parameter, and returns a JSON text. The replacer can be a function
// that can replace values, or an array of strings that will select the keys.
// A default replacer method can be provided. Use of the space parameter can
// produce text that is more easily readable.
var i;
gap = '';
indent = g_prettyOutput ? '\t' : '';
// If the space parameter is a number, make an indent string containing that
// many spaces.
if (typeof space === 'number') {
for (i = 0; i < space; i += 1) {
indent += ' ';
}
// If the space parameter is a string, it will be used as the indent string.
} else if (typeof space === 'string') {
indent = space;
}
// If there is a replacer, it must be a function or an array.
// Otherwise, throw an error.
rep = replacer;
if (replacer && typeof replacer !== 'function' &&
(typeof replacer !== 'object' ||
typeof replacer.length !== 'number')) {
throw new Error('JSON.stringify');
}
// Make a fake root object containing our value under the key of ''.
// Return the result of stringifying the value.
return str('', {'': value});
};
}
// If the JSON object does not yet have a parse method, give it one.
if (typeof JSON.parse !== 'function') {
JSON.parse = function (text, reviver) {
// The parse method takes a text and an optional reviver function, and returns
// a JavaScript value if the text is a valid JSON text.
var j;
function walk(holder, key) {
// The walk method is used to recursively walk the resulting structure so
// that modifications can be made.
var k, v, value = holder[key];
if (value && typeof value === 'object') {
for (k in value) {
if (Object.prototype.hasOwnProperty.call(value, k)) {
v = walk(value, k);
if (v !== undefined) {
value[k] = v;
} else {
delete value[k];
}
}
}
}
return reviver.call(holder, key, value);
}
// Parsing happens in four stages. In the first stage, we replace certain
// Unicode characters with escape sequences. JavaScript handles many characters
// incorrectly, either silently deleting them, or treating them as line endings.
text = String(text);
cx.lastIndex = 0;
if (cx.test(text)) {
text = text.replace(cx, function (a) {
return '\\u' +
('0000' + a.charCodeAt(0).toString(16)).slice(-4);
});
}
// In the second stage, we run the text against regular expressions that look
// for non-JSON patterns. We are especially concerned with '()' and 'new'
// because they can cause invocation, and '=' because it can cause mutation.
// But just to be safe, we want to reject all unexpected forms.
// We split the second stage into 4 regexp operations in order to work around
// crippling inefficiencies in IE's and Safari's regexp engines. First we
// replace the JSON backslash pairs with '@' (a non-JSON character). Second, we
// replace all simple value tokens with ']' characters. Third, we delete all
// open brackets that follow a colon or comma or that begin the text. Finally,
// we look to see that the remaining characters are only whitespace or ']' or
// ',' or ':' or '{' or '}'. If that is so, then the text is safe for eval.
if (/^[\],:{}\s]*$/
.test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@')
.replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']')
.replace(/(?:^|:|,)(?:\s*\[)+/g, ''))) {
// In the third stage we use the eval function to compile the text into a
// JavaScript structure. The '{' operator is subject to a syntactic ambiguity
// in JavaScript: it can begin a block or an object literal. We wrap the text
// in parens to eliminate the ambiguity.
j = eval('(' + text + ')');
// In the optional fourth stage, we recursively walk the new structure, passing
// each name/value pair to a reviver function for possible transformation.
return typeof reviver === 'function'
? walk({'': j}, '')
: j;
}
// If the text is not JSON parseable, then a SyntaxError is thrown.
throw new SyntaxError('JSON.parse');
};
}
}());
/*
* NOW Excel2Json Body
*/
String.prototype.endsWith = function(suffix) {
return this.indexOf(suffix, this.length - suffix.length) !== -1;
};
function setScanningFile( csvFile )
{
csvFile = csvFile.replace( g_sourceFolder, "" );
var sheetName = csvFile;
var idx = csvFile.indexOf( g_tempSuffix );
sheetName = sheetName.substring( idx + g_tempSuffix.length + 1 ).replace(".csv", "");
scanning.file = csvFile.substring( 0, idx ) + "(" + sheetName + ")";
}
function logn( str )
{
//str = String(str).replace("\r\n", "\n").replace("\n", "\r\n");
if( g_logFd == null ) {
g_logFd = F.OpenTextFile( g_targetFolder + "ExcelJson.log", 2, true, 0 ); // 2: write, 8: append mode
}
if( g_logFd ) {
g_logFd.Write( str );
}
}
function log( str )
{
logn( str + "\r\n" );
}
//log( "Working directory: " + g_sourceFolder );
function getLoc( withoutColumnInfo )
{
if( withoutColumnInfo == undefined ) {
return "ROW " + (scanning.row);
}
return String.fromCharCode( 'A'.charCodeAt(0) + scanning.col ) + ( scanning.row );
}
function parseLog( str, withoutColumnInfo )
{
var _msg;
_msg = "[" + scanning.file + ": " + getLoc(withoutColumnInfo) + "]\r\n";
_msg += str + "\r\n";
logn( _msg );
return _msg;
}
function popup( str, withoutColumnInfo, withoutScanningInfo )
{
if( withoutScanningInfo == undefined || withoutScanningInfo == false ) {
var _msg = parseLog( str, withoutColumnInfo );
_msg += "--\r\n";
} else {
var _msg = str + "\r\n";
}
g_popupMsg += _msg;
}
function saveJson( excelFile, jsonString )
{
var jsonFileName = String(excelFile).replace(g_sourceFolder, "").replace(".xlsx", "").replace(".xls", "") + ".json";
var jsonPath = g_targetFolder + jsonFileName;
if( !F.FolderExists( g_targetFolder ) ) {
F.CreateFolder( g_targetFolder );
}
//http://msdn.microsoft.com/en-us/library/windows/desktop/ms677486(v=vs.85).aspx
var A1 = WScript.CreateObject("ADODB.Stream");
A1.Charset = "utf-8"
A1.Mode = 3; // adModeReadWrite;
A1.Type = 2; // adTypeText;
A1.Open();
var A2 = WScript.CreateObject("ADODB.Stream");
A2.Mode = 3; // adModeReadWrite
A2.Type = 1; // adTypeBinary
A2.Open();
A1.WriteText( jsonString, 0 /* adWriteChar */ );
A1.Position = 3; // Skip BOM
A1.CopyTo( A2 );
A2.SaveToFile( jsonPath, 2 /* adSaveCreateOverWrite */ );
A2.Close();
popup( "Output: " + jsonPath, false, true );
}
function isExcel(filename)
{
if( filename.endsWith(".xlsx") || filename.endsWith(".xls") ) {
return true;
}
return false;
}
function getExcelFiles( dir )
{
var sourceDirectory = F.GetFolder( dir );
var files = new Enumerator( sourceDirectory.files );
var excels = [];
var msg ="";
for(; !files.atEnd(); files.moveNext() )
{
var file = files.item();
if( file.Name.substr(0,1) == "~" ) {
continue;
}
if( isExcel( file.Path ) ) {
excels.push( String(file.Path) );
}
}
return excels;
}
function deleteTemp( tmpdir )
{
//For safety!
if( !tmpdir.endsWith( g_tempSuffix ) ) {
return;
}
//Just skip non-existent folder.
if( !F.FolderExists( tmpdir ) ) {
return;
}
//Let's do it!
F.DeleteFolder( tmpdir, true );
}
function deleteTempFiles( dir )
{
var sourceDirectory = F.GetFolder( dir );
var files = new Enumerator( sourceDirectory.files );
var excels = [];
var msg ="";
for(; !files.atEnd(); files.moveNext() )
{
var file = files.item();
if( file.Name.endsWith( ".Identifier" ) ) {
F.DeleteFile( file.Name );
}
}
}
function assertTraillingOneSlash( path )
{
while( path.endsWith("\\") ) {
path = path.substr(0, path.length-1);
}
path += "\\";
return path;
}
function saveAsCSV( sheet, tmpdir )
{
if( !F.FolderExists( tmpdir ) ) {
F.CreateFolder( tmpdir );
}
var csvFile = tmpdir + "\\" + sheet.Name + ".csv";
// http://msdn.microsoft.com/en-us/library/office/ff198017.aspx
// XlFileFormat Enumeration Table: CSV (6)
sheet.SaveAs( csvFile, 6);
return csvFile;
}
function getPrettyValue( value )
{
if( value == null ) return "";
if( typeof(value) == "number" ) return value;
if( typeof(value) == "string" && isFinite(value) ) return Number(value);
return String(value);
}
function readCSVLine( csvLine )
{
var values = [];
var value = null;
var inQuote = false;
csvLine = String(csvLine);
for(var i=0; i<csvLine.length; i++) {
var ch = csvLine.charAt(i);
var chNext = '';
if( i<csvLine.length-1 ) {
chNext = csvLine.charAt(i+1);
}
if( !inQuote ) {
switch( ch ) {
case ',':
values.push( getPrettyValue(value) );
value = "";
break;
case '"':
inQuote = true;
break;
default:
value = (value || "" ) + ch;
}
} else {
switch( ch ) {
case '"':
if( chNext == '"' ) {
value += '"';
i++;
} else {
inQuote = false;
}
break;
default:
value = (value || "" ) + ch;
}
}
}
if( value != null ) {
values.push( getPrettyValue(value) );
}
return values;
}
function readCSVFile( csvFile )
{
//http://msdn.microsoft.com/en-us/library/314cz14s(v=vs.84).aspx
//ForReading (1), no-create(false), unicode(-1)
var sheet = [];
sheet.push( csvFile );
log( "Parsing: " + csvFile );
var fd = F.OpenTextFile( csvFile, 1, false, 0 );
while( !fd.AtEndOfStream ) {
var line = fd.ReadLine();
//log( "Read: " + line );
var values = readCSVLine( line );
//log( JSON.stringify( values ) );
sheet.push( values );
}
fd.Close();
return sheet;
}
function compileSimpleTable( sheet, row, keyIndex )
{
var keyCol = keyIndex["$key"];
var isArrayValue = false;
var value = {};
log( "Parsing Simple Table..." );
if( keyCol == undefined ) {
popup( "$key COLUMN NOT FOUND" );
return null;
}
var valCol = keyIndex["$value"];
if( valCol == undefined ) {
valCol = keyIndex["$value[]"];
isArrayValue = true;
} else {
if( keyIndex["$value[]"] != undefined ) {
popup( "$value, $value[] BOTH FOUND, DELETE ONE PLEASE" );
return null;
}
}
if( valCol == undefined ) {
popup( "$value or $value[] COLUMN NOT FOUND" );
return null;
}
log( "Using key index: " + keyCol + " value index: " + valCol );
while( sheet[row] != undefined && sheet[row][keyCol] != undefined && sheet[row][keyCol] ) {
if( isArrayValue ) {
value[ sheet[row][keyCol] ] = readCSVLine( sheet[row][valCol] );
} else {
value[ sheet[row][keyCol] ] = getPrettyValue(sheet[row][valCol]);
}
row++;
}
return value;
}
function compileObjectObjectTable( sheet, row, keyIndex )
{
var keyCol = keyIndex["$key"];
var isArrayValue = false;
var value = {};
log( "Parsing Object Object Table..." );
if( keyCol == undefined ) {
popup( "$key COLUMN NOT FOUND" );
return null;
}
log( "Using key index: " + keyCol );
while( sheet[row] != undefined && sheet[row][keyCol] != undefined && sheet[row][keyCol] ) {
var obj = {};
for( subkey in keyIndex ) {
if( subkey == "$key" ) continue;
var valCol = keyIndex[subkey];
if( subkey.endsWith( "[]" ) ) {
subkey = subkey.substr( 0, subkey.length - 2 );
obj[ subkey ] = readCSVLine( sheet[row][valCol] );
} else {
obj[ subkey ] = getPrettyValue( sheet[row][valCol] );
}
}
value[ sheet[row][keyCol] ] = obj;
row++;
}
return value;
}
function compileArrayObjectTable( sheet, row, keyIndex )
{
var value = [];
log( "Parsing Array Object Table..." );
while( sheet[row] != undefined ) {
var obj = {};
var isSane = false;
for( subkey in keyIndex ) {
var valCol = keyIndex[subkey];
if( subkey.endsWith( "[]" ) ) {
subkey = subkey.substr( 0, subkey.length - 2 );
obj[ subkey ] = readCSVLine( sheet[row][valCol] );
if( obj[subkey].length > 0 ) {
isSane = true;
}
} else {
obj[ subkey ] = getPrettyValue(sheet[row][valCol]);
if( obj[subkey] ) {
isSane = true;
}
}
}
if( !isSane ) {
break;
}
value.push( obj );
row++;
}
return value;
}
function compileObjectArrayTable( sheet, row, keyIndex )
{
var value = {};
log( "Parsing Object Array Table..." );
for( subkey in keyIndex ) {
var valCol = keyIndex[subkey];
var isArray = false;
if( subkey.endsWith( "[]" ) ) {
isArray = true;
}
var obj = [];
var r = row;
var v;
while( sheet[r] instanceof Array && (v=String(sheet[r][valCol])) != "") {
if( isArray ) {
subkey = subkey.substr( 0, subkey.length - 2 );
obj.push( readCSVLine( v ) );
} else {
obj.push( getPrettyValue(v) );
}
r++;
}
value[ subkey ] = obj;
}
return value;
}
function compileSheet( sheet, rootObject )
{
var csvFile = sheet[0];
setScanningFile( csvFile );
for( var row=1; row<sheet.length; row++ )
{
//try {
var line = sheet[row];
if( line == undefined ) {
continue;
}
var anchor = line[0];
if( anchor == null ) {
continue;
}
anchor = String(anchor);
if( anchor.charAt(0) != '#') {
continue;
}
scanning.row = row;
var objectName = "";
var objectType = "";
var keyIndex = {};
objectName = String(/#\w+/.exec( anchor ));
objectType = anchor.substring( objectName.length );
objectName = objectName.substring(1);
log( "------------------------------------------------------------------------------" );
parseLog( "Found object mark: '" + anchor + "'");
for( var col=1; col<line.length; col++ ) {
scanning.col = col;
var key = line[col];
if( key.length > 0 ) {
parseLog( " Key: " + key + " at " + col );
keyIndex[ key ] = col;
}
}
var compiler = null;
switch( objectType ) {
case "{}": compiler = compileSimpleTable; break;
case "{{}}": compiler = compileObjectObjectTable; break;
case "{[]}": compiler = compileObjectArrayTable; break;
case "[{}]": compiler = compileArrayObjectTable; break;
default:
popup( "Invalid object type marker: " + anchor );
}
if( compiler ) {
var value = compiler.call( null, sheet, row + 1, keyIndex );
if( value ) {
rootObject[objectName] = value;
}
}
//} catch(e) {
// popup("Exception: " + e);
//}
}
}
function compileSheetArray( sheetArray )
{
var rootObject = {};
for( var i=0; i<sheetArray.length; i++ )
{
compileSheet( sheetArray[i], rootObject );
}
return rootObject;
}
function parseExcel( excelFile )
{
E.Workbooks.Open( excelFile, true, true );
var tmpdir = excelFile + g_tempSuffix;
var csvFiles = [];
var sheetArray = [];
deleteTemp( tmpdir );
log( "\r\nLoading: " + excelFile );
try {
for( var i = 1; i <= E.Worksheets.Count; i++ ) {
var sheet = E.Worksheets.Item(i);
log( "Parse sheet: " + sheet.Name );
if( sheet.Name.substr(0,1) == '!' ) {
log( "Skipped, '!' prefix detected" );
continue;
}
var csvFile = saveAsCSV( sheet, tmpdir );
setScanningFile( csvFile );
csvFiles.push( csvFile );
sheetArray.push( readCSVFile( csvFile, sheetArray ) );
}
} catch(e) {
popup( "Error: " + e.message );
E.Workbooks.Close();
throw e;
}
E.Workbooks.Close();
deleteTemp( tmpdir );
log( "Closing: " + excelFile );
var rootObject = compileSheetArray( sheetArray );
return JSON.stringify( rootObject ).split("\n").join("\r\n");
}
try {
g_sourceFolder = assertTraillingOneSlash( g_sourceFolder );
var excels = [];
objArgs = WScript.Arguments;
if( objArgs.length > 0 ) {
for (i = 0; i < objArgs.length; i++)
{
if( isExcel( objArgs(i) ) ) {
excels.push( g_sourceFolder + objArgs(i) );
}
}
if( !isExcel( objArgs( objArgs.length - 1) ) ) {
g_targetFolder = objArgs( objArgs.length - 1);
}
} else {
excels = getExcelFiles(g_sourceFolder);
}
if( excels.length == 0 ) {
W.Echo("There is no excel files in\r\n" + g_sourceFolder );
}
g_targetFolder = g_sourceFolder + g_targetFolder;
g_targetFolder = assertTraillingOneSlash( g_targetFolder );
for( var i in excels )
{
var jsonString = parseExcel(excels[i]);
saveJson( excels[i], jsonString );
}
deleteTempFiles( g_sourceFolder );
if( g_popupMsg ) {
W.Echo( g_popupMsg );
}
} catch(e)
{
E.Quit();
W.Echo(e.message);
throw e;
W.Quit(1);
}
E.Quit();
W.Quit(0);
// End OF FILE