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

com.github.sebhoss.contract.verifier.JEXLContractContext Maven / Gradle / Ivy

The newest version!
/*
 * Copyright © 2012 Sebastian Hoß 
 * This work is free. You can redistribute it and/or modify it under the
 * terms of the Do What The Fuck You Want To Public License, Version 2,
 * as published by Sam Hocevar. See http://www.wtfpl.net/ for more details.
 */
package com.github.sebhoss.contract.verifier;

import com.github.sebhoss.contract.annotation.Clause;
import com.github.sebhoss.contract.annotation.JEXL;

import org.apache.commons.jexl2.Expression;
import org.apache.commons.jexl2.JexlContext;
import org.apache.commons.jexl2.JexlEngine;

/**
 * JEXL-based implementation of the {@link ContractContext}.
 */
@JEXL
public final class JEXLContractContext implements ContractContext {

    private final JexlContext jexlContext;
    private final JexlEngine  jexlEngine;

    JEXLContractContext(final JexlContext jexlContext, final JexlEngine jexlEngine) {
        this.jexlContext = jexlContext;
        this.jexlEngine = jexlEngine;
    }

    @Override
    public void setInvocationResult(final Object invocationResult) {
        jexlContext.set("_" + Clause.RETURN, invocationResult); //$NON-NLS-1$
    }

    @Override
    public boolean isInViolationWith(final Clause clause) {
        final Expression expression = jexlEngine.createExpression(clause.value());
        final Object contractValidated = expression.evaluate(jexlContext);

        return Boolean.FALSE.equals(contractValidated);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy