com.sun.jersey.json.impl.DefaultJaxbXmlDocumentStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jersey-bundle Show documentation
Show all versions of jersey-bundle Show documentation
A bundle containing code of all jar-based modules that provide
JAX-RS and Jersey-related features. Such a bundle is *only intended* for
developers that do not use Maven's dependency system.
The bundle does not include code for contributes, tests and samples.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2012 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
* http://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.jersey.json.impl;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Type;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import javax.xml.bind.JAXBContext;
import javax.xml.namespace.QName;
/**
* Default implementation of {@code JaxbXmlDocumentStructure}.
*
* @author Michal Gajdos (michal.gajdos at oracle.com)
*/
public abstract class DefaultJaxbXmlDocumentStructure implements JaxbXmlDocumentStructure {
/**
* Creates an {@link JaxbXmlDocumentStructure} for {@link javax.xml.stream.XMLStreamReader} or
* {@link javax.xml.stream.XMLStreamWriter} based on a given {@link javax.xml.bind.JAXBContext}.
*
* @param jaxbContext {@link javax.xml.bind.JAXBContext} to create this {@code JaxbXmlDocumentStructure} for.
* @param expectedType expected type that is going to be (un)marshalled.
* @param isReader {@code true} if the instance should be created for a reader, {@code false} if the instance is intended
* for a writer.
* @return an {@link JaxbXmlDocumentStructure} instance for the {@link javax.xml.bind.JAXBContext}
* @throws IllegalStateException if the given {@code JAXBContext} is an unsupported implementation.
*/
public static JaxbXmlDocumentStructure getXmlDocumentStructure(final JAXBContext jaxbContext,
final Class> expectedType,
final boolean isReader) throws IllegalStateException {
Throwable throwable = null;
try {
return JSONHelper.getJaxbProvider(jaxbContext)
.getDocumentStructureClass()
.getConstructor(JAXBContext.class, Class.class, boolean.class)
.newInstance(jaxbContext, expectedType, isReader);
} catch (InvocationTargetException e) {
throwable = e;
} catch (NoSuchMethodException e) {
throwable = e;
} catch (InstantiationException e) {
throwable = e;
} catch (IllegalAccessException e) {
throwable = e;
}
throw new IllegalStateException("Cannot create a JaxbXmlDocumentStructure instance.", throwable);
}
protected DefaultJaxbXmlDocumentStructure(final JAXBContext jaxbContext,
final Class> expectedType,
final boolean isReader) {
// This constructor should be implemented in descendants.
}
@Override
public Collection getExpectedElements() {
return Collections.emptyList();
}
@Override
public Collection getExpectedAttributes() {
return Collections.emptyList();
}
@Override
public Map getExpectedElementsMap() {
return qnameCollectionToMap(getExpectedElements(), true);
}
@Override
public Map getExpectedAttributesMap() {
return qnameCollectionToMap(getExpectedAttributes(), false);
}
@Override
public void startElement(QName name) {
}
@Override
public void endElement(QName name) {
}
@Override
public boolean canHandleAttributes() {
return true;
}
@Override
public Type getEntityType(QName entity, boolean isAttribute) {
return null;
}
@Override
public Type getIndividualType() {
return null;
}
@Override
public void handleAttribute(final QName attributeName, final String value) {
}
@Override
public boolean isArrayCollection() {
return false;
}
@Override
public boolean isSameArrayCollection() {
return true;
}
/**
* Transforms a collection of qualified names into a map. Keys of this map are represented by local names and values of
* this map are the qualified names themselves.
*
* @param collection collection to be transformed.
* @param elementCollection flag whether the collection represents a collection of qualified names of elements.
* @return map of qualified names.
*/
protected Map qnameCollectionToMap(final Collection collection, final boolean elementCollection) {
final Map map = new HashMap();
for (QName qname : collection) {
final String namespaceUri = qname.getNamespaceURI();
if (elementCollection && "\u0000".equals(namespaceUri)) {
map.put("$", null);
} else {
map.put(qname.getLocalPart(), qname);
}
}
return map;
}
}