com.sun.tools.xjc.runtime.JAXBContextFactory Maven / Gradle / Ivy
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2011 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
* https://glassfish.dev.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.tools.xjc.runtime;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.StringTokenizer;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
/**
* This class implements the actual logic of {@link JAXBContext#newInstance}.
*
*
* This class works as a facade and all the actual work is delegated to
* a JAXB provider that happens to be in the runtime (not necessarily the JAXB RI.)
* This allows the generated code to be run with any JAXB provider.
*
*
* This code is only used when XJC generates interfaces/implementations.
*
*
* The trick to make this work is two ObjectFactory classes that we generate
* in the interface/implementation mode.
*
*
* The public ObjectFactory follows the spec, and this is the one that's exposed
* to users. The public ObjectFactory refers to interfaces, so they aren't
* directly usable by a JAXB 2.0 implementation.
*
*
* The private one lives in the impl package, and this one is indistinguishable
* from the ObjectFactory that we generate for the value class generation mode.
* This private ObjectFactory refers to implementation classes, which are
* also indistinguishable from value classes that JAXB generates.
*
*
* All in all, the private ObjectFactory plus implementation classes give
* a JAXB provider an illusion that they are dealing with value classes
* that happens to implement some interfaces.
*
*
* In this way, the JAXB RI can provide the portability even for the
* interface/implementation generation mode.
*
* @since 2.0
* @author Kohsuke Kawaguchi
*/
public class JAXBContextFactory {
private static final String DOT_OBJECT_FACTORY = ".ObjectFactory";
private static final String IMPL_DOT_OBJECT_FACTORY = ".impl.ObjectFactory";
/**
* The JAXB API will invoke this method via reflection
*/
public static JAXBContext createContext( Class[] classes, Map properties ) throws JAXBException {
Class[] r = new Class[classes.length];
boolean modified = false;
// find any reference to our 'public' ObjectFactory and
// replace that to our 'private' ObjectFactory.
for( int i=0; i classes = new ArrayList();
StringTokenizer tokens = new StringTokenizer(contextPath,":");
// each package should be pointing to a JAXB RI generated
// content interface package.
//
// translate them into a list of private ObjectFactories.
try {
while(tokens.hasMoreTokens()) {
String pkg = tokens.nextToken();
classes.add(classLoader.loadClass(pkg+IMPL_DOT_OBJECT_FACTORY));
}
} catch (ClassNotFoundException e) {
throw new JAXBException(e);
}
// delegate to the JAXB provider in the system
return JAXBContext.newInstance(classes.toArray(new Class[classes.size()]),properties);
}
private static ClassLoader getClassClassLoader(final Class c) {
if (System.getSecurityManager() == null) {
return c.getClassLoader();
} else {
return (ClassLoader) java.security.AccessController.doPrivileged(
new java.security.PrivilegedAction() {
public java.lang.Object run() {
return c.getClassLoader();
}
});
}
}
}