-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstate.tasks.service.ts
More file actions
608 lines (508 loc) · 20.2 KB
/
state.tasks.service.ts
File metadata and controls
608 lines (508 loc) · 20.2 KB
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
import { Lock } from '@multiversx/sdk-nestjs-common';
import { PerformanceProfiler } from '@multiversx/sdk-nestjs-monitoring';
import { forwardRef, Inject, Injectable } from '@nestjs/common';
import { instanceToPlain, plainToInstance } from 'class-transformer';
import { WINSTON_MODULE_PROVIDER } from 'nest-winston';
import { delay } from 'src/helpers/helpers';
import { PairMetadata } from 'src/modules/router/models/pair.metadata.model';
import { TokensFilter } from 'src/modules/tokens/models/tokens.filter.args';
import { CacheService } from 'src/services/caching/cache.service';
import { Logger } from 'winston';
import { StateSyncService } from './state.sync.service';
import { PairsStateService } from './pairs.state.service';
import { TokensStateService } from './tokens.state.service';
import { EsdtToken } from 'src/modules/tokens/models/esdtToken.model';
import { PairModel } from 'src/modules/pair/models/pair.model';
import { PUB_SUB } from 'src/services/redis.pubSub.module';
import { RedisPubSub } from 'graphql-redis-subscriptions';
import { FarmsStateService } from './farms.state.service';
import { FeesCollectorStateService } from './fees.collector.state.service';
import { StateService } from './state.service';
import { StakingStateService } from './staking.state.service';
import {
PENDING_PRICE_UPDATES_KEY,
StateTaskPriority,
StateTasks,
StateTasksWithArguments,
TaskDto,
TOKENS_PRICE_UPDATE_EVENT,
} from '../entities/state.tasks.entities';
import { FarmModelV2 } from 'src/modules/farm/models/farm.v2.model';
import { StakingModel } from 'src/modules/staking/models/staking.model';
export const STATE_TASKS_CACHE_KEY = 'dexService.stateTasks';
const TASK_RETRY_COUNT_KEY_PREFIX = 'dexService.taskRetryCount';
const MAX_TASK_RETRIES = 5;
const TASK_RETRY_TTL_SECONDS = 86400;
const INDEX_LP_MAX_ATTEMPTS = 60;
const PAIR_REFRESH_CONCURRENCY = 50;
const TOKEN_REFRESH_CONCURRENCY = 50;
function getTaskRetryKey(task: TaskDto): string {
const base = `${TASK_RETRY_COUNT_KEY_PREFIX}:${task.name}`;
return task.args?.length ? `${base}:${task.args.join(':')}` : base;
}
@Injectable()
export class StateTasksService {
constructor(
private readonly syncService: StateSyncService,
private readonly cacheService: CacheService,
private readonly stateService: StateService,
@Inject(forwardRef(() => PairsStateService))
private readonly pairsState: PairsStateService,
@Inject(forwardRef(() => TokensStateService))
private readonly tokensState: TokensStateService,
private readonly farmsState: FarmsStateService,
private readonly stakingState: StakingStateService,
private readonly feesCollectorState: FeesCollectorStateService,
@Inject(WINSTON_MODULE_PROVIDER) private readonly logger: Logger,
@Inject(PUB_SUB) private pubSub: RedisPubSub,
) {}
async queueTasks(tasks: TaskDto[]): Promise<void> {
for (const task of tasks) {
if (
StateTasksWithArguments.includes(task.name) &&
!task.args?.length
) {
throw new Error(`Task '${task.name}' requires an argument`);
}
if (task.name === StateTasks.BROADCAST_PRICE_UPDATES) {
if (task.args?.length) {
const tokenIDs = JSON.parse(task.args[0]) as string[];
await this.cacheService.addToSet(
PENDING_PRICE_UPDATES_KEY,
tokenIDs,
);
}
await this.cacheService.zAdd(
STATE_TASKS_CACHE_KEY,
JSON.stringify({ name: StateTasks.BROADCAST_PRICE_UPDATES }),
StateTaskPriority[task.name],
);
this.logger.info(
`State task ${task.name} added to queue`,
{ context: StateTasksService.name },
);
continue;
}
const serializedTask = JSON.stringify(instanceToPlain(task));
await this.cacheService.zAdd(
STATE_TASKS_CACHE_KEY,
serializedTask,
StateTaskPriority[task.name],
);
this.logger.info(`State task ${task.name} added to queue`, {
context: StateTasksService.name,
});
this.logger.debug(`Serialized task : ${serializedTask}`, {
context: StateTasksService.name,
});
}
}
@Lock({ name: 'processQueuedTasks', verbose: false })
async processQueuedTasks(): Promise<void> {
const rawTask = await this.cacheService.zPopMin(STATE_TASKS_CACHE_KEY);
if (rawTask.length === 0) {
return;
}
const profiler = new PerformanceProfiler();
const task = plainToInstance(TaskDto, JSON.parse(rawTask[0]));
this.logger.info(`Processing state task "${task.name}"`, {
context: StateTasksService.name,
});
try {
switch (task.name) {
case StateTasks.INIT_STATE:
await this.populateState();
break;
case StateTasks.INDEX_PAIR:
await this.indexPair(
JSON.parse(task.args[0]),
parseInt(task.args[1]),
);
break;
case StateTasks.INDEX_LP_TOKEN:
await this.indexPairLpToken(task.args[0]);
break;
case StateTasks.REFRESH_ANALYTICS:
await this.refreshAnalytics();
break;
case StateTasks.UPDATE_SNAPSHOT:
await this.updateSnapshot();
break;
case StateTasks.BROADCAST_PRICE_UPDATES:
await this.broadcastTokensPriceUpdates();
break;
case StateTasks.REFRESH_PAIR_RESERVES:
await this.refreshPairReserves();
break;
case StateTasks.REFRESH_USDC_PRICE:
await this.refreshUsdcPrice();
break;
case StateTasks.REFRESH_FARMS:
await this.refreshFarms();
break;
case StateTasks.REFRESH_FARM:
await this.refreshFarm(task.args[0]);
break;
case StateTasks.REFRESH_STAKING_FARMS:
await this.refreshStakingFarms();
break;
case StateTasks.REFRESH_STAKING_FARM:
await this.refreshStakingFarm(task.args[0]);
break;
case StateTasks.REFRESH_FEES_COLLECTOR:
await this.refreshFeesCollector();
break;
case StateTasks.REFRESH_TOKEN:
await this.refreshToken(task.args[0]);
break;
case StateTasks.REFRESH_TOKENS:
await this.refreshTokens();
break;
default:
break;
}
await this.cacheService.deleteRemote(getTaskRetryKey(task));
} catch (error) {
this.logger.error(`Failed processing task "${task.name}"`, error);
const retryCount = await this.cacheService.incrementRemote(
getTaskRetryKey(task),
TASK_RETRY_TTL_SECONDS,
);
if (retryCount >= MAX_TASK_RETRIES) {
this.logger.error(
`Task "${task.name}" dead-lettered after ${MAX_TASK_RETRIES} failed attempts`,
{ task: instanceToPlain(task), context: StateTasksService.name },
);
await this.cacheService.deleteRemote(getTaskRetryKey(task));
} else {
this.logger.warn(
`Re-queuing task "${task.name}" (attempt ${retryCount}/${MAX_TASK_RETRIES})`,
{ context: StateTasksService.name },
);
await this.cacheService.zAdd(
STATE_TASKS_CACHE_KEY,
JSON.stringify(instanceToPlain(task)),
StateTaskPriority[task.name],
);
}
} finally {
profiler.stop(`Finished processing task "${task.name}" in`, true);
}
}
async populateState(): Promise<void> {
const request = await this.syncService.populateState();
const response = await this.stateService.initState(request);
this.logger.debug(`Populate state task completed`, {
context: StateTasksService.name,
response,
});
await this.queueTasks([
new TaskDto({
name: StateTasks.REFRESH_PAIR_RESERVES,
args: [],
}),
]);
}
async indexPair(
pairMetadata: PairMetadata,
timestamp: number,
): Promise<void> {
const { pair, firstToken, secondToken } =
await this.syncService.populatePairAndTokens(
pairMetadata,
timestamp,
);
await this.pairsState.addPair(pair, firstToken, secondToken);
}
async indexPairLpToken(address: string): Promise<void> {
const [pair] = await this.pairsState.getPairs([address], ['address']);
if (!pair) {
throw new Error('Pair not found');
}
let ct = 0;
while (ct < INDEX_LP_MAX_ATTEMPTS) {
const lpToken = await this.syncService.indexPairLpToken(
pair.address,
);
if (lpToken) {
await this.pairsState.addPairLpToken(address, lpToken);
this.logger.debug(`Updated LP token`, {
context: StateTasksService.name,
address,
lpToken,
});
return;
}
await delay(1500);
ct++;
}
const message = `Could not update pair ${address} LP token after ${INDEX_LP_MAX_ATTEMPTS} attempts`;
throw new Error(message);
}
async refreshAnalytics(): Promise<void> {
const [pairs, tokensResult] = await Promise.all([
this.pairsState.getAllPairs([
'address',
'totalFeePercent',
'specialFeePercent',
'lockedValueUSD',
]),
this.tokensState.getFilteredTokens(
0,
10000,
new TokensFilter(),
undefined,
[
'identifier',
'derivedEGLD',
'price',
'previous24hPrice',
'type',
],
),
]);
const pairUpdates = new Map<string, Partial<PairModel>>();
for (const pair of pairs) {
const updates = await this.syncService.getPairAnalytics(pair);
pairUpdates.set(pair.address, {
address: pair.address,
...updates,
});
}
const tokenMap = new Map<string, EsdtToken>();
tokensResult.tokens.forEach((token) => {
tokenMap.set(token.identifier, {
...token,
});
});
await this.syncService.updateTokensAnalytics(tokenMap, [
...tokenMap.keys(),
]);
tokenMap.forEach((token) => {
delete token.price;
delete token.derivedEGLD;
delete token.type;
});
const pairsUpdateResult = await this.pairsState.updatePairs(
pairUpdates,
);
const tokensUpdateResult = await this.tokensState.updateTokens(
tokenMap,
);
this.logger.debug(`Refresh analytics task completed`, {
context: StateTasksService.name,
pairsUpdateResult,
tokensUpdateResult,
});
}
async updateSnapshot(): Promise<void> {
const [
pairs,
tokens,
farms,
stakingFarms,
stakingProxies,
feesCollector,
] = await Promise.all([
this.pairsState.getAllPairs(),
this.tokensState.getAllTokens(),
this.farmsState.getAllFarms(),
this.stakingState.getAllStakingFarms(),
this.stakingState.getAllStakingProxies(),
this.feesCollectorState.getFeesCollector(),
]);
const updateResult = await this.syncService.updateSnapshot(
pairs,
tokens,
farms,
stakingFarms,
stakingProxies,
feesCollector,
);
this.logger.debug(`Update snapshot task completed`, {
context: StateTasksService.name,
updateResult,
});
}
async broadcastTokensPriceUpdates(): Promise<void> {
const tokenIDs = await this.cacheService.getSetMembers(
PENDING_PRICE_UPDATES_KEY,
);
if (tokenIDs.length === 0) {
return;
}
await this.cacheService.deleteRemote(PENDING_PRICE_UPDATES_KEY);
const tokens = await this.tokensState.getTokens(tokenIDs, [
'identifier',
'price',
]);
const priceByID = new Map(tokens.map((t) => [t.identifier, t.price]));
const priceUpdates: string[][] = tokenIDs
.filter((id) => priceByID.has(id))
.map((id) => [id, priceByID.get(id)]);
await this.pubSub.publish(TOKENS_PRICE_UPDATE_EVENT, {
priceUpdates,
});
}
async refreshPairReserves(): Promise<void> {
const pairs = await this.pairsState.getAllPairs(['address']);
const pairUpdates = new Map<string, Partial<PairModel>>();
const profiler = new PerformanceProfiler();
// Process pairs in chunks to parallelize blockchain queries
for (let i = 0; i < pairs.length; i += PAIR_REFRESH_CONCURRENCY) {
const chunk = pairs.slice(i, i + PAIR_REFRESH_CONCURRENCY);
const results = await Promise.all(
chunk.map((pair) =>
this.syncService.getPairReservesAndState(pair),
),
);
results.forEach((updates, idx) => {
pairUpdates.set(chunk[idx].address, {
...updates,
});
});
}
profiler.stop('Finished syncing pairs reserves in', true);
const updateResult = await this.pairsState.updatePairs(pairUpdates);
this.logger.debug(`Refresh pairs reserves and state task completed`, {
context: StateTasksService.name,
updateResult,
});
}
async refreshUsdcPrice(): Promise<void> {
const usdcPrice = await this.syncService.getUsdcPrice();
const updateResult = await this.stateService.updateUsdcPrice(usdcPrice);
this.logger.debug(`Refresh USDC price task completed`, {
context: StateTasksService.name,
updateResult,
});
}
async refreshFarms(): Promise<void> {
const farms = await this.farmsState.getAllFarms(['address']);
const farmUpdates = new Map<string, Partial<FarmModelV2>>();
for (const farm of farms) {
const updates =
await this.syncService.getFarmReservesAndWeeklyRewards(farm);
farmUpdates.set(farm.address, {
...updates,
});
}
const updateResult = await this.farmsState.updateFarms(farmUpdates);
this.logger.debug(`Refresh farms task completed`, {
context: StateTasksService.name,
updateResult,
});
}
async refreshFarm(address: string): Promise<void> {
const [farm] = await this.farmsState.getFarms([address], ['address']);
if (!farm) {
throw new Error(`Farm ${address} not found`);
}
const farmUpdates = new Map<string, Partial<FarmModelV2>>();
const updates = await this.syncService.getFarmReservesAndWeeklyRewards(
farm,
);
farmUpdates.set(address, { ...updates });
const updateResult = await this.farmsState.updateFarms(farmUpdates);
this.logger.debug(`Refresh farm ${address} task completed`, {
context: StateTasksService.name,
updateResult,
});
}
async refreshStakingFarms(): Promise<void> {
const stakingFarms = await this.stakingState.getAllStakingFarms([
'address',
]);
const stakingFarmUpdates = new Map<string, Partial<StakingModel>>();
for (const stakingFarm of stakingFarms) {
const updates =
await this.syncService.getStakingFarmReservesAndWeeklyRewards(
stakingFarm,
);
stakingFarmUpdates.set(stakingFarm.address, {
...updates,
});
}
const updateResult = await this.stakingState.updateStakingFarms(
stakingFarmUpdates,
);
this.logger.debug(`Refresh staking farms task completed`, {
context: StateTasksService.name,
updateResult,
});
}
async refreshStakingFarm(address: string): Promise<void> {
const [stakingFarm] = await this.stakingState.getStakingFarms(
[address],
['address'],
);
if (!stakingFarm) {
throw new Error(`Staking farm ${address} not found`);
}
const stakingFarmUpdates = new Map<string, Partial<StakingModel>>();
const updates =
await this.syncService.getStakingFarmReservesAndWeeklyRewards(
stakingFarm,
);
stakingFarmUpdates.set(address, {
...updates,
});
const updateResult = await this.stakingState.updateStakingFarms(
stakingFarmUpdates,
);
this.logger.debug(`Refresh staking farm ${address} task completed`, {
context: StateTasksService.name,
updateResult,
});
}
async refreshFeesCollector(): Promise<void> {
const feesCollector = await this.feesCollectorState.getFeesCollector([
'address',
'allTokens',
'lockedTokenId',
'lockedTokensPerEpoch',
]);
const feesCollectorUpdates =
await this.syncService.getFeesCollectorFeesAndWeeklyRewards(
feesCollector,
);
await this.feesCollectorState.updateFeesCollector(feesCollectorUpdates);
}
async refreshToken(identifier: string): Promise<void> {
const updates = await this.syncService.refreshTokenMetadata(identifier);
if (!updates) {
throw new Error(`Token ${identifier} not found`);
}
const tokenUpdates = new Map<string, Partial<EsdtToken>>();
tokenUpdates.set(identifier, updates);
const updateResult = await this.tokensState.updateTokens(tokenUpdates);
this.logger.debug(`Refresh token ${identifier} task completed`, {
context: StateTasksService.name,
updateResult,
});
}
async refreshTokens(): Promise<void> {
const tokens = await this.tokensState.getAllTokens(['identifier']);
const tokenUpdates = new Map<string, Partial<EsdtToken>>();
const profiler = new PerformanceProfiler();
for (let i = 0; i < tokens.length; i += TOKEN_REFRESH_CONCURRENCY) {
const chunk = tokens.slice(i, i + TOKEN_REFRESH_CONCURRENCY);
const results = await Promise.all(
chunk.map((token) =>
this.syncService.refreshTokenMetadata(token.identifier),
),
);
results.forEach((updates, idx) => {
if (updates) {
tokenUpdates.set(chunk[idx].identifier, updates);
}
});
}
profiler.stop('Finished syncing tokens metadata in', true);
const updateResult = await this.tokensState.updateTokens(tokenUpdates);
this.logger.debug(`Refresh all tokens metadata task completed`, {
context: StateTasksService.name,
updateResult,
});
}
}