Open Source Repository

Home /jodd/jodd-3.3.2 | Repository Home



jodd/typeconverter/impl/ByteArrayConverter.java
// Copyright (c) 2003-2012, Jodd Team (jodd.org). All Rights Reserved.

package jodd.typeconverter.impl;

import jodd.typeconverter.ConvertBean;
import jodd.typeconverter.TypeConversionException;
import jodd.typeconverter.TypeConverter;
import jodd.util.CsvUtil;

import java.sql.Blob;
import java.sql.SQLException;

/**
 * Converts given object to <code>byte[]</code>.
 * Conversion rules:
 <li><code>null</code> value is returned as <code>null</code>
 <li>Blob values are converted directly
 <li>string is considered as CSV value and split before conversion
 <li>single value is returned as 1-length array wrapped over converted value
 <li>native arrays are converted directly
 <li>object arrays is converted element by element
 */
public class ByteArrayConverter implements TypeConverter<byte[]{

  protected final ConvertBean convertBean;

  public ByteArrayConverter(ConvertBean convertBean) {
    this.convertBean = convertBean;
  }

  public byte[] convert(Object value) {
    if (value == null) {
      return null;
    }
    Class type = value.getClass();

    if (type.isArray() == false) {
      // blob
      if (value instanceof Blob) {
        Blob blob = (Blobvalue;
        try {
          long length = blob.length();
          if (length > Integer.MAX_VALUE) {
            throw new TypeConversionException("Blob is too big.");
          }
          return blob.getBytes(1(intlength);
        catch (SQLException sex) {
          throw new TypeConversionException(value, sex);
        }
      }

      // string
      if (type == String.class) {
        String[] values = CsvUtil.toStringArray(value.toString());
        return convertArray(values);
      }

      // single value
      return new byte[] {convertBean.toByteValue(value)};
    }

    if (type.getComponentType().isPrimitive()) {
      // primitive arrays
      if (type == byte[].class) {
        return (byte[]) value;
      }
      if (type == int[].class) {
        int[] values = (int[]) value;
        byte[] results = new byte[values.length];
        for (int i = 0; i < values.length; i++) {
          results[i(bytevalues[i];
        }
        return results;
      }
      if (type == long[].class) {
        long[] values = (long[]) value;
        byte[] results = new byte[values.length];
        for (int i = 0; i < values.length; i++) {
          results[i(bytevalues[i];
        }
        return results;
      }
      if (type == double[].class) {
        double[] values = (double[]) value;
        byte[] results = new byte[values.length];
        for (int i = 0; i < values.length; i++) {
          results[i(bytevalues[i];
        }
        return results;
      }
      if (type == float[].class) {
        float[] values = (float[]) value;
        byte[] results = new byte[values.length];
        for (int i = 0; i < values.length; i++) {
          results[i(bytevalues[i];
        }
        return results;
      }
      if (type == boolean[].class) {
        boolean[] values = (boolean[]) value;
        byte[] results = new byte[values.length];
        for (int i = 0; i < values.length; i++) {
          results[i(byte) (values[i== true 0);
        }
        return results;
      }
      if (type == short[].class) {
        short[] values = (short[]) value;
        byte[] results = new byte[values.length];
        for (int i = 0; i < values.length; i++) {
          results[i(bytevalues[i];
        }
        return results;
      }
    }

    // array
    return convertArray((Object[]) value);
  }

  protected byte[] convertArray(Object[] values) {
    byte[] result = new byte[values.length];
    for (int i = 0; i < values.length; i++) {
      result[i= convertBean.toByteValue(values[i]);
    }
    return result;
  }

}