package com.sun.glass.ui;
import java.lang.annotation.Native;
import java.nio.Buffer;
import java.nio.ByteBuffer;
import java.nio.IntBuffer;
import java.nio.ByteOrder;
public abstract class Pixels {
public static class Format {
@Native public static final int BYTE_BGRA_PRE = 1;
@Native public static final int BYTE_ARGB = 2;
}
public static int getNativeFormat() {
Application.checkEventThread();
return Application.GetApplication().staticPixels_getNativeFormat();
}
protected final int width;
protected final int height;
protected final int bytesPerComponent;
protected final ByteBuffer bytes;
protected final IntBuffer ints;
private final float scalex;
private final float scaley;
protected Pixels(final int width, final int height, final ByteBuffer pixels) {
this.width = width;
this.height = height;
this.bytesPerComponent = 1;
this.bytes = pixels.slice();
if ((this.width <= 0) || (this.height <= 0) || ((this.width * this.height * 4) > this.bytes.capacity())) {
throw new IllegalArgumentException("Too small byte buffer size "+this.width+"x"+this.height+" ["+(this.width*this.height*4)+"] > "+this.bytes.capacity());
}
this.ints = null;
this.scalex = 1.0f;
this.scaley = 1.0f;
}
protected Pixels(final int width, final int height, IntBuffer pixels) {
this.width = width;
this.height = height;
this.bytesPerComponent = 4;
this.ints = pixels.slice();
if ((this.width <= 0) || (this.height <= 0) || ((this.width * this.height) > this.ints.capacity())) {
throw new IllegalArgumentException("Too small int buffer size "+this.width+"x"+this.height+" ["+(this.width*this.height)+"] > "+this.ints.capacity());
}
this.bytes = null;
this.scalex = 1.0f;
this.scaley = 1.0f;
}
protected Pixels(final int width, final int height, IntBuffer pixels, float scalex, float scaley) {
this.width = width;
this.height = height;
this.bytesPerComponent = 4;
this.ints = pixels.slice();
if ((this.width <= 0) || (this.height <= 0) || ((this.width * this.height) > this.ints.capacity())) {
throw new IllegalArgumentException("Too small int buffer size "+this.width+"x"+this.height+" ["+(this.width*this.height)+"] > "+this.ints.capacity());
}
this.bytes = null;
this.scalex = scalex;
this.scaley = scaley;
}
public final float getScaleX() {
Application.checkEventThread();
return this.scalex;
}
public final float getScaleY() {
Application.checkEventThread();
return this.scaley;
}
public final float getScaleXUnsafe() {
return this.scalex;
}
public final float getScaleYUnsafe() {
return this.scaley;
}
public final int getWidth() {
Application.checkEventThread();
return this.width;
}
public final int getWidthUnsafe() {
return this.width;
}
public final int getHeight() {
Application.checkEventThread();
return this.height;
}
public final int getHeightUnsafe() {
return this.height;
}
public final int getBytesPerComponent() {
Application.checkEventThread();
return this.bytesPerComponent;
}
public final Buffer getPixels() {
if (this.bytes != null) {
this.bytes.rewind();
return this.bytes;
} else if (this.ints != null) {
this.ints.rewind();
return this.ints;
} else {
throw new RuntimeException("Unexpected Pixels state.");
}
}
public final Buffer getBuffer() {
if (this.bytes != null) {
return this.bytes;
} else if (this.ints != null) {
return this.ints;
} else {
throw new RuntimeException("Unexpected Pixels state.");
}
}
public final ByteBuffer asByteBuffer() {
Application.checkEventThread();
ByteBuffer bb = ByteBuffer.allocateDirect(getWidth()*getHeight()*4);
bb.order(ByteOrder.nativeOrder());
bb.rewind();
asByteBuffer(bb);
return bb;
}
public final void asByteBuffer(ByteBuffer bb) {
Application.checkEventThread();
if (!bb.isDirect()) {
throw new RuntimeException("Expected direct buffer.");
} else if (bb.remaining() < (getWidth()*getHeight()*4)) {
throw new RuntimeException("Too small buffer.");
}
_fillDirectByteBuffer(bb);
}
private void attachData(long ptr) {
if (this.ints != null) {
int[] array = !this.ints.isDirect() ? this.ints.array() : null;
_attachInt(ptr, this.width, this.height, this.ints, array, array != null ? this.ints.arrayOffset() : 0);
}
if (this.bytes != null) {
byte[] array = !this.bytes.isDirect() ? this.bytes.array() : null;
_attachByte(ptr, this.width, this.height, this.bytes, array, array != null ? this.bytes.arrayOffset() : 0);
}
}
protected abstract void _fillDirectByteBuffer(ByteBuffer bb);
protected abstract void _attachInt(long ptr, int w, int h, IntBuffer ints, int[] array, int offset);
protected abstract void _attachByte(long ptr, int w, int h, ByteBuffer bytes, byte[] array, int offset);
@Override public final boolean equals(Object object) {
Application.checkEventThread();
boolean equals = ((object != null) && (getClass().equals(object.getClass())));
if (equals) {
Pixels pixels = (Pixels)object;
equals = ((getWidth() == pixels.getWidth()) && (getHeight() == pixels.getHeight()));
if (equals) {
ByteBuffer b1 = asByteBuffer();
ByteBuffer b2 = pixels.asByteBuffer();
equals = (b1.compareTo(b2) == 0);
}
}
return equals;
}
@Override public final int hashCode() {
Application.checkEventThread();
int val = getWidth();
val = 31*val + getHeight();
val = 17*val + asByteBuffer().hashCode();
return val;
}
}