Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* {{{ header & license
* Copyright (c) 2004, 2005 Patrick Wright
*
* 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.constants;
import com.openhtmltopdf.util.XRRuntimeException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Booch utility class for working with ident values in CSS.
*
* @author Patrick Wright
*/
// TODO: idents are also defined in Ident, but then need to decide whether lookup is useful or not; here we use strings (PWW 28-01-05)
// TODO: check idents list against CSS 2.1 spec (not 2.0 spec) (PWW 28-01-05)
public final class Idents {
/*
* Useful regexes to remember for later, from http://www.javapractices.com/Topic151.cjp
* text
* "^(\\S)(.){1,75}(\\S)$";
* non-negative ints, incl
* "(\\d){1,9}";
* ints
* "(-)?" +
* non-negative floats, incl 0.0
* "(\\d){1,10}\\.(\\d){1,10}";
* floats
* "(-)?" + ;
*/
/**
* Regex pattern, a CSS number--either integer or float
*/
private final static String RCSS_NUMBER = "(-)?((\\d){1,10}((\\.)(\\d){1,10})?)";
/**
* Regex pattern, CSS lengths, a length must have a unit, unless it is zero
*/
private final static String RCSS_LENGTH = "((0$)|((" + RCSS_NUMBER + ")+" + "((em)|(ex)|(px)|(cm)|(mm)|(in)|(pt)|(pc)|(%))))";
/**
* Pattern instance, for CSS lengths
*/
private final static Pattern CSS_NUMBER_PATTERN = Pattern.compile(RCSS_NUMBER);
/**
* Pattern instance, for CSS lengths
*/
private final static Pattern CSS_LENGTH_PATTERN = Pattern.compile(RCSS_LENGTH);
/**
* Pattern instance, for Hex-colors
*/
private final static Pattern COLOR_HEX_PATTERN = Pattern.compile("#((((\\d)|[a-fA-F]){6})|(((\\d)|[a-fA-F]){3}))");
/**
* Pattern instance for functions (not quite right [e.g no escapes], but good enough)
*/
private final static Pattern FUNCTION_PATTERN = Pattern.compile("^-?[_a-z][_a-z0-9-]+\\(");
/**
* Description of the Field
*/
private final static Map COLOR_MAP;
/**
* Description of the Field
*/
private final static Map FONT_SIZES;
/**
* Description of the Field
*/
private final static Map FONT_WEIGHTS;
/**
* Description of the Field
*/
private final static Map BORDER_WIDTHS;
/**
* Description of the Field
*/
private final static Map BACKGROUND_POSITIONS;
/**
* Description of the Field
*/
private final static List BACKGROUND_REPEATS;
/**
* Description of the Field
*/
private final static List BORDER_STYLES;
/**
* Description of the Field
*/
private final static List LIST_TYPES;
/**
* Description of the Field
*/
private final static List FONT_STYLES;
/**
* Description of the Field
*/
private final static List BACKGROUND_POSITIONS_IDENTS;
/**
* Description of the Method
*
* @param cssName PARAM
* @param ident PARAM
* @return Returns
*/
public static String convertIdent(CSSName cssName, String ident) {
if (ident.equals("inherit")) {
return ident;
}
String val = ident;
if (cssName == CSSName.FONT_SIZE) {
String size = (String) FONT_SIZES.get(ident);
val = (size == null ? ident : size);
} else if (cssName == CSSName.FONT_WEIGHT) {
String size = (String) FONT_WEIGHTS.get(ident);
val = (size == null ? ident : size);
} else if (cssName == CSSName.BACKGROUND_POSITION) {
String pos = (String) BACKGROUND_POSITIONS.get(ident);
val = (pos == null ? ident : pos);
} else if (
cssName == CSSName.BORDER_BOTTOM_WIDTH ||
cssName == CSSName.BORDER_LEFT_WIDTH ||
cssName == CSSName.BORDER_RIGHT_WIDTH ||
cssName == CSSName.BORDER_WIDTH_SHORTHAND ||
cssName == CSSName.BORDER_TOP_WIDTH) {
String size = (String) BORDER_WIDTHS.get(ident);
val = (size == null ? ident : size);
} else if (
cssName == CSSName.BORDER_BOTTOM_COLOR ||
cssName == CSSName.BORDER_LEFT_COLOR ||
cssName == CSSName.BORDER_RIGHT_COLOR ||
cssName == CSSName.BORDER_COLOR_SHORTHAND ||
cssName == CSSName.BORDER_TOP_COLOR ||
cssName == CSSName.BACKGROUND_COLOR ||
cssName == CSSName.COLOR ||
cssName == CSSName.OUTLINE_COLOR) {
val = getColorHex(ident);
//may fail because someone tried an invalid color
if (val == null) {
String fallback = CSSName.initialValue(cssName);
if (fallback.startsWith("=")) fallback = CSSName.initialValue(CSSName.getByPropertyName(fallback.substring(1)));
val = getColorHex(fallback);
}
}
return val;
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeABorderStyle(String val) {
return BORDER_STYLES.contains(val);
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeAColor(String val) {
return COLOR_MAP.get(val) != null || (val.startsWith("#") && (val.length() == 7 || val.length() == 4)) || val.startsWith("rgb");
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeALength(String val) {
return CSS_LENGTH_PATTERN.matcher(val).matches();
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeAURI(String val) {
return val.startsWith("url(") && val.endsWith(")");
}
public static boolean looksLikeAFunction(String value) {
return FUNCTION_PATTERN.matcher(value).find();
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeABGRepeat(String val) {
return BACKGROUND_REPEATS.indexOf(val) >= 0;
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeABGAttachment(String val) {
return "scroll".equals(val) || "fixed".equals(val);
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeABGPosition(String val) {
return BACKGROUND_POSITIONS_IDENTS.contains(val) || looksLikeALength(val);
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeAListStyleType(String val) {
return LIST_TYPES.indexOf(val) >= 0;
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeAListStyleImage(String val) {
return "none".equals(val) || looksLikeAURI(val);
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeAListStylePosition(String val) {
return "inside".equals(val) || "outside".equals(val);
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeAFontStyle(String val) {
return FONT_STYLES.indexOf(val) >= 0;
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeAFontVariant(String val) {
return "normal".equals(val) || "small-caps".equals(val);
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeAFontWeight(String val) {
return FONT_WEIGHTS.get(val) != null;
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeAFontSize(String val) {
// TODO
return FONT_SIZES.get(val) != null ||
looksLikeALength(val) ||
"larger".equals(val) || "smaller".equals(val);
}
/**
* Description of the Method
*
* @param val PARAM
* @return Returns
*/
public static boolean looksLikeALineHeight(String val) {
return "normal".equals(val) || looksLikeALength(val) || looksLikeANumber(val);
}
public static boolean looksLikeANumber(String val) {
return CSS_NUMBER_PATTERN.matcher(val).matches();
}
/**
* Given a String, returns either the rgb declaration for the color, or the
* hex declaration; used to cleanup assignments like "red" or "green".
*
* @param value A String which contains a Color identifier, an rgb
* assignment or a Color hex value.
* @return The colorHex value
*/
public static String getColorHex(String value) {
if (value == null) {
throw new XRRuntimeException("value is null on getColorHex()");
}
String retval = (String) COLOR_MAP.get(value.toLowerCase());
if (retval == null) {
if (value.trim().startsWith("rgb(")) {
retval = value;
} else {
Matcher m = COLOR_HEX_PATTERN.matcher(value);
if (m.matches()) {
retval = value;
}
}
}
return retval;
}
static {
COLOR_MAP = new HashMap();
/* From CSS 2.1- 4.3.6: Colors
aqua #00ffff
black #000000
blue #0000ff
fuchsia #ff00ff
gray #808080
green #008000
lime #00ff00
maroon #800000
navy #000080
olive #808000
orange #ffA500
purple #800080
red #ff0000
silver #c0c0c0
teal #008080
white #ffffff
yellow #ffff00
*/
COLOR_MAP.put("aqua", "#00ffff");
COLOR_MAP.put("black", "#000000");
COLOR_MAP.put("blue", "#0000ff");
COLOR_MAP.put("fuchsia", "#ff00ff");
COLOR_MAP.put("gray", "#808080");
COLOR_MAP.put("green", "#008000");
COLOR_MAP.put("lime", "#00ff00");
COLOR_MAP.put("maroon", "#800000");
COLOR_MAP.put("navy", "#000080");
COLOR_MAP.put("olive", "#808000");
COLOR_MAP.put("orange", "#ffa500");
COLOR_MAP.put("purple", "#800080");
COLOR_MAP.put("red", "#ff0000");
COLOR_MAP.put("silver", "#c0c0c0");
COLOR_MAP.put("teal", "#008080");
COLOR_MAP.put("transparent", "transparent");
COLOR_MAP.put("white", "#ffffff");
COLOR_MAP.put("yellow", "#ffff00");
//TODO: FONT_SIZES should be determined by the User Interface!
FONT_SIZES = new HashMap();
FONT_SIZES.put("xx-small", "6.9pt");
FONT_SIZES.put("x-small", "8.3pt");
FONT_SIZES.put("small", "10pt");
FONT_SIZES.put("medium", "12pt");
FONT_SIZES.put("large", "14.4pt");
FONT_SIZES.put("x-large", "17.3pt");
FONT_SIZES.put("xx-large", "20.7pt");
// HACK
FONT_SIZES.put("smaller", "0.8em");
FONT_SIZES.put("larger", "1.2em");
FONT_WEIGHTS = new HashMap();
FONT_WEIGHTS.put("normal", "400");
FONT_WEIGHTS.put("bold", "700");
FONT_WEIGHTS.put("100", "100");
FONT_WEIGHTS.put("200", "200");
FONT_WEIGHTS.put("300", "300");
FONT_WEIGHTS.put("400", "400");
FONT_WEIGHTS.put("500", "500");
FONT_WEIGHTS.put("600", "600");
FONT_WEIGHTS.put("700", "700");
FONT_WEIGHTS.put("800", "800");
FONT_WEIGHTS.put("900", "900");
FONT_WEIGHTS.put("bolder", "bolder");
FONT_WEIGHTS.put("lighter", "lighter");
// NOTE: 'bolder' and 'lighter' need to be handled programmatically
BORDER_WIDTHS = new HashMap();
BORDER_WIDTHS.put("thin", "1px");
BORDER_WIDTHS.put("medium", "2px");
BORDER_WIDTHS.put("thick", "3px");
BACKGROUND_POSITIONS_IDENTS = new ArrayList();
BACKGROUND_POSITIONS_IDENTS.add("top");
BACKGROUND_POSITIONS_IDENTS.add("center");
BACKGROUND_POSITIONS_IDENTS.add("bottom");
BACKGROUND_POSITIONS_IDENTS.add("right");
BACKGROUND_POSITIONS_IDENTS.add("left");
BACKGROUND_POSITIONS = new HashMap();
// NOTE: combinations of idents for background-positions, are specified in the CSS
// spec; some are disallowed, for example, there is no "top" all by itself. Check
// the CSS spec for background (shorthand) or background-position for a complete list.
// The percentages specified here are from that section of the spec.
BACKGROUND_POSITIONS.put("top left", "0% 0%");
BACKGROUND_POSITIONS.put("left top", "0% 0%");
BACKGROUND_POSITIONS.put("top center", "50% 0%");
BACKGROUND_POSITIONS.put("center top", "50% 0%");
BACKGROUND_POSITIONS.put("right top", "100% 0%");
BACKGROUND_POSITIONS.put("top right", "100% 0%");
BACKGROUND_POSITIONS.put("left center", "0% 50%");
BACKGROUND_POSITIONS.put("center left", "0% 50%");
BACKGROUND_POSITIONS.put("center", "50% 50%");
BACKGROUND_POSITIONS.put("center center", "50% 50%");
BACKGROUND_POSITIONS.put("right center", "100% 50%");
BACKGROUND_POSITIONS.put("center right", "100% 50%");
BACKGROUND_POSITIONS.put("bottom left", "0% 100%");
BACKGROUND_POSITIONS.put("left bottom", "0% 100%");
BACKGROUND_POSITIONS.put("bottom center", "50% 100%");
BACKGROUND_POSITIONS.put("center bottom", "50% 100%");
BACKGROUND_POSITIONS.put("bottom right", "100% 100%");
BACKGROUND_POSITIONS.put("right bottom", "100% 100%");
BACKGROUND_REPEATS = new ArrayList();
BACKGROUND_REPEATS.add("repeat");
BACKGROUND_REPEATS.add("repeat-x");
BACKGROUND_REPEATS.add("repeat-y");
BACKGROUND_REPEATS.add("no-repeat");
BORDER_STYLES = new ArrayList();
BORDER_STYLES.add("none");
BORDER_STYLES.add("hidden");
BORDER_STYLES.add("dotted");
BORDER_STYLES.add("dashed");
BORDER_STYLES.add("solid");
BORDER_STYLES.add("double");
BORDER_STYLES.add("groove");
BORDER_STYLES.add("ridge");
BORDER_STYLES.add("inset");
BORDER_STYLES.add("outset");
LIST_TYPES = new ArrayList();
LIST_TYPES.add("disc");
LIST_TYPES.add("circle");
LIST_TYPES.add("square");
LIST_TYPES.add("decimal");
LIST_TYPES.add("decimal-leading-zero");
LIST_TYPES.add("lower-roman");
LIST_TYPES.add("upper-roman");
LIST_TYPES.add("lower-greek");
LIST_TYPES.add("lower-alpha");
LIST_TYPES.add("lower-latin");
LIST_TYPES.add("upper-alpha");
LIST_TYPES.add("upper-latin");
LIST_TYPES.add("hebrew");
LIST_TYPES.add("armenian");
LIST_TYPES.add("georgian");
LIST_TYPES.add("cjk-ideographic");
LIST_TYPES.add("hiragana");
LIST_TYPES.add("katakana");
LIST_TYPES.add("hiragana-iroha");
LIST_TYPES.add("katakana-iroha");
LIST_TYPES.add("none");
FONT_STYLES = new ArrayList();
FONT_STYLES.add("normal");
FONT_STYLES.add("italic");
FONT_STYLES.add("oblique");
}// end static
public static boolean looksLikeAQuote(String content) {
return content.equals("open-quote") || content.equals("close-quote");
}
public static boolean looksLikeASkipQuote(String content) {
return content.equals("no-open-quote") || content.equals("no-close-quote");
}
}// end class
/*
* $Id$
*
* $Log$
* Revision 1.17 2007/02/19 14:53:36 peterbrant
* Integrate new CSS parser
*
* Revision 1.16 2007/02/07 16:33:36 peterbrant
* Initial commit of rewritten table support and associated refactorings
*
* Revision 1.15 2006/07/28 10:08:55 pdoubleya
* Additional work for support of parsing content and quotes.
*
* Revision 1.14 2006/04/03 00:01:59 peterbrant
* Fix color: inherit
*
* Revision 1.13 2006/04/02 22:22:35 peterbrant
* Add function interface for generated content / Implement page counters in terms of this, removing previous hack / Add custom page numbering functions
*
* Revision 1.12 2005/11/12 21:55:25 tobega
* Inline enhancements: block box text decorations, correct line-height when it is a number, better first-letter handling
*
* Revision 1.11 2005/11/08 22:53:44 tobega
* added getLineHeight method to CalculatedStyle and hacked in some list-item support
*
* Revision 1.10 2005/10/31 16:19:58 pdoubleya
* Orange is a CSS 2.1 color; double-checked list of color constants.
*
* Revision 1.9 2005/10/20 20:48:03 pdoubleya
* Updates for refactoring to style classes. CalculatedStyle now has lookup methods to cover all general cases, so propertyByName() is private, which means the backing classes for styling were able to be replaced.
*
* Revision 1.8 2005/07/04 00:12:11 tobega
* text-align now works for table-cells too (is done in render, not in layout)
*
* Revision 1.7 2005/06/04 12:45:14 tobega
* Added support for rgb-triples. Added fallback to default for non-css color idents.
* Fixed some stuff with eeze.
*
* Revision 1.6 2005/04/07 16:21:34 pdoubleya
* Formatting.
*
* Revision 1.5 2005/03/17 20:22:32 pdoubleya
* Added orange (Kevin).
*
* Revision 1.4 2005/01/29 20:21:09 pdoubleya
* Clean/reformat code. Removed commented blocks, checked copyright.
*
* Revision 1.3 2005/01/29 12:17:18 pdoubleya
* .
*
* Revision 1.2 2005/01/24 19:01:07 pdoubleya
* Mass checkin. Changed to use references to CSSName, which now has a Singleton instance for each property, everywhere property names were being used before. Removed commented code. Cascaded and Calculated style now store properties in arrays rather than maps, for optimization.
*
* Revision 1.1 2005/01/24 14:27:51 pdoubleya
* Added to CVS.
*
*
*/