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

w3c.css.properties.css3.CssAnimationTimingFunction Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
// $Id$
// Author: Yves Lafon 
//
// (c) COPYRIGHT MIT, ERCIM and Keio University, 2012.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.css.properties.css3;

import org.w3c.css.properties.css.CssProperty;
import org.w3c.css.util.ApplContext;
import org.w3c.css.util.InvalidParamException;
import org.w3c.css.values.CssCheckableValue;
import org.w3c.css.values.CssExpression;
import org.w3c.css.values.CssFunction;
import org.w3c.css.values.CssIdent;
import org.w3c.css.values.CssLayerList;
import org.w3c.css.values.CssNumber;
import org.w3c.css.values.CssTypes;
import org.w3c.css.values.CssValue;

import java.util.ArrayList;

import static org.w3c.css.values.CssOperator.COMMA;

/**
 * @spec http://www.w3.org/TR/2012/WD-css3-animations-20120403/#animation-timing-function
 */
public class CssAnimationTimingFunction extends org.w3c.css.properties.css.CssAnimationTimingFunction {

    public static final CssIdent[] allowed_values;
    public static final String steps_func = "steps";
    public static final String cubic_bezier_func = "cubic-bezier";
    public static final CssIdent start;
    public static final CssIdent end;

    static {
        String[] _allowed_values = {"ease", "linear", "ease-in",
                "ease-out", "ease-in-out", "step-start", "step-end"};
        allowed_values = new CssIdent[_allowed_values.length];
        int i = 0;
        for (String s : _allowed_values) {
            allowed_values[i++] = CssIdent.getIdent(s);
        }
        // for 'steps function
        start = CssIdent.getIdent("start");
        end = CssIdent.getIdent("end");
    }

    public static CssIdent getAllowedIdent(CssIdent ident) {
        for (CssIdent id : allowed_values) {
            if (id.equals(ident)) {
                return id;
            }
        }
        return null;
    }

    /**
     * Create a new CssAnimationTimingFunction
     */
    public CssAnimationTimingFunction() {
        value = initial;
    }

    /**
     * Creates a new CssAnimationTimingFunction
     *
     * @param expression The expression for this property
     * @throws org.w3c.css.util.InvalidParamException
     *          Expressions are incorrect
     */
    public CssAnimationTimingFunction(ApplContext ac, CssExpression expression, boolean check)
            throws InvalidParamException {
        setByUser();

        CssValue val;
        char op;
        ArrayList values = new ArrayList();
        boolean singleVal = false;
        CssValue sValue = null;

        while (!expression.end()) {
            val = expression.getValue();
            op = expression.getOperator();
            switch (val.getType()) {
                case CssTypes.CSS_FUNCTION:
                    parseFunctionValues(ac, val, this);
                    values.add(val);
                    break;
                case CssTypes.CSS_IDENT:
                    if (inherit.equals(val)) {
                        singleVal = true;
                        sValue = inherit;
                        values.add(inherit);
                        break;
                    } else {
                        CssIdent id = getAllowedIdent((CssIdent) val);
                        if (id != null) {
                            values.add(id);
                            break;
                        }
                        // if not recognized, let it fail
                    }
                default:
                    throw new InvalidParamException("value",
                            val.toString(),
                            getPropertyName(), ac);
            }
            expression.next();
            if (!expression.end() && (op != COMMA)) {
                throw new InvalidParamException("operator",
                        ((new Character(op)).toString()), ac);
            }
        }
        if (singleVal && values.size() > 1) {
            throw new InvalidParamException("value",
                    sValue.toString(),
                    getPropertyName(), ac);
        }
        value = (values.size() == 1) ? values.get(0) : new CssLayerList(values);
    }

    public CssAnimationTimingFunction(ApplContext ac, CssExpression expression)
            throws InvalidParamException {
        this(ac, expression, false);
    }

    // parse and check timing function
    // value might be used later... currently ignored
    private static CssValue parseStepsFunction(ApplContext ac, CssExpression funcparam, CssProperty caller)
            throws InvalidParamException {
        CssValue val;
        char op;

        if (funcparam.getCount() > 2) {
            throw new InvalidParamException("unrecognize", ac);
        }

        ArrayList values = new ArrayList();
        val = funcparam.getValue();
        op = funcparam.getOperator();

        if (val.getType() != CssTypes.CSS_NUMBER) {
            throw new InvalidParamException("value",
                    val.toString(),
                    caller.getPropertyName(), ac);
        }
        // we have a number, continue checks
        CssCheckableValue number = val.getCheckableValue();
        // it must be a >0 integer
        number.checkInteger(ac, caller);
        number.checkStrictPositiveness(ac, caller);
        values.add(val);
        funcparam.next();
        if (!funcparam.end()) {
            // check the second value
            if (op != COMMA) {
                throw new InvalidParamException("operator",
                        ((new Character(op)).toString()), ac);
            }
            val = funcparam.getValue();
            if (val.getType() != CssTypes.CSS_IDENT) {
                throw new InvalidParamException("value",
                        val.toString(),
                        caller.getPropertyName(), ac);
            }
            if (start.equals(val)) {
                values.add(start);
            } else if (end.equals(val)) {
                values.add(end);
            } else {
                // unrecognized ident
                throw new InvalidParamException("value",
                        val.toString(),
                        caller.getPropertyName(), ac);
            }
            funcparam.next();
        }
        return (values.size() == 1) ? values.get(0) : new CssLayerList(values);
    }

    private static CssValue parseCubicBezierFunction(ApplContext ac, CssExpression funcparam, CssProperty caller)
            throws InvalidParamException {
        CssValue val;
        char op;

        if (funcparam.getCount() > 4) {
            throw new InvalidParamException("unrecognize", ac);
        }
        if (funcparam.getCount() < 4) {
            throw new InvalidParamException("few-value", caller.getPropertyName(), ac);
        }

        ArrayList values = new ArrayList();

        for (int i = 0; i < 4; i++) {
            val = funcparam.getValue();
            op = funcparam.getOperator();
            if (val.getType() != CssTypes.CSS_NUMBER) {
                throw new InvalidParamException("value",
                        val.toString(),
                        caller.getPropertyName(), ac);
            }
            // we have a number, continue checks
            CssNumber number = val.getNumber();
            // it must be between 0 and 1 for X [x1,y1,x2,y2]
            if ((i & 0x1) == 0) {
                number.checkPositiveness(ac, caller);
                number.checkLowerEqualThan(ac, 1., caller);
            }
            values.add(val);
            // go to the next item...
            funcparam.next();
            if (!funcparam.end() && (op != COMMA)) {
                throw new InvalidParamException("operator",
                        ((new Character(op)).toString()), ac);
            }
        }
        return new CssLayerList(values);
    }

    protected static CssValue parseFunctionValues(ApplContext ac, CssValue func, CssProperty caller)
            throws InvalidParamException {
        CssFunction function = (CssFunction) func;
        String fname = function.getName().toLowerCase();
        if (steps_func.equals(fname)) {
            return parseStepsFunction(ac, function.getParameters(), caller);
        } else if (cubic_bezier_func.equals(fname)) {
            return parseCubicBezierFunction(ac, function.getParameters(), caller);
        }
        // unrecognized function
        throw new InvalidParamException("value",
                func.toString(),
                caller.getPropertyName(), ac);

    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy