org.apache.cxf.jibx.JibxDataBinding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-rt-databinding-jibx Show documentation
Show all versions of cxf-rt-databinding-jibx Show documentation
Apache CXF Runtime JiBX DataBinding
/**
* 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.jibx;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.xml.namespace.QName;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;
import javax.xml.transform.dom.DOMSource;
import org.w3c.dom.Document;
import org.apache.cxf.common.logging.LogUtils;
import org.apache.cxf.common.xmlschema.SchemaCollection;
import org.apache.cxf.databinding.AbstractDataBinding;
import org.apache.cxf.databinding.AbstractWrapperHelper;
import org.apache.cxf.databinding.DataReader;
import org.apache.cxf.databinding.DataWriter;
import org.apache.cxf.databinding.WrapperCapableDatabinding;
import org.apache.cxf.databinding.WrapperHelper;
import org.apache.cxf.jaxb.JAXBUtils;
import org.apache.cxf.service.Service;
import org.apache.cxf.service.model.ServiceInfo;
public class JibxDataBinding extends AbstractDataBinding implements WrapperCapableDatabinding {
private static final Logger LOG = LogUtils.getLogger(JibxDataBinding.class);
private static final Class> SUPPORTED_DATA_READER_FORMATS[] = new Class>[] {
XMLStreamReader.class
};
private static final Class> SUPPORTED_DATA_WRITER_FORMATS[] = new Class>[] {
XMLStreamWriter.class
};
@SuppressWarnings("unchecked")
public DataReader createReader(Class cls) {
if (XMLStreamReader.class.equals(cls)) {
return (DataReader)(new JibxDataReader());
}
return null;
}
@SuppressWarnings("unchecked")
public DataWriter createWriter(Class cls) {
if (XMLStreamWriter.class.equals(cls)) {
return (DataWriter)(new JibxDataWriter());
}
return null;
}
public Class>[] getSupportedReaderFormats() {
return SUPPORTED_DATA_READER_FORMATS;
}
public Class>[] getSupportedWriterFormats() {
return SUPPORTED_DATA_WRITER_FORMATS;
}
public void initialize(Service service) {
if (LOG.isLoggable(Level.FINER)) {
LOG.log(Level.FINER, "Initialize JiBX Databinding for [" + service.getName() + "] service");
}
for (ServiceInfo serviceInfo : service.getServiceInfos()) {
SchemaCollection schemaCollection = serviceInfo.getXmlSchemaCollection();
if (schemaCollection.getXmlSchemas().length > 1) {
// Schemas are already populated.
continue;
}
Collection schemas = getSchemas();
if (schemas != null) {
for (DOMSource source : schemas) {
addSchemaDocument(serviceInfo, schemaCollection, (Document)source.getNode(), source
.getSystemId());
}
}
JibxSchemaInitializer schemaInit = new JibxSchemaInitializer(serviceInfo, schemaCollection,
this);
schemaInit.walk();
}
}
public WrapperHelper createWrapperHelper(Class> wrapperType, QName typeName, List partNames,
List elTypeNames, List> partClasses) {
/*
* Copied from org.apache.cxf.xmlbeans.XmlBeansDataBinding#createWrapperHelper method
*/
List getMethods = new ArrayList(partNames.size());
List setMethods = new ArrayList(partNames.size());
List fields = new ArrayList(partNames.size());
Method allMethods[] = wrapperType.getMethods();
for (int x = 0; x < partNames.size(); x++) {
String partName = partNames.get(x);
if (partName == null) {
getMethods.add(null);
setMethods.add(null);
fields.add(null);
continue;
}
String getAccessor = JAXBUtils.nameToIdentifier(partName, JAXBUtils.IdentifierType.GETTER);
String setAccessor = JAXBUtils.nameToIdentifier(partName, JAXBUtils.IdentifierType.SETTER);
Method getMethod = null;
Method setMethod = null;
allMethods = wrapperType.getMethods();
try {
getMethod = wrapperType.getMethod(getAccessor, AbstractWrapperHelper.NO_CLASSES);
} catch (NoSuchMethodException ex) {
// ignore for now
}
for (Method method : allMethods) {
if (method.getParameterTypes() != null && method.getParameterTypes().length == 1
&& (setAccessor.equals(method.getName()))) {
setMethod = method;
break;
}
}
getMethods.add(getMethod);
setMethods.add(setMethod);
// No public fields in wrapper class
fields.add(null);
}
return new JibxWrapperHelper(wrapperType, setMethods.toArray(new Method[setMethods.size()]),
getMethods.toArray(new Method[getMethods.size()]), fields
.toArray(new Field[fields.size()]));
}
}