feat(jdk8): move files to new folder to avoid resources compiled.

This commit is contained in:
2025-09-07 15:25:52 +08:00
parent 3f0047bf6f
commit 8c35cfb1c0
17415 changed files with 217 additions and 213 deletions

View File

@@ -0,0 +1,225 @@
/*
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db;
import java.io.InputStream;
import java.net.URL;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import javax.xml.namespace.QName;
import javax.xml.transform.Source;
import javax.xml.ws.WebServiceException;
import javax.xml.ws.WebServiceFeature;
import org.xml.sax.EntityResolver;
import com.oracle.webservices.internal.api.databinding.Databinding;
import com.oracle.webservices.internal.api.databinding.Databinding.Builder;
import com.oracle.webservices.internal.api.databinding.WSDLGenerator;
import com.oracle.webservices.internal.api.databinding.DatabindingModeFeature;
import com.sun.xml.internal.ws.api.BindingID;
import com.sun.xml.internal.ws.api.WSBinding;
import com.sun.xml.internal.ws.api.databinding.DatabindingConfig;
import com.sun.xml.internal.ws.api.databinding.DatabindingFactory;
import com.sun.xml.internal.ws.api.databinding.MetadataReader;
import com.sun.xml.internal.ws.api.model.wsdl.WSDLPort;
import com.sun.xml.internal.ws.spi.db.DatabindingProvider;
import com.sun.xml.internal.ws.util.ServiceFinder;
/**
* DatabindingFactoryImpl
*
* @author shih-chang.chen@oracle.com
*/
public class DatabindingFactoryImpl extends DatabindingFactory {
static final String WsRuntimeFactoryDefaultImpl = "com.sun.xml.internal.ws.db.DatabindingProviderImpl";
protected Map<String, Object> properties = new HashMap<String, Object>();
protected DatabindingProvider defaultRuntimeFactory;
protected List<DatabindingProvider> providers;
static private List<DatabindingProvider> providers() {
List<DatabindingProvider> factories = new java.util.ArrayList<DatabindingProvider>();
for (DatabindingProvider p : ServiceFinder.find(DatabindingProvider.class)) {
factories.add(p);
}
return factories;
}
public DatabindingFactoryImpl() {
}
public Map<String, Object> properties() {
return properties;
}
<T> T property(Class<T> propType, String propName) {
if (propName == null) propName = propType.getName();
return propType.cast(properties.get(propName));
}
public DatabindingProvider provider(DatabindingConfig config) {
String mode = databindingMode(config);
if (providers == null)
providers = providers();
DatabindingProvider provider = null;
if (providers != null) {
for (DatabindingProvider p : providers)
if (p.isFor(mode))
provider = p;
} if (provider == null) {
provider = new DatabindingProviderImpl();
}
return provider;
}
public Databinding createRuntime(DatabindingConfig config) {
DatabindingProvider provider = provider(config);
return provider.create(config);
}
public WSDLGenerator createWsdlGen(DatabindingConfig config) {
DatabindingProvider provider = provider(config);
return provider.wsdlGen(config);
}
String databindingMode(DatabindingConfig config) {
if ( config.getMappingInfo() != null &&
config.getMappingInfo().getDatabindingMode() != null)
return config.getMappingInfo().getDatabindingMode();
if ( config.getFeatures() != null) for (WebServiceFeature f : config.getFeatures()) {
if (f instanceof DatabindingModeFeature) {
DatabindingModeFeature dmf = (DatabindingModeFeature) f;
config.properties().putAll(dmf.getProperties());
return dmf.getMode();
}
}
return null;
}
ClassLoader classLoader() {
ClassLoader classLoader = property(ClassLoader.class, null);
if (classLoader == null) classLoader = Thread.currentThread().getContextClassLoader();
return classLoader;
}
Properties loadPropertiesFile(String fileName) {
ClassLoader classLoader = classLoader();
Properties p = new Properties();
try {
InputStream is = null;
if (classLoader == null) {
is = ClassLoader.getSystemResourceAsStream(fileName);
} else {
is = classLoader.getResourceAsStream(fileName);
}
if (is != null) {
p.load(is);
}
} catch (Exception e) {
throw new WebServiceException(e);
}
return p;
}
public Builder createBuilder(Class<?> contractClass, Class<?> endpointClass) {
return new ConfigBuilder(this, contractClass, endpointClass);
}
static class ConfigBuilder implements Builder {
DatabindingConfig config;
DatabindingFactoryImpl factory;
ConfigBuilder(DatabindingFactoryImpl f, Class<?> contractClass, Class<?> implBeanClass) {
factory = f;
config = new DatabindingConfig();
config.setContractClass(contractClass);
config.setEndpointClass(implBeanClass);
}
public Builder targetNamespace(String targetNamespace) {
config.getMappingInfo().setTargetNamespace(targetNamespace);
return this;
}
public Builder serviceName(QName serviceName) {
config.getMappingInfo().setServiceName(serviceName);
return this;
}
public Builder portName(QName portName) {
config.getMappingInfo().setPortName(portName);
return this;
}
public Builder wsdlURL(URL wsdlURL) {
config.setWsdlURL(wsdlURL);
return this;
}
public Builder wsdlSource(Source wsdlSource) {
config.setWsdlSource(wsdlSource);
return this;
}
public Builder entityResolver(EntityResolver entityResolver) {
config.setEntityResolver(entityResolver);
return this;
}
public Builder classLoader(ClassLoader classLoader) {
config.setClassLoader(classLoader);
return this;
}
public Builder feature(WebServiceFeature... f) {
config.setFeatures(f);
return this;
}
public Builder property(String name, Object value) {
config.properties().put(name, value);
if (isfor(BindingID.class, name, value)) {
config.getMappingInfo().setBindingID((BindingID)value);
}
if (isfor(WSBinding.class, name, value)) {
config.setWSBinding((WSBinding)value);
}
if (isfor(WSDLPort.class, name, value)) {
config.setWsdlPort((WSDLPort)value);
}
if (isfor(MetadataReader.class, name, value)) {
config.setMetadataReader((MetadataReader)value);
}
return this;
}
boolean isfor(Class<?> type, String name, Object value) {
return type.getName().equals(name) && type.isInstance(value);
}
public com.oracle.webservices.internal.api.databinding.Databinding build() {
return factory.createRuntime(config);
}
public com.oracle.webservices.internal.api.databinding.WSDLGenerator createWSDLGenerator() {
return factory.createWsdlGen(config);
}
}
}

View File

@@ -0,0 +1,288 @@
/*
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;
import javax.xml.ws.WebServiceFeature;
import com.oracle.webservices.internal.api.databinding.JavaCallInfo;
import com.oracle.webservices.internal.api.message.MessageContext;
import com.sun.xml.internal.ws.api.databinding.EndpointCallBridge;
import com.sun.xml.internal.ws.api.databinding.WSDLGenInfo;
import com.sun.xml.internal.ws.api.databinding.Databinding;
import com.sun.xml.internal.ws.api.databinding.DatabindingConfig;
import com.sun.xml.internal.ws.api.databinding.ClientCallBridge;
import com.sun.xml.internal.ws.api.message.Message;
import com.sun.xml.internal.ws.api.message.MessageContextFactory;
import com.sun.xml.internal.ws.api.message.Packet;
import com.sun.xml.internal.ws.api.model.MEP;
import com.sun.xml.internal.ws.api.model.SEIModel;
import com.sun.xml.internal.ws.api.model.WSDLOperationMapping;
import com.sun.xml.internal.ws.api.model.wsdl.WSDLPort;
import com.sun.xml.internal.ws.api.pipe.Codec;
import com.sun.xml.internal.ws.api.pipe.ContentType;
import com.sun.xml.internal.ws.binding.BindingImpl;
import com.sun.xml.internal.ws.client.sei.StubAsyncHandler;
import com.sun.xml.internal.ws.client.sei.StubHandler;
import com.sun.xml.internal.ws.model.AbstractSEIModelImpl;
import com.sun.xml.internal.ws.model.JavaMethodImpl;
import com.sun.xml.internal.ws.model.RuntimeModeler;
import com.sun.xml.internal.ws.server.sei.TieHandler;
import com.sun.xml.internal.ws.wsdl.ActionBasedOperationSignature;
import com.sun.xml.internal.ws.wsdl.DispatchException;
import com.sun.xml.internal.ws.wsdl.OperationDispatcher;
/**
* WsRuntimeImpl is the databinding processor built on SEIModel
*
* @author shih-chang.chen@oracle.com
*/
public final class DatabindingImpl implements Databinding {
AbstractSEIModelImpl seiModel;
Map<Method, StubHandler> stubHandlers;
// QNameMap<TieHandler> wsdlOpMap = new QNameMap<TieHandler>();
Map<JavaMethodImpl, TieHandler> wsdlOpMap = new HashMap<JavaMethodImpl, TieHandler>();
Map<Method, TieHandler> tieHandlers = new HashMap<Method, TieHandler>();
OperationDispatcher operationDispatcher;
OperationDispatcher operationDispatcherNoWsdl;
boolean clientConfig = false;
Codec codec;
MessageContextFactory packetFactory = null;
public DatabindingImpl(DatabindingProviderImpl p, DatabindingConfig config) {
RuntimeModeler modeler = new RuntimeModeler(config);
modeler.setClassLoader(config.getClassLoader());
seiModel = modeler.buildRuntimeModel();
WSDLPort wsdlport = config.getWsdlPort();
packetFactory = new MessageContextFactory(seiModel.getWSBinding().getFeatures());
clientConfig = isClientConfig(config);
if (clientConfig) {
initStubHandlers();
}
seiModel.setDatabinding(this);
if (wsdlport != null) {
freeze(wsdlport);
}
if (operationDispatcher == null) {
operationDispatcherNoWsdl = new OperationDispatcher(null, seiModel.getWSBinding(), seiModel);
}
// if(!clientConfig) {
for (JavaMethodImpl jm : seiModel.getJavaMethods()) {
if (!jm.isAsync()) {
TieHandler th = new TieHandler(jm, seiModel.getWSBinding(), packetFactory);
wsdlOpMap.put(jm, th);
tieHandlers.put(th.getMethod(), th);
}
}
// }
}
//TODO isClientConfig
private boolean isClientConfig(DatabindingConfig config) {
if (config.getContractClass() == null) {
return false;
}
if (!config.getContractClass().isInterface()) {
return false;
}
return (config.getEndpointClass() == null || config.getEndpointClass().isInterface());
}
//TODO fix freeze
public void freeze(WSDLPort port) {
if (clientConfig) {
return;
}
synchronized(this) {
if (operationDispatcher == null) {
operationDispatcher = (port == null) ? null : new OperationDispatcher(port, seiModel.getWSBinding(), seiModel);
}
}
}
public SEIModel getModel() {
return seiModel;
}
//Refactored from SEIStub
private void initStubHandlers() {
stubHandlers = new HashMap<Method, StubHandler>();
Map<ActionBasedOperationSignature, JavaMethodImpl> syncs = new HashMap<ActionBasedOperationSignature, JavaMethodImpl>();
// fill in methodHandlers.
// first fill in sychronized versions
for (JavaMethodImpl m : seiModel.getJavaMethods()) {
if (!m.getMEP().isAsync) {
StubHandler handler = new StubHandler(m, packetFactory);
syncs.put(m.getOperationSignature(), m);
stubHandlers.put(m.getMethod(), handler);
}
}
for (JavaMethodImpl jm : seiModel.getJavaMethods()) {
JavaMethodImpl sync = syncs.get(jm.getOperationSignature());
if (jm.getMEP() == MEP.ASYNC_CALLBACK || jm.getMEP() == MEP.ASYNC_POLL) {
Method m = jm.getMethod();
StubAsyncHandler handler = new StubAsyncHandler(jm, sync, packetFactory);
stubHandlers.put(m, handler);
}
}
}
JavaMethodImpl resolveJavaMethod(Packet req) throws DispatchException {
WSDLOperationMapping m = req.getWSDLOperationMapping();
if (m == null) {
synchronized (this) {
m = (operationDispatcher != null)
? operationDispatcher.getWSDLOperationMapping(req)
: operationDispatcherNoWsdl.getWSDLOperationMapping(req);
}
}
return (JavaMethodImpl) m.getJavaMethod();
}
public JavaCallInfo deserializeRequest(Packet req) {
com.sun.xml.internal.ws.api.databinding.JavaCallInfo call = new com.sun.xml.internal.ws.api.databinding.JavaCallInfo();
try {
JavaMethodImpl wsdlOp = resolveJavaMethod(req);
TieHandler tie = wsdlOpMap.get(wsdlOp);
call.setMethod(tie.getMethod());
Object[] args = tie.readRequest(req.getMessage());
call.setParameters(args);
} catch (DispatchException e) {
call.setException(e);
}
return call;
}
public JavaCallInfo deserializeResponse(Packet res, JavaCallInfo call) {
StubHandler stubHandler = stubHandlers.get(call.getMethod());
try {
return stubHandler.readResponse(res, call);
} catch (Throwable e) {
call.setException(e);
return call;
}
}
public WebServiceFeature[] getFeatures() {
// TODO Auto-generated method stub
return null;
}
@Override
public Packet serializeRequest(JavaCallInfo call) {
StubHandler stubHandler = stubHandlers.get(call.getMethod());
Packet p = stubHandler.createRequestPacket(call);
p.setState(Packet.State.ClientRequest);
return p;
}
@Override
public Packet serializeResponse(JavaCallInfo call) {
Method method = call.getMethod();
Message message = null;
if (method != null) {
TieHandler th = tieHandlers.get(method);
if (th != null) {
return th.serializeResponse(call);
}
}
if (call.getException() instanceof DispatchException) {
message = ((DispatchException) call.getException()).fault;
}
Packet p = (Packet) packetFactory.createContext(message);
p.setState(Packet.State.ServerResponse);
return p;
}
@Override
public ClientCallBridge getClientBridge(Method method) {
return stubHandlers.get(method);
}
@Override
public void generateWSDL(WSDLGenInfo info) {
com.sun.xml.internal.ws.wsdl.writer.WSDLGenerator wsdlGen = new com.sun.xml.internal.ws.wsdl.writer.WSDLGenerator(
seiModel,
info.getWsdlResolver(),
seiModel.getWSBinding(),
info.getContainer(), seiModel.getEndpointClass(),
info.isInlineSchemas(),
info.isSecureXmlProcessingDisabled(),
info.getExtensions());
wsdlGen.doGeneration();
}
@Override
public EndpointCallBridge getEndpointBridge(Packet req) throws DispatchException {
JavaMethodImpl wsdlOp = resolveJavaMethod(req);
return wsdlOpMap.get(wsdlOp);
}
Codec getCodec() {
if (codec == null) {
codec = ((BindingImpl) seiModel.getWSBinding()).createCodec();
}
return codec;
}
@Override
public ContentType encode(Packet packet, OutputStream out) throws IOException {
return getCodec().encode(packet, out);
}
@Override
public void decode(InputStream in, String ct, Packet p) throws IOException {
getCodec().decode(in, ct, p);
}
@Override
public com.oracle.webservices.internal.api.databinding.JavaCallInfo createJavaCallInfo(Method method, Object[] args) {
return new com.sun.xml.internal.ws.api.databinding.JavaCallInfo(method, args);
}
@Override
public com.oracle.webservices.internal.api.databinding.JavaCallInfo deserializeResponse(
MessageContext message, com.oracle.webservices.internal.api.databinding.JavaCallInfo call) {
return deserializeResponse((Packet) message, (JavaCallInfo) call);
}
@Override
public com.oracle.webservices.internal.api.databinding.JavaCallInfo deserializeRequest(MessageContext message) {
return deserializeRequest((Packet) message);
}
@Override
public MessageContextFactory getMessageContextFactory() {
return packetFactory;
}
}

View File

@@ -0,0 +1,104 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db;
import java.io.File;
import java.util.Map;
import com.oracle.webservices.internal.api.databinding.WSDLGenerator;
import com.oracle.webservices.internal.api.databinding.WSDLResolver;
import com.sun.xml.internal.ws.api.databinding.Databinding;
import com.sun.xml.internal.ws.api.databinding.DatabindingConfig;
import com.sun.xml.internal.ws.api.databinding.WSDLGenInfo;
import com.sun.xml.internal.ws.spi.db.DatabindingProvider;
/**
* DatabindingProviderImpl is the default JAXWS implementation of DatabindingProvider
*
* @author shih-chang.chen@oracle.com
*/
public class DatabindingProviderImpl implements DatabindingProvider {
static final private String CachedDatabinding = "com.sun.xml.internal.ws.db.DatabindingProviderImpl";
Map<String, Object> properties;
public void init(Map<String, Object> p) {
properties = p;
}
DatabindingImpl getCachedDatabindingImpl(DatabindingConfig config) {
Object object = config.properties().get(CachedDatabinding);
return (object != null && object instanceof DatabindingImpl)? (DatabindingImpl)object : null;
}
public Databinding create(DatabindingConfig config) {
DatabindingImpl impl = getCachedDatabindingImpl(config);
if (impl == null) {
impl = new DatabindingImpl(this, config);
config.properties().put(CachedDatabinding, impl);
}
return impl;
}
public WSDLGenerator wsdlGen(DatabindingConfig config) {
DatabindingImpl impl = (DatabindingImpl)create(config);
return new JaxwsWsdlGen(impl);
}
public boolean isFor(String databindingMode) {
//This is the default one, so it always return true
return true;
}
static public class JaxwsWsdlGen implements WSDLGenerator {
DatabindingImpl databinding;
WSDLGenInfo wsdlGenInfo;
JaxwsWsdlGen(DatabindingImpl impl) {
databinding = impl;
wsdlGenInfo = new WSDLGenInfo();
}
public WSDLGenerator inlineSchema(boolean inline) {
wsdlGenInfo.setInlineSchemas(inline);
return this;
}
public WSDLGenerator property(String name, Object value) {
// TODO wsdlGenInfo.set...
return this;
}
public void generate(WSDLResolver wsdlResolver) {
wsdlGenInfo.setWsdlResolver(wsdlResolver);
databinding.generateWSDL(wsdlGenInfo);
}
public void generate(File outputDir, String name) {
// TODO Auto-generated method stub
databinding.generateWSDL(wsdlGenInfo);
}
}
}

View File

@@ -0,0 +1,268 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db.glassfish;
import java.io.InputStream;
import java.io.OutputStream;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import javax.xml.bind.attachment.AttachmentMarshaller;
import javax.xml.bind.attachment.AttachmentUnmarshaller;
import javax.xml.namespace.NamespaceContext;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;
import javax.xml.transform.Result;
import javax.xml.transform.Source;
import org.w3c.dom.Node;
import org.xml.sax.ContentHandler;
import com.sun.xml.internal.bind.api.JAXBRIContext;
import com.sun.xml.internal.ws.spi.db.BindingContext;
import com.sun.xml.internal.ws.spi.db.XMLBridge;
import com.sun.xml.internal.ws.spi.db.DatabindingException;
import com.sun.xml.internal.ws.spi.db.TypeInfo;
public class BridgeWrapper<T> implements XMLBridge<T> {
private JAXBRIContextWrapper parent;
private com.sun.xml.internal.bind.api.Bridge<T> bridge;
public BridgeWrapper(JAXBRIContextWrapper p, com.sun.xml.internal.bind.api.Bridge<T> b) {
parent = p;
bridge = b;
}
@Override
public BindingContext context() {
return parent;
}
com.sun.xml.internal.bind.api.Bridge getBridge() {
return bridge;
}
@Override
public boolean equals(Object obj) {
return bridge.equals(obj);
}
public JAXBRIContext getContext() {
return bridge.getContext();
}
@Override
public TypeInfo getTypeInfo() {
return parent.typeInfo(bridge.getTypeReference());
}
@Override
public int hashCode() {
return bridge.hashCode();
}
// public final void marshal(BridgeContext context, T object, ContentHandler contentHandler) throws JAXBException {
// bridge.marshal(context, object, contentHandler);
// }
//
// public final void marshal(BridgeContext context, T object, Node output) throws JAXBException {
// bridge.marshal(context, object, output);
// }
//
// public final void marshal(BridgeContext context, T object, OutputStream output, NamespaceContext nsContext) throws JAXBException {
// bridge.marshal(context, object, output, nsContext);
// }
//
// public final void marshal(BridgeContext context, T object, Result result) throws JAXBException {
// bridge.marshal(context, object, result);
// }
//
// public final void marshal(BridgeContext context, T object, XMLStreamWriter output) throws JAXBException {
// bridge.marshal(context, object, output);
// }
public void marshal(Marshaller m, T object, ContentHandler contentHandler) throws JAXBException {
bridge.marshal(m, object, contentHandler);
}
public void marshal(Marshaller m, T object, Node output) throws JAXBException {
bridge.marshal(m, object, output);
}
public void marshal(Marshaller m, T object, OutputStream output, NamespaceContext nsContext) throws JAXBException {
bridge.marshal(m, object, output, nsContext);
}
public void marshal(Marshaller m, T object, Result result) throws JAXBException {
bridge.marshal(m, object, result);
}
public void marshal(Marshaller m, T object, XMLStreamWriter output) throws JAXBException {
bridge.marshal(m, object, output);
// bridge.marshal(m, (T) convert(object), output);
}
@Override
public final void marshal(T object, ContentHandler contentHandler, AttachmentMarshaller am) throws JAXBException {
// bridge.marshal((T) convert(object), contentHandler, am);
bridge.marshal(object, contentHandler, am);
}
// Object convert(Object o) {
// return (o instanceof WrapperComposite)? convertWrapper((WrapperComposite)o) : o;
// }
//
// static CompositeStructure convertWrapper(WrapperComposite w) {
// CompositeStructure cs = new CompositeStructure();
// cs.values = w.values;
// cs.bridges = new Bridge[w.bridges.length];
// for (int i = 0; i < cs.bridges.length; i++)
// cs.bridges[i] = ((BridgeWrapper)w.bridges[i]).getBridge();
// return cs;
// }
public void marshal(T object, ContentHandler contentHandler) throws JAXBException {
bridge.marshal(object, contentHandler);
// bridge.marshal((T) convert(object), contentHandler);
}
@Override
public void marshal(T object, Node output) throws JAXBException {
bridge.marshal(object, output);
// bridge.marshal((T) convert(object), output);
}
@Override
public void marshal(T object, OutputStream output, NamespaceContext nsContext, AttachmentMarshaller am) throws JAXBException {
// bridge.marshal((T) convert(object), output, nsContext, am);
bridge.marshal(object, output, nsContext, am);
}
public void marshal(T object, OutputStream output, NamespaceContext nsContext) throws JAXBException {
bridge.marshal(object, output, nsContext);
// bridge.marshal((T) convert(object), output, nsContext);
}
@Override
public final void marshal(T object, Result result) throws JAXBException {
bridge.marshal(object, result);
}
@Override
public final void marshal(T object, XMLStreamWriter output,
AttachmentMarshaller am) throws JAXBException {
bridge.marshal(object, output, am);
}
public final void marshal(T object, XMLStreamWriter output)
throws JAXBException {
bridge.marshal(object, output);
}
@Override
public String toString() {
return BridgeWrapper.class.getName() + " : " + bridge.toString();
}
// public final T unmarshal(BridgeContext context, InputStream in)
// throws JAXBException {
// return bridge.unmarshal(context, in);
// }
//
// public final T unmarshal(BridgeContext context, Node n)
// throws JAXBException {
// return bridge.unmarshal(context, n);
// }
//
// public final T unmarshal(BridgeContext context, Source in)
// throws JAXBException {
// return bridge.unmarshal(context, in);
// }
//
// public final T unmarshal(BridgeContext context, XMLStreamReader in)
// throws JAXBException {
// return bridge.unmarshal(context, in);
// }
@Override
public final T unmarshal(InputStream in) throws JAXBException {
return bridge.unmarshal(in);
}
@Override
public final T unmarshal(Node n, AttachmentUnmarshaller au)
throws JAXBException {
return bridge.unmarshal(n, au);
}
public final T unmarshal(Node n) throws JAXBException {
return bridge.unmarshal(n);
}
@Override
public final T unmarshal(Source in, AttachmentUnmarshaller au)
throws JAXBException {
return bridge.unmarshal(in, au);
}
public final T unmarshal(Source in) throws DatabindingException {
try {
return bridge.unmarshal(in);
} catch (JAXBException e) {
throw new DatabindingException(e);
}
}
public T unmarshal(Unmarshaller u, InputStream in) throws JAXBException {
return bridge.unmarshal(u, in);
}
public T unmarshal(Unmarshaller context, Node n) throws JAXBException {
return bridge.unmarshal(context, n);
}
public T unmarshal(Unmarshaller u, Source in) throws JAXBException {
return bridge.unmarshal(u, in);
}
public T unmarshal(Unmarshaller u, XMLStreamReader in) throws JAXBException {
return bridge.unmarshal(u, in);
}
@Override
public final T unmarshal(XMLStreamReader in, AttachmentUnmarshaller au)
throws JAXBException {
return bridge.unmarshal(in, au);
}
public final T unmarshal(XMLStreamReader in) throws JAXBException {
return bridge.unmarshal(in);
}
@Override
public boolean supportOutputStream() {
return true;
}
}

View File

@@ -0,0 +1,130 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db.glassfish;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.lang.reflect.Type;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import com.sun.xml.internal.bind.api.TypeReference;
import com.sun.xml.internal.bind.api.JAXBRIContext;
import com.sun.xml.internal.bind.api.CompositeStructure;
import com.sun.xml.internal.bind.v2.ContextFactory;
import com.sun.xml.internal.bind.v2.model.annotation.RuntimeAnnotationReader;
import com.sun.xml.internal.bind.v2.runtime.MarshallerImpl;
import com.sun.xml.internal.ws.developer.JAXBContextFactory;
import com.sun.xml.internal.ws.spi.db.BindingContext;
import com.sun.xml.internal.ws.spi.db.BindingContextFactory;
import com.sun.xml.internal.ws.spi.db.BindingInfo;
import com.sun.xml.internal.ws.spi.db.DatabindingException;
import com.sun.xml.internal.ws.spi.db.TypeInfo;
import com.sun.xml.internal.ws.spi.db.WrapperComposite;
import java.util.Arrays;
/**
* JAXBRIContextFactory
*
* @author shih-chang.chen@oracle.com
*/
public class JAXBRIContextFactory extends BindingContextFactory {
@Override
public BindingContext newContext(JAXBContext context) {
return new JAXBRIContextWrapper((JAXBRIContext) context, null);
}
@Override
public BindingContext newContext(BindingInfo bi) {
Class[] classes = bi.contentClasses().toArray(new Class[bi.contentClasses().size()]);
for (int i = 0; i < classes.length; i++) {
if (WrapperComposite.class.equals(classes[i])) {
classes[i] = CompositeStructure.class;
}
}
Map<TypeInfo, TypeReference> typeInfoMappings = typeInfoMappings(bi.typeInfos());
Map<Class, Class> subclassReplacements = bi.subclassReplacements();
String defaultNamespaceRemap = bi.getDefaultNamespace();
Boolean c14nSupport = (Boolean) bi.properties().get("c14nSupport");
RuntimeAnnotationReader ar = (RuntimeAnnotationReader) bi.properties().get("com.sun.xml.internal.bind.v2.model.annotation.RuntimeAnnotationReader");
JAXBContextFactory jaxbContextFactory = (JAXBContextFactory) bi.properties().get(JAXBContextFactory.class.getName());
try {
JAXBRIContext context = (jaxbContextFactory != null)
? jaxbContextFactory.createJAXBContext(
bi.getSEIModel(),
toList(classes),
toList(typeInfoMappings.values()))
: ContextFactory.createContext(
classes, typeInfoMappings.values(),
subclassReplacements, defaultNamespaceRemap,
(c14nSupport != null) ? c14nSupport : false,
ar, false, false, false);
return new JAXBRIContextWrapper(context, typeInfoMappings);
} catch (Exception e) {
throw new DatabindingException(e);
}
}
private <T> List<T> toList(T[] a) {
List<T> l = new ArrayList<T>();
l.addAll(Arrays.asList(a));
return l;
}
private <T> List<T> toList(Collection<T> col) {
if (col instanceof List) {
return (List<T>) col;
}
List<T> l = new ArrayList<T>();
l.addAll(col);
return l;
}
private Map<TypeInfo, TypeReference> typeInfoMappings(Collection<TypeInfo> typeInfos) {
Map<TypeInfo, TypeReference> map = new java.util.HashMap<TypeInfo, TypeReference>();
for (TypeInfo ti : typeInfos) {
Type type = WrapperComposite.class.equals(ti.type) ? CompositeStructure.class : ti.type;
TypeReference tr = new TypeReference(ti.tagName, type, ti.annotations);
map.put(ti, tr);
}
return map;
}
@Override
protected BindingContext getContext(Marshaller m) {
return newContext(((MarshallerImpl) m).getContext());
}
@Override
protected boolean isFor(String str) {
return (str.equals("glassfish.jaxb")
|| str.equals(this.getClass().getName())
|| str.equals("com.sun.xml.internal.bind.v2.runtime"));
}
}

View File

@@ -0,0 +1,182 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db.glassfish;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.SchemaOutputResolver;
import javax.xml.bind.Unmarshaller;
import javax.xml.namespace.QName;
import com.sun.xml.internal.bind.api.JAXBRIContext;
import com.sun.xml.internal.bind.api.TypeReference;
import com.sun.xml.internal.bind.v2.model.runtime.RuntimeTypeInfoSet;
import com.sun.xml.internal.ws.spi.db.BindingContext;
import com.sun.xml.internal.ws.spi.db.XMLBridge;
import com.sun.xml.internal.ws.spi.db.TypeInfo;
import com.sun.xml.internal.ws.spi.db.WrapperComposite;
class JAXBRIContextWrapper implements BindingContext {
private Map<TypeInfo, TypeReference> typeRefs;
private Map<TypeReference, TypeInfo> typeInfos;
private JAXBRIContext context;
JAXBRIContextWrapper(JAXBRIContext cxt, Map<TypeInfo, TypeReference> refs) {
context = cxt;
typeRefs = refs;
if (refs != null) {
typeInfos = new java.util.HashMap<TypeReference, TypeInfo>();
for (TypeInfo ti : refs.keySet()) {
typeInfos.put(typeRefs.get(ti), ti);
}
}
}
TypeReference typeReference(TypeInfo ti) {
return (typeRefs != null) ? typeRefs.get(ti) : null;
}
TypeInfo typeInfo(TypeReference tr) {
return (typeInfos != null) ? typeInfos.get(tr) : null;
}
@Override
public Marshaller createMarshaller() throws JAXBException {
return context.createMarshaller();
}
@Override
public Unmarshaller createUnmarshaller() throws JAXBException {
return context.createUnmarshaller();
}
@Override
public void generateSchema(SchemaOutputResolver outputResolver)
throws IOException {
context.generateSchema(outputResolver);
}
@Override
public String getBuildId() {
return context.getBuildId();
}
@Override
public QName getElementName(Class o) throws JAXBException {
return context.getElementName(o);
}
@Override
public QName getElementName(Object o) throws JAXBException {
return context.getElementName(o);
}
@Override
public <B, V> com.sun.xml.internal.ws.spi.db.PropertyAccessor<B, V> getElementPropertyAccessor(
Class<B> wrapperBean, String nsUri, String localName)
throws JAXBException {
return new RawAccessorWrapper(context.getElementPropertyAccessor(wrapperBean, nsUri, localName));
}
@Override
public List<String> getKnownNamespaceURIs() {
return context.getKnownNamespaceURIs();
}
public RuntimeTypeInfoSet getRuntimeTypeInfoSet() {
return context.getRuntimeTypeInfoSet();
}
public QName getTypeName(com.sun.xml.internal.bind.api.TypeReference tr) {
return context.getTypeName(tr);
}
@Override
public int hashCode() {
return context.hashCode();
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final JAXBRIContextWrapper other = (JAXBRIContextWrapper) obj;
if (this.context != other.context && (this.context == null || !this.context.equals(other.context))) {
return false;
}
return true;
}
@Override
public boolean hasSwaRef() {
return context.hasSwaRef();
}
@Override
public String toString() {
return JAXBRIContextWrapper.class.getName() + " : " + context.toString();
}
@Override
public XMLBridge createBridge(TypeInfo ti) {
TypeReference tr = typeRefs.get(ti);
com.sun.xml.internal.bind.api.Bridge b = context.createBridge(tr);
return WrapperComposite.class.equals(ti.type)
? new WrapperBridge(this, b)
: new BridgeWrapper(this, b);
}
@Override
public JAXBContext getJAXBContext() {
return context;
}
@Override
public QName getTypeName(TypeInfo ti) {
TypeReference tr = typeRefs.get(ti);
return context.getTypeName(tr);
}
@Override
public XMLBridge createFragmentBridge() {
return new MarshallerBridge((com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl) context);
}
@Override
public Object newWrapperInstace(Class<?> wrapperType)
throws InstantiationException, IllegalAccessException {
return wrapperType.newInstance();
}
}

View File

@@ -0,0 +1,132 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db.glassfish;
import java.io.InputStream;
import java.io.OutputStream;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import javax.xml.namespace.NamespaceContext;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;
import javax.xml.transform.Result;
import javax.xml.transform.Source;
import org.w3c.dom.Node;
import org.xml.sax.ContentHandler;
import com.sun.istack.internal.NotNull;
import com.sun.xml.internal.bind.api.TypeReference;
import com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl;
import com.sun.xml.internal.bind.v2.runtime.MarshallerImpl;
import com.sun.xml.internal.ws.spi.db.BindingContext;
import com.sun.xml.internal.ws.spi.db.DatabindingException;
import com.sun.xml.internal.ws.spi.db.TypeInfo;
public class MarshallerBridge
extends com.sun.xml.internal.bind.api.Bridge
implements com.sun.xml.internal.ws.spi.db.XMLBridge {
protected MarshallerBridge(JAXBContextImpl context) {
super(context);
}
public void marshal(Marshaller m, Object object, XMLStreamWriter output) throws JAXBException {
m.setProperty(Marshaller.JAXB_FRAGMENT,true);
try {
m.marshal(object,output);
} finally {
m.setProperty(Marshaller.JAXB_FRAGMENT,false);
}
}
public void marshal(Marshaller m, Object object, OutputStream output, NamespaceContext nsContext) throws JAXBException {
m.setProperty(Marshaller.JAXB_FRAGMENT,true);
try {
((MarshallerImpl)m).marshal(object,output,nsContext);
} finally {
m.setProperty(Marshaller.JAXB_FRAGMENT,false);
}
}
public void marshal(Marshaller m, Object object, Node output) throws JAXBException {
m.setProperty(Marshaller.JAXB_FRAGMENT,true);
try {
m.marshal(object,output);
} finally {
m.setProperty(Marshaller.JAXB_FRAGMENT,false);
}
}
public void marshal(Marshaller m, Object object, ContentHandler contentHandler) throws JAXBException {
m.setProperty(Marshaller.JAXB_FRAGMENT,true);
try {
m.marshal(object,contentHandler);
} finally {
m.setProperty(Marshaller.JAXB_FRAGMENT,false);
}
}
public void marshal(Marshaller m, Object object, Result result) throws JAXBException {
m.setProperty(Marshaller.JAXB_FRAGMENT,true);
try {
m.marshal(object,result);
} finally {
m.setProperty(Marshaller.JAXB_FRAGMENT,false);
}
}
public Object unmarshal(Unmarshaller u, XMLStreamReader in) {
throw new UnsupportedOperationException();
}
public Object unmarshal(Unmarshaller u, Source in) {
throw new UnsupportedOperationException();
}
public Object unmarshal(Unmarshaller u, InputStream in) {
throw new UnsupportedOperationException();
}
public Object unmarshal(Unmarshaller u, Node n) {
throw new UnsupportedOperationException();
}
public TypeInfo getTypeInfo() {
throw new UnsupportedOperationException();
}
public TypeReference getTypeReference() {
throw new UnsupportedOperationException();
}
public BindingContext context() {
throw new UnsupportedOperationException();
}
public boolean supportOutputStream() {
return true;
}
}

View File

@@ -0,0 +1,74 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db.glassfish;
import com.sun.xml.internal.ws.spi.db.DatabindingException;
import com.sun.xml.internal.ws.spi.db.PropertyAccessor;
import com.sun.xml.internal.bind.api.AccessorException;
import com.sun.xml.internal.bind.api.RawAccessor;
@SuppressWarnings("unchecked")
public class RawAccessorWrapper implements PropertyAccessor {
private RawAccessor accessor;
public RawAccessorWrapper(RawAccessor a) {
accessor = a;
}
@Override
public boolean equals(Object obj) {
return accessor.equals(obj);
}
@Override
public Object get(Object bean) throws DatabindingException {
try {
return accessor.get(bean);
} catch (AccessorException e) {
throw new DatabindingException(e);
}
}
@Override
public int hashCode() {
return accessor.hashCode();
}
@Override
public void set(Object bean, Object value) throws DatabindingException {
try {
accessor.set(bean, value);
} catch (AccessorException e) {
throw new DatabindingException(e);
}
}
@Override
public String toString() {
return accessor.toString();
}
}

View File

@@ -0,0 +1,157 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.xml.internal.ws.db.glassfish;
import java.io.InputStream;
import java.io.OutputStream;
import javax.xml.bind.JAXBException;
import javax.xml.bind.attachment.AttachmentMarshaller;
import javax.xml.bind.attachment.AttachmentUnmarshaller;
import javax.xml.namespace.NamespaceContext;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;
import javax.xml.transform.Result;
import javax.xml.transform.Source;
import org.w3c.dom.Node;
import org.xml.sax.ContentHandler;
import com.sun.xml.internal.bind.api.Bridge;
import com.sun.xml.internal.bind.api.CompositeStructure;
import com.sun.xml.internal.ws.spi.db.BindingContext;
import com.sun.xml.internal.ws.spi.db.XMLBridge;
import com.sun.xml.internal.ws.spi.db.TypeInfo;
import com.sun.xml.internal.ws.spi.db.WrapperComposite;
public class WrapperBridge<T> implements XMLBridge<T> {
private JAXBRIContextWrapper parent;
private com.sun.xml.internal.bind.api.Bridge<T> bridge;
public WrapperBridge(JAXBRIContextWrapper p, com.sun.xml.internal.bind.api.Bridge<T> b) {
parent = p;
bridge = b;
}
@Override
public BindingContext context() {
return parent;
}
@Override
public boolean equals(Object obj) {
return bridge.equals(obj);
}
@Override
public TypeInfo getTypeInfo() {
return parent.typeInfo(bridge.getTypeReference());
}
@Override
public int hashCode() {
return bridge.hashCode();
}
static CompositeStructure convert(Object o) {
WrapperComposite w = (WrapperComposite) o;
CompositeStructure cs = new CompositeStructure();
cs.values = w.values;
cs.bridges = new Bridge[w.bridges.length];
for (int i = 0; i < cs.bridges.length; i++) {
cs.bridges[i] = ((BridgeWrapper) w.bridges[i]).getBridge();
}
return cs;
}
@Override
public final void marshal(T object, ContentHandler contentHandler, AttachmentMarshaller am) throws JAXBException {
bridge.marshal((T) convert(object), contentHandler, am);
// bridge.marshal(object, contentHandler, am);
}
@Override
public void marshal(T object, Node output) throws JAXBException {
throw new UnsupportedOperationException();
// bridge.marshal(object, output);
// bridge.marshal((T) convert(object), output);
}
@Override
public void marshal(T object, OutputStream output, NamespaceContext nsContext, AttachmentMarshaller am) throws JAXBException {
bridge.marshal((T) convert(object), output, nsContext, am);
}
@Override
public final void marshal(T object, Result result) throws JAXBException {
throw new UnsupportedOperationException();
// bridge.marshal(object, result);
}
@Override
public final void marshal(T object, XMLStreamWriter output, AttachmentMarshaller am) throws JAXBException {
bridge.marshal((T) convert(object), output, am);
}
@Override
public String toString() {
return BridgeWrapper.class.getName() + " : " + bridge.toString();
}
@Override
public final T unmarshal(InputStream in) throws JAXBException {
//EndpointArgumentsBuilder.RpcLit.readRequest
throw new UnsupportedOperationException();
// return bridge.unmarshal(in);
}
@Override
public final T unmarshal(Node n, AttachmentUnmarshaller au) throws JAXBException {
//EndpointArgumentsBuilder.RpcLit.readRequest
throw new UnsupportedOperationException();
// return bridge.unmarshal(n, au);
}
@Override
public final T unmarshal(Source in, AttachmentUnmarshaller au) throws JAXBException {
//EndpointArgumentsBuilder.RpcLit.readRequest
throw new UnsupportedOperationException();
// return bridge.unmarshal(in, au);
}
@Override
public final T unmarshal(XMLStreamReader in, AttachmentUnmarshaller au) throws JAXBException {
//EndpointArgumentsBuilder.RpcLit.readRequest
throw new UnsupportedOperationException();
// return bridge.unmarshal(in, au);
}
@Override
public boolean supportOutputStream() {
return true;
}
}