// $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.CssExpression; import org.w3c.css.values.CssIdent; import org.w3c.css.values.CssTypes; import org.w3c.css.values.CssValue; import org.w3c.css.values.CssValueList; import java.util.ArrayList; import static org.w3c.css.values.CssOperator.SPACE; /** * @spec https://www.w3.org/TR/2021/CRD-css-backgrounds-3-20210726/#propdef-border-color */ public class CssBorderColor extends org.w3c.css.properties.css.CssBorderColor { /** * Create a new CssBorderColor */ public CssBorderColor() { value = initial; top = new CssBorderTopColor(); right = new CssBorderRightColor(); bottom = new CssBorderBottomColor(); left = new CssBorderLeftColor(); } /** * Set the value of the property
* Does not check the number of values * * @param expression The expression for this property * @throws org.w3c.css.util.InvalidParamException The expression is incorrect */ public CssBorderColor(ApplContext ac, CssExpression expression) throws InvalidParamException { this(ac, expression, false); } /** * Set the value of the property * * @param expression The expression for this property * @param check set it to true to check the number of values * @throws org.w3c.css.util.InvalidParamException The expression is incorrect */ public CssBorderColor(ApplContext ac, CssExpression expression, boolean check) throws InvalidParamException { if (check && expression.getCount() > 4) { throw new InvalidParamException("unrecognize", ac); } setByUser(); CssValue val; char op; boolean isCssWide = false; ArrayList res = new ArrayList(); while (res.size() < 4 && !expression.end()) { val = expression.getValue(); op = expression.getOperator(); if ((val.getType() == CssTypes.CSS_IDENT) && CssIdent.isCssWide(val.getIdent())) { res.add(val); isCssWide = true; value = val; } else { try { CssExpression ex = new CssExpression(); ex.addValue(val); // we use the latest version of CssColor, aka CSS3 CssColor tcolor = new CssColor(ac, ex, check); // instead of using getColor, we get the value directly // as we can have idents res.add(tcolor.getValue()); } catch (InvalidParamException e) { throw new InvalidParamException("value", val.toString(), getPropertyName(), ac); } } expression.next(); if (op != SPACE) { throw new InvalidParamException("operator", Character.toString(op), ac); } } // check that inherit is alone if (res.size() > 1 && isCssWide) { throw new InvalidParamException("value", value.toString(), getPropertyName(), ac); } value = (res.size() == 1) ? res.get(0) : new CssValueList(res); // now assign the computed values... top = new CssBorderTopColor(); right = new CssBorderRightColor(); bottom = new CssBorderBottomColor(); left = new CssBorderLeftColor(); switch (res.size()) { case 1: top.value = left.value = right.value = bottom.value = res.get(0); break; case 2: top.value = bottom.value = res.get(0); right.value = left.value = res.get(1); break; case 3: top.value = res.get(0); right.value = left.value = res.get(1); bottom.value = res.get(2); break; case 4: top.value = res.get(0); right.value = res.get(1); bottom.value = res.get(2); left.value = res.get(3); break; default: // can't happen throw new InvalidParamException("unrecognize", ac); } shorthand = true; } /** * Check the border-*-color and returns a value. * It makes sense to do it only once for all the sides, so by having the code here. */ protected static CssValue parseBorderSideColor(ApplContext ac, CssExpression expression, boolean check, CssProperty caller) throws InvalidParamException { if (check && expression.getCount() > 1) { throw new InvalidParamException("unrecognize", ac); } CssValue retval = null; CssValue val = expression.getValue(); if ((val.getType() == CssTypes.CSS_IDENT) && CssIdent.isCssWide(val.getIdent())) { retval = val; } else { try { // we use the latest version of CssColor, aka CSS3 CssColor tcolor = new CssColor(ac, expression, check); // instead of using getColor, we get the value directly // as we can have idents retval = tcolor.getValue(); } catch (InvalidParamException e) { throw new InvalidParamException("value", val.toString(), caller.getPropertyName(), ac); } } expression.next(); return retval; } }