All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.constraint.parser.DrlxParser Maven / Gradle / Ivy

There is a newer version: 7.23.0.Final
Show newest version
/*
 * Copyright (C) 2007-2010 Júlio Vilmar Gesser.
 * Copyright (C) 2011, 2013-2016 The JavaParser Team.
 * Copyright 2019 Red Hat, Inc. and/or its affiliates.
 *
 * This file is part of JavaParser.
 *
 * JavaParser can be used either under the terms of
 * a) the GNU Lesser General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 * b) the terms of the Apache License
 *
 * You should have received a copy of both licenses in LICENCE.LGPL and
 * LICENCE.APACHE. Please refer to those files for details.
 *
 * JavaParser 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 Lesser General Public License for more details.
 *
 * Modified by Red Hat, Inc.
 */

package org.drools.constraint.parser;

import java.util.Collection;
import java.util.function.Function;

import com.github.javaparser.ParseProblemException;
import com.github.javaparser.ParseResult;
import com.github.javaparser.ast.Node;
import org.drools.constraint.parser.ast.expr.DrlxExpression;
import org.drools.constraint.parser.ast.expr.TemporalLiteralExpr;

import static org.drools.constraint.parser.Providers.provider;

public class DrlxParser {

    private static final Function, ParseStart> DRLX_EXPRESSION = (operators) -> parser -> {
        parser.setPointFreeOperators(operators);
        return parser.DrlxExpression();
    };

    private static final ParseStart DRLX_TEMPORAL_LITERAL = parser -> {
        return parser.TemporalLiteral();
    };

    public static final ParseStart buildDrlxParserWithArguments(Collection operators) {
        return DRLX_EXPRESSION.apply(operators);
    }

    public static  T parseExpression(ParseStart parser, final String expression) {
        return (T) simplifiedParse(parser, provider(expression));
    }

    private static  T simplifiedParse(ParseStart context, Provider provider) {
        ParseResult result = new DrlConstraintParser().parse(context, provider);
        if (result.isSuccessful()) {
            return result.getResult().get();
        }
        throw new ParseProblemException(result.getProblems());
    }

    public static  T parseTemporalLiteral(final String expression) {
        return (T) simplifiedParse(DRLX_TEMPORAL_LITERAL, provider(expression));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy