documentation/lib/parse.js
2016-03-14 18:25:57 -07:00

304 lines
7.5 KiB
JavaScript

'use strict';
var doctrine = require('doctrine');
var flatteners = {
'abstract': flattenBoolean,
'access': function (result, tag) {
result.access = tag.access;
},
'alias': flattenName,
'arg': synonym('param'),
'argument': synonym('param'),
'augments': function (result, tag) {
if (!result.augments) {
result.augments = [];
}
result.augments.push(tag);
},
'author': flattenDescription,
// 'borrows'
'callback': flattenDescription,
'class': flattenTypedName,
'classdesc': flattenDescription,
'const': synonym('constant'),
'constant': flattenTypedName,
'constructor': synonym('class'),
// 'constructs'
'copyright': flattenDescription,
// 'default'
'defaultvalue': synonym('default'),
'deprecated': flattenDescription,
'desc': synonym('description'),
'description': flattenDescription,
'emits': synonym('fires'),
// 'enum'
'event': flattenDescription,
'example': function (result, tag) {
if (!tag.description) {
result.errors.push({
message: '@example without code',
commentLineNumber: tag.lineNumber
});
return;
}
if (!result.examples) {
result.examples = [];
}
var example = {
description: tag.description
};
if (tag.caption) {
example.caption = tag.caption;
}
result.examples.push(example);
},
'exception': synonym('throws'),
// 'exports'
'extends': synonym('augments'),
'external': flattenDescription,
'file': flattenDescription,
'fileoverview': synonym('file'),
// 'fires'
'func': synonym('function'),
'function': flattenName,
'global': function (result) {
result.scope = 'global';
},
'host': synonym('external'),
// 'ignore'
// 'implements'
// 'inheritdoc'
'inner': function (result) {
result.scope = 'inner';
},
'instance': function (result) {
result.scope = 'instance';
},
'interface': function (result, tag) {
result.interface = true;
if (tag.description) {
result.name = tag.description;
}
},
'kind': function (result, tag) {
result.kind = tag.kind;
},
'lends': flattenDescription,
'license': flattenDescription,
'linkcode': synonym('link'),
'linkplain': synonym('link'),
// 'listens'
'member': flattenTypedName,
'memberof': flattenDescription,
'method': synonym('function'),
// 'mixes'
'mixin': flattenName,
'module': flattenTypedName,
'name': flattenName,
'namespace': flattenTypedName,
'override': flattenBoolean,
'overview': synonym('file'),
'param': function (result, tag) {
if (!result.params) {
result.params = [];
}
result.params.push(tag);
},
'private': function (result) {
result.access = 'private';
},
'prop': synonym('property'),
'property': function (result, tag) {
if (!result.properties) {
result.properties = [];
}
result.properties.push(tag);
},
'protected': function (result) {
result.access = 'protected';
},
'public': function (result) {
result.access = 'public';
},
'readonly': flattenBoolean,
// 'requires'
'return': synonym('returns'),
'returns': function (result, tag) {
if (!result.returns) {
result.returns = [];
}
result.returns.push(tag);
},
'see': function (result, tag) {
if (!result.sees) {
result.sees = [];
}
result.sees.push(tag.description);
},
'since': flattenDescription,
'static': function (result) {
result.scope = 'static';
},
'summary': flattenDescription,
// 'this'
'throws': function (result, tag) {
if (!result.throws) {
result.throws = [];
}
result.throws.push(tag);
},
'todo': function (result, tag) {
if (!result.todos) {
result.todos = [];
}
result.todos.push(tag.description);
},
// 'tutorial'
// 'type'
'typedef': flattenTypedName,
'var': synonym('member'),
// 'variation'
'version': flattenDescription,
'virtual': synonym('abstract')
};
function synonym(key) {
return function (result, tag) {
return flatteners[key](result, tag, key);
};
}
function flattenBoolean(result, tag, key) {
result[key] = true;
}
function flattenName(result, tag, key) {
result[key] = tag.name;
}
function flattenDescription(result, tag, key) {
result[key] = tag.description;
}
function flattenTypedName(result, tag, key) {
result[key] = {
name: tag.name
};
if (tag.type) {
result[key].type = tag.type;
}
}
/**
* Parse a comment with doctrine, decorate the result with file position and code
* context, handle parsing errors, and fix up various infelicities in the structure
* outputted by doctrine.
*
* The following tags are treated as synonyms for a canonical tag:
*
* * `@virtual` -> `@abstract`
* * `@extends` -> `@augments`
* * `@constructor` -> `@class`
* * `@const` -> `@constant`
* * `@defaultvalue` -> `@default`
* * `@desc` -> `@description`
* * `@host` -> `@external`
* * `@fileoverview`, `@overview` -> `@file`
* * `@emits` -> `@fires`
* * `@func`, `@method` -> `@function`
* * `@var` -> `@member`
* * `@arg`, `@argument` -> `@param`
* * `@prop` -> `@property`
* * `@return` -> `@returns`
* * `@exception` -> `@throws`
* * `@linkcode`, `@linkplain` -> `@link`
*
* The following tags are assumed to be singletons, and are flattened
* to a top-level property on the result whose value is extracted from
* the tag:
*
* * `@name`
* * `@memberof`
* * `@classdesc`
* * `@kind`
* * `@class`
* * `@constant`
* * `@event`
* * `@external`
* * `@file`
* * `@function`
* * `@member`
* * `@mixin`
* * `@module`
* * `@namespace`
* * `@typedef`
* * `@access`
* * `@lends`
* * `@description`
* * `@summary`
* * `@copyright`
* * `@deprecated`
*
* The following tags are flattened to a top-level array-valued property:
*
* * `@param` (to `params` property)
* * `@property` (to `properties` property)
* * `@returns` (to `returns` property)
* * `@augments` (to `augments` property)
* * `@example` (to `examples` property)
* * `@throws` (to `throws` property)
* * `@see` (to `sees` property)
* * `@todo` (to `todos` property)
*
* The `@global`, `@static`, `@instance`, and `@inner` tags are flattened
* to a `scope` property whose value is `"global"`, `"static"`, `"instance"`,
* or `"inner"`.
*
* The `@access`, `@public`, `@protected`, and `@private` tags are flattened
* to an `access` property whose value is `"protected"` or `"private"`.
* The assumed default value is `"public"`, so `@access public` or `@public`
* tags result in no `access` property.
*
* @param {string} comment input to be parsed
* @param {Object} loc location of the input
* @param {Object} context code context of the input
* @return {Comment} an object conforming to the
* [documentation schema](https://github.com/documentationjs/api-json)
*/
function parseJSDoc(comment, loc, context) {
var result = doctrine.parse(comment, {
// have doctrine itself remove the comment asterisks from content
unwrap: true,
// enable parsing of optional parameters in brackets, JSDoc3 style
sloppy: true,
// `recoverable: true` is the only way to get error information out
recoverable: true,
// include line numbers
lineNumbers: true
});
result.loc = loc;
result.context = context;
result.errors = [];
result.tags.forEach(function (tag) {
if (tag.errors) {
for (var j = 0; j < tag.errors.length; j++) {
result.errors.push({message: tag.errors[j]});
}
} else {
(flatteners[tag.title] || function () {})(result, tag, tag.title);
}
});
return result;
}
module.exports = parseJSDoc;