In C#7, how can I “roll my own” Task-like type to use with async?

瘦欲@ 提交于 2019-12-17 23:37:12

问题


One of the less-talked-about features of C#7 is "generalized async return types", which is described by Microsoft as:

Returning a Task object from async methods can introduce performance bottlenecks in certain paths. Task is a reference type, so using it means allocating an object. In cases where a method declared with the async modifier returns a cached result, or completes synchronously, the extra allocations can become a significant time cost in performance critical sections of code. It can become very costly if those allocations occur in tight loops.

The new language feature means that async methods may return other types in addition to Task, Task<T> and void. The returned type must still satisfy the async pattern, meaning a GetAwaiter method must be accessible. As one concrete example, the ValueTask type has been added to the .NET framework to make use of this new language feature:

That sounds great, but I cannot for the life of my find any example that doesn't just use the stock ValueTask<T> type. I want to make my own Task-like type. Specifically I want a type that behaves like a Task<T>, but with a more functional style of error handling.

Here is the type I am using for functional error handling in my project:

public class Try<T> {
    public T Data { get; }
    public Exception Error { get; }

    public bool HasData => Error == null;
    public bool HasError => Error != null;

    public Try(T data) {
        Data = data;
    }

    public Try(Exception error) {
        Error = error;
    }
}

Here is what I think my custom awaitable type should look like:

public class TryTask<T> : Task<Try<T>> {

    public TryTask(Func<Try<T>> func)
        : base(func) { }

    //GetAwaiter is defined on base type, so we should be okay there
}

This all compiles, until I try to use it as an async return type:

async TryTask<int> DoWhatever() {
    return await new TryTask<int>(() => new Try<int>(1));
}

This method will give the compiler error The return type of an async method must be void, Task, or Task.

How do I make this or something like it compile?


Update:

To confirm, I am using the VS 2017 release from 3/7, and I am able to use other C#7 features in my project, such as local functions.

I have also tried using ValueTask and am getting the same compiler error.

static async ValueTask<int> DoWhatever() {
    return await new ValueTask<int>(1);          
}

Here's another post that sheds some light on whats going on.
How do I get the new async semantics working in VS2017 RC?

Apparently a separate "method builder" type needs to be defined and special attributes need to be applied to the awaitable type. I don't know if I really have time to dig into this. It seems more like metaprogramming hackery than a "language feature".


回答1:


I couldn't find any good tutorial yet. But you can look at the compiler unittests which create such task-like types (look for "[AsyncMethodBuilder").

The starting point is to create a type and mark it as task-like with an attribute like [AsyncMethodBuilder(typeof(MyTaskBuilder))]. Then you need to define your own MyTaskBuilder type. It must implement a certain pattern (see below). That is the same pattern implemented by the regular AsyncMethodBuilder type which supports regular Task.

class MyTaskBuilder
{
    public static MyTaskBuilder Create() => null;
    public void Start<TStateMachine>(ref TStateMachine stateMachine) where TStateMachine : IAsyncStateMachine { }
    public void SetStateMachine(IAsyncStateMachine stateMachine) { }
    public void SetResult() { }
    public void SetException(Exception exception) { }
    public MyTask Task => default(MyTask);
    public void AwaitOnCompleted<TAwaiter, TStateMachine>(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : INotifyCompletion where TStateMachine : IAsyncStateMachine { }
    public void AwaitUnsafeOnCompleted<TAwaiter, TStateMachine>(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : ICriticalNotifyCompletion where TStateMachine : IAsyncStateMachine { }
}

Update: a small spec for task-like types was added to the compiler documents.



来源:https://stackoverflow.com/questions/42721979/in-c7-how-can-i-roll-my-own-task-like-type-to-use-with-async

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!