aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/CLEvent.java
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-01-08 00:11:55 +0100
committerMichael Bien <[email protected]>2010-01-08 00:11:55 +0100
commit286f94a7b148856666d7c05853ba9b2ba799b638 (patch)
treef7dc2acfaeb18d11979c58f3e40f5da923955da1 /src/com/mbien/opencl/CLEvent.java
parent14d666509596e5b954a5c20e0be9f5826a3ce733 (diff)
introduced CLSampler and CLEvent.
refactored code to use internal CLInfoAccessor utility where it makes sense. static imports.
Diffstat (limited to 'src/com/mbien/opencl/CLEvent.java')
-rw-r--r--src/com/mbien/opencl/CLEvent.java138
1 files changed, 138 insertions, 0 deletions
diff --git a/src/com/mbien/opencl/CLEvent.java b/src/com/mbien/opencl/CLEvent.java
new file mode 100644
index 00000000..c4b62917
--- /dev/null
+++ b/src/com/mbien/opencl/CLEvent.java
@@ -0,0 +1,138 @@
+package com.mbien.opencl;
+
+import java.nio.Buffer;
+
+import static com.mbien.opencl.CL.*;
+
+/**
+ *
+ * @author Michael Bien
+ */
+public class CLEvent implements CLResource {
+
+ public final CLContext context;
+ public final long ID;
+
+ private final CL cl;
+
+ private final CLEventInfoAccessor eventInfo;
+
+ CLEvent(CLContext context, int id) {
+ this.context = context;
+ this.cl = context.cl;
+ this.ID = id;
+ this.eventInfo = new CLEventInfoAccessor();
+ }
+
+ public void release() {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+
+ public ExecutionStatus getStatus() {
+ int status = (int)eventInfo.getLong(CL_EVENT_COMMAND_EXECUTION_STATUS);
+ return ExecutionStatus.valueOf(status);
+ }
+
+ public CommandType getType() {
+ int status = (int)eventInfo.getLong(CL_EVENT_COMMAND_TYPE);
+ return CommandType.valueOf(status);
+ }
+
+ private class CLEventInfoAccessor extends CLInfoAccessor {
+
+ @Override
+ protected int getInfo(int name, long valueSize, Buffer value, long[] valueSizeRet, int valueSizeRetOffset) {
+ return cl.clGetEventInfo(ID, name, valueSize, value, valueSizeRet, valueSizeRetOffset);
+ }
+
+ }
+
+ public enum ExecutionStatus {
+
+ /**
+ * Command has been enqueued in the command-queue.
+ */
+ QUEUED(CL_QUEUED),
+
+ /**
+ * Enqueued command has been submitted by the host to the device
+ * associated with the command-queue.
+ */
+ SUBMITTED(CL_SUBMITTED),
+
+ /**
+ * Device is currently executing this command.
+ */
+ RUNNING(CL_RUNNING),
+
+ /**
+ * The command has completed.
+ */
+ COMPLETE(CL_COMPLETE);
+
+
+ /**
+ * Value of wrapped OpenCL command excecution status.
+ */
+ public final int STATUS;
+
+ private ExecutionStatus(int status) {
+ this.STATUS = status;
+ }
+
+ public static ExecutionStatus valueOf(int status) {
+ switch(status) {
+ case(CL_QUEUED):
+ return QUEUED;
+ case(CL_SUBMITTED):
+ return SUBMITTED;
+ case(CL_RUNNING):
+ return RUNNING;
+ case(CL_COMPLETE):
+ return COMPLETE;
+ }
+ return null;
+ }
+ }
+
+ public enum CommandType {
+
+ NDRANGE_KERNEL(CL_COMMAND_NDRANGE_KERNEL),
+ TASK(CL_COMMAND_TASK),
+ NATIVE_KERNEL(CL_COMMAND_NATIVE_KERNEL),
+ READ_BUFFER(CL_COMMAND_READ_BUFFER),
+ WRITE_BUFFER(CL_COMMAND_WRITE_BUFFER),
+ COPY_BUFFER(CL_COMMAND_COPY_BUFFER),
+ READ_IMAGE(CL_COMMAND_READ_IMAGE),
+ WRITE_IMAGE(CL_COMMAND_WRITE_IMAGE),
+ COPY_IMAGE(CL_COMMAND_COPY_IMAGE),
+ COPY_BUFFER_TO_IMAGE(CL_COMMAND_COPY_BUFFER_TO_IMAGE),
+ COPY_IMAGE_TO_BUFFER(CL_COMMAND_COPY_IMAGE_TO_BUFFER),
+ MAP_BUFFER(CL_COMMAND_MAP_BUFFER),
+ MAP_IMAGE(CL_COMMAND_MAP_IMAGE),
+ UNMAP_MEM_OBJECT(CL_COMMAND_UNMAP_MEM_OBJECT),
+ MARKER(CL_COMMAND_MARKER),
+ ACQUIRE_GL_OBJECTS(CL_COMMAND_ACQUIRE_GL_OBJECTS),
+ RELEASE_GL_OBJECTS(CL_COMMAND_RELEASE_GL_OBJECTS);
+
+ /**
+ * Value of wrapped OpenCL command type.
+ */
+ public final int TYPE;
+
+ private CommandType(int type) {
+ this.TYPE = type;
+ }
+
+ public static CommandType valueOf(int commandType) {
+ CommandType[] values = CommandType.values();
+ for (CommandType value : values) {
+ if(value.TYPE == commandType)
+ return value;
+ }
+ return null;
+ }
+
+ }
+
+}