
w3c.css.properties.css3.CssHangingPunctuation Maven / Gradle / Ivy
//
// 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.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.CssOperator;
import org.w3c.css.values.CssTypes;
import org.w3c.css.values.CssValue;
import org.w3c.css.values.CssValueList;
import java.util.ArrayList;
/**
* @spec https://www.w3.org/TR/2017/WD-css-text-3-20170822/#hanging-punctuation-property
*/
public class CssHangingPunctuation extends org.w3c.css.properties.css.CssHangingPunctuation {
public static final CssIdent first, last;
public static final CssIdent[] endValues;
public static final CssIdent none;
static {
first = CssIdent.getIdent("first");
last = CssIdent.getIdent("last");
none = CssIdent.getIdent("none");
String[] _endValues = {"force-end", "allow-end"};
endValues = new CssIdent[_endValues.length];
int i = 0;
for (String s : _endValues) {
endValues[i++] = CssIdent.getIdent(s);
}
}
public static final CssIdent getEndValue(CssIdent ident) {
for (CssIdent id : endValues) {
if (id.equals(ident)) {
return id;
}
}
return null;
}
/**
* Create a new CssHangingPunctuation
*/
public CssHangingPunctuation() {
}
/**
* Creates a new CssHangingPunctuation
*
* @param expression The expression for this property
* @throws org.w3c.css.util.InvalidParamException
* Expressions are incorrect
*/
public CssHangingPunctuation(ApplContext ac, CssExpression expression, boolean check)
throws InvalidParamException {
if (check && expression.getCount() > 3) {
throw new InvalidParamException("unrecognize", ac);
}
setByUser();
CssValue val;
char op;
CssIdent firstValue = null;
CssIdent lastValue = null;
CssIdent endValue = null;
val = expression.getValue();
op = expression.getOperator();
if (val.getType() != CssTypes.CSS_IDENT) {
throw new InvalidParamException("value",
val.toString(),
getPropertyName(), ac);
}
CssIdent ident = (CssIdent) val;
if (inherit.equals(ident)) {
value = inherit;
if (check && expression.getCount() != 1) {
throw new InvalidParamException("value",
val.toString(),
getPropertyName(), ac);
}
} else if (none.equals(ident)) {
value = none;
if (check && expression.getCount() != 1) {
throw new InvalidParamException("value",
val.toString(),
getPropertyName(), ac);
}
} else {
int nbgot = 0;
do {
boolean match = false;
if (firstValue == null && first.equals(ident)) {
firstValue = first;
match = true;
} else if (lastValue == null && last.equals(ident)) {
lastValue = last;
match = true;
} else {
if (endValue == null) {
endValue = getEndValue(ident);
match = (endValue != null);
}
}
if (!match) {
throw new InvalidParamException("value",
val.toString(),
getPropertyName(), ac);
}
nbgot++;
if (expression.getRemainingCount() == 1 || (!check && nbgot == 3)) {
// if we have both, exit
// (needed only if check == false...
break;
}
if (op != CssOperator.SPACE) {
throw new InvalidParamException("operator",
((new Character(op)).toString()), ac);
}
expression.next();
val = expression.getValue();
op = expression.getOperator();
if (val.getType() != CssTypes.CSS_IDENT) {
throw new InvalidParamException("value",
val.toString(),
getPropertyName(), ac);
}
ident = (CssIdent) val;
} while (!expression.end());
// now construct the value
ArrayList v = new ArrayList(nbgot);
if (firstValue != null) {
v.add(firstValue);
}
if (endValue != null) {
v.add(endValue);
}
if (lastValue != null) {
v.add(lastValue);
}
value = (nbgot > 1) ? new CssValueList(v) : v.get(0);
}
expression.next();
}
public CssHangingPunctuation(ApplContext ac, CssExpression expression)
throws InvalidParamException {
this(ac, expression, false);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy