分析Tomcat线程池源码笔记一
看下Tomcat的 线程池 管理类 ,就当休息休息
Tomcat 的线程池管理在 org.apache.tomcat.util.threads 包下,我感觉 主要由
ThreadPool (及其内部类), ThreadWithAttributes 这两个类 外带一个 ThreadPoolRunnable 接口组成
ThreadPool 把 线程存储到了Hashtable threads=new Hashtable() 这个域里 ,
通过void org.apache.tomcat.util.threads.ThreadPool.addThread(Thread t, ControlRunnable cr)
方法加入线程,加入的线程是一个 ThreadPool.ControlRunnable ,ControlRunnable在内部持有一个ThreadPool ,两
者达到了 一对多且互相引用的关系 ,当把一个 线程放入 threads域后 ,会将这个线程挂载其内部已经存在的Vector
listeners=new Vector() 监听(ThreadPool.ThreadPoolListener 不过我没找到这个监听的具体实现)
创建线程(ThreadPool.ControlRunnable)的时候 会附带一ThreadWithAttributes ,写入 若干属性
ThreadWithAttributes 会写入 当前创建的ThreadPool.ControlRunnable 优先级(priority),是守护进程,名称,对了
ThreadWithAttributes 是一个特殊的 进程,并且把 当前创建的ThreadPool.ControlRunnable囊括其中,所以
ThreadPool.ControlRunnabl构造完就委托 ThreadWithAttributes 进行start 从而执行了
ThreadPool.ControlRunnable的 run方法
我发现apache 写的代码也挺有意思的 ,有很多方法的参数都不使用,并且方法也不是Override的
举几个ThreadWithAttributes方法的例子 如下
public final Object[] getThreadData(Object control ) { return thData; } public final void setThreadData(Object control, Object thData[] ) { this.thData=thData; } /** Generic attributes. You'll need a hashtable lookup - * you can use notes for array access. */ public final Hashtable getAttributes(Object control) { return attributes; }
继续看,然后继续补充