并发十七:Future详解

Future

Future是J.U.C中的一个接口,它代表着一个异步执行结果。

Future可以看成线程在执行时留给调用者的一个存根,通过这个存在可以进行查看线程执行状态(isDone)、取消执行(cancel)、阻塞等待执行完成并返回结果(get)、异步执行回调函数(callback)等操作。

public interface Future<V> {
    /** 取消,mayInterruptIfRunning-false:不允许在线程运行时中断 **/
    boolean cancel(boolean mayInterruptIfRunning);
    /** 是否取消**/
    boolean isCancelled();
    /** 是否完成 **/
    boolean isDone();
    /** 同步获取结果 **/
    V get() throws InterruptedException, ExecutionException;
    /** 同步获取结果,响应超时 **/
    V get(long timeout, TimeUnit unit)
        throws InterruptedException, ExecutionException, TimeoutException;
}

用ReentrantLock实现Future

一个小栗子:

public class ResponseFuture implements Future<String> {
    private final ResponseCallback callback;
    private String responsed;
    private final ReentrantLock lock = new ReentrantLock();
    private final Condition condition = lock.newCondition();

    public ResponseFuture(ResponseCallback callback) {
        this.callback = callback;
    }
    public boolean isDone() {
        return null != this.responsed;
    }
    public String get() throws InterruptedException, ExecutionException {
        if (!isDone()) {
            try {
                this.lock.lock();
                while (!this.isDone()) {
                    condition.await();
                    if (this.isDone()) break;
                }
            } finally {
                this.lock.unlock();
            }
        }
        return this.responsed;
    }
    // 返回完成
    public void done(String responsed) throws Exception{
        this.responsed = responsed;
        try { 
            this.lock.lock();
            this.condition.signal();
            if(null != this.callback) this.callback.call(this.responsed);
        } finally { 
            this.lock.unlock();
        }
    }
    
    public String get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
        throw new UnsupportedOperationException();
    }
    public boolean cancel(boolean mayInterruptIfRunning) {
        throw new UnsupportedOperationException();
    }
    public boolean isCancelled() {
        throw new UnsupportedOperationException();
    }
}

使用这个Future:

public class ResponseCallback {
    public String call(String o) {
        System.out.println("ResponseCallback:处理完成,返回:"+o);
        return o;
    }
}

public class FutureTest {
    public static void main(String[] args) {
        final ResponseFuture responseFuture = new ResponseFuture(new ResponseCallback());
        new Thread(new Runnable() {// 请求线程
            public void run() {
                System.out.println("发送一个同步请求");
                // System.out.println(responseFuture.get()); 放开这句,就是同步
                System.out.println("接着处理其他事情,过一会ResponseCallback会打印结果");
            }
        }).start();
        new Thread(new Runnable() {// 处理线程
            public void run() {
                try {
                    Thread.sleep(10000);// 模拟处理一会
                    responseFuture.done("ok");// 处理完成
                }catch (Exception e) {
                    e.printStackTrace();
                }
        
        }).start();
    }
}

这个Future使用了Condition的await和signal方法

同步操作:调用get时如果发现未有结果返回,线程阻塞等待,直到有结果返回时通知Future唤醒等待的线程。

异步操作:调用线性不用等待,有结果返回时调用signal()发现没有等待线程,直接调用Callback。

FutureTask

FutureTask是J.U.C中Future的实现,它同时也实现了Runnable接口,可以直接在ExecutorService中提交执行这个Future。

一个小栗子:

public class FutureTaskTest {

    public static class CallableImpl implements Callable<String>{
        public String call() throws Exception {
            String tName = Thread.currentThread().getName();
            System.out.println(tName+" :开始执行");
            Thread.sleep(6000);
            return tName+" ok";
        }
    }
    public static void main(String[] args) throws Exception {
        ExecutorService es = Executors.newFixedThreadPool(1);
        
//      // 同步执行,等待6000毫秒拿到结果
//      FutureTask<String> future = new FutureTask<String>(new CallableImpl());
//      es.submit(future);
//      System.out.println(future.get());
        
        // 异步执行
        FutureTask<String> future = new FutureTask<String>(new CallableImpl()) {
            protected void done()  { 
                try {
                    System.out.println("异步返回的结果:"+this.get());
                } catch (Exception e) {
                    e.printStackTrace();
                } 
            }
        };
        es.submit(future);
        System.out.println("执行其他操作");

        es.shutdown();
    }

}

FutureTask实现

使用单向链表WaitNode表示排队等待的线程, volatile state表示当前线程的执行状态,状态转换如下:

NEW -> COMPLETING -> NORMAL
NEW -> COMPLETING -> EXCEPTIONAL
NEW -> CANCELLED
NEW -> INTERRUPTING -> INTERRUPTED

awaitDone

阻塞等待

    private int awaitDone(boolean timed, long nanos)
        throws InterruptedException {
        final long deadline = timed ? System.nanoTime() + nanos : 0L;
        WaitNode q = null;
        boolean queued = false;
        for (;;) {
            if (Thread.interrupted()) {// 当前线程中断
                removeWaiter(q);// 移除等待的节点
                throw new InterruptedException();
            }
            int s = state;// 当前状态
            if (s > COMPLETING) {//已经执行完成
                if (q != null)
                    q.thread = null;// 节点绑定的线程置空
                return s;
            }
            else if (s == COMPLETING) //完成中
                Thread.yield();// 出让CPU
            else if (q == null)// 等待节点为空,构建节点
                q = new WaitNode();
            else if (!queued)// waiters设置为q
                queued = UNSAFE.compareAndSwapObject(this, waitersOffset,
                                                     q.next = waiters, q);
            else if (timed) {
                nanos = deadline - System.nanoTime();
                if (nanos <= 0L) {// 超时,摘除节点
                    removeWaiter(q);
                    return state;
                }
                LockSupport.parkNanos(this, nanos);//挂起线程,响应超时
            }
            else
                LockSupport.park(this);// 挂起线程
        }
    }

run

线程执行

    // s1
    public void run() {
        // state!=NEW,说明没必要执行,返回。
        // CAS操作,将runner设置为当前线程,如果失败,说明有其他线程在执行,返回。
        if (state != NEW ||
            !UNSAFE.compareAndSwapObject(this, runnerOffset,
                                         null, Thread.currentThread()))
            return;
        try {
            Callable<V> c = callable;
            if (c != null && state == NEW) {
                V result;
                boolean ran;
                try {
                    result = c.call();//执行
                    ran = true;
                } catch (Throwable ex) {
                    result = null;
                    ran = false;
                    setException(ex);// 异常 s2
                }
                if (ran)
                    set(result);// 完成 s3
            }
        } finally {
            runner = null;// 置空runner
            int s = state;
            if (s >= INTERRUPTING)
                handlePossibleCancellationInterrupt(s);
        }
    }

s1:state不为NEW或者有其他线程在执行时,都不会执行run方法。
执行中出现异常转入s2
执行结束转入s3

    // s2
    protected void setException(Throwable t) {
        // 完成 NEW-COMPLETING-EXCEPTIONAL 状态置换
        if (UNSAFE.compareAndSwapInt(this, stateOffset, NEW, COMPLETING)) {
            outcome = t;
            UNSAFE.putOrderedInt(this, stateOffset, EXCEPTIONAL); // final state
            finishCompletion();
        }
    }

s2:这步完成状态:NEW-COMPLETING-EXCEPTIONAL 置换
将异常赋给结果outcome
转入s4

    // s3
    protected void set(V v) {
        // 完成NEW-COMPLETING-NORMAL状态置换
        if (UNSAFE.compareAndSwapInt(this, stateOffset, NEW, COMPLETING)) {
            outcome = v;
            UNSAFE.putOrderedInt(this, stateOffset, NORMAL); // final state
            finishCompletion();
        }
    }

s3:这步完成状态:NEW-COMPLETING-NORMAL 置换
将执行结果赋给outcome
转入s4

    // s4
    private void finishCompletion() {
        for (WaitNode q; (q = waiters) != null;) {
            if (UNSAFE.compareAndSwapObject(this, waitersOffset, q, null)) {//waiters置空
                for (;;) {// 依次唤醒所有等待的节点
                    Thread t = q.thread;
                    if (t != null) {
                        q.thread = null;// 置空
                        LockSupport.unpark(t);// 唤醒
                    }
                    WaitNode next = q.next;//向后探测
                    if (next == null)
                        break;
                    q.next = null; // unlink to help gc
                    q = next;
                }
                break;
            }
        }
        done();// 回调钩子
        callable = null;        // to reduce footprint
    }

s4:for(;;)中异常唤醒等待线程
调用回调钩子done()
被唤醒的线程会在awaitDone中让出CPU,退出循环。

小结

1、Future代表着一个异步执行结果
2、get是同步操作,当前线程会阻塞等待执行完毕,返回结果
3、异步操作使用钩子进行回调,不阻塞当前线程

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,142评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,298评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,068评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,081评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,099评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,071评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,990评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,832评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,274评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,488评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,649评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,378评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,979评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,625评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,643评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,545评论 2 352

推荐阅读更多精彩内容