forked from mrjoelkemp/jsdoc3-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
81 lines (74 loc) · 1.93 KB
/
index.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
var execFile = require('child_process').execFile,
fs = require('fs'),
os = require('os'),
path = require('path');
/**
* Locates the JSDoc executable command. Since a module is not provided,
* `require.resolve('jsdoc')` does not work and must be done manually.
*
* @param {String} dir The starting directory to search.
* @return {String} The executable path, or null if not found.
*/
function locateJSDocCommand(dir) {
var executable = os.platform() === 'win32' ? 'jsdoc.cmd' : 'jsdoc',
cmd;
dir = path.resolve(dir);
while (dir) {
try {
cmd = path.join(dir, 'node_modules', '.bin', executable);
// End the search if the command is found.
// If not found, an exception is thrown.
fs.statSync(cmd);
break;
} catch (ex) {
cmd = null;
// Otherwise, iterate to the parent directory, if possible.
if (path.dirname(dir) == dir) {
dir = null;
} else {
dir = path.resolve(path.dirname(dir));
}
}
}
return cmd;
}
/**
* Parses the given file using JSDoc's parser.
* Since JSDoc doesn't isn't require-able, we need to get the parse info from
* the command line.
*
* @param {String} filename
* @param {Function} cb ({Object}) -> null - Executed with the AST
*/
function jsdocParser(filename, cb) {
var cmd = locateJSDocCommand(__dirname);
if (!cmd) {
cb(new Error('Could not find jsdoc command.'), null);
return;
}
execFile(cmd, ['-X', filename], {maxBuffer: 5120 * 1024},
jsdocParser._onComplete.bind(null, cb));
}
/**
* Exposed for testing
*
* @private
* @param {Function} cb
* @param {Object} error
* @param {String} stdout
*/
jsdocParser._onComplete = function(cb, error, stdout) {
if (error) {
cb(error, null);
return;
}
var parsed;
try {
parsed = JSON.parse(stdout);
} catch (ex) {
parsed = null;
error = ex;
}
cb(error, parsed);
};
module.exports = jsdocParser;