Buffers.java 7.28 KB
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
/* Buffers.java --
   Copyright (C) 2000, 2002, 2004  Free Software Foundation

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath 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 for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */


package gnu.java.awt;

import java.awt.image.DataBuffer;
import java.awt.image.DataBufferByte;
import java.awt.image.DataBufferDouble;
import java.awt.image.DataBufferFloat;
import java.awt.image.DataBufferInt;
import java.awt.image.DataBufferShort;
import java.awt.image.DataBufferUShort;

49
/**
Tom Tromey committed
50 51 52 53 54 55 56 57 58 59 60 61 62
 * Utility class for creating and accessing data buffers of arbitrary
 * data types.
 */
public final class Buffers
{
  /**
   * Create a data buffer of a particular type.
   *
   * @param dataType the desired data type of the buffer.
   * @param data an array containing data, or null
   * @param size the size of the data buffer bank
   */
  public static DataBuffer createBuffer(int dataType, Object data,
63
                                        int size)
Tom Tromey committed
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
  {
    if (data == null) return createBuffer(dataType, size, 1);

    return createBufferFromData(dataType, data, size);
  }


  /**
   * Create a data buffer of a particular type.
   *
   * @param dataType the desired data type of the buffer.
   * @param size the size of the data buffer bank
   */
  public static DataBuffer createBuffer(int dataType, int size) {
    return createBuffer(dataType, size, 1);
  }

  /**
   * Create a data buffer of a particular type.
   *
   * @param dataType the desired data type of the buffer.
   * @param size the size of the data buffer bank
   * @param numBanks the number of banks the buffer should have
   */
  public static DataBuffer createBuffer(int dataType, int size, int numBanks)
  {
    switch (dataType)
      {
      case DataBuffer.TYPE_BYTE:
93
        return new DataBufferByte(size, numBanks);
Tom Tromey committed
94
      case DataBuffer.TYPE_SHORT:
95
        return new DataBufferShort(size, numBanks);
Tom Tromey committed
96
      case DataBuffer.TYPE_USHORT:
97
        return new DataBufferUShort(size, numBanks);
Tom Tromey committed
98
      case DataBuffer.TYPE_INT:
99
        return new DataBufferInt(size, numBanks);
Tom Tromey committed
100
      case DataBuffer.TYPE_FLOAT:
101
        return new DataBufferFloat(size, numBanks);
Tom Tromey committed
102
      case DataBuffer.TYPE_DOUBLE:
103
        return new DataBufferDouble(size, numBanks);
Tom Tromey committed
104
      default:
105
        throw new UnsupportedOperationException();
Tom Tromey committed
106 107
      }
  }
108

Tom Tromey committed
109 110 111 112 113 114 115 116
  /**
   * Create a data buffer of a particular type.
   *
   * @param dataType the desired data type of the buffer
   * @param data an array containing the data
   * @param size the size of the data buffer bank
   */
  public static DataBuffer createBufferFromData(int dataType, Object data,
117
                                                int size)
Tom Tromey committed
118 119 120 121
  {
    switch (dataType)
      {
      case DataBuffer.TYPE_BYTE:
122
        return new DataBufferByte((byte[]) data, size);
Tom Tromey committed
123
      case DataBuffer.TYPE_SHORT:
124
        return new DataBufferShort((short[]) data, size);
Tom Tromey committed
125
      case DataBuffer.TYPE_USHORT:
126
        return new DataBufferUShort((short[]) data, size);
Tom Tromey committed
127
      case DataBuffer.TYPE_INT:
128
        return new DataBufferInt((int[]) data, size);
Tom Tromey committed
129
      case DataBuffer.TYPE_FLOAT:
130
        return new DataBufferFloat((float[]) data, size);
Tom Tromey committed
131
      case DataBuffer.TYPE_DOUBLE:
132
        return new DataBufferDouble((double[]) data, size);
Tom Tromey committed
133
      default:
134
        throw new UnsupportedOperationException();
Tom Tromey committed
135 136 137
      }
  }

138
  /**
Tom Tromey committed
139 140 141 142 143 144 145 146
   * Return the data array of a data buffer, regardless of the data
   * type.
   *
   * @return an array of primitive values. The actual array type
   * depends on the data type of the buffer.
   */
  public static Object getData(DataBuffer buffer)
  {
147
    return getData(buffer, 0, null, 0, buffer.getSize());
Tom Tromey committed
148 149
  }

150

Tom Tromey committed
151 152 153 154 155 156
  /**
   * Copy data from array contained in data buffer, much like
   * System.arraycopy. Create a suitable destination array if the
   * given destination array is null.
   */
  public static Object getData(DataBuffer src, int srcOffset,
157 158
                               Object dest,  int dstOffset,
                               int length)
Tom Tromey committed
159 160
  {
    Object from;
161
    switch(src.getDataType())
Tom Tromey committed
162
      {
163
      case DataBuffer.TYPE_BYTE:
164 165 166 167
        if (dest == null) dest = new byte[length+dstOffset];
        for(int i = 0; i < length; i++)
          ((byte[])dest)[i + dstOffset] = (byte)src.getElem(i + srcOffset);
        break;
168 169

      case DataBuffer.TYPE_DOUBLE:
170 171 172 173
        if (dest == null) dest = new double[length+dstOffset];
        for(int i = 0; i < length; i++)
          ((double[])dest)[i + dstOffset] = src.getElemDouble(i + srcOffset);
        break;
174 175

      case DataBuffer.TYPE_FLOAT:
176 177 178 179
        if (dest == null) dest = new float[length+dstOffset];
        for(int i = 0; i < length; i++)
          ((float[])dest)[i + dstOffset] = src.getElemFloat(i + srcOffset);
        break;
180 181

      case DataBuffer.TYPE_INT:
182 183 184 185
        if (dest == null) dest = new int[length+dstOffset];
        for(int i = 0; i < length; i++)
          ((int[])dest)[i + dstOffset] = src.getElem(i + srcOffset);
        break;
186 187 188

      case DataBuffer.TYPE_SHORT:
      case DataBuffer.TYPE_USHORT:
189 190 191 192
        if (dest == null) dest = new short[length+dstOffset];
        for(int i = 0; i < length; i++)
          ((short[])dest)[i + dstOffset] = (short)src.getElem(i + srcOffset);
        break;
193 194

      case DataBuffer.TYPE_UNDEFINED:
195
        throw new ClassCastException("Unknown data buffer type");
Tom Tromey committed
196 197 198
      }
    return dest;
  }
199

Tom Tromey committed
200 201 202 203 204 205 206 207 208 209
  /**
   * @param bits the width of a data element measured in bits
   *
   * @return the smallest data type that can store data elements of
   * the given number of bits, without any truncation.
   */
  public static int smallestAppropriateTransferType(int bits)
  {
    if (bits <= 8)
      {
210
        return DataBuffer.TYPE_BYTE;
Tom Tromey committed
211 212 213
      }
    else if (bits <= 16)
      {
214 215
        return DataBuffer.TYPE_USHORT;
      }
Tom Tromey committed
216 217
    else if (bits <= 32)
      {
218
        return DataBuffer.TYPE_INT;
Tom Tromey committed
219 220 221
      }
    else
      {
222
        return DataBuffer.TYPE_UNDEFINED;
Tom Tromey committed
223 224 225
      }
  }
}