com.openhtmltopdf.css.parser.property.CounterPropertyBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openhtmltopdf-core Show documentation
Show all versions of openhtmltopdf-core Show documentation
Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.
/*
* {{{ header & license
* Copyright (c) 2007 Wisconsin Court System
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* }}}
*/
package com.openhtmltopdf.css.parser.property;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import com.openhtmltopdf.css.constants.CSSName;
import com.openhtmltopdf.css.parser.CSSParseException;
import com.openhtmltopdf.css.parser.CSSPrimitiveValue;
import com.openhtmltopdf.css.parser.CSSValue;
import com.openhtmltopdf.css.parser.CounterData;
import com.openhtmltopdf.css.parser.PropertyValue;
import com.openhtmltopdf.css.sheet.PropertyDeclaration;
public abstract class CounterPropertyBuilder extends AbstractPropertyBuilder {
// [ ? ]+ | none | inherit
protected abstract int getDefaultValue();
// XXX returns a PropertyValue of type VALUE_TYPE_LIST, but the List contains
// CounterData objects and not PropertyValue objects
@Override
public List buildDeclarations(CSSName cssName, List values, int origin, boolean important, boolean inheritAllowed) {
if (values.size() == 1) {
PropertyValue value = values.get(0);
checkInheritAllowed(value, inheritAllowed);
if (value.getCssValueType() == CSSValue.CSS_INHERIT) {
return Collections.singletonList(new PropertyDeclaration(cssName, value, important, origin));
} else if (value.getPrimitiveType() == CSSPrimitiveValue.CSS_IDENT) {
if (value.getCssText().equals("none")) {
return Collections.singletonList(new PropertyDeclaration(cssName, value, important, origin));
} else {
CounterData data = new CounterData(
value.getStringValue(),
getDefaultValue());
return Collections.singletonList(
new PropertyDeclaration(cssName, new PropertyValue(
Collections.singletonList(data), true), important, origin));
}
}
throw new CSSParseException("The syntax of the " + cssName + " property is invalid", -1);
} else {
List result = new ArrayList<>();
for (int i = 0; i < values.size(); i++) {
PropertyValue value = values.get(i);
if (value.getPrimitiveType() == CSSPrimitiveValue.CSS_IDENT) {
String name = value.getStringValue();
int cValue = getDefaultValue();
if (i < values.size() - 1) {
PropertyValue next = values.get(i+1);
if (next.getPrimitiveType() == CSSPrimitiveValue.CSS_NUMBER) {
checkNumberIsInteger(cssName, next);
cValue = (int)next.getFloatValue();
}
i++;
}
result.add(new CounterData(name, cValue));
} else {
throw new CSSParseException("The syntax of the " + cssName + " property is invalid", -1);
}
}
return Collections.singletonList(
new PropertyDeclaration(cssName, new PropertyValue(result, true), important, origin));
}
}
private void checkNumberIsInteger(CSSName cssName, CSSPrimitiveValue value) {
if ((int)value.getFloatValue(CSSPrimitiveValue.CSS_NUMBER) !=
Math.round(value.getFloatValue(CSSPrimitiveValue.CSS_NUMBER))) {
throw new CSSParseException("The value " + value.getFloatValue(CSSPrimitiveValue.CSS_NUMBER) + " in " +
cssName + " must be an integer", -1);
}
}
public static class CounterReset extends CounterPropertyBuilder {
@Override
protected int getDefaultValue() {
return 0;
}
}
public static class CounterIncrement extends CounterPropertyBuilder {
@Override
protected int getDefaultValue() {
return 1;
}
}
}