-
Notifications
You must be signed in to change notification settings - Fork 1
/
csv2jsonic.js
200 lines (167 loc) · 5.91 KB
/
csv2jsonic.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
(function(global) {
"use strict";
var csv2json = function () {
'use strict';
var fs = require('fs');
var csv = require('csv');
var Iconv = require('iconv-lite');
var conv = null;
var _ = require('lodash');
var app = {
debug : false,
charset : 'cp932',
pretty : false,
delimitter : ':',
reg : /:/,
outputJsonPath: '',
setup: function ( option ) {
if( _.isObject( option ) ) {
// debug
if( option.debug ) {
this.debug = true;
}
try {
// pretty
if( _.isString( option.charset ) && option.charset !== '' ) {
this.charset = option.charset;
if( this.debug ) console.log( 'override charset setting.' );
}
} catch(e) {
if( this.debug ) {
console.log("default charset setting.");
}
}
// pretty
if( option.pretty ) {
this.pretty = true;
}
// outputJsonPath
if( _.isString( option.outputJsonPath ) ) {
this.outputJsonPath = option.outputJsonPath;
}
// delimitter
if( _.isObject( option ) && typeof _.isString( option.delimitter ) && option.delimitter !== '' ) {
this.delimitter = option.delimitter;
}
}
// 区切り文字
if( _.isUndefined( this.delimitter ) ) {
this.delimitter = ':';
}
this.reg = RegExp( this.delimitter );
},
/**
* This module returns the CSV file in Json file or object.
*
* delimitter: ':' default
*
* @param {String} input 読み込むファイルのパス
* @param {Option} option { outputJsonPath:'', delimitter:':', pretty:true }
* debug : コンソールを出力します。
* outputJsonPath : 出力するJsonのパス。空文字や文字列でない場合は出力しない。
* delimitter : CSVの区切り文字。1文字以上なければならない
* pretty : Jsonの出力形式。trueをいれると圧縮された状態で出力。
* @return {Promise} Promiseオブジェクト
*/
loadCSV: function ( input ) {
var promise = new Promise( function ( resolve, reject ) {
app._dumpCsv( input )
.then( function ( csvArray ) {
var createJson = app.convert( csvArray[0] );
if( _.isString( app.outputJsonPath ) && app.outputJsonPath !== '' ) {
var strJson;
if( app.pretty ) {
strJson = JSON.stringify( createJson, null, ' ' );
} else {
strJson = JSON.stringify( createJson );
}
fs.writeFile( app.outputJsonPath, strJson);
}
resolve( createJson );
});
})
return promise;
},
/**
* Convert an array of CSV format to the object of Json format.
*
* @param {Arary} csvArray csv形式を維持した、1行目にプロパティ名を持つ配列
* @return {String} 出力したデータ内容
*/
convert: function ( csvArray ) {
var dataValue = csvArray;
var dataName = dataValue.shift();
_.forEach( dataName, function ( value, key, object ) {
if( app.reg.test( value ) ) {
dataName[ key ] = value.split( app.delimitter ).reverse();
}
});
var createJson = _.map( dataValue, function ( values ) {
var jsonFormatObject = {};
_.forEach( values, function ( value, key, object ) {
var hash = dataName[key];
if( _.isArray( hash ) ) {
jsonFormatObject = _.merge( jsonFormatObject, app._deepProperty( hash, value ) )
} else {
jsonFormatObject[ dataName[key] ] = value;
}
});
return jsonFormatObject;
});
if( app.debug ) console.log( createJson );
return createJson;
},
/**
* _dumpCsv
*
* @param {String} path 読み込むcsvのパス
* @return {Promise} Promiseオブジェクト
*/
_dumpCsv: function ( path ) {
var charset = this.charset;
var promise = new Promise( function ( resolve, reject ) {
var json_array = [];
fs.readFile( path, function(err, _buf) {
var buf;
//console.log( charset );
//console.log( _buf );
buf = Iconv.decode( _buf, charset );
if( app.debug ) console.log( 'CSV Loading:' + path + ' *=-');
//csv.parse(buf.toString(),{comment:'#'}, function(err, data) {
csv.parse(buf.toString(), function(err, data) {
json_array.push( data );
resolve( json_array );
});
});
});
return promise;
},
/**
* _deepProperty
*
* @param {Array} hash 深い階層のハッシュを作るための配列
* @return {String} hashを元に作ったオブジェクト
*
* @example
* _deepProperty( [ 'a','b','c' ], "mogeta" )
* output: { a: { b: { c: "mogeta" } } }
*/
_deepProperty: function ( hash, newValue ) {
var result, resultChild;
_.forEach( hash, function ( value, key, object ) {
if( typeof result === 'undefined' ) {
result = {};
result[value] = newValue
} else {
resultChild = result;
result = {};
result[value] = resultChild;
}
});
return result;
}
}
return app;
}
module.exports = csv2json;
})((this || 0).self || global);