三国卡牌客户端基础资源仓库
yyl
2025-05-20 4ab75ab9997129f03efb78567db189f30e5566a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<#@ template debug="false" hostspecific="false" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ output extension=".cs" #>
<#
    var tMax = 15;
    Func<int, string> typeArgs = x => string.Join(", ", Enumerable.Range(1, x).Select(x => $"T{x}")) + ", TResult";
    Func<int, string> paramArgs = x => string.Join(", ", Enumerable.Range(1, x).Select(x => $"IUniTaskAsyncEnumerable<T{x}> source{x}"));
    Func<int, string> parameters = x => string.Join(", ", Enumerable.Range(1, x).Select(x => $"source{x}"));
 
 
#>
using Cysharp.Threading.Tasks.Internal;
using System;
using System.Threading;
 
namespace Cysharp.Threading.Tasks.Linq
{
    public static partial class UniTaskAsyncEnumerable
    {
<# for(var i = 2; i <= tMax; i++) { #>
        public static IUniTaskAsyncEnumerable<TResult> CombineLatest<<#= typeArgs(i) #>>(this <#= paramArgs(i) #>, Func<<#= typeArgs(i) #>> resultSelector)
        {
<# for(var j = 1; j <= i; j++) { #>
            Error.ThrowArgumentNullException(source<#= j #>, nameof(source<#= j #>));
<# } #>
            Error.ThrowArgumentNullException(resultSelector, nameof(resultSelector));
 
            return new CombineLatest<<#= typeArgs(i) #>>(<#= parameters(i) #>, resultSelector);
        }
 
<# } #>
    }
 
<# for(var i = 2; i <= tMax; i++) { #>
    internal class CombineLatest<<#= typeArgs(i) #>> : IUniTaskAsyncEnumerable<TResult>
    {
<# for(var j = 1; j <= i; j++) { #>
        readonly IUniTaskAsyncEnumerable<T<#= j #>> source<#= j #>;
<# } #>        
        readonly Func<<#= typeArgs(i) #>> resultSelector;
 
        public CombineLatest(<#= paramArgs(i) #>, Func<<#= typeArgs(i) #>> resultSelector)
        {
<# for(var j = 1; j <= i; j++) { #>
            this.source<#= j #> = source<#= j #>;
<# } #>        
            this.resultSelector = resultSelector;
        }
 
        public IUniTaskAsyncEnumerator<TResult> GetAsyncEnumerator(CancellationToken cancellationToken = default)
        {
            return new _CombineLatest(<#= parameters(i) #>, resultSelector, cancellationToken);
        }
 
        class _CombineLatest : MoveNextSource, IUniTaskAsyncEnumerator<TResult>
        {
<# for(var j = 1; j <= i; j++) { #>
            static readonly Action<object> Completed<#= j #>Delegate = Completed<#= j #>;
<# } #>
            const int CompleteCount = <#= i #>;
 
<# for(var j = 1; j <= i; j++) { #>
            readonly IUniTaskAsyncEnumerable<T<#= j #>> source<#= j #>;
<# } #>       
            readonly Func<<#= typeArgs(i) #>> resultSelector;
            CancellationToken cancellationToken;
 
<# for(var j = 1; j <= i; j++) { #>
            IUniTaskAsyncEnumerator<T<#= j #>> enumerator<#= j #>;
            UniTask<bool>.Awaiter awaiter<#= j #>;
            bool hasCurrent<#= j #>;
            bool running<#= j #>;
            T<#= j #> current<#= j #>;
 
<# } #>
            int completedCount;
            bool syncRunning;
            TResult result;
 
            public _CombineLatest(<#= paramArgs(i) #>, Func<<#= typeArgs(i) #>> resultSelector, CancellationToken cancellationToken)
            {
<# for(var j = 1; j <= i; j++) { #>
                this.source<#= j #> = source<#= j #>;
<# } #>                
                this.resultSelector = resultSelector;
                this.cancellationToken = cancellationToken;
                TaskTracker.TrackActiveTask(this, 3);
            }
 
            public TResult Current => result;
 
            public UniTask<bool> MoveNextAsync()
            {
                cancellationToken.ThrowIfCancellationRequested();
                if (completedCount == CompleteCount) return CompletedTasks.False;
 
                if (enumerator1 == null)
                {
<# for(var j = 1; j <= i; j++) { #>
                    enumerator<#= j #> = source<#= j #>.GetAsyncEnumerator(cancellationToken);
<# } #>
                }
 
                completionSource.Reset();
 
                AGAIN:
                syncRunning = true;
<# for(var j = 1; j <= i; j++) { #>
                if (!running<#= j #>)
                {
                    running<#= j #> = true;
                    awaiter<#= j #> = enumerator<#= j #>.MoveNextAsync().GetAwaiter();
                    if (awaiter<#= j #>.IsCompleted)
                    {
                        Completed<#= j #>(this);
                    }
                    else
                    {
                        awaiter<#= j #>.SourceOnCompleted(Completed<#= j #>Delegate, this);
                    }
                }
<# } #>
 
                if (<#= string.Join(" || ", Enumerable.Range(1, i).Select(x => $"!running{x}")) #>)
                {
                    goto AGAIN;
                }
                syncRunning = false;
 
                return new UniTask<bool>(this, completionSource.Version);
            }
 
<# for(var j = 1; j <= i; j++) { #>
            static void Completed<#= j #>(object state)
            {
                var self = (_CombineLatest)state;
                self.running<#= j #> = false;
 
                try
                {
                    if (self.awaiter<#= j #>.GetResult())
                    {
                        self.hasCurrent<#= j #> = true;
                        self.current<#= j #> = self.enumerator<#= j #>.Current;
                        goto SUCCESS;
                    }
                    else
                    {
                        self.running<#= j #> = true; // as complete, no more call MoveNextAsync.
                        if (Interlocked.Increment(ref self.completedCount) == CompleteCount)
                        {
                            goto COMPLETE;
                        }
                        return;
                    }
                }
                catch (Exception ex)
                {
                    self.running<#= j #> = true; // as complete, no more call MoveNextAsync.
                    self.completedCount = CompleteCount;
                    self.completionSource.TrySetException(ex);
                    return;
                }
 
                SUCCESS:
                if (!self.TrySetResult())
                {
                    if (self.syncRunning) return;
                    self.running<#= j #> = true; // as complete, no more call MoveNextAsync.
                    try
                    {
                        self.awaiter<#= j #> = self.enumerator<#= j #>.MoveNextAsync().GetAwaiter();
                    }
                    catch (Exception ex)
                    {
                        self.completedCount = CompleteCount;
                        self.completionSource.TrySetException(ex);
                        return;
                    }
 
                    self.awaiter<#= j #>.SourceOnCompleted(Completed<#= j #>Delegate, self);
                }
                return;
                COMPLETE:
                self.completionSource.TrySetResult(false);
                return;
            }
 
<# } #>
            bool TrySetResult()
            {
                if (<#= string.Join(" && ", Enumerable.Range(1, i).Select(x => $"hasCurrent{x}")) #>)
                {
                    result = resultSelector(<#= string.Join(", ", Enumerable.Range(1, i).Select(x => $"current{x}")) #>);
                    completionSource.TrySetResult(true);
                    return true;
                }
                else
                {
                    return false;
                }
            }
 
            public async UniTask DisposeAsync()
            {
                TaskTracker.RemoveTracking(this);
<# for(var j = 1; j <= i; j++) { #>
                if (enumerator<#= j #> != null)
                {
                    await enumerator<#= j #>.DisposeAsync();
                }
<# } #>
            }
        }
    }
 
<# } #>
}