blob: daace6ec48d7da24151fcc19ee878b3a12caa32d [file] [log] [blame]
/**
* 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.camel.component.cxf.converter;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.ws.rs.core.Response;
import javax.xml.namespace.QName;
import javax.xml.soap.SOAPMessage;
import org.apache.camel.Converter;
import org.apache.camel.Endpoint;
import org.apache.camel.Exchange;
import org.apache.camel.FallbackConverter;
import org.apache.camel.TypeConverter;
import org.apache.camel.component.cxf.CxfEndpoint;
import org.apache.camel.component.cxf.CxfSpringEndpoint;
import org.apache.camel.component.cxf.DataFormat;
import org.apache.camel.spi.TypeConverterRegistry;
import org.apache.camel.spring.SpringCamelContext;
import org.apache.camel.util.EndpointHelper;
import org.apache.cxf.common.classloader.ClassLoaderUtils;
import org.apache.cxf.message.Message;
import org.apache.cxf.message.MessageContentsList;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* The <a href="http://camel.apache.org/type-converter.html">Type Converters</a>
* for CXF related types' converting .
*
* @version
*/
@Converter
public final class CxfConverter {
private static final Logger LOG = LoggerFactory.getLogger(CxfConverter.class);
private CxfConverter() {
// Helper class
}
@Converter
public static MessageContentsList toMessageContentsList(final Object[] array) {
if (array != null) {
return new MessageContentsList(array);
} else {
return new MessageContentsList();
}
}
@Converter
public static List<Class> toClassesList(final String[] classNames) throws ClassNotFoundException {
List<Class> answer = new ArrayList<Class>();
for (String className : classNames) {
answer.add(ClassLoaderUtils.loadClass(className.trim(), CxfConverter.class));
}
return answer;
}
@Converter
public static List<Class> toClassList(String classeString) throws ClassNotFoundException {
String[] classNames = classeString.split(",|;");
return toClassesList(classNames);
}
@Converter
public static QName toQName(String qname) {
return QName.valueOf(qname);
}
@Converter
public static Object[] toArray(Object object) {
if (object instanceof Collection) {
return ((Collection)object).toArray();
} else {
Object answer[];
if (object == null) {
answer = new Object[0];
} else {
answer = new Object[1];
answer[0] = object;
}
return answer;
}
}
@Converter
public static String soapMessageToString(final SOAPMessage soapMessage) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try {
soapMessage.writeTo(baos);
} catch (Exception e) {
LOG.error("Get the exception when converting the SOAPMessage into String, the exception is " + e);
}
return baos.toString();
}
@Converter
public static DataFormat toDataFormat(final String name) {
return DataFormat.valueOf(name.toUpperCase());
}
@Converter
public static InputStream toInputStream(Response response, Exchange exchange) {
Object obj = response.getEntity();
if (obj == null) {
return null;
}
if (obj instanceof InputStream) {
// short circuit the lookup
return (InputStream)obj;
}
TypeConverterRegistry registry = exchange.getContext().getTypeConverterRegistry();
TypeConverter tc = registry.lookup(InputStream.class, obj.getClass());
if (tc != null) {
return tc.convertTo(InputStream.class, exchange, obj);
}
return null;
}
/**
* Use a fallback type converter so we can convert the embedded list element
* if the value is MessageContentsList. The algorithm of this converter
* finds the first non-null list element from the list and applies conversion
* to the list element.
*
* @param type the desired type to be converted to
* @param exchange optional exchange which can be null
* @param value the object to be converted
* @param registry type converter registry
* @return the converted value of the desired type or null if no suitable converter found
*/
@SuppressWarnings("unchecked")
@FallbackConverter
public static <T> T convertTo(Class<T> type, Exchange exchange, Object value,
TypeConverterRegistry registry) {
// CXF-WS MessageContentsList class
if (MessageContentsList.class.isAssignableFrom(value.getClass())) {
MessageContentsList list = (MessageContentsList)value;
for (Object embedded : list) {
if (embedded != null) {
if (type.isInstance(embedded)) {
return type.cast(embedded);
} else {
TypeConverter tc = registry.lookup(type, embedded.getClass());
if (tc != null) {
return tc.convertTo(type, exchange, embedded);
}
}
}
}
// return void to indicate its not possible to convert at this time
return (T) Void.TYPE;
}
// CXF-RS Response class
if (Response.class.isAssignableFrom(value.getClass())) {
Response response = (Response) value;
Object entity = response.getEntity();
TypeConverter tc = registry.lookup(type, entity.getClass());
if (tc != null) {
return tc.convertTo(type, exchange, entity);
}
// return void to indicate its not possible to convert at this time
return (T) Void.TYPE;
}
return null;
}
}