/* Copyright (c) 2004-2007, Dennis M. Sosnoski All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * Neither the name of JiBX nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS 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 COPYRIGHT OWNER OR 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. */ package org.jibx.binding.model; import java.io.IOException; import java.net.URL; import org.jibx.binding.util.StringArray; import org.jibx.runtime.IUnmarshallingContext; import org.jibx.runtime.JiBXException; /** * Model component for include element of binding definition. During * prevalidation this reads the included binding definition. All further * processing of the included components needs to be handled directly by the * tree walking code in {@link org.jibx.binding.model.TreeContext}, since the * components of the included binding need to be treated as though they were * direct children of the container of this element (and accessed in the * appropriate order). * * @author Dennis M. Sosnoski * @version 1.0 */ public class IncludeElement extends NestingElementBase { /** Enumeration of allowed attribute names */ public static final StringArray s_allowedAttributes = new StringArray(new String[] { "path" }); /** Path to included binding definition. */ private String m_includePath; /** Object model for included binding. */ private BindingElement m_binding; /** * Constructor. */ public IncludeElement() { super(INCLUDE_ELEMENT); } /** * Set path to included binding. * * @param path */ public void setIncludePath(String path) { m_includePath = path; } /** * Get path to included binding. * * @return */ public String getIncludePath() { return m_includePath; } /** * Get the included binding model. This call is only valid after * prevalidation. * * @return binding element, or null if redundant include */ public BindingElement getBinding() { return m_binding; } // // Validation methods /** * Make sure all attributes are defined. * * @param uctx unmarshalling context * @exception JiBXException on unmarshalling error */ private void preSet(IUnmarshallingContext uctx) throws JiBXException { validateAttributes(uctx, s_allowedAttributes); } /* (non-Javadoc) * @see org.jibx.binding.model.ElementBase#prevalidate(org.jibx.binding.model.ValidationContext) */ public void prevalidate(ValidationContext vctx) { if (m_includePath == null) { vctx.addFatal("No include path specified"); } else { try { // locate the innermost binding element int limit = vctx.getNestingDepth(); BindingElement root = null; for (int i = 1; i < limit; i++) { ElementBase parent = vctx.getParentElement(i); if (parent instanceof BindingElement) { root = (BindingElement)parent; break; } } if (root == null) { throw new JiBXException("No binding element found"); } // access the included binding as input stream URL base = root.getBaseUrl(); URL url = new URL(base, m_includePath); String path = url.toExternalForm(); BindingElement real = vctx.getBindingRoot(); if (real.addIncludePath(path)) { m_binding = real.getIncludeBinding(url, root, vctx); } } catch (JiBXException e) { vctx.addFatal(e.getMessage()); } catch (IOException e) { vctx.addFatal("Error accessing included binding with path \"" + m_includePath + "\": " + e.getMessage()); } } } }