2024-12-22 14:17:44 -06:00
|
|
|
// A basic collection of entities
|
|
|
|
// This may be extended to house a collection of objects that all follow a common schema.
|
2024-12-21 21:16:18 -06:00
|
|
|
// It should enable operations like removing a property removes the value from the entities in the collection
|
|
|
|
// It could then be further extended with e.g. table semantics like filter, sort, join
|
|
|
|
|
2024-12-26 15:59:03 -06:00
|
|
|
import Debug from 'debug';
|
2024-12-25 16:13:48 -06:00
|
|
|
import {randomUUID} from "node:crypto";
|
2024-12-22 09:13:44 -06:00
|
|
|
import EventEmitter from "node:events";
|
2024-12-27 13:43:43 -06:00
|
|
|
import {Delta, DeltaID} from "./delta";
|
|
|
|
import {Entity, EntityProperties} from "./entity";
|
2024-12-28 18:20:32 -06:00
|
|
|
import {LosslessViewMany} from "./lossless";
|
2024-12-26 15:59:03 -06:00
|
|
|
import {firstValueFromLosslessViewOne, Lossy, LossyViewMany, LossyViewOne} from "./lossy";
|
2024-12-25 16:13:48 -06:00
|
|
|
import {RhizomeNode} from "./node";
|
2024-12-27 13:43:43 -06:00
|
|
|
import {DomainEntityID} from "./types";
|
2024-12-26 15:59:03 -06:00
|
|
|
const debug = Debug('collection');
|
2024-12-22 09:13:44 -06:00
|
|
|
|
|
|
|
export class Collection {
|
2024-12-25 16:13:48 -06:00
|
|
|
rhizomeNode?: RhizomeNode;
|
|
|
|
name: string;
|
2024-12-22 09:13:44 -06:00
|
|
|
entities = new Map<string, Entity>();
|
|
|
|
eventStream = new EventEmitter();
|
2024-12-25 16:13:48 -06:00
|
|
|
|
|
|
|
constructor(name: string) {
|
|
|
|
this.name = name;
|
2024-12-27 13:43:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ingestDelta(delta: Delta) {
|
2024-12-28 18:20:32 -06:00
|
|
|
if (!this.rhizomeNode) return;
|
|
|
|
|
|
|
|
const updated = this.rhizomeNode.lossless.ingestDelta(delta);
|
2024-12-27 13:43:43 -06:00
|
|
|
|
|
|
|
this.eventStream.emit('ingested', delta);
|
|
|
|
this.eventStream.emit('updated', updated);
|
2024-12-25 16:13:48 -06:00
|
|
|
}
|
|
|
|
|
2024-12-26 15:59:03 -06:00
|
|
|
// Instead of trying to update our final view of the entity with every incoming delta,
|
|
|
|
// let's try this:
|
|
|
|
// - keep a lossless view (of everything)
|
|
|
|
// - build a lossy view when needed
|
|
|
|
// This approach is simplistic, but can then be optimized and enhanced.
|
|
|
|
|
2024-12-25 16:13:48 -06:00
|
|
|
rhizomeConnect(rhizomeNode: RhizomeNode) {
|
|
|
|
this.rhizomeNode = rhizomeNode;
|
|
|
|
|
|
|
|
rhizomeNode.deltaStream.subscribeDeltas((delta: Delta) => {
|
2024-12-22 09:13:44 -06:00
|
|
|
// TODO: Make sure this is the kind of delta we're looking for
|
2024-12-26 15:59:03 -06:00
|
|
|
debug(`collection ${this.name} received delta ${JSON.stringify(delta)}`);
|
2024-12-27 13:43:43 -06:00
|
|
|
this.ingestDelta(delta);
|
2024-12-22 09:13:44 -06:00
|
|
|
});
|
2024-12-25 16:13:48 -06:00
|
|
|
|
2024-12-27 13:43:43 -06:00
|
|
|
rhizomeNode.httpServer.httpApi.serveCollection(this);
|
2024-12-26 15:59:03 -06:00
|
|
|
|
|
|
|
debug(`connected ${this.name} to rhizome`);
|
2024-12-22 09:13:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
onCreate(cb: (entity: Entity) => void) {
|
2024-12-27 13:43:43 -06:00
|
|
|
// TODO: Trigger for changes received from peers
|
2024-12-22 09:13:44 -06:00
|
|
|
this.eventStream.on('create', (entity: Entity) => {
|
|
|
|
cb(entity);
|
|
|
|
});
|
|
|
|
}
|
2024-12-22 14:17:44 -06:00
|
|
|
|
2024-12-22 09:13:44 -06:00
|
|
|
onUpdate(cb: (entity: Entity) => void) {
|
2024-12-27 13:43:43 -06:00
|
|
|
// TODO: Trigger for changes received from peers
|
2024-12-22 09:13:44 -06:00
|
|
|
this.eventStream.on('update', (entity: Entity) => {
|
|
|
|
cb(entity);
|
|
|
|
});
|
|
|
|
}
|
2024-12-22 14:17:44 -06:00
|
|
|
|
2024-12-27 13:43:43 -06:00
|
|
|
defaultResolver(losslessView: LosslessViewMany): LossyViewMany {
|
|
|
|
const resolved: LossyViewMany = {};
|
|
|
|
debug('default resolver, lossless view', JSON.stringify(losslessView));
|
|
|
|
for (const [id, ent] of Object.entries(losslessView)) {
|
|
|
|
resolved[id] = {id, properties: {}};
|
|
|
|
for (const key of Object.keys(ent.properties)) {
|
|
|
|
const {value} = firstValueFromLosslessViewOne(ent, key) || {};
|
|
|
|
debug(`[ ${key} ] = ${value}`);
|
|
|
|
resolved[id].properties[key] = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return resolved;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Applies the javascript rules for updating object values,
|
|
|
|
// e.g. set to `undefined` to delete a property
|
|
|
|
generateDeltas(
|
|
|
|
entityId: DomainEntityID,
|
|
|
|
newProperties: EntityProperties,
|
|
|
|
creator?: string,
|
|
|
|
host?: string
|
|
|
|
): Delta[] {
|
2024-12-22 09:13:44 -06:00
|
|
|
const deltas: Delta[] = [];
|
2024-12-27 13:43:43 -06:00
|
|
|
let oldProperties: EntityProperties = {};
|
|
|
|
|
|
|
|
if (entityId) {
|
|
|
|
const entity = this.get(entityId);
|
|
|
|
if (entity) {
|
|
|
|
oldProperties = entity.properties;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate a delta for each changed property
|
|
|
|
Object.entries(newProperties).forEach(([key, value]) => {
|
|
|
|
// Disallow property named "id" TODO: Clarify id semantics
|
|
|
|
if (key === 'id') return;
|
|
|
|
|
|
|
|
if (oldProperties[key] !== value && host && creator) {
|
|
|
|
deltas.push(new Delta({
|
|
|
|
creator,
|
|
|
|
host,
|
|
|
|
pointers: [{
|
|
|
|
localContext: this.name,
|
|
|
|
target: entityId,
|
|
|
|
targetContext: key
|
|
|
|
}, {
|
|
|
|
localContext: key,
|
|
|
|
target: value
|
|
|
|
}]
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return deltas;
|
|
|
|
}
|
|
|
|
|
|
|
|
async put(
|
|
|
|
entityId: DomainEntityID | undefined,
|
|
|
|
properties: EntityProperties
|
|
|
|
): Promise<LossyViewOne> {
|
|
|
|
// const deltas: Delta[] = [];
|
|
|
|
// const entity = this.updateEntity(entityId, properties, true, deltas);
|
|
|
|
|
|
|
|
// THIS PUT SHOULD CORRESOND TO A PARTICULAR MATERIALIZED VIEW...
|
|
|
|
// How can we encode that?
|
|
|
|
// Well, we have a way to do that, we just need the same particular inputs
|
|
|
|
|
|
|
|
if (!entityId) {
|
|
|
|
entityId = randomUUID();
|
|
|
|
}
|
|
|
|
|
|
|
|
const deltas = this.generateDeltas(
|
|
|
|
entityId,
|
|
|
|
properties,
|
|
|
|
this.rhizomeNode?.config.creator,
|
|
|
|
this.rhizomeNode?.config.peerId,
|
|
|
|
);
|
2024-12-26 15:59:03 -06:00
|
|
|
|
|
|
|
debug(`put ${entityId} generated deltas:`, JSON.stringify(deltas));
|
|
|
|
|
2024-12-27 13:43:43 -06:00
|
|
|
const allIngested = new Promise<boolean>((resolve) => {
|
|
|
|
const ingestedIds = new Set<DeltaID>();
|
|
|
|
this.eventStream.on('ingested', (delta: Delta) => {
|
|
|
|
// TODO: timeout
|
|
|
|
if (deltas.map(({id}) => id).includes(delta.id)) {
|
|
|
|
ingestedIds.add(delta.id);
|
|
|
|
if (ingestedIds.size === deltas.length) {
|
|
|
|
resolve(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
2024-12-26 15:59:03 -06:00
|
|
|
// updateEntity may have generated some deltas for us to store and publish
|
2024-12-22 09:13:44 -06:00
|
|
|
deltas.forEach(async (delta: Delta) => {
|
2024-12-26 15:59:03 -06:00
|
|
|
|
|
|
|
// record this delta just as if we had received it from a peer
|
2024-12-25 16:13:48 -06:00
|
|
|
delta.receivedFrom = this.rhizomeNode!.myRequestAddr;
|
|
|
|
this.rhizomeNode!.deltaStream.deltasAccepted.push(delta);
|
2024-12-22 14:17:44 -06:00
|
|
|
|
2024-12-26 15:59:03 -06:00
|
|
|
// publish the delta to our subscribed peers
|
2024-12-25 16:13:48 -06:00
|
|
|
await this.rhizomeNode!.deltaStream.publishDelta(delta);
|
2024-12-26 15:59:03 -06:00
|
|
|
debug(`published delta ${JSON.stringify(delta)}`);
|
|
|
|
|
|
|
|
// ingest the delta as though we had received it from a peer
|
2024-12-27 13:43:43 -06:00
|
|
|
this.ingestDelta(delta);
|
2024-12-22 09:13:44 -06:00
|
|
|
});
|
2024-12-27 13:43:43 -06:00
|
|
|
|
|
|
|
// Return updated view of this entity
|
|
|
|
// Let's wait for an event notifying us that the entity has been updated.
|
|
|
|
// This means all of our deltas have been applied.
|
|
|
|
|
|
|
|
await allIngested;
|
|
|
|
|
|
|
|
const res = this.get(entityId);
|
|
|
|
if (!res) throw new Error("could not get what we just put!");
|
|
|
|
|
|
|
|
this.eventStream.emit("update", res);
|
|
|
|
|
|
|
|
return res;
|
2024-12-22 09:13:44 -06:00
|
|
|
}
|
2024-12-22 14:17:44 -06:00
|
|
|
|
2024-12-26 15:59:03 -06:00
|
|
|
get(id: string): LossyViewOne | undefined {
|
|
|
|
// Now with lossy view approach, instead of just returning what we already have,
|
|
|
|
// let's compute our view now.
|
|
|
|
// return this.entities.get(id);
|
2024-12-28 18:20:32 -06:00
|
|
|
if (!this.rhizomeNode) return undefined;
|
|
|
|
const lossy = new Lossy(this.rhizomeNode.lossless);
|
|
|
|
const res = lossy.resolve((view) => this.defaultResolver(view), [id]);
|
2024-12-26 15:59:03 -06:00
|
|
|
return res[id];
|
2024-12-22 09:13:44 -06:00
|
|
|
}
|
2024-12-22 14:17:44 -06:00
|
|
|
|
2024-12-22 09:13:44 -06:00
|
|
|
getIds(): string[] {
|
2024-12-28 18:20:32 -06:00
|
|
|
if (!this.rhizomeNode) return [];
|
|
|
|
return Array.from(this.rhizomeNode.lossless.domainEntities.keys());
|
2024-12-22 09:13:44 -06:00
|
|
|
}
|
2024-12-21 21:16:18 -06:00
|
|
|
}
|