123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- /*
- * Copyright (C) 2024 Puter Technologies Inc.
- *
- * This file is part of Phoenix Shell.
- *
- * Phoenix Shell is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published
- * by the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- export class Parser {
- constructor ({
- impl,
- assign,
- }) {
- this.impl = impl;
- this.assign = assign ?? {};
- }
- parse (lexer) {
- const unadaptedResult = this.impl.parse(lexer);
- const pr = unadaptedResult instanceof ParseResult
- ? unadaptedResult : new ParseResult(unadaptedResult);
- if ( pr.status === ParseResult.VALUE ) {
- pr.value = {
- ...pr.value,
- ...this.assign,
- };
- }
- return pr;
- }
- }
- export class ParseResult {
- static UNRECOGNIZED = { name: 'unrecognized' };
- static VALUE = { name: 'value' };
- static INVALID = { name: 'invalid' };
- constructor (value, opt_status) {
- if (
- value === ParseResult.UNRECOGNIZED ||
- value === ParseResult.INVALID
- ) {
- this.status = value;
- return;
- }
- this.status = opt_status ?? (
- value === undefined
- ? ParseResult.UNRECOGNIZED
- : ParseResult.VALUE
- );
- this.value = value;
- }
- }
- class ConcreteSyntaxParserDecorator {
- constructor (delegate) {
- this.delegate = delegate;
- }
- parse (lexer, ...a) {
- const start = lexer.seqNo;
- const result = this.delegate.parse(lexer, ...a);
- if ( result.status === ParseResult.VALUE ) {
- const end = lexer.seqNo;
- result.value.$cst = { start, end };
- }
- return result;
- }
- }
- class RememberSourceParserDecorator {
- constructor (delegate) {
- this.delegate = delegate;
- }
- parse (lexer, ...a) {
- const start = lexer.seqNo;
- const result = this.delegate.parse(lexer, ...a);
- if ( result.status === ParseResult.VALUE ) {
- const end = lexer.seqNo;
- result.value.$source = lexer.reach(start, end);
- }
- return result;
- }
- }
- export class ParserFactory {
- constructor () {
- this.concrete = false;
- this.rememberSource = false;
- }
- decorate (obj) {
- if ( this.concrete ) {
- obj = new ConcreteSyntaxParserDecorator(obj);
- }
- if ( this.rememberSource ) {
- obj = new RememberSourceParserDecorator(obj);
- }
- return obj;
- }
- create (cls, parserParams, resultParams) {
- parserParams = parserParams ?? {};
- resultParams = resultParams ?? {};
- resultParams.assign = resultParams.assign ?? {};
-
- const impl = new cls(parserParams);
- const parser = new Parser({
- impl,
- assign: resultParams.assign
- });
-
- // return parser;
- return this.decorate(parser);
- }
- }
- export class SingleParserFactory {
- create () {
- throw new Error('abstract create() must be implemented');
- }
- }
- export class AcceptParserUtil {
- static adapt (parser) {
- if ( parser === undefined ) return undefined;
- if ( parser instanceof SingleParserFactory ) {
- parser = parser.create();
- }
- if ( ! (parser instanceof Parser) ) {
- parser = new Parser({ impl: parser });
- }
- return parser;
- }
- }
|