123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699 |
- /*!
- * Jade - Parser
- * Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca>
- * MIT Licensed
- */
- /**
- * Module dependencies.
- */
- var Lexer = require('./lexer')
- , nodes = require('./nodes')
- , utils = require('./utils')
- , filters = require('./filters')
- , path = require('path')
- , extname = path.extname;
- /**
- * Initialize `Parser` with the given input `str` and `filename`.
- *
- * @param {String} str
- * @param {String} filename
- * @param {Object} options
- * @api public
- */
- var Parser = exports = module.exports = function Parser(str, filename, options){
- this.input = str;
- this.lexer = new Lexer(str, options);
- this.filename = filename;
- this.blocks = {};
- this.mixins = {};
- this.options = options;
- this.contexts = [this];
- };
- /**
- * Tags that may not contain tags.
- */
- var textOnly = exports.textOnly = ['script', 'style'];
- /**
- * Parser prototype.
- */
- Parser.prototype = {
- /**
- * Push `parser` onto the context stack,
- * or pop and return a `Parser`.
- */
- context: function(parser){
- if (parser) {
- this.contexts.push(parser);
- } else {
- return this.contexts.pop();
- }
- },
- /**
- * Return the next token object.
- *
- * @return {Object}
- * @api private
- */
- advance: function(){
- return this.lexer.advance();
- },
- /**
- * Skip `n` tokens.
- *
- * @param {Number} n
- * @api private
- */
- skip: function(n){
- while (n--) this.advance();
- },
- /**
- * Single token lookahead.
- *
- * @return {Object}
- * @api private
- */
- peek: function() {
- return this.lookahead(1);
- },
- /**
- * Return lexer lineno.
- *
- * @return {Number}
- * @api private
- */
- line: function() {
- return this.lexer.lineno;
- },
- /**
- * `n` token lookahead.
- *
- * @param {Number} n
- * @return {Object}
- * @api private
- */
- lookahead: function(n){
- return this.lexer.lookahead(n);
- },
- /**
- * Parse input returning a string of js for evaluation.
- *
- * @return {String}
- * @api public
- */
- parse: function(){
- var block = new nodes.Block, parser;
- block.line = this.line();
- while ('eos' != this.peek().type) {
- if ('newline' == this.peek().type) {
- this.advance();
- } else {
- block.push(this.parseExpr());
- }
- }
- if (parser = this.extending) {
- this.context(parser);
- var ast = parser.parse();
- this.context();
- // hoist mixins
- for (var name in this.mixins)
- ast.unshift(this.mixins[name]);
- return ast;
- }
- return block;
- },
- /**
- * Expect the given type, or throw an exception.
- *
- * @param {String} type
- * @api private
- */
- expect: function(type){
- if (this.peek().type === type) {
- return this.advance();
- } else {
- throw new Error('expected "' + type + '", but got "' + this.peek().type + '"');
- }
- },
- /**
- * Accept the given `type`.
- *
- * @param {String} type
- * @api private
- */
- accept: function(type){
- if (this.peek().type === type) {
- return this.advance();
- }
- },
- /**
- * tag
- * | doctype
- * | mixin
- * | include
- * | filter
- * | comment
- * | text
- * | each
- * | code
- * | yield
- * | id
- * | class
- * | interpolation
- */
- parseExpr: function(){
- switch (this.peek().type) {
- case 'tag':
- return this.parseTag();
- case 'mixin':
- return this.parseMixin();
- case 'block':
- return this.parseBlock();
- case 'case':
- return this.parseCase();
- case 'when':
- return this.parseWhen();
- case 'default':
- return this.parseDefault();
- case 'extends':
- return this.parseExtends();
- case 'include':
- return this.parseInclude();
- case 'doctype':
- return this.parseDoctype();
- case 'filter':
- return this.parseFilter();
- case 'comment':
- return this.parseComment();
- case 'text':
- return this.parseText();
- case 'each':
- return this.parseEach();
- case 'code':
- return this.parseCode();
- case 'call':
- return this.parseCall();
- case 'interpolation':
- return this.parseInterpolation();
- case 'yield':
- this.advance();
- var block = new nodes.Block;
- block.yield = true;
- return block;
- case 'id':
- case 'class':
- var tok = this.advance();
- this.lexer.defer(this.lexer.tok('tag', 'div'));
- this.lexer.defer(tok);
- return this.parseExpr();
- default:
- throw new Error('unexpected token "' + this.peek().type + '"');
- }
- },
- /**
- * Text
- */
- parseText: function(){
- var tok = this.expect('text');
- var node = new nodes.Text(tok.val);
- node.line = this.line();
- return node;
- },
- /**
- * ':' expr
- * | block
- */
- parseBlockExpansion: function(){
- if (':' == this.peek().type) {
- this.advance();
- return new nodes.Block(this.parseExpr());
- } else {
- return this.block();
- }
- },
- /**
- * case
- */
- parseCase: function(){
- var val = this.expect('case').val;
- var node = new nodes.Case(val);
- node.line = this.line();
- node.block = this.block();
- return node;
- },
- /**
- * when
- */
- parseWhen: function(){
- var val = this.expect('when').val
- return new nodes.Case.When(val, this.parseBlockExpansion());
- },
- /**
- * default
- */
- parseDefault: function(){
- this.expect('default');
- return new nodes.Case.When('default', this.parseBlockExpansion());
- },
- /**
- * code
- */
- parseCode: function(){
- var tok = this.expect('code');
- var node = new nodes.Code(tok.val, tok.buffer, tok.escape);
- var block;
- var i = 1;
- node.line = this.line();
- while (this.lookahead(i) && 'newline' == this.lookahead(i).type) ++i;
- block = 'indent' == this.lookahead(i).type;
- if (block) {
- this.skip(i-1);
- node.block = this.block();
- }
- return node;
- },
- /**
- * comment
- */
- parseComment: function(){
- var tok = this.expect('comment');
- var node;
- if ('indent' == this.peek().type) {
- node = new nodes.BlockComment(tok.val, this.block(), tok.buffer);
- } else {
- node = new nodes.Comment(tok.val, tok.buffer);
- }
- node.line = this.line();
- return node;
- },
- /**
- * doctype
- */
- parseDoctype: function(){
- var tok = this.expect('doctype');
- var node = new nodes.Doctype(tok.val);
- node.line = this.line();
- return node;
- },
- /**
- * filter attrs? text-block
- */
- parseFilter: function(){
- var tok = this.expect('filter');
- var attrs = this.accept('attrs');
- var block;
- this.lexer.pipeless = true;
- block = this.parseTextBlock();
- this.lexer.pipeless = false;
- var node = new nodes.Filter(tok.val, block, attrs && attrs.attrs);
- node.line = this.line();
- return node;
- },
- /**
- * each block
- */
- parseEach: function(){
- var tok = this.expect('each');
- var node = new nodes.Each(tok.code, tok.val, tok.key);
- node.line = this.line();
- node.block = this.block();
- if (this.peek().type == 'code' && this.peek().val == 'else') {
- this.advance();
- node.alternative = this.block();
- }
- return node;
- },
- /**
- * 'extends' name
- */
- parseExtends: function(){
- var path = require('path');
- var fs = require('fs');
- var dirname = path.dirname;
- var basename = path.basename;
- var join = path.join;
- if (!this.filename)
- throw new Error('the "filename" option is required to extend templates');
- path = this.expect('extends').val.trim();
- var dir = dirname(this.filename);
- path = join(dir, path + '.jade');
- var str = fs.readFileSync(path, 'utf8');
- var parser = new Parser(str, path, this.options);
- parser.blocks = this.blocks;
- parser.contexts = this.contexts;
- this.extending = parser;
- // TODO: null node
- return new nodes.Literal('');
- },
- /**
- * 'block' name block
- */
- parseBlock: function(){
- var block = this.expect('block');
- var mode = block.mode;
- var name = block.val.trim();
- block = 'indent' == this.peek().type
- ? this.block()
- : new nodes.Block(new nodes.Literal(''));
- var prev = this.blocks[name];
- if (prev) {
- switch (prev.mode) {
- case 'append':
- block.nodes = block.nodes.concat(prev.nodes);
- prev = block;
- break;
- case 'prepend':
- block.nodes = prev.nodes.concat(block.nodes);
- prev = block;
- break;
- }
- }
- block.mode = mode;
- return this.blocks[name] = prev || block;
- },
- /**
- * include block?
- */
- parseInclude: function(){
- var path = require('path');
- var fs = require('fs');
- var dirname = path.dirname;
- var basename = path.basename;
- var join = path.join;
- var str;
- path = this.expect('include').val.trim();
- var dir = dirname(this.filename);
- if (!this.filename)
- throw new Error('the "filename" option is required to use includes');
- // no extension
- if (!~basename(path).indexOf('.')) {
- path += '.jade';
- }
- // non-jade
- if ('.jade' != path.substr(-5)) {
- path = join(dir, path);
- str = fs.readFileSync(path, 'utf8').replace(/\r/g, '');
- var ext = extname(path).slice(1);
- var filter = filters[ext];
- if (filter) str = filter(str, { filename: path }).replace(/\\n/g, '\n');
- return new nodes.Literal(str);
- }
- path = join(dir, path);
- str = fs.readFileSync(path, 'utf8');
- var parser = new Parser(str, path, this.options);
- parser.blocks = utils.merge({}, this.blocks);
- parser.mixins = this.mixins;
- this.context(parser);
- var ast = parser.parse();
- this.context();
- ast.filename = path;
- if ('indent' == this.peek().type) {
- ast.includeBlock().push(this.block());
- }
- return ast;
- },
- /**
- * call ident block
- */
- parseCall: function(){
- var tok = this.expect('call');
- var name = tok.val;
- var args = tok.args;
- var mixin = new nodes.Mixin(name, args, new nodes.Block, true);
- this.tag(mixin);
- if (mixin.block.isEmpty()) mixin.block = null;
- return mixin;
- },
- /**
- * mixin block
- */
- parseMixin: function(){
- var tok = this.expect('mixin');
- var name = tok.val;
- var args = tok.args;
- var mixin;
- // definition
- if ('indent' == this.peek().type) {
- mixin = new nodes.Mixin(name, args, this.block(), false);
- this.mixins[name] = mixin;
- return mixin;
- // call
- } else {
- return new nodes.Mixin(name, args, null, true);
- }
- },
- /**
- * indent (text | newline)* outdent
- */
- parseTextBlock: function(){
- var block = new nodes.Block;
- block.line = this.line();
- var spaces = this.expect('indent').val;
- if (null == this._spaces) this._spaces = spaces;
- var indent = Array(spaces - this._spaces + 1).join(' ');
- while ('outdent' != this.peek().type) {
- switch (this.peek().type) {
- case 'newline':
- this.advance();
- break;
- case 'indent':
- this.parseTextBlock().nodes.forEach(function(node){
- block.push(node);
- });
- break;
- default:
- var text = new nodes.Text(indent + this.advance().val);
- text.line = this.line();
- block.push(text);
- }
- }
- if (spaces == this._spaces) this._spaces = null;
- this.expect('outdent');
- return block;
- },
- /**
- * indent expr* outdent
- */
- block: function(){
- var block = new nodes.Block;
- block.line = this.line();
- this.expect('indent');
- while ('outdent' != this.peek().type) {
- if ('newline' == this.peek().type) {
- this.advance();
- } else {
- block.push(this.parseExpr());
- }
- }
- this.expect('outdent');
- return block;
- },
- /**
- * interpolation (attrs | class | id)* (text | code | ':')? newline* block?
- */
- parseInterpolation: function(){
- var tok = this.advance();
- var tag = new nodes.Tag(tok.val);
- tag.buffer = true;
- return this.tag(tag);
- },
- /**
- * tag (attrs | class | id)* (text | code | ':')? newline* block?
- */
- parseTag: function(){
- // ast-filter look-ahead
- var i = 2;
- if ('attrs' == this.lookahead(i).type) ++i;
- var tok = this.advance();
- var tag = new nodes.Tag(tok.val);
- tag.selfClosing = tok.selfClosing;
- return this.tag(tag);
- },
- /**
- * Parse tag.
- */
- tag: function(tag){
- var dot;
- tag.line = this.line();
- // (attrs | class | id)*
- out:
- while (true) {
- switch (this.peek().type) {
- case 'id':
- case 'class':
- var tok = this.advance();
- tag.setAttribute(tok.type, "'" + tok.val + "'");
- continue;
- case 'attrs':
- var tok = this.advance()
- , obj = tok.attrs
- , escaped = tok.escaped
- , names = Object.keys(obj);
- if (tok.selfClosing) tag.selfClosing = true;
- for (var i = 0, len = names.length; i < len; ++i) {
- var name = names[i]
- , val = obj[name];
- tag.setAttribute(name, val, escaped[name]);
- }
- continue;
- default:
- break out;
- }
- }
- // check immediate '.'
- if ('.' == this.peek().val) {
- dot = tag.textOnly = true;
- this.advance();
- }
- // (text | code | ':')?
- switch (this.peek().type) {
- case 'text':
- tag.block.push(this.parseText());
- break;
- case 'code':
- tag.code = this.parseCode();
- break;
- case ':':
- this.advance();
- tag.block = new nodes.Block;
- tag.block.push(this.parseExpr());
- break;
- }
- // newline*
- while ('newline' == this.peek().type) this.advance();
- tag.textOnly = tag.textOnly || ~textOnly.indexOf(tag.name);
- // script special-case
- if ('script' == tag.name) {
- var type = tag.getAttribute('type');
- if (!dot && type && 'text/javascript' != type.replace(/^['"]|['"]$/g, '')) {
- tag.textOnly = false;
- }
- }
- // block?
- if ('indent' == this.peek().type) {
- if (tag.textOnly) {
- this.lexer.pipeless = true;
- tag.block = this.parseTextBlock();
- this.lexer.pipeless = false;
- } else {
- var block = this.block();
- if (tag.block) {
- for (var i = 0, len = block.nodes.length; i < len; ++i) {
- tag.block.push(block.nodes[i]);
- }
- } else {
- tag.block = block;
- }
- }
- }
- return tag;
- }
- };
|