// // Author: Yves Lafon // // (c) COPYRIGHT MIT, ERCIM, Keio, Beihang, 2018. // Please first read the full copyright statement in file COPYRIGHT.html package org.w3c.css.properties.css3.fontface; 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.CssString; import org.w3c.css.values.CssTypes; import org.w3c.css.values.CssValue; import org.w3c.css.values.external.OpenTypeLanguageSystemTag; import java.util.Arrays; /** * @spec https://www.w3.org/TR/2021/WD-css-fonts-4-20210729/#descdef-font-face-font-language-override * @see org.w3c.css.properties.css3.CssFontLanguageOverride * @see org.w3c.css.values.external.OpenTypeLanguageSystemTag */ public class CssFontLanguageOverride extends org.w3c.css.properties.css.fontface.CssFontLanguageOverride { public static final CssIdent[] allowed_values; static { String[] _allowed_values = {"normal"}; allowed_values = new CssIdent[_allowed_values.length]; int i = 0; for (String s : _allowed_values) { allowed_values[i++] = CssIdent.getIdent(s); } } public static CssIdent getAllowedIdent(CssIdent ident) { for (CssIdent id : allowed_values) { if (id.equals(ident)) { return id; } } return null; } /** * Create a new CssFontLanguageOverride */ public CssFontLanguageOverride() { value = initial; } /** * Creates a new CssFontLanguageOverride * * @param expression The expression for this property * @throws InvalidParamException Expressions are incorrect */ public CssFontLanguageOverride(ApplContext ac, CssExpression expression, boolean check) throws InvalidParamException { if (check && expression.getCount() > 1) { throw new InvalidParamException("unrecognize", ac); } setByUser(); char op; CssValue val; val = expression.getValue(); op = expression.getOperator(); switch (val.getType()) { case CssTypes.CSS_STRING: CssString s = val.getString(); int l = s.toString().length(); // limit of 4characters + two surrounding quotes if ((l < 4) || (l > 6)) { throw new InvalidParamException("value", expression.getValue().toString(), getPropertyName(), ac); } // we extract the 2, 3 or 4 letters from the quotes... String tag = s.toString().substring(1, l - 1).toUpperCase(); // align to 4 switch (tag.length()) { case 1: tag = tag.concat(" "); break; case 2: tag = tag.concat(" "); break; case 3: tag = tag.concat(" "); break; default: } // valid values are specified here. int idx = Arrays.binarySearch(OpenTypeLanguageSystemTag.tags, tag); if (idx < 0) { // TODO specific error code throw new InvalidParamException("value", expression.getValue().toString(), getPropertyName(), ac); } // check if deprecated idx = Arrays.binarySearch(OpenTypeLanguageSystemTag.deprecated_tags, tag); if (idx >= 0) { ac.getFrame().addWarning("deprecated", tag); } value = val; break; case CssTypes.CSS_IDENT: if (getAllowedIdent(val.getIdent()) != null) { value = val; break; } default: throw new InvalidParamException("value", val.toString(), getPropertyName(), ac); } expression.next(); } public CssFontLanguageOverride(ApplContext ac, CssExpression expression) throws InvalidParamException { this(ac, expression, false); } }