lucene
Version:
Lucene query parser and formatter for JavaScript created using PEG.js
105 lines (84 loc) • 1.85 kB
JavaScript
var implicit = '<implicit>';
module.exports = function toString(ast) {
if (!ast) {
return '';
}
var result = '';
if (ast.start != null) {
result += (ast.parenthesized ? '(' : '') + ast.start + ' ';
}
if (ast.field && ast.field !== implicit) {
result += ast.field + ':';
}
if (ast.left) {
if (ast.parenthesized && !ast.start) {
result += '(';
}
result += toString(ast.left);
if (ast.parenthesized && !ast.right) {
result += ')';
}
}
if (ast.operator) {
if (ast.left) {
result += ' ';
}
if (ast.operator !== implicit) {
result += ast.operator;
}
}
if (ast.right) {
if (ast.operator && ast.operator !== implicit) {
result += ' ';
}
result += toString(ast.right);
if (ast.parenthesized) {
result += ')';
}
}
if (ast.term || (ast.term === '' && ast.quoted)) {
if (ast.prefix) {
result += ast.prefix;
}
if (ast.quoted) {
result += '"';
result += ast.term;
result += '"';
} else if (ast.regex) {
result += '/';
result += ast.term;
result += '/';
} else {
result += ast.term;
}
if (ast.proximity != null) {
result += '~' + ast.proximity;
}
if (ast.boost != null) {
result += '^' + ast.boost;
}
}
if (ast.term_min) {
if (ast.inclusive === 'both' || ast.inclusive === 'left') {
result += '[';
} else {
result += '{';
}
result += ast.term_min;
result += ' TO ';
result += ast.term_max;
if (ast.inclusive === 'both' || ast.inclusive === 'right') {
result += ']';
} else {
result += '}';
}
}
if (ast.similarity) {
result += '~';
if (ast.similarity !== 0.5) {
result += ast.similarity;
}
}
return result;
};
;