From 7ab26044167c84fc6386cc179e8a8736d8978c91 Mon Sep 17 00:00:00 2001 From: Wade Walker Date: Fri, 7 Mar 2014 16:32:48 -0600 Subject: Remove Java lint warnings. Remove all Java lint warnings, by fixing the code if possible, and if not possible then by inserting @SuppressWarnings. Some of these @SuppressWarnings can be replaced later with @SafeVarargs if we eventually drop support for Java 6. --- src/com/jogamp/opencl/AutoCloseable.jtemplate | 2 +- src/com/jogamp/opencl/CLEventList.java | 2 +- src/com/jogamp/opencl/CLPlatform.java | 5 +++++ src/com/jogamp/opencl/util/CLMultiContext.java | 2 ++ src/com/jogamp/opencl/util/JOCLVersion.java | 1 + .../jogamp/opencl/util/concurrent/CLCommandQueuePool.java | 15 +++++++++------ 6 files changed, 19 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/com/jogamp/opencl/AutoCloseable.jtemplate b/src/com/jogamp/opencl/AutoCloseable.jtemplate index d9f4f57a..a7bd1459 100644 --- a/src/com/jogamp/opencl/AutoCloseable.jtemplate +++ b/src/com/jogamp/opencl/AutoCloseable.jtemplate @@ -32,5 +32,5 @@ package com.jogamp.opencl; * import of JDK7's ARM interface allowing JDK6 backwards compatibility. */ public interface AutoCloseable /*extends java.lang.AutoCloseable*/ { - void close() throws Exception; + void close(); } diff --git a/src/com/jogamp/opencl/CLEventList.java b/src/com/jogamp/opencl/CLEventList.java index 56181cfa..cae3a03c 100644 --- a/src/com/jogamp/opencl/CLEventList.java +++ b/src/com/jogamp/opencl/CLEventList.java @@ -151,7 +151,7 @@ public final class CLEventList implements CLResource, AutoCloseable, Iterable... filter) { CLPlatform[] platforms = listCLPlatforms(filter); if(platforms.length > 0) { @@ -219,6 +220,7 @@ public class CLPlatform { * @param filter Acceptance filter for the returned platforms. * @throws CLException if something went wrong initializing OpenCL */ + @SuppressWarnings("unchecked") public static CLPlatform[] listCLPlatforms(Filter... filter) { initialize(); @@ -294,6 +296,7 @@ public class CLPlatform { /** * Lists all physical devices available on this platform matching the given {@link Filter}. */ + @SuppressWarnings("unchecked") public CLDevice[] listCLDevices(Filter... filters) { initialize(); @@ -389,6 +392,7 @@ public class CLPlatform { * The device speed is estimated by calculating the product of * MAX_COMPUTE_UNITS and MAX_CLOCK_FREQUENCY. */ + @SuppressWarnings("unchecked") public CLDevice getMaxFlopsDevice(Filter... filter) { return findMaxFlopsDevice(listCLDevices(filter)); } @@ -475,6 +479,7 @@ public class CLPlatform { while(scanner.hasNext()) extensions.add(scanner.next()); + scanner.close(); extensions = Collections.unmodifiableSet(extensions); } diff --git a/src/com/jogamp/opencl/util/CLMultiContext.java b/src/com/jogamp/opencl/util/CLMultiContext.java index 156a9fa6..c5bed86b 100644 --- a/src/com/jogamp/opencl/util/CLMultiContext.java +++ b/src/com/jogamp/opencl/util/CLMultiContext.java @@ -41,6 +41,7 @@ public class CLMultiContext implements CLResource { /** * Creates a multi context with all devices of the specified platforms and types. */ + @SuppressWarnings("unchecked") public static CLMultiContext create(CLPlatform[] platforms, CLDevice.Type... types) { return create(platforms, CLDeviceFilters.type(types)); } @@ -48,6 +49,7 @@ public class CLMultiContext implements CLResource { /** * Creates a multi context with all matching devices of the specified platforms. */ + @SuppressWarnings("unchecked") public static CLMultiContext create(CLPlatform[] platforms, Filter... filters) { if(platforms == null) { diff --git a/src/com/jogamp/opencl/util/JOCLVersion.java b/src/com/jogamp/opencl/util/JOCLVersion.java index 7ffa3eb6..7b837486 100644 --- a/src/com/jogamp/opencl/util/JOCLVersion.java +++ b/src/com/jogamp/opencl/util/JOCLVersion.java @@ -48,6 +48,7 @@ import static com.jogamp.common.util.VersionUtil.*; * @author Michael Bien * @deprecated Use {@link com.jogamp.opencl.JoclVersion} */ +@Deprecated public class JOCLVersion extends JogampVersion { private static final String PACKAGE = "com.jogamp.opencl"; diff --git a/src/com/jogamp/opencl/util/concurrent/CLCommandQueuePool.java b/src/com/jogamp/opencl/util/concurrent/CLCommandQueuePool.java index e8bd0124..a1d376ab 100644 --- a/src/com/jogamp/opencl/util/concurrent/CLCommandQueuePool.java +++ b/src/com/jogamp/opencl/util/concurrent/CLCommandQueuePool.java @@ -31,12 +31,12 @@ public class CLCommandQueuePool implements CLResource private FinishAction finishAction = FinishAction.DO_NOTHING; private boolean released; - private CLCommandQueuePool(CLQueueContextFactory factory, Collection queues) { + private CLCommandQueuePool(CLQueueContextFactory factory, Collection queues) { this.contexts = initContexts(queues, factory); initExecutor(); } - private List initContexts(Collection queues, CLQueueContextFactory factory) { + private List initContexts(Collection queues, CLQueueContextFactory factory) { List newContexts = new ArrayList(queues.size()); int index = 0; @@ -69,8 +69,8 @@ public class CLCommandQueuePool implements CLResource return create(factory, queues); } - public static CLCommandQueuePool create(CLQueueContextFactory factory, Collection queues) { - return new CLCommandQueuePool(factory, queues); + public static CLCommandQueuePool create(CLQueueContextFactory factory, Collection queues) { + return new CLCommandQueuePool(factory, queues); } /** @@ -78,7 +78,7 @@ public class CLCommandQueuePool implements CLResource * @see ExecutorService#submit(java.util.concurrent.Callable) */ public Future submit(CLTask task) { - return excecutor.submit(new TaskWrapper(task, finishAction)); + return excecutor.submit(new TaskWrapper(task, finishAction)); } /** @@ -127,7 +127,7 @@ public class CLCommandQueuePool implements CLResource * Blocks until all tasks finish and sets up a new context for all queues. * @return this */ - public CLCommandQueuePool switchContext(CLQueueContextFactory factory) { + public CLCommandQueuePool switchContext(CLQueueContextFactory factory) { excecutor.shutdown(); finishQueues(); // just to be sure @@ -255,6 +255,9 @@ public class CLCommandQueuePool implements CLResource public R call() throws Exception { CLQueueContext context = ((QueueThread)Thread.currentThread()).context; + // we make sure to only wrap tasks on the correct kind of thread, so this + // shouldn't fail (trying to genericize QueueThread properly becomes tricky) + @SuppressWarnings("unchecked") R result = task.execute((C)context); if(mode.equals(FinishAction.FLUSH)) { context.queue.flush(); -- cgit v1.2.3