/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * https://glassfish.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package com.sun.faces.generate; import java.io.BufferedInputStream; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.PrintStream; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.Map; import java.util.Properties; /** * <p>This class manages properties common to <code>jsf-tools</code> * generators.</p> */ public class PropertyManager { /** * <p>The minimum required version of JSP.</p> */ public static final String JSP_VERSION_PROPERTY = "jsp.version"; /** * <p>The short-name of the generated tag library.</p> */ public static final String TAGLIB_SHORT_NAME = "taglib.shortname"; /** * <p>The display-name of the generated tag library.</p> */ public static final String TAGLIB_DISPLAY_NAME = "taglib.displayname"; /** * <p>The URI by which the tag library will be known by.</p> */ public static final String TAGLIB_URI = "taglib.uri"; /** * <p>The description of the tag library (may be <code>null</code>).</p> */ public static final String TAGLIB_DESCRIPTION = "taglib.description"; /** * <p>The file name of the generated tag library descriptor.</p> */ public static final String TAGLIB_FILE_NAME = "taglib.file.name"; /** * <p>The filename of a file to be included as part of the tag * library generation process (may be <code>null</code>).</p> */ public static final String TAGLIB_INCLUDE = "taglib.include"; /** * <p>A comma separated list of renderer-types that must be excluded * from taglib generation.</p> */ public static final String TAGLIB_EXCLUDED_RENDERER_TYPES = "taglib.excludedRendererTypes"; /** * <p>A copyright to be included at the beginning of any generated file * (may be <code>null</code>).</p> */ public static final String COPYRIGHT = "copyright"; /** * <p>The ID of the <code>RenderKit</code> for which the generation is * being performed.</p> */ public static final String RENDERKIT_ID = "renderkit.id"; /** * <p>The target package for any generated code.</p> */ public static final String TARGET_PACKAGE = "target.package"; /** * <p>The base directory in which all generated files are written to.</p> */ public static final String BASE_OUTPUT_DIR = "base.output.dir"; /** * <p>Known properties.</p> */ private static final String[] VALID_PROPS = { JSP_VERSION_PROPERTY, TAGLIB_URI, TAGLIB_DESCRIPTION, TAGLIB_SHORT_NAME, COPYRIGHT, RENDERKIT_ID, TARGET_PACKAGE, TAGLIB_FILE_NAME, TAGLIB_INCLUDE, BASE_OUTPUT_DIR, TAGLIB_EXCLUDED_RENDERER_TYPES }; /** * <p>Properties which may have no value.</p> */ private static final String[] NULLABLE_PROPS = { COPYRIGHT, TAGLIB_DESCRIPTION, TAGLIB_INCLUDE, TAGLIB_EXCLUDED_RENDERER_TYPES }; // Sort the arrays so we can use Arrays.binarySearch() static { Arrays.sort(VALID_PROPS); Arrays.sort(NULLABLE_PROPS); } /** * <p>The <code>Properties</code> object which backs this class.</p> */ private Properties props; // ------------------------------------------------------------ Constructors /** * <p>Constructs a new <code>PropertyManager</code> instance.</p> * @param props - properties */ private PropertyManager(Properties props) { this.props = props; } // END PropertyManager // ---------------------------------------------------------- Public Methods /** * <p>Obtain a new <code>PropertyManager</code> instance backed by the * properies contained in the specified file.</p> * @param propertyFile - property file * @return a configured <code>PropertyManager</code> instance */ public static PropertyManager newInstance(String propertyFile) { Properties props = new Properties(); try { props.load( new BufferedInputStream( new FileInputStream(new File(propertyFile)))); } catch (Exception e) { throw new IllegalStateException(e.toString()); } return new PropertyManager(props); } // END newInstance /** * <p>Return the property specified by <code>propertyName</code>.</p> * @param propertyName - the property name * @return the value of the property or <code>null</code> if no value * is defined * * @throws IllegalArgumentException of <code>propertyName</code> isn't * a known property * @throws IllegalStateException if <code>propertyName</code> illegally * has no value */ public String getProperty(String propertyName) { if (Arrays.binarySearch(VALID_PROPS, propertyName) < 0) { throw new IllegalArgumentException("Unknown Property '" + propertyName + '\''); } String propValue = props.getProperty(propertyName); if (propValue == null) { if (Arrays.binarySearch(NULLABLE_PROPS, propertyName) >= 0) { propValue = ""; } else { throw new IllegalStateException("Property '" + propertyName + "' must be defined."); } } return propValue.trim(); } // END getProperty private Map<String, Boolean> excludedRenderers; public boolean isExcludeRenderer(String rendererType) { boolean result = false; if (null == excludedRenderers) { initializeExcludedRenderers(); } result = excludedRenderers.containsKey(rendererType); return result; } private void initializeExcludedRenderers() { String excludedRenderersProp = getProperty("taglib.excludedRendererTypes"); if (null == excludedRenderersProp) { excludedRenderers = Collections.emptyMap(); } else { excludedRenderers = new HashMap<String, Boolean>(); String [] toAdd = excludedRenderersProp.split(","); for (String cur : toAdd) { excludedRenderers.put(cur, Boolean.TRUE); } } } public String toString() { ByteArrayOutputStream propsOutput = new ByteArrayOutputStream(); props.list(new PrintStream(propsOutput)); return propsOutput.toString(); } // END toString }