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 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | /*global java */ /*eslint no-process-exit:0 */ /** * Helper methods for running JSDoc on the command line. * * A few critical notes for anyone who works on this module: * * + The module should really export an instance of `cli`, and `props` should be properties of a * `cli` instance. However, Rhino interpreted `this` as a reference to `global` within the * prototype's methods, so we couldn't do that. * + On Rhino, for unknown reasons, the `jsdoc/fs` and `jsdoc/path` modules can fail in some cases * when they are required by this module. You may need to use `fs` and `path` instead. * * @private */ module.exports = (function() { 'use strict'; var app = require('jsdoc/app'); var env = require('jsdoc/env'); var logger = require('jsdoc/util/logger'); var stripJsonComments = require('strip-json-comments'); var Promise = require('bluebird'); var hasOwnProp = Object.prototype.hasOwnProperty; var props = { docs: [], packageJson: null, shouldExitWithError: false, tmpdir: null }; var FATAL_ERROR_MESSAGE = 'Exiting JSDoc because an error occurred. See the previous log ' + 'messages for details.'; var cli = {}; // TODO: docs cli.setVersionInfo = function() { var fs = require('fs'); var path = require('path'); // allow this to throw--something is really wrong if we can't read our own package file var info = JSON.parse( fs.readFileSync(path.join(env.dirname, 'package.json'), 'utf8') ); env.version = { number: info.version, revision: new Date( parseInt(info.revision, 10) ).toUTCString() }; return cli; }; // TODO: docs cli.loadConfig = function() { var _ = require('underscore'); var args = require('jsdoc/opts/args'); var Config = require('jsdoc/config'); var fs = require('jsdoc/fs'); var path = require('jsdoc/path'); var confPath; var isFile; var defaultOpts = { destination: './out/', encoding: 'utf8' }; try { env.opts = args.parse(env.args); } catch (e) { console.error(e.message + '\n'); cli.printHelp().then(function () { cli.exit(1); }); } confPath = env.opts.configure || path.join(env.dirname, 'conf.json'); try { isFile = fs.statSync(confPath).isFile(); } catch(e) { isFile = false; } Eif ( !isFile && !env.opts.configure ) { confPath = path.join(env.dirname, 'conf.json.EXAMPLE'); } try { env.conf = new Config( stripJsonComments(fs.readFileSync(confPath, 'utf8')) ) .get(); } catch (e) { cli.exit(1, 'Cannot parse the config file ' + confPath + ': ' + e + '\n' + FATAL_ERROR_MESSAGE); } // look for options on the command line, in the config file, and in the defaults, in that order env.opts = _.defaults(env.opts, env.conf.opts, defaultOpts); return cli; }; // TODO: docs cli.configureLogger = function() { function recoverableError() { props.shouldExitWithError = true; } function fatalError() { cli.exit(1); } if (env.opts.debug) { logger.setLevel(logger.LEVELS.DEBUG); } else if (env.opts.verbose) { logger.setLevel(logger.LEVELS.INFO); } if (env.opts.pedantic) { logger.once('logger:warn', recoverableError); logger.once('logger:error', fatalError); } else { logger.once('logger:error', recoverableError); } logger.once('logger:fatal', fatalError); return cli; }; // TODO: docs cli.logStart = function() { logger.debug( cli.getVersion() ); logger.debug('Environment info: %j', { env: { conf: env.conf, opts: env.opts } }); }; // TODO: docs cli.logFinish = function() { var delta; var deltaSeconds; Iif (env.run.finish && env.run.start) { delta = env.run.finish.getTime() - env.run.start.getTime(); } Iif (delta !== undefined) { deltaSeconds = (delta / 1000).toFixed(2); logger.info('Finished running in %s seconds.', deltaSeconds); } }; // TODO: docs cli.runCommand = function(cb) { var cmd; var opts = env.opts; Iif (opts.help) { cmd = cli.printHelp; } else Eif (opts.test) { cmd = cli.runTests; } else if (opts.version) { cmd = cli.printVersion; } else { cmd = cli.main; } cmd().then(function (errorCode) { Iif (!errorCode && props.shouldExitWithError) { errorCode = 1; } cb(errorCode); }); }; // TODO: docs cli.printHelp = function() { cli.printVersion(); console.log( '\n' + require('jsdoc/opts/args').help() + '\n' ); console.log('Visit http://usejsdoc.org for more information.'); return Promise.resolve(0); }; // TODO: docs cli.runTests = function() { var path = require('jsdoc/path'); var runner = Promise.promisify(require( path.join(env.dirname, 'test/runner') )); console.log('Running tests...'); return runner(); }; // TODO: docs cli.getVersion = function() { return 'JSDoc ' + env.version.number + ' (' + env.version.revision + ')'; }; // TODO: docs cli.printVersion = function() { console.log( cli.getVersion() ); return Promise.resolve(0); }; // TODO: docs cli.main = function() { cli.scanFiles(); if (env.sourceFiles.length === 0) { console.log('There are no input files to process.\n'); return cli.printHelp(); } else { return cli.createParser() .parseFiles() .processParseResults() .then(function () { env.run.finish = new Date(); return 0; }); } }; function readPackageJson(filepath) { var fs = require('jsdoc/fs'); try { return stripJsonComments( fs.readFileSync(filepath, 'utf8') ); } catch (e) { logger.error('Unable to read the package file "%s"', filepath); return null; } } function buildSourceList() { var fs = require('jsdoc/fs'); var Readme = require('jsdoc/readme'); var packageJson; var readmeHtml; var sourceFile; var sourceFiles = env.opts._ ? env.opts._.slice(0) : []; if (env.conf.source && env.conf.source.include) { sourceFiles = sourceFiles.concat(env.conf.source.include); } // load the user-specified package/README files, if any if (env.opts.package) { packageJson = readPackageJson(env.opts.package); } if (env.opts.readme) { readmeHtml = new Readme(env.opts.readme).html; } // source files named `package.json` or `README.md` get special treatment, unless the user // explicitly specified a package and/or README file for (var i = 0, l = sourceFiles.length; i < l; i++) { sourceFile = sourceFiles[i]; if ( !env.opts.package && /\bpackage\.json$/i.test(sourceFile) ) { packageJson = readPackageJson(sourceFile); sourceFiles.splice(i--, 1); } if ( !env.opts.readme && /(\bREADME|\.md)$/i.test(sourceFile) ) { readmeHtml = new Readme(sourceFile).html; sourceFiles.splice(i--, 1); } } props.packageJson = packageJson; env.opts.readme = readmeHtml; return sourceFiles; } // TODO: docs cli.scanFiles = function() { var Filter = require('jsdoc/src/filter').Filter; var filter; env.opts._ = buildSourceList(); // are there any files to scan and parse? if (env.conf.source && env.opts._.length) { filter = new Filter(env.conf.source); env.sourceFiles = app.jsdoc.scanner.scan(env.opts._, (env.opts.recurse ? 10 : undefined), filter); } return cli; }; function resolvePluginPaths(paths) { var path = require('jsdoc/path'); var pluginPaths = []; paths.forEach(function(plugin) { var basename = path.basename(plugin); var dirname = path.dirname(plugin); var pluginPath = path.getResourcePath(dirname); if (!pluginPath) { logger.error('Unable to find the plugin "%s"', plugin); return; } pluginPaths.push( path.join(pluginPath, basename) ); }); return pluginPaths; } cli.createParser = function() { var handlers = require('jsdoc/src/handlers'); var parser = require('jsdoc/src/parser'); var path = require('jsdoc/path'); var plugins = require('jsdoc/plugins'); app.jsdoc.parser = parser.createParser(env.conf.parser); if (env.conf.plugins) { env.conf.plugins = resolvePluginPaths(env.conf.plugins); plugins.installPlugins(env.conf.plugins, app.jsdoc.parser); } handlers.attachTo(app.jsdoc.parser); return cli; }; cli.parseFiles = function() { var augment = require('jsdoc/augment'); var borrow = require('jsdoc/borrow'); var Package = require('jsdoc/package').Package; var docs; var packageDocs; props.docs = docs = app.jsdoc.parser.parse(env.sourceFiles, env.opts.encoding); // If there is no package.json, just create an empty package packageDocs = new Package(props.packageJson); packageDocs.files = env.sourceFiles || []; docs.push(packageDocs); logger.debug('Indexing doclets...'); borrow.indexAll(docs); logger.debug('Adding inherited symbols, mixins, and interface implementations...'); augment.augmentAll(docs); logger.debug('Adding borrowed doclets...'); borrow.resolveBorrows(docs); logger.debug('Post-processing complete.'); app.jsdoc.parser.fireProcessingComplete(docs); return cli; }; cli.processParseResults = function() { if (env.opts.explain) { cli.dumpParseResults(); return Promise.resolve(); } else { cli.resolveTutorials(); return cli.generateDocs(); } }; cli.dumpParseResults = function() { console.log(require('jsdoc/util/dumper').dump(props.docs)); return cli; }; cli.resolveTutorials = function() { var resolver = require('jsdoc/tutorial/resolver'); if (env.opts.tutorials) { resolver.load(env.opts.tutorials); resolver.resolve(); } return cli; }; cli.generateDocs = function() { var path = require('jsdoc/path'); var resolver = require('jsdoc/tutorial/resolver'); var taffy = require('taffydb').taffy; var template; env.opts.template = (function() { var publish = env.opts.template || 'templates/default'; var templatePath = path.getResourcePath(publish); // if we didn't find the template, keep the user-specified value so the error message is // useful return templatePath || env.opts.template; })(); try { template = require(env.opts.template + '/publish'); } catch(e) { logger.fatal('Unable to load template: ' + e.message || e); } // templates should include a publish.js file that exports a "publish" function if (template.publish && typeof template.publish === 'function') { logger.info('Generating output files...'); var publishPromise = template.publish( taffy(props.docs), env.opts, resolver.root ); return Promise.resolve(publishPromise); } else { logger.fatal(env.opts.template + ' does not export a "publish" function. Global ' + '"publish" functions are no longer supported.'); } return Promise.resolve(); }; // TODO: docs cli.exit = function(exitCode, message) { Iif (message && exitCode > 0) { console.error(message); } process.exit(exitCode || 0); }; return cli; })(); |