|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectucar.multiarray.MultiArrayImpl
A concrete, space efficent implementation of the MultiArray interface.
MultiArray,
Serialized Form| Field Summary | |
Object |
storage
The actual storage. |
| Constructor Summary | |
MultiArrayImpl(Class componentType,
int[] dimensions)
Create a new MultiArray of the given componentType and shape. |
|
MultiArrayImpl(int[] lengths,
int[] products,
Object storage)
Create a new MultiArrayImple of the given shape accessing externally created storage. |
|
MultiArrayImpl(int[] lengths,
Object storage)
Create a new MultiArrayImpl of the given shape accessing externally created storage. |
|
MultiArrayImpl(MultiArray ma)
A copy constructor. |
|
| Method Summary | |
Object |
clone()
|
void |
copyin(int[] origin,
MultiArray data)
Aggregate write access. |
void |
copyin(int[] origin,
MultiArrayImpl src)
Version copyin specialized and optimized for
MultiArrayImpl. |
MultiArray |
copyout(int[] origin,
int[] shape)
Aggregate read access. |
static Object |
fixDest(Object dst,
int lengthNeeded,
Class defaultComponentType)
|
Object |
get(int[] index)
Get (read) the array element at index. |
boolean |
getBoolean(int[] index)
Get the array element at index, as a boolean. |
byte |
getByte(int[] index)
Get the array element at index, as a byte. |
char |
getChar(int[] index)
Get the array element at index, as a char. |
Class |
getComponentType()
Returns the Class object representing the component type of the array. |
double |
getDouble(int[] index)
Get the array element at index, as a double. |
float |
getFloat(int[] index)
Get the array element at index, as a float. |
int |
getInt(int[] index)
Get the array element at index, as an int. |
int[] |
getLengths()
Discover the dimensions of this MultiArray. |
long |
getLong(int[] index)
Get the array element at index, as a long. |
int |
getRank()
Returns the number of dimensions of the array. |
short |
getShort(int[] index)
Get the array element at index, as a short. |
Object |
getStorage()
|
int |
indexMap(int[] index)
Convert index vector into integer index into storage. |
boolean |
isScalar()
Convenience interface; return true
if and only if the rank is zero. |
boolean |
isUnlimited()
Returns true if and only if the effective dimension
lengths can change. |
static void |
main(String[] args)
|
static int |
numberOfElements(int[] dimensions)
Used to figure out how storage is required for a given shape. |
static int |
numberOfElements(int[] dimensions,
int[] products)
Used to figure out how storage is required for a given shape, retaining intermediate products. |
void |
set(int[] index,
Object value)
Set (modify, write) the array element at index to the specified value. |
void |
setBoolean(int[] index,
boolean value)
Set the array element at index to the specified boolean value. |
void |
setByte(int[] index,
byte value)
Set the array element at index to the specified byte value. |
void |
setChar(int[] index,
char value)
Set the array element at index to the specified char value. |
void |
setDouble(int[] index,
double value)
Set the array element at index to the specified double value. |
void |
setFloat(int[] index,
float value)
Set the array element at index to the specified float value. |
void |
setInt(int[] index,
int value)
Set the array element at index to the specified int value. |
void |
setLong(int[] index,
long value)
Set the array element at index to the specified long value. |
void |
setShort(int[] index,
short value)
Set the array element at index to the specified short value. |
Object |
toArray()
Returns a new array containing all of the elements in this MultiArray. |
Object |
toArray(Object dst,
int[] origin,
int[] shape)
Returns an array containing elements of this MultiArray specified by origin and shape, possibly converting the component type. |
| Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
public final Object storage
| Constructor Detail |
public MultiArrayImpl(Class componentType,
int[] dimensions)
componentType - Class of the primitives or objects to
be contained.dimensions - the shape of the MultiArray.
dimensions.length determines the rank of the new MultiArray.
public MultiArrayImpl(MultiArray ma)
throws IOException
Create a new MultiArray with the same componentType and shape as the argument Storage for values is allocated and owned by this, and the values are initialized to the values of the argument.
ma - the MultiArray to copy.
public MultiArrayImpl(int[] lengths,
Object storage)
lengths - the shape of the MultiArray.storage - array Object which is storage
public MultiArrayImpl(int[] lengths,
int[] products,
Object storage)
lengths - describing the shape of the MultiArray.products - right-to-left accumulated sizes.storage - array Object which is storage| Method Detail |
public static int numberOfElements(int[] dimensions)
dimensions - the shape.
public static int numberOfElements(int[] dimensions,
int[] products)
dimensions - the shape.products - modified upon return to contain
the intermediate products
public Class getComponentType()
MultiArrayInfo
getComponentType in interface MultiArrayInfoMultiArrayInfo.getComponentType()public int getRank()
MultiArrayInfo
getRank in interface MultiArrayInfoMultiArrayInfo.getRank()public int[] getLengths()
MultiArrayInfo
getLengths in interface MultiArrayInfoMultiArrayInfo.getLengths()public boolean isUnlimited()
MultiArrayInfotrue if and only if the effective dimension
lengths can change. For example, if this were implemented by
a java.util.Vector.
isUnlimited in interface MultiArrayInfotrue iff this can growMultiArrayInfo.isUnlimited()public boolean isScalar()
MultiArrayInfotrue
if and only if the rank is zero.
isScalar in interface MultiArrayInfotrue iff rank == 0MultiArrayInfo.isScalar()public Object get(int[] index)
Accessor
get in interface Accessorindex - MultiArray index
indexAccessor.get(int[])public boolean getBoolean(int[] index)
Accessor
getBoolean in interface AccessorAccessor.getBoolean(int[])public char getChar(int[] index)
Accessor
getChar in interface AccessorAccessor.getChar(int[])public byte getByte(int[] index)
Accessor
getByte in interface AccessorAccessor.getByte(int[])public short getShort(int[] index)
Accessor
getShort in interface AccessorAccessor.getShort(int[])public int getInt(int[] index)
Accessor
getInt in interface AccessorAccessor.getInt(int[])public long getLong(int[] index)
Accessor
getLong in interface AccessorAccessor.getLong(int[])public float getFloat(int[] index)
Accessor
getFloat in interface AccessorAccessor.getFloat(int[])public double getDouble(int[] index)
Accessor
getDouble in interface AccessorAccessor.getDouble(int[])
public void set(int[] index,
Object value)
Accessor
set in interface Accessorindex - MultiArray indexvalue - the new value.Accessor.set(int[], java.lang.Object)
public void setBoolean(int[] index,
boolean value)
Accessor
setBoolean in interface AccessorAccessor.setBoolean(int[], boolean)
public void setChar(int[] index,
char value)
Accessor
setChar in interface AccessorAccessor.setChar(int[], char)
public void setByte(int[] index,
byte value)
Accessor
setByte in interface AccessorAccessor.setByte(int[], byte)
public void setShort(int[] index,
short value)
Accessor
setShort in interface AccessorAccessor.setShort(int[], short)
public void setInt(int[] index,
int value)
Accessor
setInt in interface AccessorAccessor.setInt(int[], int)
public void setLong(int[] index,
long value)
Accessor
setLong in interface AccessorAccessor.setLong(int[], long)
public void setFloat(int[] index,
float value)
Accessor
setFloat in interface AccessorAccessor.setFloat(int[], float)
public void setDouble(int[] index,
double value)
Accessor
setDouble in interface AccessorAccessor.setDouble(int[], double)
public MultiArray copyout(int[] origin,
int[] shape)
AccessorIt is easier to implement than to specify :-).
The main reason to implement this instead of using the equivalent proxy is for remote or file access.
assert(origin[ii] + shape[ii] <= lengths[ii]);
copyout in interface Accessororigin - int array specifying the starting index.shape - int array specifying the extents in each
dimension. This becomes the shape of the return.
Accessor.copyout(int[], int[])
public void copyin(int[] origin,
MultiArrayImpl src)
copyin specialized and optimized for
MultiArrayImpl.
Accessor.copyin(int[], ucar.multiarray.MultiArray)
public void copyin(int[] origin,
MultiArray data)
throws IOException
AccessorHopefully this member can be optimized in various situations.
assert(origin[ii] + (source.getLengths())[ii]
<= (getLengths())[ii]);
copyin in interface Accessororigin - int array specifying the starting index.data - MultiArray with the same componentType as
this and shape smaller than
this.getLengths() - origin
IOExceptionAccessor.copyin(int[], ucar.multiarray.MultiArray)
public static Object fixDest(Object dst,
int lengthNeeded,
Class defaultComponentType)
public Object getStorage()
getStorage in interface MultiArrayAccessor#getStoragepublic Object toArray()
AccessorThis method acts as bridge between array-based and MultiArray-based APIs.
This method is functionally equivalent to
Object anArray = Array.newInstance(getComponentType(), 1);
int [] origin = new int[getRank()]
int [] shape = getDimensions();
return toArray(anArray, origin, shape);
toArray in interface AccessorAccessor.toArray()
public Object toArray(Object dst,
int[] origin,
int[] shape)
AccessorThe anArray argument should be an array. If it is large enough to contain the output, it is used and no new storage is allocated. Otherwise, new storage is allocated with the same component type as the argument, and the data is copied into it.
This method acts as bridge between array-based and MultiArray-based APIs.
This method is similar to copyout(origin, shape).toArray(), but avoids a copy operation and (potentially) an allocation.
NOTE: Implementation of type conversion is deferred until
JDK 1.2. Currently, the componentType of anArray
must be the same as this
toArray in interface AccessorAccessor.toArray()public Object clone()
Object.clone()public int indexMap(int[] index)
public static void main(String[] args)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||