-
Notifications
You must be signed in to change notification settings - Fork 27
/
mysql-import.js
executable file
·534 lines (472 loc) · 11.8 KB
/
mysql-import.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
/**
* mysql-import - v5.1.1
* Import .sql into a MySQL database with Node.
* @author Rob Parham
* @website https://github.com/pamblam/mysql-import#readme
* @license MIT
*/
'use strict';
const mysql = require('mysql2');
const fs = require('fs');
const path = require("path");
const stream = require('stream');
/**
* mysql-import - Importer class
* @version 5.1.1
* https://github.com/Pamblam/mysql-import
*/
class Importer{
/**
* new Importer(settings)
* @param {host, user, password[, database]} settings - login credentials
*/
constructor(settings){
this._connection_settings = settings;
this._conn = null;
this._encoding = 'utf8';
this._imported = [];
this._progressCB = ()=>{};
this._dumpCompletedCB = ()=>{};
this._total_files = 0;
this._current_file_no = 0;
}
/**
* Get an array of the imported files
* @returns {Array}
*/
getImported(){
return this._imported.slice(0);
}
/**
* Set the encoding to be used for reading the dump files.
* @param string - encoding type to be used.
* @throws {Error} - if unsupported encoding type.
* @returns {undefined}
*/
setEncoding(encoding){
var supported_encodings = [
'utf8',
'ucs2',
'utf16le',
'latin1',
'ascii',
'base64',
'hex'
];
if(!supported_encodings.includes(encoding)){
throw new Error("Unsupported encoding: "+encoding);
}
this._encoding = encoding;
}
/**
* Set or change the database to be used
* @param string - database name
* @returns {Promise}
*/
use(database){
return new Promise((resolve, reject)=>{
if(!this._conn){
this._connection_settings.database = database;
resolve();
return;
}
this._conn.changeUser({database}, err=>{
if (err){
reject(err);
}else{
resolve();
}
});
});
}
/**
* Set a progress callback
* @param {Function} cb - Callback function is called whenever a chunk of
* the stream is read. It is provided an object with the folling properties:
* - total_files: The total files in the queue.
* - file_no: The number of the current dump file in the queue.
* - bytes_processed: The number of bytes of the file processed.
* - total_bytes: The size of the dump file.
* - file_path: The full path to the dump file.
* @returns {undefined}
*/
onProgress(cb){
if(typeof cb !== 'function') return;
this._progressCB = cb;
}
/**
* Set a progress callback
* @param {Function} cb - Callback function is called whenever a dump
* file has finished processing.
* - total_files: The total files in the queue.
* - file_no: The number of the current dump file in the queue.
* - file_path: The full path to the dump file.
* @returns {undefined}
*/
onDumpCompleted(cb){
if(typeof cb !== 'function') return;
this._dumpCompletedCB = cb;
}
/**
* Import (an) .sql file(s).
* @param string|array input - files or paths to scan for .sql files
* @returns {Promise}
*/
import(...input){
return new Promise(async (resolve, reject)=>{
try{
await this._connect();
var files = await this._getSQLFilePaths(...input);
this._total_files = files.length;
this._current_file_no = 0;
var error = null;
for(let i=0; i<files.length; i++){
let file = files[i];
await new Promise(next=>{
this._current_file_no++;
if(error){
next();
return;
}
this._importSingleFile(file).then(()=>{
next();
}).catch(err=>{
error = err;
next();
});
});
}
if(error) throw error;
await this.disconnect();
resolve();
}catch(err){
reject(err);
}
});
};
/**
* Disconnect mysql. This is done automatically, so shouldn't need to be manually called.
* @param bool graceful - force close?
* @returns {Promise}
*/
disconnect(graceful=true){
return new Promise((resolve, reject)=>{
if(!this._conn){
resolve();
return;
}
if(graceful){
this._conn.end(err=>{
if(err){
reject(err);
return;
}
this._conn = null;
resolve();
});
}else{
this._conn.destroy();
resolve();
}
});
}
////////////////////////////////////////////////////////////////////////////
// Private methods /////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
/**
* Import a single .sql file into the database
* @param {object} fileObj - Object containing the following properties:
* - file: The full path to the file
* - size: The size of the file in bytes
* @returns {Promise}
*/
_importSingleFile(fileObj){
return new Promise((resolve, reject)=>{
var parser = new queryParser({
db_connection: this._conn,
encoding: this._encoding,
onProgress: (progress) => {
this._progressCB({
total_files: this._total_files,
file_no: this._current_file_no,
bytes_processed: progress,
total_bytes: fileObj.size,
file_path: fileObj.file
});
}
});
const dumpCompletedCB = (err) => this._dumpCompletedCB({
total_files: this._total_files,
file_no: this._current_file_no,
file_path: fileObj.file,
error: err
});
parser.on('finish', ()=>{
this._imported.push(fileObj.file);
dumpCompletedCB(null);
resolve();
});
parser.on('error', (err)=>{
dumpCompletedCB(err);
reject(err);
});
var readerStream = fs.createReadStream(fileObj.file);
readerStream.setEncoding(this._encoding);
/* istanbul ignore next */
readerStream.on('error', (err)=>{
dumpCompletedCB(err);
reject(err);
});
readerStream.pipe(parser);
});
}
/**
* Connect to the mysql server
* @returns {Promise}
*/
_connect(){
return new Promise((resolve, reject)=>{
if(this._conn){
resolve(this._conn);
return;
}
var connection = mysql.createConnection(this._connection_settings);
connection.connect(err=>{
if (err){
reject(err);
}else{
this._conn = connection;
resolve();
}
});
});
}
/**
* Check if a file exists
* @param string filepath
* @returns {Promise}
*/
_fileExists(filepath){
return new Promise((resolve, reject)=>{
fs.access(filepath, fs.F_OK, err=>{
if(err){
reject(err);
}else{
resolve();
}
});
});
}
/**
* Get filetype information
* @param string filepath
* @returns {Promise}
*/
_statFile(filepath){
return new Promise((resolve, reject)=>{
fs.lstat(filepath, (err, stat)=>{
if(err){
reject(err);
}else{
resolve(stat);
}
});
});
}
/**
* Read contents of a directory
* @param string filepath
* @returns {Promise}
*/
_readDir(filepath){
return new Promise((resolve, reject)=>{
fs.readdir(filepath, (err, files)=>{
if(err){
reject(err);
}else{
resolve(files);
}
});
});
}
/**
* Parses the input argument(s) for Importer.import into an array sql files.
* @param strings|array paths
* @returns {Promise}
*/
_getSQLFilePaths(...paths){
return new Promise(async (resolve, reject)=>{
var full_paths = [];
var error = null;
paths = [].concat.apply([], paths); // flatten array of paths
for(let i=0; i<paths.length; i++){
let filepath = paths[i];
await new Promise(async next=>{
if(error){
next();
return;
}
try{
await this._fileExists(filepath);
var stat = await this._statFile(filepath);
if(stat.isFile()){
if(filepath.toLowerCase().substring(filepath.length-4) === '.sql'){
full_paths.push({
file: path.resolve(filepath),
size: stat.size
});
}
next();
}else if(stat.isDirectory()){
var more_paths = await this._readDir(filepath);
more_paths = more_paths.map(p=>path.join(filepath, p));
var sql_files = await this._getSQLFilePaths(...more_paths);
full_paths.push(...sql_files);
next();
}else{
/* istanbul ignore next */
next();
}
}catch(err){
error = err;
next();
}
});
}
if(error){
reject(error);
}else{
resolve(full_paths);
}
});
}
}
/**
* Build version number
*/
Importer.version = '5.1.1';
module.exports = Importer;
class queryParser extends stream.Writable{
constructor(options){
/* istanbul ignore next */
options = options || {};
super(options);
// The number of bytes processed so far
this.processed_size = 0;
// The progress callback
this.onProgress = options.onProgress || (() => {});
// the encoding of the file being read
this.encoding = options.encoding || 'utf8';
// the encoding of the database connection
this.db_connection = options.db_connection;
// The quote type (' or ") if the parser
// is currently inside of a quote, else false
this.quoteType = false;
// An array of chars representing the substring
// the is currently being parsed
this.buffer = [];
// Is the current char escaped
this.escaped = false;
// The string that denotes the end of a query
this.delimiter = ';';
// Are we currently seeking new delimiter
this.seekingDelimiter = false;
}
////////////////////////////////////////////////////////////////////////////
// "Private" methods" //////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
// handle piped data
async _write(chunk, enc, next) {
var query;
chunk = chunk.toString(this.encoding);
var error = null;
for (let i = 0; i < chunk.length; i++) {
let char = chunk[i];
query = this.parseChar(char);
try{
if(query) await this.executeQuery(query);
}catch(e){
error = e;
break;
}
}
this.processed_size += chunk.length;
this.onProgress(this.processed_size);
next(error);
}
// Execute a query, return a Promise
executeQuery(query){
return new Promise((resolve, reject)=>{
this.db_connection.query(query, err=>{
if (err){
reject(err);
}else{
resolve();
}
});
});
}
// Parse the next char in the string
// return a full query if one is detected after parsing this char
// else return false.
parseChar(char){
this.checkEscapeChar();
this.buffer.push(char);
this.checkNewDelimiter(char);
this.checkQuote(char);
return this.checkEndOfQuery();
}
// Check if the current char has been escaped
// and update this.escaped
checkEscapeChar(){
if(!this.buffer.length) return;
if(this.buffer[this.buffer.length - 1] === "\\"){
this.escaped = !this.escaped;
}else{
this.escaped = false;
}
}
// Check to see if a new delimiter is being assigned
checkNewDelimiter(char){
var buffer_str = this.buffer.join('').toLowerCase().trim();
if(buffer_str === 'delimiter' && !this.quoteType){
this.seekingDelimiter = true;
this.buffer = [];
}else{
var isNewLine = char === "\n" || char === "\r";
if(isNewLine && this.seekingDelimiter){
this.seekingDelimiter = false;
this.delimiter = this.buffer.join('').trim();
this.buffer = [];
}
}
}
// Check if the current char is a quote
checkQuote(char){
var isQuote = (char === '"' || char === "'") && !this.escaped;
if (isQuote && this.quoteType === char){
this.quoteType = false;
}else if(isQuote && !this.quoteType){
this.quoteType = char;
}
}
// Check if we're at the end of the query
// return the query if so, else return false;
checkEndOfQuery(){
if(this.seekingDelimiter){
return false;
}
var query = false;
var demiliterFound = false;
if(!this.quoteType && this.buffer.length >= this.delimiter.length){
demiliterFound = this.buffer.slice(-this.delimiter.length).join('') === this.delimiter;
}
if (demiliterFound) {
// trim the delimiter off the end
this.buffer.splice(-this.delimiter.length, this.delimiter.length);
query = this.buffer.join('').trim();
this.buffer = [];
}
return query;
}
}