All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nervousync.utils.ConvertUtils Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
/*
 * Licensed to the Nervousync Studio (NSYC) 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 com.nervousync.utils;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.UnsupportedEncodingException;
import java.lang.reflect.Array;
import java.lang.reflect.Field;
import java.lang.reflect.ParameterizedType;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.nervousync.commons.core.Globals;

/**
 * @author Steven Wee	[email protected]
 * @version $Revision: 1.0 $ $Date: Jan 12, 2010 3:12:05 PM $
 */
public final class ConvertUtils {

	private final static Logger LOGGER = LoggerFactory.getLogger(ConvertUtils.class);

	private ConvertUtils() {
		
	}
	
	public static List convertCollectionToList(Object collection) {
		
		if (collection == null) {
			return new ArrayList();
		}
		
		List list = null;
		
		if (collection instanceof Collection) {
			list = new ArrayList((Collection)collection);
		} else if (collection instanceof Enumeration) {
			list = new ArrayList();
			Enumeration enumeration = (Enumeration)collection;
			while(enumeration.hasMoreElements()) {
				list.add(enumeration.nextElement());
			}
		} else if (collection instanceof Iterator) {
			list = new ArrayList();
			Iterator iterator = (Iterator)collection;
			while(iterator.hasNext()) {
				list.add(iterator.next());
			}
		} else if (collection instanceof Map) {
			list = new ArrayList(((Map)collection).entrySet());
		} else if (collection instanceof String) {
			list = Arrays.asList(convertPrimitivesToObjects(((String) collection).toCharArray()));
		} else if (collection instanceof Object[]) {
			list = Arrays.asList((Object[]) collection);
		} else if (collection.getClass().isArray()) {
			list = Arrays.asList(convertPrimitivesToObjects(collection));
		} else {
			// type is not supported
			throw new IllegalArgumentException("Class '" + collection.getClass().getName() 
					+ "' is not convertable to java.util.List");
		}

		return list;
	}
	
	public static Object[] convertPrimitivesToObjects(Object primitiveArray) {
		
		if (primitiveArray == null) {
			return null;
		}

		if (!primitiveArray.getClass().isArray()) {
			throw new IllegalArgumentException("Specified object is not array");
		}

		if (primitiveArray instanceof Object[]) {
			throw new IllegalArgumentException("Specified object is not primitive array");
		}

		int length = Array.getLength(primitiveArray);
		Object[] result = new Object[length];
		for (int i = 0; i < length; i++) {
			result[i] = Array.get(primitiveArray, i);
		}

		return result;
	}

	public static byte[] hexStrToByteArr(String strIn) throws Exception {
		byte[] arrB = strIn.getBytes();
		int iLen = arrB.length;

		byte[] arrOut = new byte[iLen / 2];
		for (int i = 0; i < iLen; i = i + 2) {
			String strTmp = new String(arrB, i, 2);
			arrOut[i / 2] = (byte) Integer.parseInt(strTmp, 16);
		}
		return unzipByteArray(arrOut);
	}
	
	/**
	 * Convert hex to String
	 * @param source
	 * @return convert String
	 */
	public static String byteArrayToHexString(byte [] source) {
		int length = source.length;
		StringBuffer stringBuffer = new StringBuffer(length * 2);
		for(int i = 0 ; i < length ; i++) {
			int intTmp = source[i];
			
			while (intTmp < 0) {
				intTmp = intTmp + 256;
			}
			
			if (intTmp < 16) {
				stringBuffer.append("0");
			}
			
			stringBuffer.append(Integer.toString(intTmp, 16));
		}
		return stringBuffer.toString();
	}
	
	/**
	 * Converts byte array to string using default encoding
	 *
	 * @param content Byte array to convert to string
	 * @return string resulted from converting byte array using default encoding
	 */
	public static String convertToString(byte[] content) {
		return convertToString(content, null);
	}

	/**
	 * Converts byte array to string according to specified encoding
	 *
	 * @param content  Byte array to convert to string
	 * @param encoding Encoding string, if null default is used
	 * @return string resulted from converting byte array
	 */
	public static String convertToString(byte[] content, String encoding) {
		if (content == null) {
			return null;
		}
		if (encoding == null) {
			encoding = Globals.DEFAULT_ENCODING;
		}

		String value = null;
		try {
			value = new String(content, encoding);
		} catch (UnsupportedEncodingException ex) {
			return new String(content);
		}
		return value;
	}

	/**
	 * Converts string to byte array using default encoding
	 *
	 * @param content String to convert to array
	 * @return byte array resulted from converting string using default encoding
	 */
	public static byte[] convertToByteArray(String content) {
		return convertToByteArray(content, null);
	}

	/**
	 * Converts string to byte array according to specified encoding
	 *
	 * @param content  String to convert to array
	 * @param encoding Encoding string, if null default is used
	 * @return byte array
	 */
	public static byte[] convertToByteArray(String content, String encoding) {
		if (content == null) {
			return null;
		}
		if (encoding == null) {
			encoding = Globals.DEFAULT_ENCODING;
		}
		
		try {
			return content.getBytes(encoding);
		} catch (UnsupportedEncodingException ex) {
			return content.getBytes();
		}
	}
	
	/**
	 * Convert object to byte array
	 * @param object
	 * @param if null convert error
	 * @return byte array
	 */
	public static byte[] convertToByteArray(Object object) {
		if (object instanceof String) {
			return convertToByteArray((String)object);
		}
		
		if (object instanceof byte[] || object instanceof Byte[]) {
			return (byte[])object;
		}

		byte[] content = null;
		ByteArrayOutputStream outputStream = null;
		ObjectOutputStream objectOutputStream = null;
		try {
			outputStream = new ByteArrayOutputStream();
			objectOutputStream = new ObjectOutputStream(outputStream);
			objectOutputStream.writeObject(object);
			content = outputStream.toByteArray();
		} catch (Exception e) {
			if (ConvertUtils.LOGGER.isDebugEnabled()) {
				ConvertUtils.LOGGER.debug("Convert object to byte[] error! ", e);
			}
			content = null;
		} finally {
			try {
				if (objectOutputStream != null) {
					objectOutputStream.close();
				}
				
				if (outputStream != null) {
					outputStream.close();
				}
			} catch (Exception e) {
				if (ConvertUtils.LOGGER.isDebugEnabled()) {
					ConvertUtils.LOGGER.debug("Close output stream error! ", e);
				}
			}
		}
		
		return content;
	}
	
	public static Object convertToObject(byte[] content) {
		if (content == null || content.length == 0) {
			return null;
		}
		
		Object object = null;
		ByteArrayInputStream byteInputStream = null;
		ObjectInputStream objectInputStream = null;
		try {
			byteInputStream = new ByteArrayInputStream(content);
			objectInputStream = new ObjectInputStream(byteInputStream);
			
			object = objectInputStream.readObject();
		} catch (Exception e) {
			object = convertToString(content);
		} finally {
			try {
				if (objectInputStream != null) {
					objectInputStream.close();
				}
				
				if (byteInputStream != null) {
					byteInputStream.close();
				}
			} catch (Exception e) {
				if (ConvertUtils.LOGGER.isDebugEnabled()) {
					ConvertUtils.LOGGER.debug("Close input stream error! ", e);
				}
			}
		}
		return object;
	}
	
	public static  T convertMapToObject(Map dataMap, Class clazz) {
		try {
			List fieldNameList = ReflectionUtils.getAllDeclaredFieldNames(clazz);
			T object = clazz.newInstance();
			for (String fieldName : fieldNameList) {
				Object fieldValue = dataMap.get(fieldName);
				Field field = ReflectionUtils.findField(clazz, fieldName);
				if (byte[].class.equals(field.getType())) {
					ReflectionUtils.setField(fieldName, object, StringUtils.base64Decode((String)fieldValue));
				} else if (fieldValue instanceof Map) {
					ReflectionUtils.setField(fieldName, object, 
							(Object)convertMapToObject((Map)fieldValue, field.getType()));
				} else if (field.getType().isArray() 
						|| List.class.isAssignableFrom(field.getType())) {
					List valueList = new ArrayList();

					Class paramClass = null;
					
					if (field.getType().isArray()) {
						paramClass = field.getType().getComponentType();
					} else {
						paramClass = (Class)((ParameterizedType)field.getGenericType()).getActualTypeArguments()[0];
					}
					
					if (fieldValue.getClass().isArray()) {
						Object[] values = (Object[])fieldValue;
						
						for (Object value : values) {
							if (value instanceof Map) {
								valueList.add((Object)convertMapToObject((Map)value, paramClass));
							} else {
								valueList.add(value);
							}
						}
					} else if (List.class.isAssignableFrom(fieldValue.getClass())) {
						Object[] values = ((List)fieldValue).toArray();
						
						for (Object value : values) {
							if (value instanceof Map) {
								valueList.add((Object)convertMapToObject((Map)value, paramClass));
							} else {
								valueList.add(value);
							}
						}
					}
					
					if (field.getType().isArray()) {
						ReflectionUtils.setField(fieldName, object, valueList.toArray());
					} else {
						ReflectionUtils.setField(fieldName, object, valueList);
					}
				} else {
					ReflectionUtils.setField(fieldName, object, fieldValue);
				}
			}
			return object;
		} catch (Exception e) {
			if (LOGGER.isDebugEnabled()) {
				LOGGER.debug("Convert json string to object bean error! ", e);
			}
		}
		
		return null;
	}

	public static byte[] zipByteArray(byte[] str) throws IOException {
		ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
		GZIPOutputStream gzipOutputStream = null;

		try {
			gzipOutputStream = new GZIPOutputStream(byteArrayOutputStream);
			gzipOutputStream.write(str);
			
			gzipOutputStream.close();
			byteArrayOutputStream.close();
			
			return byteArrayOutputStream.toByteArray();
		} catch (Exception ex) {
			return str;
		} finally {
			gzipOutputStream = null;
			byteArrayOutputStream = null;
		}
	}
	
	public static byte[] unzipByteArray(byte[] str) {
		ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(str);
		ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
		GZIPInputStream gzipInputStream = null;
		byte[] readBuffer = new byte[8192];
		try {
			gzipInputStream = new GZIPInputStream(byteArrayInputStream);
			int readLength;
			while ((readLength = gzipInputStream.read(readBuffer)) != -1) {
				byteArrayOutputStream.write(readBuffer, 0, readLength);
			}
			gzipInputStream.close();
			byteArrayInputStream.close();
			byteArrayOutputStream.close();
			
			return byteArrayOutputStream.toByteArray();
		} catch (Exception ex) {
			return str;
		} finally {
			gzipInputStream = null;
			byteArrayInputStream = null;
			byteArrayOutputStream = null;
		}
	}
}