forked from aurora-opensource/xviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile-utils.js
86 lines (77 loc) · 2.12 KB
/
file-utils.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
/* eslint-disable no-console */
/* global ParseError, fetch, console */
const path = require('path');
const walk = require('walk');
const fs = require('fs');
const {parse: jsonlintParse} = require('jsonlint');
function parseJSON(string, filePath) {
let data;
try {
data = JSON.parse(string);
} catch (e) {
try {
jsonlintParse(string);
} catch (egood) {
// Ugly hack to get the line number out of the jsonlint error
const lineRegex = /line ([0-9]+)/g;
const results = lineRegex.exec(egood.message);
let line = 0;
if (results !== null) {
line = parseInt(results[1], 10);
}
// Return the best error we can
throw new ParseError(`${filePath}:${line}: ${egood}`);
}
}
return data;
}
// This parser generates more readable error message if the json is invalid
function loadJSONSync(filePath) {
const content = fs.readFileSync(filePath, 'utf8');
return parseJSON(content);
}
function loadJSON(filePath) {
if (fs.readFile) {
// node
return new Promise((resolve, reject) => {
fs.readFile(filePath, 'utf8', (err, data) => {
if (err) {
reject(err);
} else {
resolve(parseJSON(data, filePath));
}
});
});
}
return fetch(filePath)
.then(resp => resp.text())
.then(data => parseJSON(data, filePath));
}
function walkDir(dir, extension, getContent) {
const fileMap = {};
walk.walkSync(dir, {
listeners: {
file(fpath, stat, next) {
if (!extension || stat.name.endsWith(extension)) {
// Build the path to the matching schema
const fullPath = path.join(fpath, stat.name);
const relPath = path.relative(dir, fullPath);
fileMap[relPath] = getContent && getContent(fullPath);
}
next();
}
}
});
console.log(`${Object.keys(fileMap).length} files loaded from ${dir}`);
return fileMap;
}
function dump(data, outputPath) {
console.log(`\u001b[92mWriting to file\u001b[39m ${outputPath}`);
fs.writeFileSync(outputPath, JSON.stringify(data, null, 2));
}
module.exports = {
walkDir,
loadJSON,
loadJSONSync,
dump
};