| /* |
| * ==================================================================== |
| * The Apache Software License, Version 1.1 |
| * |
| * Copyright (c) 2002 The Apache Software Foundation. All rights |
| * reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in |
| * the documentation and/or other materials provided with the |
| * distribution. |
| * |
| * 3. The end-user documentation included with the redistribution, |
| * if any, must include the following acknowledgment: |
| * "This product includes software developed by the |
| * Apache Software Foundation (http://www.apache.org/)." |
| * Alternately, this acknowledgment may appear in the software itself, |
| * if and wherever such third-party acknowledgments normally appear. |
| * |
| * 4. The names "Apache" and "Apache Software Foundation" and |
| * "Apache Tapestry" must not be used to endorse or promote products |
| * derived from this software without prior written permission. For |
| * written permission, please contact apache@apache.org. |
| * |
| * 5. Products derived from this software may not be called "Apache", |
| * "Apache Tapestry", nor may "Apache" appear in their name, without |
| * prior written permission of the Apache Software Foundation. |
| * |
| * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED |
| * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR |
| * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF |
| * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| * SUCH DAMAGE. |
| * ==================================================================== |
| * |
| * This software consists of voluntary contributions made by many |
| * individuals on behalf of the Apache Software Foundation. For more |
| * information on the Apache Software Foundation, please see |
| * <http://www.apache.org/>. |
| */ |
| package net.sf.tapestry.engine; |
| |
| import java.util.HashMap; |
| import java.util.List; |
| import java.util.Map; |
| |
| import net.sf.tapestry.ApplicationRuntimeException; |
| import net.sf.tapestry.INamespace; |
| import net.sf.tapestry.ISpecificationSource; |
| import net.sf.tapestry.Tapestry; |
| import net.sf.tapestry.spec.ComponentSpecification; |
| import net.sf.tapestry.spec.ILibrarySpecification; |
| |
| /** |
| * Implementation of {@link net.sf.tapestry.INamespace} |
| * that works with a {@link net.sf.tapestry.ISpecificationSource} to |
| * obtain page and component specifications as needed. |
| * |
| * @author Howard Lewis Ship |
| * @version $Id$ |
| * @since 2.2 |
| * |
| **/ |
| |
| public class Namespace implements INamespace |
| { |
| private ILibrarySpecification _specification; |
| private ISpecificationSource _specificationSource; |
| private String _id; |
| private String _extendedId; |
| private INamespace _parent; |
| private boolean _frameworkNamespace; |
| private boolean _applicationNamespace; |
| |
| public Namespace( |
| String id, |
| INamespace parent, |
| ILibrarySpecification specification, |
| ISpecificationSource specificationSource) |
| { |
| _id = id; |
| _parent = parent; |
| _specification = specification; |
| _specificationSource = specificationSource; |
| |
| _applicationNamespace = (_id == null); |
| _frameworkNamespace = FRAMEWORK_NAMESPACE.equals(_id); |
| } |
| |
| public String toString() |
| { |
| StringBuffer buffer = new StringBuffer("Namespace@"); |
| buffer.append(Integer.toHexString(hashCode())); |
| buffer.append('['); |
| |
| if (_applicationNamespace) |
| buffer.append("<application>"); |
| else |
| buffer.append(getExtendedId()); |
| |
| buffer.append(']'); |
| |
| return buffer.toString(); |
| } |
| |
| /** |
| * Map of {@link ComponentSpecification} keyed on page name. |
| * |
| **/ |
| |
| private Map _pages = new HashMap(); |
| |
| /** |
| * Map of {@link ComponentSpecification} keyed on |
| * component alias. |
| * |
| **/ |
| |
| private Map _components = new HashMap(); |
| |
| /** |
| * Map, keyed on id, of {@link INamespace}. |
| * |
| **/ |
| |
| private Map _children = new HashMap(); |
| |
| public String getId() |
| { |
| return _id; |
| } |
| |
| public String getExtendedId() |
| { |
| if (_applicationNamespace) |
| return null; |
| |
| if (_extendedId == null) |
| _extendedId = buildExtendedId(); |
| |
| return _extendedId; |
| } |
| |
| public INamespace getParentNamespace() |
| { |
| return _parent; |
| } |
| |
| public synchronized INamespace getChildNamespace(String id) |
| { |
| String firstId = id; |
| String nextIds = null; |
| |
| // Split the id into first and next if it is a dot separated sequence |
| int index = id.indexOf('.'); |
| if (index >= 0) |
| { |
| firstId = id.substring(0, index); |
| nextIds = id.substring(index + 1); |
| } |
| |
| // Get the first namespace |
| INamespace result = (INamespace) _children.get(firstId); |
| |
| if (result == null) |
| { |
| result = createNamespace(firstId); |
| |
| _children.put(firstId, result); |
| } |
| |
| // If the id is a dot separated sequence, recurse to find |
| // the needed namespace |
| if (result != null && nextIds != null) |
| result = result.getChildNamespace(nextIds); |
| |
| return result; |
| } |
| |
| public List getChildIds() |
| { |
| return _specification.getLibraryIds(); |
| } |
| |
| public synchronized ComponentSpecification getPageSpecification(String name) |
| { |
| ComponentSpecification result = (ComponentSpecification) _pages.get(name); |
| |
| if (result == null) |
| { |
| result = locatePageSpecification(name); |
| |
| if (result != null) |
| _pages.put(name, result); |
| } |
| |
| return result; |
| } |
| |
| public List getPageNames() |
| { |
| return _specification.getPageNames(); |
| } |
| |
| public synchronized ComponentSpecification getComponentSpecification(String alias) |
| { |
| ComponentSpecification result = (ComponentSpecification) _components.get(alias); |
| |
| if (result == null) |
| { |
| result = locateComponentSpecification(alias); |
| _components.put(alias, result); |
| } |
| |
| return result; |
| } |
| |
| public List getComponentAliases() |
| { |
| return _specification.getComponentAliases(); |
| } |
| |
| public String getServiceClassName(String name) |
| { |
| return _specification.getServiceClassName(name); |
| } |
| |
| public List getServiceNames() |
| { |
| return _specification.getServiceNames(); |
| } |
| |
| public ILibrarySpecification getSpecification() |
| { |
| return _specification; |
| } |
| |
| private String buildExtendedId() |
| { |
| if (_parent == null) |
| return _id; |
| |
| String parentId = _parent.getExtendedId(); |
| |
| // If immediate child of application namespace |
| |
| if (parentId == null) |
| return _id; |
| |
| return parentId + "." + _id; |
| } |
| |
| /** |
| * Returns a string identifying the namespace, for use in |
| * error messages. I.e., "Application namespace" or "namespace 'foo'". |
| * |
| **/ |
| |
| private String getNamespaceId() |
| { |
| if (_frameworkNamespace) |
| return Tapestry.getString("Namespace.framework-namespace"); |
| |
| if (_applicationNamespace) |
| return Tapestry.getString("Namespace.application-namespace"); |
| |
| return Tapestry.getString("Namespace.nested-namespace", getExtendedId()); |
| } |
| |
| private ComponentSpecification locatePageSpecification(String name) |
| { |
| String path = _specification.getPageSpecificationPath(name); |
| |
| if (path == null) |
| throw new ApplicationRuntimeException(Tapestry.getString("Namespace.no-such-page", name, getNamespaceId())); |
| |
| return _specificationSource.getPageSpecification(path); |
| } |
| |
| private ComponentSpecification locateComponentSpecification(String alias) |
| { |
| String path = _specification.getComponentSpecificationPath(alias); |
| |
| if (path == null) |
| throw new ApplicationRuntimeException( |
| Tapestry.getString("Namespace.no-such-alias", alias, getNamespaceId())); |
| ; |
| |
| return _specificationSource.getComponentSpecification(path); |
| } |
| |
| private INamespace createNamespace(String id) |
| { |
| String path = _specification.getLibrarySpecificationPath(id); |
| |
| if (path == null) |
| throw new ApplicationRuntimeException( |
| Tapestry.getString("Namespace.library-id-not-found", id, getNamespaceId())); |
| |
| ILibrarySpecification ls = _specificationSource.getLibrarySpecification(path); |
| |
| return new Namespace(id, this, ls, _specificationSource); |
| } |
| |
| public boolean containsAlias(String alias) |
| { |
| return _specification.getComponentSpecificationPath(alias) != null; |
| } |
| |
| public boolean containsPage(String name) |
| { |
| return _specification.getPageSpecificationPath(name) != null; |
| } |
| |
| /** @since 2.3 **/ |
| |
| public String constructQualifiedName(String pageName) |
| { |
| String prefix = getExtendedId(); |
| |
| if (prefix == null) |
| return pageName; |
| |
| return prefix + SEPARATOR + pageName; |
| } |
| |
| } |