You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
1.8 KiB

import { AnalyticUnitId } from './analytic_unit_model';
import { Collection, makeDBQ } from '../services/data_service';
6 years ago
6 years ago
let db = makeDBQ(Collection.SEGMENTS);
6 years ago
type SegmentId = string;
6 years ago
6 years ago
export class Segment {
constructor(
public auId: AnalyticUnitId,
6 years ago
public from: number,
public to: number,
public labeled: boolean,
public id?: SegmentId
) {
if(auId === undefined) {
throw new Error('AnalyticUnitId is undefined');
}
6 years ago
if(from === undefined) {
throw new Error('from is undefined');
}
if(to === undefined) {
throw new Error('to is undefined');
}
if(labeled === undefined) {
throw new Error('labeled is undefined');
}
}
public toObject() {
return {
_id: this.id,
auId: this.auId,
6 years ago
from: this.from,
to: this.to,
labeled: this.labeled
};
}
static fromObject(obj: any): Segment {
if(obj === undefined) {
throw new Error('obj is undefined');
}
return new Segment(
obj.auId, +obj.from, +obj.to,
6 years ago
obj.labeled, obj.id || obj._id
);
}
6 years ago
}
export type FindManyQuery = {
timeFromGTE?: number,
timeToLTE?: number,
intexGT?: number
6 years ago
}
export async function findMany(id: AnalyticUnitId, query: FindManyQuery): Promise<Segment[]> {
var dbQuery: any = { auId: id };
if(query.timeFromGTE !== undefined) {
dbQuery.from = { $gte: query.timeFromGTE };
}
if(query.timeToLTE !== undefined) {
dbQuery.to = { $lte: query.timeToLTE };
}
let segs = await db.findMany(dbQuery);
return segs.map(Segment.fromObject);
6 years ago
}
export async function insertSegments(id: AnalyticUnitId, segments: Segment[]) {
return db.insertMany(segments.map(s => s.toObject()));
6 years ago
}
export function removeSegments(idsToRemove: SegmentId[]) {
return db.removeMany(idsToRemove);
6 years ago
}