-
Notifications
You must be signed in to change notification settings - Fork 3
/
apyCache.pas
299 lines (272 loc) · 6.25 KB
/
apyCache.pas
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
unit apyCache;
interface
uses
// web3
web3,
web3.eth.defi,
web3.eth.etherscan,
web3.sync;
// C == Compound v2
// F == Ooki (previously known as Fulcrum)
// A == Aave v2
// I == Idle
// Y2 == Yearn earn v2
// Y3 == Yearn earn v3
// V2 == Yearn vault v2
// O == Origin Dollar
type
TAsyncAPYs = reference to procedure(C, F, A, I, Y2, Y3, V2, O: Double; err: IError);
type
TAPYItem = record
private
FReady: Boolean;
FValue: Double;
procedure Clear;
procedure SetValue(aValue: Double);
public
property Ready: Boolean read FReady;
property Value: Double read FValue write SetValue;
end;
TAPYCache = record
private
FQueue: ICriticalQueue<TAsyncAPYs>;
function Queue: ICriticalQueue<TAsyncAPYs>;
private
C, F, A, I, Y2, Y3, V2, O: TAPYItem;
public
procedure Clear;
procedure Get(client: IWeb3; etherscan: IEtherscan; reserve: TReserve; period: TPeriod; callback: TAsyncAPYs);
end;
implementation
uses
// Delphi
System.Classes,
System.Math,
System.SysUtils,
System.Threading,
// web3
web3.eth.aave.v2,
web3.eth.compound,
web3.eth.fulcrum,
web3.eth.idle.finance.v4,
web3.eth.origin.dollar,
web3.eth.yearn.finance.v2,
web3.eth.yearn.finance.v3,
web3.eth.yearn.vaults.v2;
{ TAPYItem }
procedure TAPYItem.Clear;
begin
Self.FReady := False;
Self.FValue := 0;
end;
procedure TAPYItem.SetValue(aValue: Double);
begin
Self.FValue := aValue;
Self.FReady := True;
end;
{ TAPYCache }
procedure TAPYCache.Clear;
begin
C.Clear;
F.Clear;
A.Clear;
I.Clear;
Y2.Clear;
Y3.Clear;
V2.Clear;
O.Clear;
end;
function TAPYCache.Queue: ICriticalQueue<TAsyncAPYs>;
begin
if not Assigned(FQueue) then
FQueue := TCriticalQueue<TAsyncAPYs>.Create;
Result := FQueue;
end;
procedure TAPYCache.Get(
client : IWeb3;
etherscan: IEtherscan;
reserve : TReserve;
period : TPeriod;
callback : TAsyncAPYs);
type
PAPYCache = ^TAPYCache;
var
S: PAPYCache;
begin
if (C.Ready)
and (F.Ready)
and (A.Ready)
and (I.Ready)
and (Y2.Ready)
and (Y3.Ready)
and (V2.Ready)
and (O.Ready) then
begin
callback(C.Value, F.Value, A.Value, I.Value, Y2.Value, Y3.Value, V2.Value, O.Value, nil);
EXIT;
end;
Queue.Enter;
try
Queue.Add(callback);
if Queue.Length > 1 then
EXIT;
finally
Queue.Leave;
end;
S := @Self;
if not TCompound.Supports(client.Chain, reserve) then
C.Value := -1
else
TCompound.APY(client, etherscan, reserve, period, procedure(value: Double; err: IError)
begin
if Assigned(err) then
begin
callback(0, 0, 0, 0, 0, 0, 0, 0, err);
EXIT;
end;
if not IsNAN(value) then
S.C.Value := value
else
S.C.Value := -1;
end);
if not TFulcrum.Supports(client.Chain, reserve) then
F.Value := -1
else
TFulcrum.APY(client, etherscan, reserve, period, procedure(value: Double; err: IError)
begin
if Assigned(err) then
begin
callback(0, 0, 0, 0, 0, 0, 0, 0, err);
EXIT;
end;
if not IsNAN(value) then
S.F.Value := value
else
S.F.Value := -1;
end);
if not TAave.Supports(client.Chain, reserve) then
A.Value := -1
else
TAave.APY(client, etherscan, reserve, period, procedure(value: Double; err: IError)
begin
if Assigned(err) then
begin
callback(0, 0, 0, 0, 0, 0, 0, 0, err);
EXIT;
end;
if not IsNAN(value) then
S.A.Value := value
else
S.A.Value := -1;
end);
if not TIdle.Supports(client.Chain, reserve) then
I.Value := -1
else
TIdle.APY(client, etherscan, reserve, period, procedure(value: Double; err: IError)
begin
if Assigned(err) then
begin
callback(0, 0, 0, 0, 0, 0, 0, 0, err);
EXIT;
end;
if not IsNAN(value) then
S.I.Value := value
else
S.I.Value := -1;
end);
if not TyEarnV2.Supports(client.Chain, reserve) then
Y2.Value := -1
else
TyEarnV2.APY(client, etherscan, reserve, period, procedure(value: Double; err: IError)
begin
if Assigned(err) then
begin
callback(0, 0, 0, 0, 0, 0, 0, 0, err);
EXIT;
end;
if not IsNAN(value) then
S.Y2.Value := value
else
S.Y2.Value := -1;
end);
if not TyEarnV3.Supports(client.Chain, reserve) then
Y3.Value := -1
else
TyEarnV3.APY(client, etherscan, reserve, period, procedure(value: Double; err: IError)
begin
if Assigned(err) then
begin
callback(0, 0, 0, 0, 0, 0, 0, 0, err);
EXIT;
end;
if not IsNAN(value) then
S.Y3.Value := value
else
S.Y3.Value := -1;
end);
if not TyVaultV2.Supports(client.Chain, reserve) then
V2.Value := -1
else
TyVaultV2.APY(client, etherscan, reserve, period, procedure(value: Double; err: IError)
begin
if Assigned(err) then
begin
callback(0, 0, 0, 0, 0, 0, 0, 0, err);
EXIT;
end;
if not IsNAN(value) then
S.V2.Value := value
else
S.V2.Value := -1;
end);
if not TOrigin.Supports(client.Chain, reserve) then
O.Value := -1
else
TOrigin.APY(client, etherscan, reserve, period, procedure(value: Double; err: IError)
begin
if Assigned(err) then
begin
callback(0, 0, 0, 0, 0, 0, 0, 0, err);
EXIT;
end;
if not IsNAN(value) then
S.O.Value := value
else
S.O.Value := -1;
end);
TTask.Create(procedure
begin
while TTask.CurrentTask.Status <> TTaskStatus.Canceled do
begin
try
TTask.CurrentTask.Wait(250);
except end;
if (S.C.Ready)
and (S.F.Ready)
and (S.A.Ready)
and (S.I.Ready)
and (S.Y2.Ready)
and (S.Y3.Ready)
and (S.V2.Ready)
and (S.O.Ready) then
begin
S.Queue.Enter;
try
while S.Queue.Length > 0 do
begin
const callback = S.Queue.First;
try
callback(S.C.Value, S.F.Value, S.A.Value, S.I.Value, S.Y2.Value, S.Y3.Value, S.V2.Value, S.O.Value, nil);
finally
S.Queue.Delete(0, 1);
end;
end;
finally
S.Queue.Leave;
end;
EXIT;
end;
end;
end).Start;
end;
end.