
w3c.css.properties.css3.CssContain Maven / Gradle / Ivy
//
// Author: Yves Lafon
//
// (c) COPYRIGHT MIT, ERCIM, Keio, Beihang, 2017.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.css.properties.css3;
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/2017/CR-css-contain-1-20170808/#propdef-contain
*/
public class CssContain extends org.w3c.css.properties.css.CssContain {
public static final CssIdent[] allowed_single_values;
public static final CssIdent[] allowed_multiple_values;
public static final CssIdent auto = CssIdent.getIdent("auto");
static {
String[] _allowed_single_values = {"none", "strict", "content"};
allowed_single_values = new CssIdent[_allowed_single_values.length];
int i = 0;
for (String s : _allowed_single_values) {
allowed_single_values[i++] = CssIdent.getIdent(s);
}
String[] _allowed_multiple_values = {"size", "layout", "style", "paint"};
i = 0;
allowed_multiple_values = new CssIdent[_allowed_multiple_values.length];
for (String s : _allowed_multiple_values) {
allowed_multiple_values[i++] = CssIdent.getIdent(s);
}
}
public static CssIdent getAllowedSingleIdent(CssIdent ident) {
for (CssIdent id : allowed_single_values) {
if (id.equals(ident)) {
return id;
}
}
return null;
}
public static CssIdent getAllowedMultipleIdent(CssIdent ident) {
for (CssIdent id : allowed_multiple_values) {
if (id.equals(ident)) {
return id;
}
}
return null;
}
/**
* Create a new CssContain
*/
public CssContain() {
value = initial;
}
/**
* Creates a new CssContain
*
* @param expression The expression for this property
* @throws org.w3c.css.util.InvalidParamException
* Expressions are incorrect
*/
public CssContain(ApplContext ac, CssExpression expression, boolean check)
throws InvalidParamException {
CssValue val;
char op;
CssIdent id, ident;
boolean got_single = false;
setByUser();
ArrayList values = new ArrayList<>();
while (!expression.end()) {
val = expression.getValue();
op = expression.getOperator();
if (val.getType() != CssTypes.CSS_IDENT) {
throw new InvalidParamException("value",
val.toString(),
getPropertyName(), ac);
}
id = (CssIdent) val;
if (id.equals(inherit)) {
if (expression.getCount() > 1) {
throw new InvalidParamException("value",
expression.getValue(),
getPropertyName(), ac);
}
values.add(inherit);
expression.next();
continue;
}
ident = getAllowedSingleIdent(id);
if (ident != null) {
if (expression.getCount() > 1) {
throw new InvalidParamException("value",
expression.getValue(),
getPropertyName(), ac);
}
values.add(ident);
expression.next();
continue;
}
ident = getAllowedMultipleIdent(id);
if (ident == null) {
throw new InvalidParamException("value",
val.toString(),
getPropertyName(), ac);
}
// check possible duplication
if (values.contains(ident)) {
throw new InvalidParamException("value",
expression.getValue(),
getPropertyName(), ac);
}
values.add(ident);
if (op != SPACE) {
throw new InvalidParamException("operator", op,
getPropertyName(), ac);
}
expression.next();
}
// no need to check for single values as it was done earlier.
value = (values.size() == 1) ? values.get(0) : new CssValueList(values);
}
public CssContain(ApplContext ac, CssExpression expression)
throws InvalidParamException {
this(ac, expression, false);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy