async 和 await 实现原理

来源:http://blog.csdn.net/cjq1234/article/details/7536644

摘要:用串行运行的状态机模拟实现了异步

 

今天在stackOverflow网站看到一个很好的解释,摘抄并发挥一下,

It works similarly to the yield return keyword in C# 2.0.

An asynchronous method is not actually an ordinary sequential method. It is compiled into a state machine (an object) with some state (local variables are turned into fields of the object). Each block of code between two uses of await is one "step" of the state machine.

This means that when the method starts, it just runs the first step and then the state machine returns and schedules some work to be done - when the work is done, it will run the next step of the state machine. For example this code:

  1. async Task Demo() {  
  2.   var v1 = foo();  
  3.   var v2 = await bar();  
  4.   more(v1, v2);  
  5. }  
async Task Demo() {
  var v1 = foo();
  var v2 = await bar();
  more(v1, v2);
}



Would be translated to something like:

[csharp]
  1. class _Demo {  
  2.   int _v1, _v2;  
  3.   int _state = 0;  
  4.   Task<int> _await1;  
  5.   public void Step() {  
  6.     switch(this._state) {  
  7.     case 0:  
  8.       foo();  
  9.       this._v1 = foo();  
  10.       this._await1 = bar();  
  11.       // When the async operation completes, it will call this method  
  12.       this._state = 1;  
  13.       op.SetContinuation(Step);  
  14.     case 1:  
  15.       this._v2 = this._await1.Result; // Get the result of the operation  
  16.       more(this._v1, this._v2);  
  17.   }  
  18. }  
class _Demo {
  int _v1, _v2;
  int _state = 0;
  Task<int> _await1;
  public void Step() {
    switch(this._state) {
    case 0:
      foo();
      this._v1 = foo();
      this._await1 = bar();
      // When the async operation completes, it will call this method
      this._state = 1;
      op.SetContinuation(Step);
    case 1:
      this._v2 = this._await1.Result; // Get the result of the operation
      more(this._v1, this._v2);
  }
}


The important part is that it just uses the SetContinuation method to specify that when the operation completes, it should call the Step method again (and the method knows that it should run the second bit of the original code using the _state field). You can easily imagine that the SetContinuation would be something like btn.Click += Step, which would run completely on a single thread.

The asynchronous programming model in C# is very close to F# asynchronous workflows (in fact, it is essentially the same thing, aside from some technical details), and writing reactive single-threaded GUI applications using async is quite an interesting area - at least I think so - see for example this article (maybe I should write a C# version now :-)).

The translation is similar to iterators (and yield return) and in fact, it was possible to use iterators to implement asynchronous programming in C# earlier. I wrote an article about that a while ago - and I think it can still give you some insight on how the translation works.

answered by Tomas Petricek

大致是说 async 和await模拟了一个状态机(上面的_state变量维持状态),async把一个顺序执行的工作分割成3块,一个是费时工作的前序,一个是费时的工作,还有一个是费时工作的后续,

[csharp]
  1. async Task Demo() {  
  2.   var v1 = 前序工作();  
  3.   var v2 = await 费时工作();  
  4.   后续工作(v1, v2);  
  5. }  
async Task Demo() {
  var v1 = 前序工作();
  var v2 = await 费时工作();
  后续工作(v1, v2);
}



被翻译成状态机
[csharp]
  1. class 状态机{  
  2.     int _v1, _v2;  
  3.     int 状态变量 =起始态;     
  4.     Task<int> _await1;    
  5.     public void Step() {      
  6.         switch(this.状态变量) {     
  7.             case 起始态:         
  8.                 this._v1 = 前序工作();  
  9.                 this._await1 = 费时工作();        
  10.                 // 当费时工作异步完成时, 异步工作将改变状态变量值  
  11.                 this.状态变量= 顺利完成;        
  12.                 继续调用自身即 Step函数;    //op.SetContinuation(Step);      
  13.             case 顺利完成:        
  14.                 this._v2 = this._await1.Result; //费时工作结果       
  15.                 后续工作(this._v1, this._v2);    
  16.     }  
  17. }  
class 状态机{
    int _v1, _v2;
    int 状态变量 =起始态;   
    Task<int> _await1;  
    public void Step() {    
        switch(this.状态变量) {   
            case 起始态:       
                this._v1 = 前序工作();
                this._await1 = 费时工作();      
                // 当费时工作异步完成时, 异步工作将改变状态变量值
                this.状态变量= 顺利完成;      
                继续调用自身即 Step函数;    //op.SetContinuation(Step);    
            case 顺利完成:      
                this._v2 = this._await1.Result; //费时工作结果     
                后续工作(this._v1, this._v2);  
    }
}



事实上我们亦可以在.net framework 4以下向上面的状态机类一样来调用异步函数,这样同步调用的逻辑还是保持住了,也更好理解,最大的好处是对于循环的处理简单多了。
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值