Package org.jibx.binding.model

Source Code of org.jibx.binding.model.StructureElement

/*
Copyright (c) 2004-2010, 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.util.ArrayList;

import org.jibx.runtime.IMarshallingContext;
import org.jibx.runtime.IUnmarshallingContext;
import org.jibx.runtime.JiBXException;
import org.jibx.runtime.QName;
import org.jibx.util.IClass;
import org.jibx.util.StringArray;

/**
* Model component for <b>structure</b> element of binding definition.
*
* @author Dennis M. Sosnoski
*/
public class StructureElement extends StructureElementBase
{
    /** Enumeration of allowed attribute names */
    public static final StringArray s_allowedAttributes =
        new StringArray(new String[] { "map-as" },
        StructureElementBase.s_allowedAttributes);
   
    /** Mapping type name to use for this object. */
    private String m_mapAsName;
   
    /** Mapping qualified type name to use for this object. */
    private QName m_mapAsQName;
   
    /** Flag for structure has a concrete mapping, possibly indeterminant. */
    private boolean m_hasMappingName;
   
    /** Binding to use for this object. */
    private TemplateElementBase m_effectiveMapping;
   
    /**
     * Default constructor.
     */
    public StructureElement() {
        super(STRUCTURE_ELEMENT);
    }
   
    /**
     * Get name of mapping type.
     *
     * @return mapping type name (or <code>null</code> if none)
     */
    public String getMapAsName() {
        return m_mapAsName;
    }
   
    /**
     * Set name of mapping type. This method changes the qualified name to
     * match the mapping type.
     *
     * @param name mapping type name (or <code>null</code> if none)
     */
    public void setMapAsName(String name) {
        m_mapAsName = name;
        m_mapAsQName = (name == null) ? null : new QName(name);
    }
   
    /**
     * Get qualified name of mapping type.
     *
     * @return mapping qualified type name (or <code>null</code> if none)
     */
    public QName getMapAsQName() {
        return m_mapAsQName;
    }
   
    /**
     * Set qualified name of mapping type. This method changes the mapping name
     * to match the qualified name.
     *
     * @param name mapping qualified type name (or <code>null</code> if none)
     */
    public void setMapAsQName(QName name) {
        m_mapAsQName = name;
        m_mapAsName = (name == null) ? null : name.toString();
    }
   
    /**
     * Get actual type mapping. This call is only meaningful after validation.
     *
     * @return actual type mapping (or <code>null</code> if none)
     */
    public TemplateElementBase getEffectiveMapping() {
        return m_effectiveMapping;
    }
   
    /**
     * Check if this structure defines a name directly.
     *
     * @return <code>true</code> if name defined, <code>false</code> if not
     */
    public boolean hasDirectName() {
        return super.hasName();
    }
   
    //
    // Overrides of base class methods
   
    /* (non-Javadoc)
     * @see org.jibx.binding.model.IComponent#hasName()
     */
    public boolean hasName() {
        if (m_effectiveMapping instanceof MappingElementBase) {
            if (((MappingElementBase)m_effectiveMapping).getName() != null) {
                return true;
            }
        } else if (m_hasMappingName) {
            return true;
        }
        return super.hasName();
    }
   
    /* (non-Javadoc)
     * @see org.jibx.binding.model.IComponent#getName()
     */
    public String getName() {
        if (m_effectiveMapping instanceof MappingElementBase) {
            String name = ((MappingElementBase)m_effectiveMapping).getName();
            if (name != null) {
                return name;
            }
        } else if (m_hasMappingName) {
            return "#" + getType().getName();
        }
        return super.getName();
    }
   
    /* (non-Javadoc)
     * @see org.jibx.binding.model.IComponent#getUri()
     */
    public String getUri() {
        if (m_effectiveMapping instanceof MappingElementBase) {
            String uri = ((MappingElementBase)m_effectiveMapping).getUri();
            if (uri != null) {
                return uri;
            }
        }
        return super.getUri();
    }
   
    /* (non-Javadoc)
     * @see org.jibx.binding.model.IComponent#hasAttribute()
     */
    public boolean hasAttribute() {
        if (hasName()) {
            return false;
        } else if (m_effectiveMapping != null) {
            return m_effectiveMapping.name() == null &&
                m_effectiveMapping.getAttributeComponents().size() > 0;
        } else {
            return super.hasAttribute();
        }
    }
   
    /* (non-Javadoc)
     * @see org.jibx.binding.model.IComponent#hasContent()
     */
    public boolean hasContent() {
        if (hasName()) {
            return true;
        } else if (m_effectiveMapping != null) {
            return m_effectiveMapping.name() != null ||
                m_effectiveMapping.getContentComponents().size() > 0;
        } else {
            return super.hasContent();
        }
    }
   
    /* (non-Javadoc)
     * @see org.jibx.binding.model.IComponent#getType()
     */
    public IClass getType() {
        if (m_effectiveMapping == null) {
            return super.getType();
        } else {
            return m_effectiveMapping.getHandledClass();
        }
    }
       
    //
    // Validation methods
   
    /**
     * JiBX access method to set mapping type name as qualified name.
     *
     * @param text mapping name text (<code>null</code> if none)
     * @param ictx unmarshalling context
     * @throws JiBXException on deserialization error
     */
    private void setQualifiedMapAs(String text, IUnmarshallingContext ictx)
        throws JiBXException {
        m_mapAsName = text;
        m_mapAsQName = QName.deserialize(text, ictx);
    }
   
    /**
     * JiBX access method to get mapping type name as qualified name.
     *
     * @param ictx marshalling context
     * @return mapping type name text (<code>null</code> if none)
     * @throws JiBXException on deserialization error
     */
    private String getQualifiedMapAs(IMarshallingContext ictx)
        throws JiBXException {
        return QName.serialize(m_mapAsQName, ictx);
    }
   
    /**
     * 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);
    }

    /**
     * Merge namespaces from an implicit context to those defined for a
     * reference.
     *
     * @param defc context supplying namespaces to be merged
     * @param addc context to be merged into
     * @param vctx
     */
    private void mergeNamespaces(DefinitionContext defc, DefinitionContext addc,
        ValidationContext vctx) {
       
        // check for namespaces present in context
        ArrayList nss = defc.getNamespaces();
        if (nss != null) {
           
            // merge namespaces with those defined by containing mapping
            for (int i = 0; i < nss.size(); i++) {
                NamespaceElement ns = (NamespaceElement)nss.get(i);
                ValidationProblem prob =
                    addc.addImpliedNamespace(ns, this);
                if (prob != null) {
                    vctx.addProblem(prob);
                }
            }
        }
    }

    /**
     * Check for conflicts on namespace prefix usage. Abstract mappings may
     * define namespaces, but the prefixes used by the abstract mappings must
     * not conflict with those used at the point of reference. This allows the
     * namespace definitions from the abstract mapping to be promoted to the
     * containing element.
     *
     * @param base
     * @param vctx
     */
    private void checkNamespaceUsage(TemplateElementBase base,
        ValidationContext vctx) {
       
        // check for namespace definitions needing to be handled
        if (base instanceof MappingElementBase &&
            ((MappingElementBase)base).isAbstract()) {
           
            // merge namespaces defined within this mapping
            DefinitionContext addc = vctx.getCurrentDefinitions();
            DefinitionContext defc = base.getDefinitions();
            if (defc != null) {
                mergeNamespaces(defc, addc, vctx);
            }
        }
    }

    /**
     * Classify child components as contributing attributes, content, or both.
     * This method is needed to handle on-demand classification during
     * validation. When a child component is another instance of this class, the
     * method calls itself on the child component prior to checking the child
     * component's contribution.
     *
     * @param vctx
     */
    protected void classifyComponents(ValidationContext vctx) {
       
        // check for classification already run
        if (!isClassified()) {
           
            // check if there's a mapping if used without children
            // TODO: this isn't correct, but validation may not have reached
            //  this element yet so the context may not have been set. Clean
            //  this with parent link in all elements.
            DefinitionContext dctx = vctx.getDefinitions();
            if (children().size() == 0) {
                if (m_mapAsQName == null) {
                   
                    // make sure not just a name, allowed for skipped element
                    if (!isFlagOnly() &&
                        (hasProperty() || getDeclaredType() != null)) {
                       
                        // see if this is using implicit marshaller/unmarshaller
                        if ((vctx.isInBinding() && getUnmarshallerName() == null) ||
                            (vctx.isOutBinding() && getMarshallerName() == null)) {
                            if (getUsing() == null) {
                               
                                // check for specific type known
                                IClass type = getType();
                                if (type == null) {
                                    vctx.addError("Internal error - null type");
                                } else if (!"java.lang.Object".equals(type.getName())) {
                                    setMappingReference(vctx, dctx, type);
                                }
                            }
                        }
                    }
                   
                } else {
                   
                    // find mapping by type name or class name
                    TemplateElementBase base =
                        dctx.getNamedTemplate(m_mapAsQName.toString());
                    if (base == null) {
                        base = dctx.getSpecificTemplate(m_mapAsName);
                        if (base == null) {
                            vctx.addFatal("No mapping with type name " +
                                m_mapAsQName.toString());
                        }
                    }
                    if (base != null) {
                       
                        // make sure type is compatible
                        IClass type = getType();
                        if (vctx.isLookupSupported() && type != null) {
                            if (!type.isAssignable(base.getHandledClass()) &&
                                !base.getHandledClass().isAssignable(type)) {
                                vctx.addError("Object type " + type.getName() +
                                    " is incompatible with binding for class " +
                                    base.getClassName());
                            }
                        }
                        m_effectiveMapping = base;
                       
                        // check for namespace conflicts
                        checkNamespaceUsage(base, vctx);
                       
                        // set flag for mapping with name
                        m_hasMappingName = base instanceof MappingElementBase &&
                            !((MappingElementBase)base).isAbstract();
                    }
                   
                }
               
                // classify mapping reference as providing content, attributes, or both
                if (m_effectiveMapping instanceof MappingElement) {
                    MappingElement mapping = (MappingElement)m_effectiveMapping;
                    mapping.classifyComponents(vctx);
                    if (hasProperty()) {
                        mapping.verifyConstruction(vctx);
                    }
                    if (mapping.getName() == null) {
                        ArrayList attribs = EmptyArrayList.INSTANCE;
                        ArrayList contents = EmptyArrayList.INSTANCE;
                        if (mapping.getContentComponents().size() > 0) {
                            contents = new ArrayList();
                            contents.add(m_effectiveMapping);
                        }
                        if (mapping.getAttributeComponents().size() > 0) {
                            attribs = new ArrayList();
                            attribs.add(m_effectiveMapping);
                        }
                        setComponents(attribs, contents);
                    } else {
                        ArrayList contents = new ArrayList();
                        contents.add(m_effectiveMapping);
                        setComponents(EmptyArrayList.INSTANCE, contents);
                    }
                }
               
            } else if (m_mapAsName != null) {
                vctx.addError("map-as attribute cannot be used with children");
            }
           
        }
       
        // pass on call to superclass implementation
        super.classifyComponents(vctx);
    }

    /* (non-Javadoc)
     * @see org.jibx.binding.model.ElementBase#validate(org.jibx.binding.model.ValidationContext)
     */
    public void validate(ValidationContext vctx) {
       
        // set up child components and effective mapping
        classifyComponents(vctx);
        IClass type = getType();
        if (type != null) {
           
            // check each child component for compatible type
            ArrayList children = children();
            if (hasProperty() || getDeclaredType() != null) {
                checkCompatibleChildren(vctx, type, children);
            }
           
            // check for only set-method supplied
            if (!vctx.isOutBinding() && getField() == null &&
                getGet() == null && getSet() != null) {
               
                // no way to handle both elements and attributes
                if (hasAttribute() && hasContent()) {
                    vctx.addError("Need way to load existing object instance " +
                        "to support combined attribute and element values");
                } else {
                    vctx.addWarning("No way to load prior value - " +
                        "new instance will be created on each unmarshalling");
                }
            }
        }
       
        // make sure name is defined if nillable
        if (isNillable() && !hasName()) {
            vctx.addError("Need element name for nillable='true'");
        }
        super.validate(vctx);
    }

    /**
     * Validate mapping reference.
     *
     * @param vctx validation context
     * @param dctx definition context
     * @param type referenced type
     */
    private void setMappingReference(ValidationContext vctx,
        DefinitionContext dctx, IClass type) {
       
        // first try to find mapping by specific type
        m_effectiveMapping = dctx.getNamedTemplate(type.getName());
        if (m_effectiveMapping == null) {
           
            // see if there's a mapping specific to the reference type
            String tname = type.getName();
            TemplateElementBase match = dctx.getSpecificTemplate(tname);
            if (match != null) {
                m_effectiveMapping = match;
                if (match instanceof MappingElementBase) {
                   
                    // set flag for name defined by mapping
                    MappingElementBase base = (MappingElementBase)match;
                    m_hasMappingName = !base.isAbstract();
                    checkNamespaceUsage(base, vctx);
                   
                    // check name usage on non-abstract or base mapping
                    if (super.hasName()) {
                        if (!base.isAbstract()) {
                            vctx.addError("name attribute not allowed on concrete mapping reference", this);
                        } else if (base.getExtensionTypes().size() > 0) {
                            vctx.addError("name attribute not allowed on reference to mapping with extensions", this);
                        }
                    }
                }
               
            } else if (!dctx.isCompatibleTemplateType(type)) {
                vctx.addFatal("No compatible mapping defined for type " + tname, this);
            }
           
        } else if (m_effectiveMapping instanceof MappingElementBase) {
           
            // set flag for name defined by mapping
            MappingElementBase base = (MappingElementBase)m_effectiveMapping;
            m_hasMappingName = !base.isAbstract();
            checkNamespaceUsage(base, vctx);
           
        }
    }
}
TOP

Related Classes of org.jibx.binding.model.StructureElement

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.