Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 4x 4x 4x 4x 4x 31x 31x 31x 31x 10x 9x 9x 8x 8x 8x 7x 2x 4x 2x 1x 3x 3x 3x 31x 4x 4x 4x 3x 2x 3x 3x 1x 3x 3x 3x 1x 1x 2x 1x 3x 1x 1x 2x 2x 3x 6x 6x 6x 5x 4x 4x 4x 1x 3x 1x 1x 31x 31x 31x 31x 31x 6x | 'use strict';
import * as _ from 'lodash';
import AStore from './a.store';
import EStoreType from '../enums/store.type.enum';
import IObservableBackend from '../backend/i.observable.backend';
import getHrtimeAsNumber from '../functions/performance/get.hrtime.as.number';
export default class CollectionStore extends AStore {
private _totalCount: number;
constructor(backend: IObservableBackend, target: string) {
super(backend, target);
this._totalCount = -1;
this._type = EStoreType.COLLECTION;
Object.setPrototypeOf(this, CollectionStore.prototype);
}
protected shouldReload(change: any): boolean {
if (this.isInitialSubscription(change)) return true;
const {operationType, updateDescription, fullDocument} = change;
if (!updateDescription) return true;
const {updatedFields, removedFields} = updateDescription;
const us: string[] = _.concat(removedFields, _.keys(updatedFields));
if (!_.isEmpty(_.intersection(_.keys(this._query), us))) return true;
switch (operationType) {
case 'delete':
case 'insert':
return true;
case 'replace':
case 'update':
if (this.shouldConsiderFields()) return !_.isEmpty(_.intersection(_.keys(this._fields), us));
return this.testDocument(fullDocument);
}
return false;
}
protected async sendCount(subscriptionId: string): Promise<void> {
const startTime: number = getHrtimeAsNumber();
this._totalCount = await this._backend.count(this._query);
this.emitTotal(startTime, subscriptionId, this._totalCount);
}
protected delaySendCount: _.DebouncedFuncLeading<any> = _.throttle(this.sendCount, 5000);
protected async loadIncremental(startTime: number, currentLoadSubscriptionId: string, change: any): Promise<void> {
const {operationType, documentKey, fullDocument} = change;
const key = _.get(documentKey, '_id', '').toString();
if ('delete' === operationType) return this.emitDelete(startTime, currentLoadSubscriptionId, key);
for (const populate of this._populates) {
await this._backend.populate(fullDocument, populate);
}
let document: any = fullDocument;
if (!_.isEmpty(this._virtuals)) {
document = await this._backend.resolveVirtuals(fullDocument, this._virtuals);
}
return this.emitMany(startTime, currentLoadSubscriptionId, {data: document});
}
protected async loadAll(startTime: number, currentLoadSubscriptionId: string): Promise<void> {
let documents: any[] = await this._backend.find(this._query, this._fields, this._paging, this._sort, this._populates);
if (!_.isEmpty(this._virtuals)) {
const replacements: any[] = [];
for (const document of documents) {
replacements.push(await this._backend.resolveVirtuals(document, this._virtuals));
}
documents = replacements;
}
if (this.isQueryChange(currentLoadSubscriptionId)) {
this.emitMany(startTime, currentLoadSubscriptionId, {total: this._totalCount, data: documents, recounting: true});
await this.sendCount(currentLoadSubscriptionId);
//
} else {
this.emitMany(startTime, currentLoadSubscriptionId, {total: this._totalCount, data: documents});
this.delaySendCount(currentLoadSubscriptionId);
}
this.removeSubscriptionDiff(currentLoadSubscriptionId);
}
protected async load(change: any): Promise<void> {
const startTime: number = getHrtimeAsNumber();
const currentLoadSubscriptionId: string = this._subscriptionId + '';
if (_.isEmpty(this._config)) return this.emitMany(startTime, currentLoadSubscriptionId);
if (!this.shouldReload(change)) return;
try {
const {fullDocument} = change;
if (fullDocument && this._incremental) {
await this.loadIncremental(startTime, currentLoadSubscriptionId, change);
} else {
await this.loadAll(startTime, currentLoadSubscriptionId);
}
} catch (error) {
console.error('[@owservable/core] -> CollectionStore::load Error:', {change, error});
this.emitError(startTime, currentLoadSubscriptionId, error);
}
}
protected extractFromConfig(): void {
super.extractFromConfig();
const {incremental = false, page = 1, pageSize} = this._config;
this._incremental = incremental;
this._paging = {};
if (pageSize) {
this._paging = {
skip: (page - 1) * pageSize,
limit: pageSize
};
}
}
}
|