Java JNI和Future Task

时间:2012-04-30 09:12:27

标签: java java-native-interface

我正在尝试实现一个代码,我想从JNI调用一个应该有超时的函数。如果超过超时,我想终止本机任务。我发布了一段代码作为示例。

void myFunction(timeOutInSeconds)
{
    if(timeOutInSeconds > 0)
    {
        ExecutorService executor = Executors.newCachedThreadPool();
        Callable<Integer> task = new Callable<Integer>() {
            public Integer call() {
                System.out.println("Calling JNI Task");
                JNI_Task();
                System.out.println("Finished JNI Task");
                return 0;                              
            }
        };

        Future<Integer> future = executor.submit(task);
        try 
        {
            @SuppressWarnings("unused")
            Integer result = future.get(timeOutInSeconds, TimeUnit.SECONDS); 
        } 
        catch (TimeoutException ex)
        {
            // handle the timeout               
            kill_task_in_JNI();     

            // future.cancel(true);
            return TIMEOUT;

        } catch (InterruptedException e) {
            // handle the interrupts
        } catch (ExecutionException e) {
            // handle other exceptions
        } 
        finally 
        {
            // future.cancel(true);
            executor.shutdown();
        }
    }
    else
        JNI_Task();
}

有几个问题 -

  • 我应该把future.cancel()放在哪里。有两个位置被评论。
  • 如果我使用timeOutInSeconds = 0运行此函数,它将完美运行。 但是,无论timeOutInSeconds的值如何,任务都会被卡住 JNI任务没有被调用。我通过将printf放在JNI中来检查这一点 码。任务需要1秒才能执行,我给了30秒,5分钟等等 被困了。

这种方法有问题吗?

1 个答案:

答案 0 :(得分:2)

你可以(在这种情况下应该)只在finally块中调用future.cancel()http://docs.oracle.com/javase/tutorial/essential/exceptions/finally.html

关于第二个问题,如果timeOutInSeconds = 0时问题也出现,我不清楚。是这样的吗?你能提供JNI_TASK()方法的内容吗?