aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-utils/src/store/order_filled_cancelled_lazy_store.ts
blob: 4b1ad70b624d169da821c3198fc4aa6ca4a62e05 (plain) (blame)
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
import { BigNumber } from '@0xproject/utils';
import * as _ from 'lodash';

import { AbstractOrderFilledCancelledFetcher } from '../abstract/abstract_order_filled_cancelled_fetcher';
import { AbstractOrderFilledCancelledLazyStore } from '../abstract/abstract_order_filled_cancelled_lazy_store';

/**
 * Copy on read store for balances/proxyAllowances of tokens/accounts
 */
export class OrderFilledCancelledLazyStore implements AbstractOrderFilledCancelledLazyStore {
    private _orderFilledCancelledFetcher: AbstractOrderFilledCancelledFetcher;
    private _filledTakerAmount: {
        [orderHash: string]: BigNumber;
    };
    private _isCancelled: {
        [orderHash: string]: boolean;
    };
    constructor(orderFilledCancelledFetcher: AbstractOrderFilledCancelledFetcher) {
        this._orderFilledCancelledFetcher = orderFilledCancelledFetcher;
        this._filledTakerAmount = {};
        this._isCancelled = {};
    }
    public async getFilledTakerAmountAsync(orderHash: string): Promise<BigNumber> {
        if (_.isUndefined(this._filledTakerAmount[orderHash])) {
            const filledTakerAmount = await this._orderFilledCancelledFetcher.getFilledTakerAmountAsync(orderHash);
            this.setFilledTakerAmount(orderHash, filledTakerAmount);
        }
        const cachedFilledTakerAmount = this._filledTakerAmount[orderHash];
        return cachedFilledTakerAmount;
    }
    public setFilledTakerAmount(orderHash: string, filledTakerAmount: BigNumber): void {
        this._filledTakerAmount[orderHash] = filledTakerAmount;
    }
    public deleteFilledTakerAmount(orderHash: string): void {
        delete this._filledTakerAmount[orderHash];
    }
    public async getIsCancelledAsync(orderHash: string): Promise<boolean> {
        if (_.isUndefined(this._isCancelled[orderHash])) {
            const isCancelled = await this._orderFilledCancelledFetcher.isOrderCancelledAsync(orderHash);
            this.setIsCancelled(orderHash, isCancelled);
        }
        const cachedIsCancelled = this._isCancelled[orderHash]; // tslint:disable-line:boolean-naming
        return cachedIsCancelled;
    }
    public setIsCancelled(orderHash: string, isCancelled: boolean): void {
        this._isCancelled[orderHash] = isCancelled;
    }
    public deleteIsCancelled(orderHash: string): void {
        delete this._isCancelled[orderHash];
    }
    public deleteAll(): void {
        this.deleteAllFilled();
        this.deleteAllIsCancelled();
    }
    public deleteAllIsCancelled(): void {
        this._isCancelled = {};
    }
    public deleteAllFilled(): void {
        this._filledTakerAmount = {};
    }
    public getZRXAssetData(): string {
        const zrxAssetData = this._orderFilledCancelledFetcher.getZRXAssetData();
        return zrxAssetData;
    }
}