Is there such a synchronization tool as “single-item-sized async task buffer”?

后端 未结 3 876
隐瞒了意图╮
隐瞒了意图╮ 2021-01-21 06:44

Many times in UI development I handle events in such a way that when an event first comes - I immediately start processing, but if there is one processing operation in progress

相关标签:
3条回答
  • 2021-01-21 07:11

    So first, we'll handle the case that you described in which the method is always used from the UI thread, or some other synchronization context. The Run method can itself be async to handle all of the marshaling through the synchronization context for us.

    If we're running we just set the next stored action. If we're not, then we indicate that we're now running, await the action, and then continue to await the next action until there is no next action. We ensure that whenever we're done we indicate that we're done running:

    public class EventThrottler
    {
        private Func<Task> next = null;
        private bool isRunning = false;
    
        public async void Run(Func<Task> action)
        {
            if (isRunning)
                next = action;
            else
            {
                isRunning = true;
                try
                {
                    await action();
                    while (next != null)
                    {
                        var nextCopy = next;
                        next = null;
                        await nextCopy();
                    }
                }
                finally
                {
                    isRunning = false;
                }
            }
        }
    
        private static Lazy<EventThrottler> defaultInstance =
            new Lazy<EventThrottler>(() => new EventThrottler());
        public static EventThrottler Default
        {
            get { return defaultInstance.Value; }
        }
    }
    

    Because the class is, at least generally, going to be used exclusively from the UI thread there will generally need to be only one, so I added a convenience property of a default instance, but since it may still make sense for there to be more than one in a program, I didn't make it a singleton.

    Run accepts a Func<Task> with the idea that it would generally be an async lambda. It might look like:

    public class Foo
    {
        public void SomeEventHandler(object sender, EventArgs args)
        {
            EventThrottler.Default.Run(async () =>
            {
                await Task.Delay(1000);
                //do other stuff
            });
        }
    }
    

    Okay, so, just to be verbose, here is a version that handles the case where the event handlers are called from different threads. I know you said that you assume they're all called from the UI thread, but I generalized it a bit. This means locking over all access to instance fields of the type in a lock block, but not actually executing the function inside of a lock block. That last part is important not just for performance, to ensure we're not blocking items from just setting the next field, but also to avoid issues with that action also calling run, so that it doesn't need to deal with re-entrancy issues or potential deadlocks. This pattern, of doing stuff in a lock block and then responding based on conditions determined in the lock means setting local variables to indicate what should be done after the lock ends.

    public class EventThrottlerMultiThreaded
    {
        private object key = new object();
        private Func<Task> next = null;
        private bool isRunning = false;
    
        public void Run(Func<Task> action)
        {
            bool shouldStartRunning = false;
            lock (key)
            {
                if (isRunning)
                    next = action;
                else
                {
                    isRunning = true;
                    shouldStartRunning = true;
                }
            }
    
            Action<Task> continuation = null;
            continuation = task =>
            {
                Func<Task> nextCopy = null;
                lock (key)
                {
                    if (next != null)
                    {
                        nextCopy = next;
                        next = null;
                    }
                    else
                    {
                        isRunning = false;
                    }
                }
                if (nextCopy != null)
                    nextCopy().ContinueWith(continuation);
            };
            if (shouldStartRunning)
                action().ContinueWith(continuation);
        }
    }
    
    0 讨论(0)
  • 2021-01-21 07:30

    Does what I need to do have a name?

    What you're describing sounds a bit like a trampoline combined with a collapsing queue. A trampoline is basically a loop that iteratively invokes thunk-returning functions. An example is the CurrentThreadScheduler in the Reactive Extensions. When an item is scheduled on a CurrentThreadScheduler, the work item is added to the scheduler's thread-local queue, after which one of the following things will happen:

    1. If the trampoline is already running (i.e., the current thread is already processing the thread-local queue), then the Schedule() call returns immediately.
    2. If the trampoline is not running (i.e., no work items are queued/running on the current thread), then the current thread begins processing the items in the thread-local queue until it is empty, at which point the call to Schedule() returns.

    A collapsing queue accumulates items to be processed, with the added twist that if an equivalent item is already in the queue, then that item is simply replaced with the newer item (resulting in only the most recent of the equivalent items remaining in the queue, as opposed to both). The idea is to avoid processing stale/obsolete events. Consider a consumer of market data (e.g., stock ticks). If you receive several updates for a frequently traded security, then each update renders the earlier updates obsolete. There is likely no point in processing earlier ticks for the same security if a more recent tick has already arrived. Thus, a collapsing queue is appropriate.

    In your scenario, you essentially have a trampoline processing a collapsing queue with for which all incoming events are considered equivalent. This results in an effective maximum queue size of 1, as every item added to a non-empty queue will result in the existing item being evicted.

    Is there some reusable synchronization type out there that could do that for me?

    I do not know of an existing solution that would serve your needs, but you could certainly create a generalized trampoline or event loop capable of supporting pluggable scheduling strategies. The default strategy could use a standard queue, while other strategies might use a priority queue or a collapsing queue.

    0 讨论(0)
  • 2021-01-21 07:30

    What you're describing sounds very similar to how TPL Dataflow's BrodcastBlock behaves: it always remembers only the last item that you sent to it. If you combine it with ActionBlock that executes your action and has capacity only for the item currently being processed, you get what you want (the method needs a better name):

    // returns send delegate
    private static Action<T> CreateProcessor<T>(Action<T> executedAction)
    {
        var broadcastBlock = new BroadcastBlock<T>(null);
        var actionBlock = new ActionBlock<T>(
          executedAction, new ExecutionDataflowBlockOptions { BoundedCapacity = 1 });
    
        broadcastBlock.LinkTo(actionBlock);
    
        return item => broadcastBlock.Post(item);
    }
    

    Usage could be something like this:

    var processor = CreateProcessor<int>(
        i =>
        {
            Console.WriteLine(i);
            Thread.Sleep(i);
        });
    
    processor(100);
    processor(1);
    processor(2);
    

    Output:

    100
    2
    
    0 讨论(0)
提交回复
热议问题