Java 如何使用此自定义服务使关机正常工作?

Java 如何使用此自定义服务使关机正常工作?,java,concurrency,executorservice,scheduledexecutorservice,Java,Concurrency,Executorservice,Scheduledexecutorservice,我是我的代码,我向ExecutorService提交一些任务,然后使用shutdown()和waitTermination()等待它们完成。但是,如果任何一项任务需要更长的时间才能完成,我希望在不影响其他任务的情况下取消它。我使用的代码修订代码如下: package com.jthink.jaikoz.memory; import com.jthink.jaikoz.MainWindow; import java.util.List; import java.util.concurrent.

我是我的代码,我向ExecutorService提交一些任务,然后使用shutdown()和waitTermination()等待它们完成。但是,如果任何一项任务需要更长的时间才能完成,我希望在不影响其他任务的情况下取消它。我使用的代码修订代码如下:

package com.jthink.jaikoz.memory;

import com.jthink.jaikoz.MainWindow;

import java.util.List;
import java.util.concurrent.*;

public class TimeoutThreadPoolExecutor extends ThreadPoolExecutor {
    private final long timeout;
    private final TimeUnit timeoutUnit;

    private boolean isShutdown = false;

    private final ScheduledExecutorService timeoutExecutor = Executors.newSingleThreadScheduledExecutor();

    //Map Task to the Timeout Task that could be used to interrupt it
    private final ConcurrentMap<Runnable, ScheduledFuture> runningTasks = new ConcurrentHashMap<Runnable, ScheduledFuture>();

    public long getTimeout()
    {
        return timeout;
    }

    public TimeUnit getTimeoutUnit()
    {
        return timeoutUnit;
    }

    public TimeoutThreadPoolExecutor(int workerSize, ThreadFactory threadFactory, long timeout, TimeUnit timeoutUnit)
    {
        super(workerSize, workerSize, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<Runnable>(), threadFactory);
        this.timeout = timeout;
        this.timeoutUnit = timeoutUnit;
    }

    public TimeoutThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, long timeout, TimeUnit timeoutUnit) {
        super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue);
        this.timeout = timeout;
        this.timeoutUnit = timeoutUnit;
    }

    public TimeoutThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, long timeout, TimeUnit timeoutUnit) {
        super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory);
        this.timeout = timeout;
        this.timeoutUnit = timeoutUnit;
    }

    public TimeoutThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler, long timeout, TimeUnit timeoutUnit) {
        super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, handler);
        this.timeout = timeout;
        this.timeoutUnit = timeoutUnit;
    }

    public TimeoutThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler, long timeout, TimeUnit timeoutUnit) {
        super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory, handler);
        this.timeout = timeout;
        this.timeoutUnit = timeoutUnit;
    }

    @Override
    public void shutdown() {
        isShutdown = true;
        super.shutdown();
    }

    @Override
    public List<Runnable> shutdownNow() {
        timeoutExecutor.shutdownNow();
        return super.shutdownNow();
    }

    @Override
    protected void beforeExecute(Thread t, Runnable r) {
        if(timeout > 0) {
            //Schedule a task to interrupt the thread that is running the task after time timeout
            final ScheduledFuture<?> scheduled = timeoutExecutor.schedule(new TimeoutTask(t), timeout, timeoutUnit);

            //Add Mapping
            runningTasks.put(r, scheduled);
        }
    }

    @Override
    protected void afterExecute(Runnable r, Throwable t) {

        //Remove mapping and cancel timeout task
        ScheduledFuture timeoutTask = runningTasks.remove(r);
        if(timeoutTask != null) {
            timeoutTask.cancel(false);
        }

        if (isShutdown)
        {
            if(getQueue().isEmpty())
            {
                //Queue is empty so all tasks either finished or currently running
                MainWindow.logger.severe("---Thread Pool Queue is Empty");
                //timeoutExecutor.shutdownNow();
            }
        }
    }

    /**
     * Interrupt the thread
     *
     */
    class TimeoutTask implements Runnable {
        private final Thread thread;

        public TimeoutTask(Thread thread) {
            this.thread = thread;
        }

        @Override
        public void run() {
            MainWindow.logger.severe("Cancelling task because taking too long");
            thread.interrupt();
        }
    }
}
is output WAITTERMINATION()不会返回,只有在用户两小时后取消任务时才会最终返回-此处为完整日志提取

14/12/2014 20.44.19:com.jthink.jaikoz.manipulate.CorrectFromMusicBrainzWorker:getSongsNotMatched:SEVERE: /Volumes/2TB External/New iTunes Library/iTunes Media/Music/XTC:albumMetadataMatchingCounts11:AlreadyMatched:2:ToMatch:11
14/12/2014 20.44.19:com.jthink.jaikoz.memory.TimeoutThreadPoolExecutor:afterExecute:SEVERE: ---Thread Pool Queue is Empty
14/12/2014 22.18.01:com.jthink.jaikoz.manipulate.ExecutorServiceEnabledAnalyser:cancelTask:WARNING: Cancelling class com.jthink.jaikoz.manipulate.CorrectFromMusicBrainzAnalyser Task
14/12/2014 22.18.01:com.jthink.jaikoz.manipulate.CorrectFromMusicBrainzAnalyser:matchToRelease:WARNING: class com.jthink.jaikoz.manipulate.CorrectFromMusicBrainzAnalyser has been interrupted
那么,即使日志显示队列为空,并且因此对执行器本身和嵌入的timeoutExecutor都调用了shutdown(),WaiterTermination()怎么可能不返回呢

我自己对此也有一些想法,但不知道答案

  • 首先,为什么实际上有必要关闭TimeOutExecutor以等待Termination()返回。在我的子类中,awaitTermination()未被重写,因此如果所有任务都已完成,那么TiumOutExecutor(awaitTermination()不知道是否关闭)又有什么关系

  • 第二,为什么---线程池队列是空的,有时会多次获得输出


  • 我在
    TimeoutThreadPoolExecutor
    中进行了自定义修改,它工作正常

    public static class TimeoutThreadPoolExecutor extends ThreadPoolExecutor
    {
        private final long timeout;
        private final TimeUnit timeoutUnit;
        private boolean isShutdown = false;
    
        private final ScheduledExecutorService timeoutExecutor = Executors.newSingleThreadScheduledExecutor();
        private final ConcurrentMap<Runnable, ScheduledFuture> runningTasks = new ConcurrentHashMap<Runnable, ScheduledFuture>();
    
        public TimeoutThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, long timeout, TimeUnit timeoutUnit) {
            super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue);
            this.timeout = timeout;
            this.timeoutUnit = timeoutUnit;
        }
    
        public TimeoutThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, long timeout, TimeUnit timeoutUnit) {
            super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory);
            this.timeout = timeout;
            this.timeoutUnit = timeoutUnit;
        }
    
        public TimeoutThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler, long timeout, TimeUnit timeoutUnit) {
            super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, handler);
            this.timeout = timeout;
            this.timeoutUnit = timeoutUnit;
        }
    
        public TimeoutThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler, long timeout, TimeUnit timeoutUnit) {
            super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory, handler);
            this.timeout = timeout;
            this.timeoutUnit = timeoutUnit;
        }
    
        @Override
        public void shutdown() {
            isShutdown = true;
            super.shutdown();
        }
    
        @Override
        public List<Runnable> shutdownNow() {
            timeoutExecutor.shutdownNow();
            return super.shutdownNow();
        }
    
        @Override
        protected void beforeExecute(Thread t, Runnable r) {
            if(timeout > 0) {
                final ScheduledFuture<?> scheduled = timeoutExecutor.schedule(new TimeoutTask(t), timeout, timeoutUnit);
                runningTasks.put(r, scheduled);
            }
        }
    
        @Override
        protected void afterExecute(Runnable r, Throwable t) {
            ScheduledFuture timeoutTask = runningTasks.remove(r);
            if(timeoutTask != null) {
                timeoutTask.cancel(false);
            }
            if (isShutdown) timeoutExecutor.shutdown();
        }
    
        class TimeoutTask implements Runnable {
            private final Thread thread;
    
            public TimeoutTask(Thread thread) {
                this.thread = thread;
            }
    
            @Override
            public void run() {
                thread.interrupt();
                System.out.println("Cancelled");
            }
        }
    }
    
    情况2:超时

    final TimeoutThreadPoolExecutor executorService = new TimeoutThreadPoolExecutor(
        100, 100, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<Runnable>(),
        6, TimeUnit.SECONDS);
    executorService.submit(new Callable<Object>()
    {
        @Override
        public Object call() throws Exception
        {
            Thread.sleep(5000);
            System.out.println("Done");
            return null;
        }
    
    });
    
    executorService.shutdown();
    executorService.awaitTermination(1, TimeUnit.DAYS);
    System.out.println("Program done");
    
    final TimeoutThreadPoolExecutor executorService = new TimeoutThreadPoolExecutor(
        100, 100, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<Runnable>(),
        3, TimeUnit.SECONDS);
    executorService.submit(new Callable<Object>()
    {
        @Override
        public Object call() throws Exception
        {
            Thread.sleep(5000);
            System.out.println("Task done");
            return null;
        }
    
    });
    
    executorService.shutdown();
    executorService.awaitTermination(1, TimeUnit.DAYS);
    System.out.println("Program done");
    

    那你到底想做什么?是否要中断当前正在工作的任务?@Antoniossss是的,我想中断当前正在工作的任务,但我不想在任务提交给执行器后调用shutdown(),以阻止这些任务运行。另外,如果一项任务花费的时间太长,它应该被中断,但对任何其他提交的任务都没有影响。@ToYonus谢谢,但您的TimeoutThreadPoolExecutor版本不同,请查看链接问题。您也不需要使用它-实现的整个要点是,您只需为所需的每个逻辑任务向执行者提交一个任务,而不是为您想要执行的每个任务提交两个任务。我使用了与链接答案中完全相同的实现,只需添加
    System.out.println(“取消”)。我已经理解了2个任务机制。这对我有用。给我一个不起作用的完整测试,我会看一看。@ToYonus不,很抱歉你没有,请看链接问题中的代码,忽略这些问题的答案,答案在问题中。我问题中的代码显示了我如何使用执行器实现。是的。我的代码来自这个问题。我刚刚用
    /*实现*/
    替换了代码的主要部分,这是为了readability@ToYonus啊,好吧,对不起,你的计时器任务把我弄糊涂了),但问题可能是注释//我将关机延迟了一秒钟,以避免被拒绝的ExecutionException,如果您删除计时器任务,只需在用于将任务提交给执行器的线程所在的同一线程中运行shutdown()和awaitTermination(),那么您为什么需要这样做?您的示例是否有效?这就是我正在做的
    public static class TimeoutThreadPoolExecutor extends ThreadPoolExecutor
    {
        private final long timeout;
        private final TimeUnit timeoutUnit;
        private boolean isShutdown = false;
    
        private final ScheduledExecutorService timeoutExecutor = Executors.newSingleThreadScheduledExecutor();
        private final ConcurrentMap<Runnable, ScheduledFuture> runningTasks = new ConcurrentHashMap<Runnable, ScheduledFuture>();
    
        public TimeoutThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, long timeout, TimeUnit timeoutUnit) {
            super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue);
            this.timeout = timeout;
            this.timeoutUnit = timeoutUnit;
        }
    
        public TimeoutThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, long timeout, TimeUnit timeoutUnit) {
            super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory);
            this.timeout = timeout;
            this.timeoutUnit = timeoutUnit;
        }
    
        public TimeoutThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler, long timeout, TimeUnit timeoutUnit) {
            super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, handler);
            this.timeout = timeout;
            this.timeoutUnit = timeoutUnit;
        }
    
        public TimeoutThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler, long timeout, TimeUnit timeoutUnit) {
            super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory, handler);
            this.timeout = timeout;
            this.timeoutUnit = timeoutUnit;
        }
    
        @Override
        public void shutdown() {
            isShutdown = true;
            super.shutdown();
        }
    
        @Override
        public List<Runnable> shutdownNow() {
            timeoutExecutor.shutdownNow();
            return super.shutdownNow();
        }
    
        @Override
        protected void beforeExecute(Thread t, Runnable r) {
            if(timeout > 0) {
                final ScheduledFuture<?> scheduled = timeoutExecutor.schedule(new TimeoutTask(t), timeout, timeoutUnit);
                runningTasks.put(r, scheduled);
            }
        }
    
        @Override
        protected void afterExecute(Runnable r, Throwable t) {
            ScheduledFuture timeoutTask = runningTasks.remove(r);
            if(timeoutTask != null) {
                timeoutTask.cancel(false);
            }
            if (isShutdown) timeoutExecutor.shutdown();
        }
    
        class TimeoutTask implements Runnable {
            private final Thread thread;
    
            public TimeoutTask(Thread thread) {
                this.thread = thread;
            }
    
            @Override
            public void run() {
                thread.interrupt();
                System.out.println("Cancelled");
            }
        }
    }
    
    final TimeoutThreadPoolExecutor executorService = new TimeoutThreadPoolExecutor(
        100, 100, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<Runnable>(),
        6, TimeUnit.SECONDS);
    executorService.submit(new Callable<Object>()
    {
        @Override
        public Object call() throws Exception
        {
            Thread.sleep(5000);
            System.out.println("Done");
            return null;
        }
    
    });
    
    executorService.shutdown();
    executorService.awaitTermination(1, TimeUnit.DAYS);
    System.out.println("Program done");
    
    Task done
    Program done
    
    final TimeoutThreadPoolExecutor executorService = new TimeoutThreadPoolExecutor(
        100, 100, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<Runnable>(),
        3, TimeUnit.SECONDS);
    executorService.submit(new Callable<Object>()
    {
        @Override
        public Object call() throws Exception
        {
            Thread.sleep(5000);
            System.out.println("Task done");
            return null;
        }
    
    });
    
    executorService.shutdown();
    executorService.awaitTermination(1, TimeUnit.DAYS);
    System.out.println("Program done");
    
    Cancelled
    Program done