rhizome/src/lossless.ts

142 lines
3.7 KiB
TypeScript
Raw Normal View History

2024-12-23 17:29:38 -06:00
// Deltas target entities.
// We can maintain a record of all the targeted entities, and the deltas that targeted them
import Debug from 'debug';
import {Delta, DeltaFilter} from './delta';
2024-12-29 14:35:30 -06:00
import {DomainEntityID, PropertyID, PropertyTypes, ViewMany} from "./types";
const debug = Debug('lossless');
2024-12-23 17:29:38 -06:00
export type CollapsedPointer = {[key: string]: PropertyTypes};
2024-12-23 17:29:38 -06:00
export type CollapsedDelta = Omit<Delta, 'pointers'> & {
pointers: CollapsedPointer[];
};
2024-12-23 23:30:21 -06:00
export type LosslessViewOne = {
referencedAs: string[];
properties: {
[key: PropertyID]: CollapsedDelta[]
}
};
2024-12-29 14:35:30 -06:00
export type LosslessViewMany = ViewMany<LosslessViewOne>;
2024-12-23 17:29:38 -06:00
class DomainEntityMap extends Map<DomainEntityID, DomainEntity> {};
class DomainEntity {
id: DomainEntityID;
properties = new Map<PropertyID, Set<Delta>>();
2024-12-23 17:29:38 -06:00
constructor(id: DomainEntityID) {
this.id = id;
}
addDelta(delta: Delta) {
const targetContexts = delta.pointers
.filter(({target}) => target === this.id)
.map(({targetContext}) => targetContext)
.filter((targetContext) => typeof targetContext === 'string');
2024-12-23 17:29:38 -06:00
for (const targetContext of targetContexts) {
let propertyDeltas = this.properties.get(targetContext);
if (!propertyDeltas) {
propertyDeltas = new Set<Delta>();
this.properties.set(targetContext, propertyDeltas);
2024-12-23 17:29:38 -06:00
}
debug(`adding delta for entity ${this.id}`);
propertyDeltas.add(delta);
}
}
toJSON() {
const properties: {[key: PropertyID]: number} = {};
for (const [key, deltas] of this.properties.entries()) {
properties[key] = deltas.size;
2024-12-23 17:29:38 -06:00
}
return {
id: this.id,
properties
};
2024-12-23 17:29:38 -06:00
}
}
export class Lossless {
domainEntities = new DomainEntityMap();
2024-12-29 14:35:30 -06:00
ingestDelta(delta: Delta) {
2024-12-23 17:29:38 -06:00
const targets = delta.pointers
.filter(({targetContext}) => !!targetContext)
.map(({target}) => target)
.filter((target) => typeof target === 'string')
2024-12-23 17:29:38 -06:00
for (const target of targets) {
let ent = this.domainEntities.get(target);
2024-12-23 17:29:38 -06:00
if (!ent) {
ent = new DomainEntity(target);
this.domainEntities.set(target, ent);
}
debug('before add, domain entity:', JSON.stringify(ent));
2024-12-23 17:29:38 -06:00
ent.addDelta(delta);
debug('after add, domain entity:', JSON.stringify(ent));
2024-12-23 17:29:38 -06:00
}
}
//TODO: json logic -- view(deltaFilter?: FilterExpr) {
view(entityIds?: DomainEntityID[], deltaFilter?: DeltaFilter): LosslessViewMany {
2024-12-23 23:30:21 -06:00
const view: LosslessViewMany = {};
entityIds = entityIds ?? Array.from(this.domainEntities.keys());
for (const id of entityIds) {
const ent = this.domainEntities.get(id);
if (!ent) continue;
debug(`domain entity ${id}`, JSON.stringify(ent));
2024-12-23 23:30:21 -06:00
const referencedAs = new Set<string>();
const properties: {
[key: PropertyID]: CollapsedDelta[]
} = {};
for (const [key, deltas] of ent.properties.entries()) {
properties[key] = properties[key] || [];
for (const delta of deltas) {
if (deltaFilter) {
const include = deltaFilter(delta);
if (!include) continue;
}
2024-12-23 23:30:21 -06:00
const pointers: CollapsedPointer[] = [];
2024-12-23 23:30:21 -06:00
for (const {localContext, target} of delta.pointers) {
pointers.push({[localContext]: target});
if (target === ent.id) {
referencedAs.add(localContext);
}
}
2024-12-23 17:29:38 -06:00
const collapsedDelta: CollapsedDelta = {
...delta,
2024-12-23 23:30:21 -06:00
pointers
2024-12-23 17:29:38 -06:00
};
properties[key].push(collapsedDelta);
2024-12-23 17:29:38 -06:00
}
}
view[ent.id] = {
referencedAs: Array.from(referencedAs.values()),
properties
};
2024-12-23 17:29:38 -06:00
}
return view;
}
2024-12-25 00:42:16 -06:00
// TODO: point-in-time queries
2024-12-23 17:29:38 -06:00
}