1
0
Fork 0
liza/src/system/DeltaProcessor.ts

180 lines
5.1 KiB
TypeScript

/**
* Delta Processor
*
* Copyright (C) 2010-2019 R-T Specialty, LLC.
*
* This file is part of the Liza Data Collection Framework.
*
* liza is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import { DeltaDao } from "../system/db/DeltaDao";
import { MongoDeltaType } from "../system/db/MongoDeltaDao";
import { DeltaResult } from "../bucket/delta";
import { DocumentId } from "../document/Document";
import { AmqpPublisher } from "./AmqpPublisher";
import { EventDispatcher } from "./event/EventDispatcher";
/**
* Process deltas for a quote and publish to a queue
*/
export class DeltaProcessor
{
/** The ratedata delta type */
readonly DELTA_RATEDATA: MongoDeltaType = 'ratedata';
/** The data delta type */
readonly DELTA_DATA: MongoDeltaType = 'data';
/**
* Initialize processor
*
* @param _dao - Mongo collection
* @param _publisher - Amqp Publisher
* @param _dispatcher - Event dispatcher instance
*/
constructor(
private readonly _dao: DeltaDao,
private readonly _publisher: AmqpPublisher,
private readonly _dispatcher: EventDispatcher
) {}
/**
* Process unpublished deltas
*/
process(): void
{
let self = this;
this._dao.getUnprocessedDocuments()
.then( docs =>
{
docs.forEach( doc =>
{
const deltas = self.getTimestampSortedDeltas( doc );
const doc_id: DocumentId = doc.id;
const last_updated_ts = doc.lastUpdate;
deltas.forEach( delta =>
{
self._publisher.publish( delta )
.then( _ =>
{
self._dao.advanceDeltaIndex( doc_id, delta.type );
} )
.catch( _ =>
{
// TODO: blow up?
} );
});
self._dao.markDocumentAsProcessed( doc_id, last_updated_ts )
.then( _ =>
{
this._dispatcher.dispatch(
'document-processed',
'Deltas on document ' + doc_id + ' processed '
+ 'successfully. Document has been marked as '
+ 'completely processed.'
);
} )
.catch( err =>
{
this._dispatcher.dispatch( 'mongodb-err', err );
} );
});
} )
.catch( err =>
{
this._dispatcher.dispatch( 'mongodb-err', err );
} );
}
/**
* Get sorted list of deltas
*
* @param doc - the document
*
* @return a list of deltas sorted by timestamp
*/
getTimestampSortedDeltas( doc: any ): DeltaResult<any>[]
{
const data_deltas = this.getDeltas( doc, this.DELTA_RATEDATA );
const ratedata_deltas = this.getDeltas( doc, this.DELTA_DATA );
const deltas = data_deltas.concat( ratedata_deltas );
deltas.sort( this._sortByTimestamp );
return deltas;
}
/**
* Get trimmed delta list
*
* @param doc - the document
* @param type - the delta type to get
*
* @return a trimmed list of deltas
*/
getDeltas( doc: any, type: MongoDeltaType ): DeltaResult<any>[]
{
const deltas_obj = doc.rdelta || {};
const deltas: DeltaResult<any>[] = deltas_obj[ type ] || [];
// Get type specific delta index
let last_published_index = 0;
if ( doc.lastPublishDelta )
{
last_published_index = doc.lastPublishDelta[ type ] || 0;
}
// Only return the unprocessed deltas
const deltas_trimmed = deltas.slice( last_published_index );
// Mark each delta with its type
deltas_trimmed.forEach( delta =>
{
delta.type = type;
} );
return deltas_trimmed;
}
/**
* Sort an array of deltas by timestamp
*
* @param a - The first delta to compare
* @param b - The second delta to compare
*
* @return a sort value
*/
private _sortByTimestamp( a: DeltaResult<any>, b: DeltaResult<any> ): number
{
if ( a.timestamp < b.timestamp )
{
return -1;
}
if ( a.timestamp > b.timestamp ) {
return 1;
}
return 0;
}
}