com.itextpdf.styledxmlparser.css.validate.CssDeclarationValidationMaster Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of styled-xml-parser Show documentation
Show all versions of styled-xml-parser Show documentation
Styled XML parser is used by iText modules to parse HTML and XML
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2021 iText Group NV
Authors: Bruno Lowagie, Paulo Soares, et al.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License version 3
as published by the Free Software Foundation with the addition of the
following permission added to Section 15 as permitted in Section 7(a):
FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
OF THIRD PARTY RIGHTS
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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program; if not, see http://www.gnu.org/licenses or write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA, 02110-1301 USA, or download the license from the following URL:
http://itextpdf.com/terms-of-use/
The interactive user interfaces in modified source and object code versions
of this program must display Appropriate Legal Notices, as required under
Section 5 of the GNU Affero General Public License.
In accordance with Section 7(b) of the GNU Affero General Public License,
a covered work must retain the producer line in every PDF that is created
or manipulated using iText.
You can be released from the requirements of the license by purchasing
a commercial license. Buying such a license is mandatory as soon as you
develop commercial activities involving the iText software without
disclosing the source code of your own applications.
These activities include: offering paid services to customers as an ASP,
serving PDFs on the fly in a web application, shipping iText with a closed
source product.
For more information, please contact iText Software Corp. at this
address: [email protected]
*/
package com.itextpdf.styledxmlparser.css.validate;
import com.itextpdf.styledxmlparser.css.CommonCssConstants;
import com.itextpdf.styledxmlparser.css.CssDeclaration;
import com.itextpdf.styledxmlparser.css.validate.impl.datatype.ArrayDataTypeValidator;
import com.itextpdf.styledxmlparser.css.validate.impl.datatype.CssBackgroundValidator;
import com.itextpdf.styledxmlparser.css.validate.impl.datatype.CssBlendModeValidator;
import com.itextpdf.styledxmlparser.css.validate.impl.datatype.CssColorValidator;
import com.itextpdf.styledxmlparser.css.validate.impl.datatype.CssEnumValidator;
import com.itextpdf.styledxmlparser.css.validate.impl.datatype.CssLengthValueValidator;
import com.itextpdf.styledxmlparser.css.validate.impl.datatype.CssNumberValueValidator;
import com.itextpdf.styledxmlparser.css.validate.impl.datatype.CssPercentageValueValidator;
import com.itextpdf.styledxmlparser.css.validate.impl.datatype.CssQuotesValidator;
import com.itextpdf.styledxmlparser.css.validate.impl.datatype.CssTransformValidator;
import com.itextpdf.styledxmlparser.css.validate.impl.declaration.MultiTypeDeclarationValidator;
import com.itextpdf.styledxmlparser.css.validate.impl.declaration.SingleTypeDeclarationValidator;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
/**
* Class that bundles all the CSS declaration validators.
*/
public class CssDeclarationValidationMaster {
/**
* A map containing all the CSS declaration validators.
*/
private static final Map DEFAULT_VALIDATORS;
static {
ICssDeclarationValidator colorCommonValidator = new MultiTypeDeclarationValidator(
new CssEnumValidator(CommonCssConstants.TRANSPARENT, CommonCssConstants.INITIAL,
CommonCssConstants.INHERIT, CommonCssConstants.CURRENTCOLOR),
new CssColorValidator());
final CssEnumValidator normalValidator = new CssEnumValidator(CommonCssConstants.NORMAL);
final CssEnumValidator relativeSizeValidator =
new CssEnumValidator(CommonCssConstants.LARGER, CommonCssConstants.SMALLER);
final CssEnumValidator absoluteSizeValidator = new CssEnumValidator();
absoluteSizeValidator.addAllowedValues(CommonCssConstants.FONT_ABSOLUTE_SIZE_KEYWORDS_VALUES.keySet());
final CssEnumValidator inheritInitialUnsetValidator = new CssEnumValidator(
CommonCssConstants.INHERIT, CommonCssConstants.INITIAL, CommonCssConstants.UNSET);
DEFAULT_VALIDATORS = new HashMap<>();
DEFAULT_VALIDATORS.put(CommonCssConstants.BACKGROUND_COLOR, colorCommonValidator);
DEFAULT_VALIDATORS.put(CommonCssConstants.COLOR, colorCommonValidator);
DEFAULT_VALIDATORS.put(CommonCssConstants.BORDER_COLOR, colorCommonValidator);
DEFAULT_VALIDATORS.put(CommonCssConstants.BORDER_BOTTOM_COLOR, colorCommonValidator);
DEFAULT_VALIDATORS.put(CommonCssConstants.BORDER_TOP_COLOR, colorCommonValidator);
DEFAULT_VALIDATORS.put(CommonCssConstants.BORDER_LEFT_COLOR, colorCommonValidator);
DEFAULT_VALIDATORS.put(CommonCssConstants.BORDER_RIGHT_COLOR, colorCommonValidator);
DEFAULT_VALIDATORS.put(CommonCssConstants.FLOAT,
new SingleTypeDeclarationValidator(
new CssEnumValidator(CommonCssConstants.LEFT, CommonCssConstants.RIGHT, CommonCssConstants.NONE,
CommonCssConstants.INHERIT, CommonCssConstants.CENTER /*center comes from legacy*/)));
DEFAULT_VALIDATORS.put(CommonCssConstants.PAGE_BREAK_BEFORE,
new SingleTypeDeclarationValidator(
new CssEnumValidator(CommonCssConstants.AUTO, CommonCssConstants.ALWAYS,
CommonCssConstants.AVOID, CommonCssConstants.LEFT, CommonCssConstants.RIGHT)));
DEFAULT_VALIDATORS.put(CommonCssConstants.PAGE_BREAK_AFTER,
new SingleTypeDeclarationValidator(
new CssEnumValidator(CommonCssConstants.AUTO, CommonCssConstants.ALWAYS,
CommonCssConstants.AVOID, CommonCssConstants.LEFT, CommonCssConstants.RIGHT)));
DEFAULT_VALIDATORS.put(CommonCssConstants.QUOTES,
new MultiTypeDeclarationValidator(
new CssEnumValidator(CommonCssConstants.INITIAL, CommonCssConstants.INHERIT,
CommonCssConstants.NONE),
new CssQuotesValidator()));
DEFAULT_VALIDATORS.put(CommonCssConstants.TRANSFORM,
new SingleTypeDeclarationValidator(new CssTransformValidator()));
DEFAULT_VALIDATORS.put(CommonCssConstants.FONT_SIZE, new MultiTypeDeclarationValidator(
new CssLengthValueValidator(false), new CssPercentageValueValidator(false), relativeSizeValidator,
absoluteSizeValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.WORD_SPACING, new MultiTypeDeclarationValidator(
new CssLengthValueValidator(true), normalValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.LETTER_SPACING, new MultiTypeDeclarationValidator(
new CssLengthValueValidator(true), normalValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.TEXT_INDENT, new MultiTypeDeclarationValidator(
new CssLengthValueValidator(true), new CssPercentageValueValidator(true),
new CssEnumValidator(CommonCssConstants.EACH_LINE, CommonCssConstants.HANGING,
CommonCssConstants.HANGING + " " + CommonCssConstants.EACH_LINE)));
DEFAULT_VALIDATORS.put(CommonCssConstants.LINE_HEIGHT, new MultiTypeDeclarationValidator(
new CssNumberValueValidator(false), new CssLengthValueValidator(false),
new CssPercentageValueValidator(false),
normalValidator, inheritInitialUnsetValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.COLUMN_GAP, new MultiTypeDeclarationValidator(
new CssLengthValueValidator(false), new CssPercentageValueValidator(false), normalValidator,
inheritInitialUnsetValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.ROW_GAP, new MultiTypeDeclarationValidator(
new CssLengthValueValidator(false), new CssPercentageValueValidator(false), normalValidator,
inheritInitialUnsetValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.FLEX_GROW, new MultiTypeDeclarationValidator(
new CssNumberValueValidator(false), inheritInitialUnsetValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.FLEX_SHRINK, new MultiTypeDeclarationValidator(
new CssNumberValueValidator(false), inheritInitialUnsetValidator));
final CssEnumValidator flexBasisEnumValidator = new CssEnumValidator(CommonCssConstants.AUTO,
CommonCssConstants.CONTENT, CommonCssConstants.MIN_CONTENT, CommonCssConstants.MAX_CONTENT,
CommonCssConstants.FIT_CONTENT);
DEFAULT_VALIDATORS.put(CommonCssConstants.FLEX_BASIS, new MultiTypeDeclarationValidator(
new CssLengthValueValidator(false), new CssPercentageValueValidator(false), flexBasisEnumValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.BACKGROUND_REPEAT, new SingleTypeDeclarationValidator(
new CssBackgroundValidator(CommonCssConstants.BACKGROUND_REPEAT)));
DEFAULT_VALIDATORS.put(CommonCssConstants.BACKGROUND_IMAGE, new SingleTypeDeclarationValidator(
new CssBackgroundValidator(CommonCssConstants.BACKGROUND_IMAGE)));
DEFAULT_VALIDATORS.put(CommonCssConstants.BACKGROUND_POSITION_X, new SingleTypeDeclarationValidator(
new CssBackgroundValidator(CommonCssConstants.BACKGROUND_POSITION_X)));
DEFAULT_VALIDATORS.put(CommonCssConstants.BACKGROUND_POSITION_Y, new SingleTypeDeclarationValidator(
new CssBackgroundValidator(CommonCssConstants.BACKGROUND_POSITION_Y)));
DEFAULT_VALIDATORS.put(CommonCssConstants.BACKGROUND_SIZE, new SingleTypeDeclarationValidator(
new CssBackgroundValidator(CommonCssConstants.BACKGROUND_SIZE)));
DEFAULT_VALIDATORS.put(CommonCssConstants.BACKGROUND_CLIP, new SingleTypeDeclarationValidator(
new CssBackgroundValidator(CommonCssConstants.BACKGROUND_CLIP)));
DEFAULT_VALIDATORS.put(CommonCssConstants.BACKGROUND_ORIGIN, new SingleTypeDeclarationValidator(
new CssBackgroundValidator(CommonCssConstants.BACKGROUND_ORIGIN)));
DEFAULT_VALIDATORS.put(CommonCssConstants.BACKGROUND_BLEND_MODE, new SingleTypeDeclarationValidator(
new ArrayDataTypeValidator(new CssBlendModeValidator())));
DEFAULT_VALIDATORS.put(CommonCssConstants.OVERFLOW_WRAP, new MultiTypeDeclarationValidator(
new CssEnumValidator(CommonCssConstants.ANYWHERE, CommonCssConstants.BREAK_WORD),
normalValidator, inheritInitialUnsetValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.WORD_BREAK, new MultiTypeDeclarationValidator(
new CssEnumValidator(CommonCssConstants.BREAK_ALL, CommonCssConstants.KEEP_ALL,
CommonCssConstants.BREAK_WORD),
normalValidator,
inheritInitialUnsetValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.FLEX_DIRECTION, new MultiTypeDeclarationValidator(
new CssEnumValidator(CommonCssConstants.ROW, CommonCssConstants.ROW_REVERSE,
CommonCssConstants.COLUMN, CommonCssConstants.COLUMN_REVERSE),
inheritInitialUnsetValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.FLEX_WRAP, new MultiTypeDeclarationValidator(
new CssEnumValidator(CommonCssConstants.NOWRAP, CommonCssConstants.WRAP,
CommonCssConstants.WRAP_REVERSE),
inheritInitialUnsetValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.ALIGN_ITEMS, new MultiTypeDeclarationValidator(
normalValidator,
new CssEnumValidator(Arrays.asList(CommonCssConstants.BASELINE),
Arrays.asList(CommonCssConstants.FIRST, CommonCssConstants.LAST)),
new CssEnumValidator(
Arrays.asList(CommonCssConstants.STRETCH, CommonCssConstants.CENTER, CommonCssConstants.START,
CommonCssConstants.END, CommonCssConstants.FLEX_START, CommonCssConstants.FLEX_END,
CommonCssConstants.SELF_START, CommonCssConstants.SELF_END),
Arrays.asList(CommonCssConstants.SAFE, CommonCssConstants.UNSAFE)),
inheritInitialUnsetValidator));
DEFAULT_VALIDATORS.put(CommonCssConstants.JUSTIFY_CONTENT, new MultiTypeDeclarationValidator(
new CssEnumValidator(Arrays.asList(
CommonCssConstants.SPACE_AROUND, CommonCssConstants.SPACE_BETWEEN,
CommonCssConstants.SPACE_EVENLY, CommonCssConstants.STRETCH, CommonCssConstants.NORMAL,
CommonCssConstants.LEFT, CommonCssConstants.RIGHT)),
new CssEnumValidator(Arrays.asList(
CommonCssConstants.CENTER, CommonCssConstants.START, CommonCssConstants.FLEX_START,
CommonCssConstants.SELF_START, CommonCssConstants.END, CommonCssConstants.FLEX_END,
CommonCssConstants.SELF_END),
Arrays.asList(CommonCssConstants.SAFE, CommonCssConstants.UNSAFE)),
inheritInitialUnsetValidator
));
DEFAULT_VALIDATORS.put(CommonCssConstants.JUSTIFY_ITEMS, new MultiTypeDeclarationValidator(
normalValidator,
new CssEnumValidator(Arrays.asList(CommonCssConstants.BASELINE),
Arrays.asList(CommonCssConstants.FIRST, CommonCssConstants.LAST)),
new CssEnumValidator(
Arrays.asList(CommonCssConstants.STRETCH, CommonCssConstants.CENTER, CommonCssConstants.START,
CommonCssConstants.END, CommonCssConstants.FLEX_START, CommonCssConstants.FLEX_END,
CommonCssConstants.SELF_START, CommonCssConstants.SELF_END, CommonCssConstants.LEFT,
CommonCssConstants.RIGHT),
Arrays.asList(CommonCssConstants.SAFE, CommonCssConstants.UNSAFE)),
new CssEnumValidator(CommonCssConstants.LEGACY,
CommonCssConstants.LEGACY + " " + CommonCssConstants.LEFT,
CommonCssConstants.LEGACY + " " + CommonCssConstants.RIGHT,
CommonCssConstants.LEGACY + " " + CommonCssConstants.CENTER),
inheritInitialUnsetValidator));
}
/**
* Creates a new {@code CssDeclarationValidationMaster} instance.
*/
private CssDeclarationValidationMaster() {
}
/**
* Checks a CSS declaration.
*
* @param declaration the CSS declaration
* @return true, if the validation was successful
*/
public static boolean checkDeclaration(CssDeclaration declaration) {
ICssDeclarationValidator validator = DEFAULT_VALIDATORS.get(declaration.getProperty());
return validator == null || validator.isValid(declaration);
}
}