Variable PersistBaseConst

PersistBase: new <EntityName extends string = string>(
    entityName: EntityName,
    baseDir?: string,
) => {
    baseDir: string;
    entityName: EntityName;
    "[asyncIterator]"(): AsyncIterableIterator<any>;
    filter<T extends IEntity = IEntity>(
        predicate: (value: T) => boolean,
    ): AsyncGenerator<T>;
    getCount(): Promise<number>;
    hasValue(entityId: EntityId): Promise<boolean>;
    keys(): AsyncGenerator<EntityId>;
    readValue<T extends IEntity = IEntity>(entityId: EntityId): Promise<T>;
    removeAll(): Promise<void>;
    removeValue(entityId: EntityId): Promise<void>;
    take<T extends IEntity = IEntity>(
        total: number,
        predicate?: (value: T) => boolean,
    ): AsyncGenerator<T>;
    values<T extends IEntity = IEntity>(): AsyncGenerator<T>;
    waitForInit(initial: boolean): Promise<void>;
    writeValue<T extends IEntity = IEntity>(
        entityId: EntityId,
        entity: T,
    ): Promise<void>;
}

Base class for persistent storage of entities in the swarm system, using the file system. Provides foundational methods for reading, writing, and managing entities as JSON files, supporting swarm utilities like PersistAliveUtils.

Type declaration

    • new <EntityName extends string = string>(
          entityName: EntityName,
          baseDir?: string,
      ): {
          baseDir: string;
          entityName: EntityName;
          "[asyncIterator]"(): AsyncIterableIterator<any>;
          filter<T extends IEntity = IEntity>(
              predicate: (value: T) => boolean,
          ): AsyncGenerator<T>;
          getCount(): Promise<number>;
          hasValue(entityId: EntityId): Promise<boolean>;
          keys(): AsyncGenerator<EntityId>;
          readValue<T extends IEntity = IEntity>(entityId: EntityId): Promise<T>;
          removeAll(): Promise<void>;
          removeValue(entityId: EntityId): Promise<void>;
          take<T extends IEntity = IEntity>(
              total: number,
              predicate?: (value: T) => boolean,
          ): AsyncGenerator<T>;
          values<T extends IEntity = IEntity>(): AsyncGenerator<T>;
          waitForInit(initial: boolean): Promise<void>;
          writeValue<T extends IEntity = IEntity>(
              entityId: EntityId,
              entity: T,
          ): Promise<void>;
      }
    • Type Parameters

      • EntityName extends string = string

        The type of entity name (e.g., SwarmName, SessionId), defaults to string, used as a subdirectory.

      Parameters

      Returns {
          baseDir: string;
          entityName: EntityName;
          "[asyncIterator]"(): AsyncIterableIterator<any>;
          filter<T extends IEntity = IEntity>(
              predicate: (value: T) => boolean,
          ): AsyncGenerator<T>;
          getCount(): Promise<number>;
          hasValue(entityId: EntityId): Promise<boolean>;
          keys(): AsyncGenerator<EntityId>;
          readValue<T extends IEntity = IEntity>(entityId: EntityId): Promise<T>;
          removeAll(): Promise<void>;
          removeValue(entityId: EntityId): Promise<void>;
          take<T extends IEntity = IEntity>(
              total: number,
              predicate?: (value: T) => boolean,
          ): AsyncGenerator<T>;
          values<T extends IEntity = IEntity>(): AsyncGenerator<T>;
          waitForInit(initial: boolean): Promise<void>;
          writeValue<T extends IEntity = IEntity>(
              entityId: EntityId,
              entity: T,
          ): Promise<void>;
      }

      • ReadonlybaseDir: string
      • ReadonlyentityName: EntityName
      • [asyncIterator]:function
        • Implements the async iterator protocol for iterating over entities. Delegates to the values method for iteration, enabling for await loops over entities.

          Returns AsyncIterableIterator<any>

          An async iterator yielding entities.

      • filter:function
        • Filters entities based on a predicate function, yielding only matching entities. Useful for selective retrieval (e.g., finding online SessionIds in a SwarmName).

          Type Parameters

          • T extends IEntity = IEntity

            The specific type of the entities (e.g., IPersistAliveData), defaults to IEntity.

          Parameters

          • predicate: (value: T) => boolean

            A function to test each entity, returning true to include it.

          Returns AsyncGenerator<T>

          An async generator yielding filtered entities in sorted order.

          If reading entities fails during iteration (e.g., invalid JSON).

      • getCount:function
        • Retrieves the number of entities stored in the directory. Counts only files with a .json extension, useful for monitoring storage usage (e.g., active sessions).

          Returns Promise<number>

          A promise resolving to the count of stored entities.

          If reading the directory fails (e.g., permissions or directory not found).

      • hasValue:function
        • Checks if an entity exists in storage by its ID. Efficiently verifies presence without reading the full entity (e.g., checking if a SessionId has memory).

          Parameters

          • entityId: EntityId

            The identifier of the entity to check (string or number), unique within its storage context.

          Returns Promise<boolean>

          A promise resolving to true if the entity exists, false otherwise.

          If checking existence fails for reasons other than the file not existing.

      • keys:function
        • Iterates over all entity IDs in storage, sorted numerically. Yields IDs in ascending order, useful for key enumeration (e.g., listing SessionIds in a SwarmName).

          Returns AsyncGenerator<EntityId>

          An async generator yielding each entity ID as a string or number.

          If reading the directory fails (e.g., permissions or directory not found).

      • readValue:function
        • Reads an entity from storage by its ID, parsing it from a JSON file. Core method for retrieving persisted data (e.g., alive status for a SessionId in a SwarmName context).

          Type Parameters

          • T extends IEntity = IEntity

            The specific type of the entity (e.g., IPersistAliveData), defaults to IEntity.

          Parameters

          • entityId: EntityId

            The identifier of the entity to read (string or number), unique within its storage context.

          Returns Promise<T>

          A promise resolving to the parsed entity data.

          If the file is not found (ENOENT) or parsing fails (e.g., invalid JSON).

      • removeAll:function
        • Removes all entities from storage under this entity name. Deletes all .json files in the directory, useful for resetting persistence (e.g., clearing a SwarmName’s data).

          Returns Promise<void>

          A promise that resolves when all entities are removed.

          If reading the directory or deleting files fails (e.g., permissions).

      • removeValue:function
        • Removes an entity from storage by its ID. Deletes the corresponding JSON file, used for cleanup (e.g., removing a SessionId’s memory).

          Parameters

          • entityId: EntityId

            The identifier of the entity to remove (string or number), unique within its storage context.

          Returns Promise<void>

          A promise that resolves when the entity is deleted.

          If the entity is not found (ENOENT) or deletion fails (e.g., permissions).

      • take:function
        • Takes a limited number of entities, optionally filtered by a predicate. Stops yielding after reaching the specified total, useful for pagination (e.g., sampling SessionIds).

          Type Parameters

          • T extends IEntity = IEntity

            The specific type of the entities (e.g., IPersistStateData), defaults to IEntity.

          Parameters

          • total: number

            The maximum number of entities to yield.

          • Optionalpredicate: (value: T) => boolean

            Optional function to filter entities before counting.

          Returns AsyncGenerator<T>

          An async generator yielding up to total entities in sorted order.

          If reading entities fails during iteration (e.g., permissions).

      • values:function
        • Iterates over all entities in storage, sorted numerically by ID. Yields entities in ascending order, useful for batch processing (e.g., listing all SessionIds in a SwarmName).

          Type Parameters

          • T extends IEntity = IEntity

            The specific type of the entities (e.g., IPersistAliveData), defaults to IEntity.

          Returns AsyncGenerator<T>

          An async generator yielding each entity in sorted order.

          If reading the directory or entity files fails (e.g., permissions or invalid JSON).

      • waitForInit:function
        • Initializes the storage directory, creating it if it doesn’t exist, and validates existing entities. Removes invalid JSON files during initialization to ensure data integrity (e.g., for SwarmName-based alive status).

          Parameters

          • initial: boolean

            Indicates if this is the initial setup; reserved for future caching or optimization logic.

          Returns Promise<void>

          A promise that resolves when initialization is complete.

          If directory creation or entity validation fails (e.g., permissions or I/O errors).

      • writeValue:function
        • Writes an entity to storage with the specified ID, serializing it to JSON. Uses atomic file writing via writeFileAtomic to ensure data integrity (e.g., persisting AgentName for a SwarmName).

          Type Parameters

          • T extends IEntity = IEntity

            The specific type of the entity (e.g., IPersistActiveAgentData), defaults to IEntity.

          Parameters

          • entityId: EntityId

            The identifier for the entity (string or number), unique within its storage context.

          • entity: T

            The entity data to persist (e.g., { agentName: "agent1" }).

          Returns Promise<void>

          A promise that resolves when the write operation is complete.

          If writing to the file system fails (e.g., permissions or disk space).