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

org.coode.oppl.RegExpConstraint Maven / Gradle / Ivy

/**
 * Copyright (C) 2008, University of Manchester
 *
 * Modifications to the initial code base are copyright of their
 * respective authors, or their employers as appropriate.  Authorship
 * of the modifications may be determined from the ChangeLog placed at
 * the end of this file.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.

 * This library 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.

 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
package org.coode.oppl;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.coode.oppl.function.OPPLFunction;
import org.coode.oppl.function.ValueComputationParameters;
import org.coode.oppl.rendering.ManchesterSyntaxRenderer;
import org.semanticweb.owlapi.model.OWLObject;
import org.semanticweb.owlapi.util.ShortFormProvider;

/** Constraint that verifies whether a variable values are contained in a
 * collection
 * 
 * @author Luigi Iannone */
public class RegExpConstraint implements AbstractConstraint {
    private final Variable variable;
    private final OPPLFunction expression;
    private final ConstraintSystem constraintSystem;

    /** @param variable
     *            variable
     * @param exp
     *            exp
     * @param cs
     *            cs */
    public RegExpConstraint(Variable variable, OPPLFunction exp,
            ConstraintSystem cs) {
        this.variable = variable;
        constraintSystem = cs;
        expression = exp;
    }

    @Override
    public  O accept(ConstraintVisitorEx visitor) {
        return visitor.visit(this);
    }

    /** @return the variable */
    public Variable getVariable() {
        return variable;
    }

    /** @param parameters
     *            parameters
     * @return true if matched */
    public boolean matches(ValueComputationParameters parameters) {
        OWLObject assignmentValue = parameters.getBindingNode().getAssignmentValue(
                getVariable(), parameters);
        boolean found = false;
        if (assignmentValue != null) {
            Pattern p = getExpression().compute(parameters);
            ManchesterSyntaxRenderer renderer = parameters.getConstraintSystem()
                    .getOPPLFactory().getManchesterSyntaxRenderer(getConstraintSystem());
            assignmentValue.accept(renderer);
            Matcher matcher = p.matcher(renderer.toString());
            found = matcher.matches();
        }
        return found;
    }

    @Override
    public String render(ShortFormProvider shortFormProvider) {
        return variable.getName() + " Match(" + getExpression().render(shortFormProvider)
                + ")";
    }

    @Override
    public String toString() {
        return variable.getName() + " Match("
                + getExpression().render(getConstraintSystem()) + ")";
    }

    @Override
    public String render(ConstraintSystem cs) {
        return toString();
    }

    @Override
    public void accept(ConstraintVisitor visitor) {
        visitor.visitInCollectionConstraint(this);
    }

    /** @return the constraintSystem */
    public ConstraintSystem getConstraintSystem() {
        return constraintSystem;
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + (expression == null ? 0 : expression.hashCode());
        result = prime * result + (variable == null ? 0 : variable.hashCode());
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (this.getClass() != obj.getClass()) {
            return false;
        }
        RegExpConstraint other = (RegExpConstraint) obj;
        if (expression == null) {
            if (other.expression != null) {
                return false;
            }
        } else if (!expression.equals(other.expression)) {
            return false;
        }
        if (variable == null) {
            if (other.variable != null) {
                return false;
            }
        } else if (!variable.equals(other.variable)) {
            return false;
        }
        return true;
    }

    /** @return the expression */
    public OPPLFunction getExpression() {
        return expression;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy