【手写线程池】Java 语言手写线程池

完成了四种拒绝策略,支持核心线程数常驻,最大线程数超时清扫。
import java.util.LinkedList;
import java.util.Queue;
import java.util.Timer;
import java.util.TimerTask;
import java.util.concurrent.ConcurrentLinkedQueue;

public class ThreadPool {

    public final int cleanInterval = 1000;
    public static final int AbortPolicy = 0;
    public static final int CallerRunsPolicy = 1;
    public static final int DiscardPolicy = 2;
    public static final int DiscardOldestPolicy = 3;

    private final int refusePolicy;

    private final int lifeTime;
    private final int coreLimit;
    private final int maxLimit;
    private int waitLimit;

    private int nowCnt;

    private Timer timer;

    private boolean isRunning;

    private Queue<Task> waitingList = new LinkedList<>();
    private Queue<Thd> freeList = new LinkedList<>();

    public ThreadPool(int coreLimit, int maxLimit, int waitLimit, int lifeTime, int refusePolicy ) {
        this.lifeTime = lifeTime;
        this.coreLimit = coreLimit;
        this.maxLimit = maxLimit;
        this.waitLimit = waitLimit;
        this.refusePolicy = refusePolicy;
        this.isRunning = true;
        setupCleaner();
    }

    public synchronized void close() {
        this.isRunning = false;
    }

    private void setupCleaner() {
        timer = new Timer();
        timer.scheduleAtFixedRate(new TimerTask() {
            @Override
            public void run() {
                clearDeadThread();
            }
        }, cleanInterval, cleanInterval);
    }

    private synchronized void addToPool(Thd thd) {
        freeList.add(thd);
    }

    private synchronized Task getWaitingTask() {
        return waitingList.poll();
    }

    private synchronized Thd getFreeThread() {
        Thd ret = freeList.poll();
        while (ret != null && nowCnt > coreLimit && System.currentTimeMillis() - ret.timeStamp > lifeTime) {
            nowCnt --;
            ret = freeList.poll();
        }
        return ret;
    }

    private synchronized void clearDeadThread() {
        if(nowCnt <= coreLimit) {
            return;
        }
        Queue<Thd> tmp = new LinkedList<>();
        while (!freeList.isEmpty()) {
            Thd thd = getFreeThread();
            if (thd != null) {
                tmp.add(thd);
            }
        }
        freeList.addAll(tmp);
    }

    public boolean submit(Task task) throws Exception {
        boolean accept = true;
        synchronized (this) {
            if (isRunning) {
                Thd thd = getFreeThread();
                if (thd != null) {
                    thd.excuteTask(task);
                } else if (nowCnt < coreLimit) {
                    new Thd(task).start();
                } else if (waitingList.size() < waitLimit) {
                    waitingList.add(task);
                } else if (nowCnt < maxLimit) {
                    new Thd(task).start();
                } else if (refusePolicy == DiscardOldestPolicy) {
                    waitingList.poll();
                    waitingList.add(task);
                } else {
                    accept = false;
                }
            } else {
                accept = false;
            }
        }
        if (!accept) {
            switch (refusePolicy) {
                case AbortPolicy:
                    throw new Exception("submission failed");
                case CallerRunsPolicy:
                    task.work();
                    break;
                case DiscardPolicy:
                    break;
            }
        }
        return accept;
    }

    public interface Task {
        void work() throws InterruptedException;
    }
    private class Thd extends Thread {
        private long timeStamp;

        private Task task;

        public synchronized void excuteTask(Task task) {
            this.task = task;
            this.notify();
        }

        public Thd(Task task) {
            this.task = task;
            nowCnt ++;
        }

        @Override
        public void run() {
            while (true) {
                while (task != null) {
                    try {
                        task.work();
                    } catch (InterruptedException e) {
                        throw new RuntimeException(e);
                    }
                    task = getWaitingTask();
                }
                synchronized (this) {
                    try {
                        timeStamp = System.currentTimeMillis();
                        addToPool(this);
                        wait();
                    } catch (Exception ignored) {
                    }
                }
            }
        }
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值