All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.aegis.type.TypeUtil Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.cxf.aegis.type;

import java.util.List;
import javax.xml.namespace.QName;
import javax.xml.stream.XMLStreamReader;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.cxf.aegis.Context;
import org.apache.cxf.aegis.util.NamespaceHelper;
import org.apache.cxf.aegis.util.XmlConstants;
import org.apache.cxf.helpers.CastUtils;
import org.jdom.Attribute;
import org.jdom.Element;
import org.jdom.Namespace;

/**
 * Static methods/constants for Aegis.
 * 
 * @author Dan Diephouse
 */
public final class TypeUtil {
    public static final Log LOG = LogFactory.getLog(TypeUtil.class);

    private TypeUtil() {
        //utility class
    }
    
    public static Type getReadType(XMLStreamReader xsr, Context context, Type type) {
        if (!context.isReadXsiTypes()) {
            return type;
        }
    
        String overrideType = xsr.getAttributeValue(XmlConstants.XSI_NS, "type");
        if (overrideType != null) {
            QName overrideTypeName = NamespaceHelper.createQName(xsr.getNamespaceContext(), overrideType);
            if (!overrideTypeName.equals(type.getSchemaType())) {
                Type type2 = type.getTypeMapping().getType(overrideTypeName);
                if (type2 == null) {
                    LOG.info("xsi:type=\"" + overrideTypeName
                             + "\" was specified, but no corresponding Type was registered; defaulting to "
                             + type.getSchemaType());
                } else {
                    type = type2;
                }
            }
        }
        return type;
    }

    public static Type getWriteType(Context context, Object value, Type type) {
        if (value != null && type != null && type.getTypeClass() != value.getClass()) {
            List l = context.getOverrideTypes();
            if (l != null && l.contains(value.getClass().getName())) {
                type = type.getTypeMapping().getType(value.getClass());
            }
        }
        return type;
    }

    public static Attribute createTypeAttribute(String prefix, Type type, Element root) {
        String ns = type.getSchemaType().getNamespaceURI();
        if (!ns.equals(root.getAttributeValue("targetNamespace"))
            && !ns.equals(XmlConstants.XSD)) {
            //find import statement
            List l = CastUtils.cast(root.getChildren("import", 
                                                              Namespace.getNamespace(XmlConstants.XSD)));
            boolean found = false;
            for (Element e : l) {
                if (ns.equals(e.getAttributeValue("namespace"))) {
                    found = true;
                }
            }
            if (!found) {
                Element element = new Element("import", XmlConstants.XSD_PREFIX, XmlConstants.XSD);
                root.addContent(0, element);
                element.setAttribute("namespace", ns);
            }
        }
        return new Attribute("type", prefix + ':' + type.getSchemaType().getLocalPart()); 
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy