Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6932059965 | |||
| bd1764159e | |||
| 12102255c4 | |||
| a0df731bc0 |
22
changelog.md
22
changelog.md
@@ -1,5 +1,27 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2026-02-01 - 4.0.0 - BREAKING CHANGE(storage,engine,server)
|
||||||
|
add session & transaction management, index/query planner, WAL and checksum support; integrate index-accelerated queries and update storage API (findByIds) to enable index optimizations
|
||||||
|
|
||||||
|
- Add SessionEngine with session lifecycle, auto-abort of transactions on expiry and session tracking in CommandRouter and AdminHandler.
|
||||||
|
- Introduce TransactionEngine integrations in CommandRouter and AdminHandler; handlers now support start/commit/abort transaction workflows.
|
||||||
|
- Add IndexEngine enhancements including a simple B-tree and hash map optimizations; integrate index usage into Find/Count/Insert/Update/Delete handlers for index-accelerated queries and index maintenance on mutations.
|
||||||
|
- Add QueryPlanner to choose IXSCAN vs COLLSCAN and provide explain plans.
|
||||||
|
- Add WAL (write-ahead log) for durability, with LSNs, checkpoints and recovery APIs.
|
||||||
|
- Add checksum utilities and FileStorageAdapter support for checksums (enableChecksums/strictChecksums), with verification on read and optional strict failure behavior.
|
||||||
|
- IStorageAdapter interface changed to include findByIds; MemoryStorageAdapter and FileStorageAdapter implement findByIds to support index lookups.
|
||||||
|
- Exported API additions: WAL, QueryPlanner, SessionEngine, checksum utilities; CommandRouter now caches IndexEngines and exposes transaction/session engines.
|
||||||
|
- Breaking change: the IStorageAdapter interface change requires third-party storage adapters to implement the new findByIds method.
|
||||||
|
|
||||||
|
## 2026-02-01 - 3.0.0 - BREAKING CHANGE(tsmdb)
|
||||||
|
rename CongoDB to TsmDB and relocate/rename wire-protocol server implementation and public exports
|
||||||
|
|
||||||
|
- Project refactor renames the in-memory wire-protocol server from CongoDB -> TsmDB (identifiers, files and namespaces changed).
|
||||||
|
- ts/index.ts now exports tsmdb instead of congodb (public API change; consumers must update imports).
|
||||||
|
- All congodb sources under ts/congodb were removed and equivalent implementations added under ts/tsmdb (errors, engines, storage adapters, server, handlers, WireProtocol, types).
|
||||||
|
- Readme and usage examples updated to reference TsmDB/tsmdb and example code updated accordingly.
|
||||||
|
- Tests renamed/updated from test.congodb.ts -> test.tsmdb.ts to exercise the new tsmdb export and server.
|
||||||
|
|
||||||
## 2026-01-31 - 2.2.0 - feat(readme)
|
## 2026-01-31 - 2.2.0 - feat(readme)
|
||||||
update README with expanded documentation covering CongoDB and SmartMongo, installation, quick start examples, architecture, usage examples, and legal/company information
|
update README with expanded documentation covering CongoDB and SmartMongo, installation, quick start examples, architecture, usage examples, and legal/company information
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartmongo",
|
"name": "@push.rocks/smartmongo",
|
||||||
"version": "2.2.0",
|
"version": "4.0.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A module for creating and managing a local MongoDB instance for testing purposes.",
|
"description": "A module for creating and managing a local MongoDB instance for testing purposes.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
|||||||
@@ -9,21 +9,21 @@
|
|||||||
- **Why:** Deno wraps CommonJS exports in a `default` property, so default imports are required
|
- **Why:** Deno wraps CommonJS exports in a `default` property, so default imports are required
|
||||||
- Fixed in version 2.0.13 (changed from `import * as mongoPlugin`)
|
- Fixed in version 2.0.13 (changed from `import * as mongoPlugin`)
|
||||||
|
|
||||||
## CongoDB - MongoDB Wire Protocol Server
|
## TsmDB - MongoDB Wire Protocol Server
|
||||||
|
|
||||||
### Architecture
|
### Architecture
|
||||||
CongoDB implements the MongoDB binary wire protocol (OP_MSG, OP_QUERY) allowing official MongoDB drivers to connect directly.
|
TsmDB implements the MongoDB binary wire protocol (OP_MSG, OP_QUERY) allowing official MongoDB drivers to connect directly.
|
||||||
|
|
||||||
```
|
```
|
||||||
Official MongoClient → TCP (wire protocol) → CongoServer → Engines → Storage
|
Official MongoClient → TCP (wire protocol) → TsmdbServer → Engines → Storage
|
||||||
(mongodb npm) OP_MSG/BSON (port)
|
(mongodb npm) OP_MSG/BSON (port)
|
||||||
```
|
```
|
||||||
|
|
||||||
### Module Structure
|
### Module Structure
|
||||||
```
|
```
|
||||||
ts/congodb/
|
ts/tsmdb/
|
||||||
├── server/ # Wire protocol server
|
├── server/ # Wire protocol server
|
||||||
│ ├── CongoServer.ts # TCP server, connection handling
|
│ ├── TsmdbServer.ts # TCP server, connection handling
|
||||||
│ ├── WireProtocol.ts # OP_MSG/OP_QUERY parsing & encoding
|
│ ├── WireProtocol.ts # OP_MSG/OP_QUERY parsing & encoding
|
||||||
│ ├── CommandRouter.ts # Route commands to handlers
|
│ ├── CommandRouter.ts # Route commands to handlers
|
||||||
│ └── handlers/ # Command implementations
|
│ └── handlers/ # Command implementations
|
||||||
@@ -53,11 +53,11 @@ ts/congodb/
|
|||||||
|
|
||||||
### Usage Example
|
### Usage Example
|
||||||
```typescript
|
```typescript
|
||||||
import { CongoServer } from '@push.rocks/smartmongo/congodb';
|
import { TsmdbServer } from '@push.rocks/smartmongo/tsmdb';
|
||||||
import { MongoClient } from 'mongodb';
|
import { MongoClient } from 'mongodb';
|
||||||
|
|
||||||
// Start server
|
// Start server
|
||||||
const server = new CongoServer({ port: 27117 });
|
const server = new TsmdbServer({ port: 27117 });
|
||||||
await server.start();
|
await server.start();
|
||||||
|
|
||||||
// Connect with official MongoDB driver
|
// Connect with official MongoDB driver
|
||||||
@@ -82,8 +82,3 @@ await server.stop();
|
|||||||
- **Aggregation**: aggregate, count, distinct
|
- **Aggregation**: aggregate, count, distinct
|
||||||
- **Indexes**: createIndexes, dropIndexes, listIndexes
|
- **Indexes**: createIndexes, dropIndexes, listIndexes
|
||||||
- **Admin**: ping, listDatabases, listCollections, drop, dropDatabase, create, serverStatus, buildInfo
|
- **Admin**: ping, listDatabases, listCollections, drop, dropDatabase, create, serverStatus, buildInfo
|
||||||
|
|
||||||
### Notes
|
|
||||||
- The old CongoClient/CongoDb/CongoCollection classes have been removed
|
|
||||||
- Use the official `mongodb` npm package's MongoClient instead
|
|
||||||
- Server supports MongoDB wire protocol versions 0-21 (MongoDB 3.6 through 7.0 compatible)
|
|
||||||
|
|||||||
50
readme.md
50
readme.md
@@ -1,6 +1,6 @@
|
|||||||
# @push.rocks/smartmongo
|
# @push.rocks/smartmongo
|
||||||
|
|
||||||
A powerful MongoDB toolkit for testing and development — featuring both a real MongoDB memory server (**SmartMongo**) and an ultra-fast, lightweight wire-protocol-compatible in-memory database server (**CongoDB**). 🚀
|
A powerful MongoDB toolkit for testing and development — featuring both a real MongoDB memory server (**SmartMongo**) and an ultra-fast, lightweight wire-protocol-compatible in-memory database server (**TsmDB**). 🚀
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ For reporting bugs, issues, or security vulnerabilities, please visit [community
|
|||||||
|
|
||||||
`@push.rocks/smartmongo` provides two powerful approaches for MongoDB in testing and development:
|
`@push.rocks/smartmongo` provides two powerful approaches for MongoDB in testing and development:
|
||||||
|
|
||||||
| Feature | SmartMongo | CongoDB |
|
| Feature | SmartMongo | TsmDB |
|
||||||
|---------|------------|---------|
|
|---------|------------|---------|
|
||||||
| **Type** | Real MongoDB (memory server) | Pure TypeScript wire protocol server |
|
| **Type** | Real MongoDB (memory server) | Pure TypeScript wire protocol server |
|
||||||
| **Speed** | ~2-5s startup | ⚡ Instant startup (~5ms) |
|
| **Speed** | ~2-5s startup | ⚡ Instant startup (~5ms) |
|
||||||
@@ -51,16 +51,16 @@ console.log(descriptor.mongoDbUrl); // mongodb://127.0.0.1:xxxxx/...
|
|||||||
await mongo.stop();
|
await mongo.stop();
|
||||||
```
|
```
|
||||||
|
|
||||||
### Option 2: CongoDB (Wire Protocol Server)
|
### Option 2: TsmDB (Wire Protocol Server)
|
||||||
|
|
||||||
A lightweight, pure TypeScript MongoDB-compatible server that speaks the wire protocol — use the official `mongodb` driver directly!
|
A lightweight, pure TypeScript MongoDB-compatible server that speaks the wire protocol — use the official `mongodb` driver directly!
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import { congodb } from '@push.rocks/smartmongo';
|
import { tsmdb } from '@push.rocks/smartmongo';
|
||||||
import { MongoClient } from 'mongodb';
|
import { MongoClient } from 'mongodb';
|
||||||
|
|
||||||
// Start CongoDB server
|
// Start TsmDB server
|
||||||
const server = new congodb.CongoServer({ port: 27017 });
|
const server = new tsmdb.TsmdbServer({ port: 27017 });
|
||||||
await server.start();
|
await server.start();
|
||||||
|
|
||||||
// Connect with the official MongoDB driver!
|
// Connect with the official MongoDB driver!
|
||||||
@@ -116,14 +116,14 @@ await mongo.stopAndDumpToDir('./test-data');
|
|||||||
await mongo.stopAndDumpToDir('./test-data', (doc) => `${doc.collection}-${doc._id}.bson`);
|
await mongo.stopAndDumpToDir('./test-data', (doc) => `${doc.collection}-${doc._id}.bson`);
|
||||||
```
|
```
|
||||||
|
|
||||||
## 🔧 CongoDB API
|
## 🔧 TsmDB API
|
||||||
|
|
||||||
### Server Configuration
|
### Server Configuration
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import { congodb } from '@push.rocks/smartmongo';
|
import { tsmdb } from '@push.rocks/smartmongo';
|
||||||
|
|
||||||
const server = new congodb.CongoServer({
|
const server = new tsmdb.TsmdbServer({
|
||||||
port: 27017, // Default MongoDB port
|
port: 27017, // Default MongoDB port
|
||||||
host: '127.0.0.1', // Bind address
|
host: '127.0.0.1', // Bind address
|
||||||
storage: 'memory', // 'memory' or 'file'
|
storage: 'memory', // 'memory' or 'file'
|
||||||
@@ -143,7 +143,7 @@ await server.stop();
|
|||||||
|
|
||||||
### Supported MongoDB Operations
|
### Supported MongoDB Operations
|
||||||
|
|
||||||
CongoDB supports the core MongoDB operations via the wire protocol:
|
TsmDB supports the core MongoDB operations via the wire protocol:
|
||||||
|
|
||||||
#### 🔹 CRUD Operations
|
#### 🔹 CRUD Operations
|
||||||
```typescript
|
```typescript
|
||||||
@@ -279,23 +279,23 @@ console.log(result.deletedCount); // 1
|
|||||||
|
|
||||||
### Storage Adapters
|
### Storage Adapters
|
||||||
|
|
||||||
CongoDB supports pluggable storage:
|
TsmDB supports pluggable storage:
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
// In-memory (default) - fast, data lost on stop
|
// In-memory (default) - fast, data lost on stop
|
||||||
const server = new congodb.CongoServer({ storage: 'memory' });
|
const server = new tsmdb.TsmdbServer({ storage: 'memory' });
|
||||||
|
|
||||||
// In-memory with persistence - periodic snapshots to disk
|
// In-memory with persistence - periodic snapshots to disk
|
||||||
const server = new congodb.CongoServer({
|
const server = new tsmdb.TsmdbServer({
|
||||||
storage: 'memory',
|
storage: 'memory',
|
||||||
persistPath: './data/snapshot.json',
|
persistPath: './data/snapshot.json',
|
||||||
persistIntervalMs: 30000 // Save every 30 seconds
|
persistIntervalMs: 30000 // Save every 30 seconds
|
||||||
});
|
});
|
||||||
|
|
||||||
// File-based - persistent storage
|
// File-based - persistent storage
|
||||||
const server = new congodb.CongoServer({
|
const server = new tsmdb.TsmdbServer({
|
||||||
storage: 'file',
|
storage: 'file',
|
||||||
storagePath: './data/congodb'
|
storagePath: './data/tsmdb'
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -309,22 +309,22 @@ const server = new congodb.CongoServer({
|
|||||||
| **Indexes** | `createIndexes`, `dropIndexes`, `listIndexes` |
|
| **Indexes** | `createIndexes`, `dropIndexes`, `listIndexes` |
|
||||||
| **Admin** | `ping`, `listDatabases`, `listCollections`, `drop`, `dropDatabase`, `create`, `serverStatus`, `buildInfo` |
|
| **Admin** | `ping`, `listDatabases`, `listCollections`, `drop`, `dropDatabase`, `create`, `serverStatus`, `buildInfo` |
|
||||||
|
|
||||||
CongoDB supports MongoDB wire protocol versions 0-21, compatible with MongoDB 3.6 through 7.0 drivers.
|
TsmDB supports MongoDB wire protocol versions 0-21, compatible with MongoDB 3.6 through 7.0 drivers.
|
||||||
|
|
||||||
## 🧪 Testing Examples
|
## 🧪 Testing Examples
|
||||||
|
|
||||||
### Jest/Mocha with CongoDB
|
### Jest/Mocha with TsmDB
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import { congodb } from '@push.rocks/smartmongo';
|
import { tsmdb } from '@push.rocks/smartmongo';
|
||||||
import { MongoClient } from 'mongodb';
|
import { MongoClient } from 'mongodb';
|
||||||
|
|
||||||
let server: congodb.CongoServer;
|
let server: tsmdb.TsmdbServer;
|
||||||
let client: MongoClient;
|
let client: MongoClient;
|
||||||
let db: Db;
|
let db: Db;
|
||||||
|
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
server = new congodb.CongoServer({ port: 27117 });
|
server = new tsmdb.TsmdbServer({ port: 27117 });
|
||||||
await server.start();
|
await server.start();
|
||||||
|
|
||||||
client = new MongoClient('mongodb://127.0.0.1:27117');
|
client = new MongoClient('mongodb://127.0.0.1:27117');
|
||||||
@@ -355,14 +355,14 @@ test('should insert and find user', async () => {
|
|||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
||||||
import { congodb } from '@push.rocks/smartmongo';
|
import { tsmdb } from '@push.rocks/smartmongo';
|
||||||
import { MongoClient } from 'mongodb';
|
import { MongoClient } from 'mongodb';
|
||||||
|
|
||||||
let server: congodb.CongoServer;
|
let server: tsmdb.TsmdbServer;
|
||||||
let client: MongoClient;
|
let client: MongoClient;
|
||||||
|
|
||||||
tap.test('setup', async () => {
|
tap.test('setup', async () => {
|
||||||
server = new congodb.CongoServer({ port: 27117 });
|
server = new tsmdb.TsmdbServer({ port: 27117 });
|
||||||
await server.start();
|
await server.start();
|
||||||
client = new MongoClient('mongodb://127.0.0.1:27117');
|
client = new MongoClient('mongodb://127.0.0.1:27117');
|
||||||
await client.connect();
|
await client.connect();
|
||||||
@@ -401,7 +401,7 @@ export default tap.start();
|
|||||||
|
|
||||||
## 🏗️ Architecture
|
## 🏗️ Architecture
|
||||||
|
|
||||||
### CongoDB Wire Protocol Stack
|
### TsmDB Wire Protocol Stack
|
||||||
|
|
||||||
```
|
```
|
||||||
┌─────────────────────────────────────────────────────────────┐
|
┌─────────────────────────────────────────────────────────────┐
|
||||||
@@ -411,7 +411,7 @@ export default tap.start();
|
|||||||
│ TCP + OP_MSG/BSON
|
│ TCP + OP_MSG/BSON
|
||||||
▼
|
▼
|
||||||
┌─────────────────────────────────────────────────────────────┐
|
┌─────────────────────────────────────────────────────────────┐
|
||||||
│ CongoServer │
|
│ TsmdbServer │
|
||||||
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────────┐ │
|
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────────┐ │
|
||||||
│ │ WireProtocol │→ │CommandRouter │→ │ Handlers │ │
|
│ │ WireProtocol │→ │CommandRouter │→ │ Handlers │ │
|
||||||
│ │ (OP_MSG) │ │ │ │ (Find, Insert..) │ │
|
│ │ (OP_MSG) │ │ │ │ (Find, Insert..) │ │
|
||||||
|
|||||||
@@ -2,9 +2,9 @@ import { expect, tap } from '@git.zone/tstest/tapbundle';
|
|||||||
import * as smartmongo from '../ts/index.js';
|
import * as smartmongo from '../ts/index.js';
|
||||||
import { MongoClient, Db, Collection } from 'mongodb';
|
import { MongoClient, Db, Collection } from 'mongodb';
|
||||||
|
|
||||||
const { congodb } = smartmongo;
|
const { tsmdb } = smartmongo;
|
||||||
|
|
||||||
let server: smartmongo.congodb.CongoServer;
|
let server: smartmongo.tsmdb.TsmdbServer;
|
||||||
let client: MongoClient;
|
let client: MongoClient;
|
||||||
let db: Db;
|
let db: Db;
|
||||||
|
|
||||||
@@ -12,13 +12,13 @@ let db: Db;
|
|||||||
// Server Startup
|
// Server Startup
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: should start the server', async () => {
|
tap.test('tsmdb: should start the server', async () => {
|
||||||
server = new congodb.CongoServer({ port: 27117 }); // Use non-standard port for tests
|
server = new tsmdb.TsmdbServer({ port: 27117 }); // Use non-standard port for tests
|
||||||
await server.start();
|
await server.start();
|
||||||
expect(server.running).toBeTrue();
|
expect(server.running).toBeTrue();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: should connect with official MongoClient', async () => {
|
tap.test('tsmdb: should connect with official MongoClient', async () => {
|
||||||
client = new MongoClient('mongodb://127.0.0.1:27117', {
|
client = new MongoClient('mongodb://127.0.0.1:27117', {
|
||||||
directConnection: true,
|
directConnection: true,
|
||||||
serverSelectionTimeoutMS: 5000,
|
serverSelectionTimeoutMS: 5000,
|
||||||
@@ -27,7 +27,7 @@ tap.test('congodb: should connect with official MongoClient', async () => {
|
|||||||
expect(client).toBeTruthy();
|
expect(client).toBeTruthy();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: should get a database instance', async () => {
|
tap.test('tsmdb: should get a database instance', async () => {
|
||||||
db = client.db('testdb');
|
db = client.db('testdb');
|
||||||
expect(db).toBeTruthy();
|
expect(db).toBeTruthy();
|
||||||
expect(db.databaseName).toEqual('testdb');
|
expect(db.databaseName).toEqual('testdb');
|
||||||
@@ -37,7 +37,7 @@ tap.test('congodb: should get a database instance', async () => {
|
|||||||
// Basic CRUD Tests
|
// Basic CRUD Tests
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: insertOne - should insert a document', async () => {
|
tap.test('tsmdb: insertOne - should insert a document', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const result = await collection.insertOne({
|
const result = await collection.insertOne({
|
||||||
name: 'John Doe',
|
name: 'John Doe',
|
||||||
@@ -49,7 +49,7 @@ tap.test('congodb: insertOne - should insert a document', async () => {
|
|||||||
expect(result.insertedId).toBeTruthy();
|
expect(result.insertedId).toBeTruthy();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: insertMany - should insert multiple documents', async () => {
|
tap.test('tsmdb: insertMany - should insert multiple documents', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const result = await collection.insertMany([
|
const result = await collection.insertMany([
|
||||||
{ name: 'Jane Doe', email: 'jane@example.com', age: 25 },
|
{ name: 'Jane Doe', email: 'jane@example.com', age: 25 },
|
||||||
@@ -62,7 +62,7 @@ tap.test('congodb: insertMany - should insert multiple documents', async () => {
|
|||||||
expect(Object.keys(result.insertedIds).length).toEqual(3);
|
expect(Object.keys(result.insertedIds).length).toEqual(3);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: findOne - should find a single document', async () => {
|
tap.test('tsmdb: findOne - should find a single document', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const doc = await collection.findOne({ name: 'John Doe' });
|
const doc = await collection.findOne({ name: 'John Doe' });
|
||||||
|
|
||||||
@@ -71,14 +71,14 @@ tap.test('congodb: findOne - should find a single document', async () => {
|
|||||||
expect(doc!.email).toEqual('john@example.com');
|
expect(doc!.email).toEqual('john@example.com');
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: find - should find multiple documents', async () => {
|
tap.test('tsmdb: find - should find multiple documents', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const docs = await collection.find({ age: { $gte: 28 } }).toArray();
|
const docs = await collection.find({ age: { $gte: 28 } }).toArray();
|
||||||
|
|
||||||
expect(docs.length).toEqual(3);
|
expect(docs.length).toEqual(3);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: updateOne - should update a single document', async () => {
|
tap.test('tsmdb: updateOne - should update a single document', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const result = await collection.updateOne(
|
const result = await collection.updateOne(
|
||||||
{ name: 'John Doe' },
|
{ name: 'John Doe' },
|
||||||
@@ -93,7 +93,7 @@ tap.test('congodb: updateOne - should update a single document', async () => {
|
|||||||
expect(updated!.age).toEqual(31);
|
expect(updated!.age).toEqual(31);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: updateMany - should update multiple documents', async () => {
|
tap.test('tsmdb: updateMany - should update multiple documents', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const result = await collection.updateMany(
|
const result = await collection.updateMany(
|
||||||
{ age: { $gte: 30 } },
|
{ age: { $gte: 30 } },
|
||||||
@@ -105,7 +105,7 @@ tap.test('congodb: updateMany - should update multiple documents', async () => {
|
|||||||
expect(result.modifiedCount).toEqual(2);
|
expect(result.modifiedCount).toEqual(2);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: deleteOne - should delete a single document', async () => {
|
tap.test('tsmdb: deleteOne - should delete a single document', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const result = await collection.deleteOne({ name: 'Bob Smith' });
|
const result = await collection.deleteOne({ name: 'Bob Smith' });
|
||||||
|
|
||||||
@@ -113,7 +113,7 @@ tap.test('congodb: deleteOne - should delete a single document', async () => {
|
|||||||
expect(result.deletedCount).toEqual(1);
|
expect(result.deletedCount).toEqual(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: deleteMany - should delete multiple documents', async () => {
|
tap.test('tsmdb: deleteMany - should delete multiple documents', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
|
|
||||||
// First add some test docs to delete
|
// First add some test docs to delete
|
||||||
@@ -132,32 +132,32 @@ tap.test('congodb: deleteMany - should delete multiple documents', async () => {
|
|||||||
// Query Operator Tests
|
// Query Operator Tests
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: query - $eq operator', async () => {
|
tap.test('tsmdb: query - $eq operator', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const docs = await collection.find({ name: { $eq: 'Jane Doe' } }).toArray();
|
const docs = await collection.find({ name: { $eq: 'Jane Doe' } }).toArray();
|
||||||
expect(docs.length).toEqual(1);
|
expect(docs.length).toEqual(1);
|
||||||
expect(docs[0].name).toEqual('Jane Doe');
|
expect(docs[0].name).toEqual('Jane Doe');
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: query - $ne operator', async () => {
|
tap.test('tsmdb: query - $ne operator', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const docs = await collection.find({ name: { $ne: 'Jane Doe' } }).toArray();
|
const docs = await collection.find({ name: { $ne: 'Jane Doe' } }).toArray();
|
||||||
expect(docs.every(d => d.name !== 'Jane Doe')).toBeTrue();
|
expect(docs.every(d => d.name !== 'Jane Doe')).toBeTrue();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: query - $gt and $lt operators', async () => {
|
tap.test('tsmdb: query - $gt and $lt operators', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const docs = await collection.find({ age: { $gt: 25, $lt: 35 } }).toArray();
|
const docs = await collection.find({ age: { $gt: 25, $lt: 35 } }).toArray();
|
||||||
expect(docs.every(d => d.age > 25 && d.age < 35)).toBeTrue();
|
expect(docs.every(d => d.age > 25 && d.age < 35)).toBeTrue();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: query - $in operator', async () => {
|
tap.test('tsmdb: query - $in operator', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const docs = await collection.find({ name: { $in: ['Jane Doe', 'Alice Johnson'] } }).toArray();
|
const docs = await collection.find({ name: { $in: ['Jane Doe', 'Alice Johnson'] } }).toArray();
|
||||||
expect(docs.length).toEqual(2);
|
expect(docs.length).toEqual(2);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: query - $or operator', async () => {
|
tap.test('tsmdb: query - $or operator', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const docs = await collection.find({
|
const docs = await collection.find({
|
||||||
$or: [
|
$or: [
|
||||||
@@ -168,7 +168,7 @@ tap.test('congodb: query - $or operator', async () => {
|
|||||||
expect(docs.length).toBeGreaterThanOrEqual(1);
|
expect(docs.length).toBeGreaterThanOrEqual(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: query - $and operator', async () => {
|
tap.test('tsmdb: query - $and operator', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const docs = await collection.find({
|
const docs = await collection.find({
|
||||||
$and: [
|
$and: [
|
||||||
@@ -179,7 +179,7 @@ tap.test('congodb: query - $and operator', async () => {
|
|||||||
expect(docs.every(d => d.age >= 25 && d.age <= 30)).toBeTrue();
|
expect(docs.every(d => d.age >= 25 && d.age <= 30)).toBeTrue();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: query - $exists operator', async () => {
|
tap.test('tsmdb: query - $exists operator', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const docs = await collection.find({ senior: { $exists: true } }).toArray();
|
const docs = await collection.find({ senior: { $exists: true } }).toArray();
|
||||||
expect(docs.every(d => 'senior' in d)).toBeTrue();
|
expect(docs.every(d => 'senior' in d)).toBeTrue();
|
||||||
@@ -189,7 +189,7 @@ tap.test('congodb: query - $exists operator', async () => {
|
|||||||
// Update Operator Tests
|
// Update Operator Tests
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: update - $inc operator', async () => {
|
tap.test('tsmdb: update - $inc operator', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
await collection.updateOne(
|
await collection.updateOne(
|
||||||
{ name: 'Jane Doe' },
|
{ name: 'Jane Doe' },
|
||||||
@@ -200,7 +200,7 @@ tap.test('congodb: update - $inc operator', async () => {
|
|||||||
expect(updated!.age).toEqual(26);
|
expect(updated!.age).toEqual(26);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: update - $unset operator', async () => {
|
tap.test('tsmdb: update - $unset operator', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
await collection.updateOne(
|
await collection.updateOne(
|
||||||
{ name: 'Jane Doe' },
|
{ name: 'Jane Doe' },
|
||||||
@@ -211,7 +211,7 @@ tap.test('congodb: update - $unset operator', async () => {
|
|||||||
expect('senior' in updated!).toBeFalse();
|
expect('senior' in updated!).toBeFalse();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: update - $push operator', async () => {
|
tap.test('tsmdb: update - $push operator', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
await collection.updateOne(
|
await collection.updateOne(
|
||||||
{ name: 'Jane Doe' },
|
{ name: 'Jane Doe' },
|
||||||
@@ -227,7 +227,7 @@ tap.test('congodb: update - $push operator', async () => {
|
|||||||
expect(updated!.tags).toContain('tester');
|
expect(updated!.tags).toContain('tester');
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: update - $pull operator', async () => {
|
tap.test('tsmdb: update - $pull operator', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
await collection.updateOne(
|
await collection.updateOne(
|
||||||
{ name: 'Jane Doe' },
|
{ name: 'Jane Doe' },
|
||||||
@@ -238,7 +238,7 @@ tap.test('congodb: update - $pull operator', async () => {
|
|||||||
expect(updated!.tags).not.toContain('tester');
|
expect(updated!.tags).not.toContain('tester');
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: update - upsert creates new document', async () => {
|
tap.test('tsmdb: update - upsert creates new document', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const result = await collection.updateOne(
|
const result = await collection.updateOne(
|
||||||
{ name: 'New User' },
|
{ name: 'New User' },
|
||||||
@@ -258,7 +258,7 @@ tap.test('congodb: update - upsert creates new document', async () => {
|
|||||||
// Cursor Tests
|
// Cursor Tests
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: cursor - sort', async () => {
|
tap.test('tsmdb: cursor - sort', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const docs = await collection.find({}).sort({ age: -1 }).toArray();
|
const docs = await collection.find({}).sort({ age: -1 }).toArray();
|
||||||
|
|
||||||
@@ -269,13 +269,13 @@ tap.test('congodb: cursor - sort', async () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: cursor - limit', async () => {
|
tap.test('tsmdb: cursor - limit', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const docs = await collection.find({}).limit(2).toArray();
|
const docs = await collection.find({}).limit(2).toArray();
|
||||||
expect(docs.length).toBeLessThanOrEqual(2);
|
expect(docs.length).toBeLessThanOrEqual(2);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: cursor - skip', async () => {
|
tap.test('tsmdb: cursor - skip', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const allDocs = await collection.find({}).toArray();
|
const allDocs = await collection.find({}).toArray();
|
||||||
const skippedDocs = await collection.find({}).skip(1).toArray();
|
const skippedDocs = await collection.find({}).skip(1).toArray();
|
||||||
@@ -283,7 +283,7 @@ tap.test('congodb: cursor - skip', async () => {
|
|||||||
expect(skippedDocs.length).toEqual(Math.max(0, allDocs.length - 1));
|
expect(skippedDocs.length).toEqual(Math.max(0, allDocs.length - 1));
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: cursor - project', async () => {
|
tap.test('tsmdb: cursor - project', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const docs = await collection.find({}).project({ name: 1, _id: 0 }).toArray();
|
const docs = await collection.find({}).project({ name: 1, _id: 0 }).toArray();
|
||||||
|
|
||||||
@@ -296,7 +296,7 @@ tap.test('congodb: cursor - project', async () => {
|
|||||||
// FindOneAnd* Tests
|
// FindOneAnd* Tests
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: findOneAndUpdate - returns updated document', async () => {
|
tap.test('tsmdb: findOneAndUpdate - returns updated document', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const result = await collection.findOneAndUpdate(
|
const result = await collection.findOneAndUpdate(
|
||||||
{ name: 'Jane Doe' },
|
{ name: 'Jane Doe' },
|
||||||
@@ -308,7 +308,7 @@ tap.test('congodb: findOneAndUpdate - returns updated document', async () => {
|
|||||||
expect(result!.status).toEqual('active');
|
expect(result!.status).toEqual('active');
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: findOneAndDelete - returns deleted document', async () => {
|
tap.test('tsmdb: findOneAndDelete - returns deleted document', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
|
|
||||||
// Insert a temp doc to delete
|
// Insert a temp doc to delete
|
||||||
@@ -328,19 +328,19 @@ tap.test('congodb: findOneAndDelete - returns deleted document', async () => {
|
|||||||
// Count and Distinct Tests
|
// Count and Distinct Tests
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: countDocuments - counts matching documents', async () => {
|
tap.test('tsmdb: countDocuments - counts matching documents', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const count = await collection.countDocuments({ age: { $gte: 25 } });
|
const count = await collection.countDocuments({ age: { $gte: 25 } });
|
||||||
expect(count).toBeGreaterThan(0);
|
expect(count).toBeGreaterThan(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: estimatedDocumentCount - returns total count', async () => {
|
tap.test('tsmdb: estimatedDocumentCount - returns total count', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const count = await collection.estimatedDocumentCount();
|
const count = await collection.estimatedDocumentCount();
|
||||||
expect(count).toBeGreaterThan(0);
|
expect(count).toBeGreaterThan(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: distinct - returns unique values', async () => {
|
tap.test('tsmdb: distinct - returns unique values', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const names = await collection.distinct('name');
|
const names = await collection.distinct('name');
|
||||||
|
|
||||||
@@ -353,7 +353,7 @@ tap.test('congodb: distinct - returns unique values', async () => {
|
|||||||
// Index Tests
|
// Index Tests
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: createIndex - creates a single index', async () => {
|
tap.test('tsmdb: createIndex - creates a single index', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const indexName = await collection.createIndex({ email: 1 });
|
const indexName = await collection.createIndex({ email: 1 });
|
||||||
|
|
||||||
@@ -361,14 +361,14 @@ tap.test('congodb: createIndex - creates a single index', async () => {
|
|||||||
expect(indexName).toContain('email');
|
expect(indexName).toContain('email');
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: createIndex - creates compound index', async () => {
|
tap.test('tsmdb: createIndex - creates compound index', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const indexName = await collection.createIndex({ name: 1, age: -1 });
|
const indexName = await collection.createIndex({ name: 1, age: -1 });
|
||||||
|
|
||||||
expect(indexName).toBeTruthy();
|
expect(indexName).toBeTruthy();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: listIndexes - lists all indexes', async () => {
|
tap.test('tsmdb: listIndexes - lists all indexes', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const indexes = await collection.listIndexes().toArray();
|
const indexes = await collection.listIndexes().toArray();
|
||||||
|
|
||||||
@@ -376,7 +376,7 @@ tap.test('congodb: listIndexes - lists all indexes', async () => {
|
|||||||
expect(indexes.some(i => i.name === '_id_')).toBeTrue();
|
expect(indexes.some(i => i.name === '_id_')).toBeTrue();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: dropIndex - drops an index', async () => {
|
tap.test('tsmdb: dropIndex - drops an index', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const indexName = await collection.createIndex({ toDropField: 1 });
|
const indexName = await collection.createIndex({ toDropField: 1 });
|
||||||
|
|
||||||
@@ -390,7 +390,7 @@ tap.test('congodb: dropIndex - drops an index', async () => {
|
|||||||
// Aggregation Tests
|
// Aggregation Tests
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: aggregate - $match stage', async () => {
|
tap.test('tsmdb: aggregate - $match stage', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const results = await collection.aggregate([
|
const results = await collection.aggregate([
|
||||||
{ $match: { age: { $gte: 25 } } }
|
{ $match: { age: { $gte: 25 } } }
|
||||||
@@ -400,7 +400,7 @@ tap.test('congodb: aggregate - $match stage', async () => {
|
|||||||
expect(results.every(d => d.age >= 25)).toBeTrue();
|
expect(results.every(d => d.age >= 25)).toBeTrue();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: aggregate - $project stage', async () => {
|
tap.test('tsmdb: aggregate - $project stage', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const results = await collection.aggregate([
|
const results = await collection.aggregate([
|
||||||
{ $project: { name: 1, _id: 0 } }
|
{ $project: { name: 1, _id: 0 } }
|
||||||
@@ -411,7 +411,7 @@ tap.test('congodb: aggregate - $project stage', async () => {
|
|||||||
expect(results[0].email).toBeUndefined();
|
expect(results[0].email).toBeUndefined();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: aggregate - $sort stage', async () => {
|
tap.test('tsmdb: aggregate - $sort stage', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const results = await collection.aggregate([
|
const results = await collection.aggregate([
|
||||||
{ $match: { age: { $exists: true } } },
|
{ $match: { age: { $exists: true } } },
|
||||||
@@ -423,7 +423,7 @@ tap.test('congodb: aggregate - $sort stage', async () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: aggregate - $group stage', async () => {
|
tap.test('tsmdb: aggregate - $group stage', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
|
|
||||||
// Add some categorized data
|
// Add some categorized data
|
||||||
@@ -445,7 +445,7 @@ tap.test('congodb: aggregate - $group stage', async () => {
|
|||||||
expect(groupB!.total).toEqual(30);
|
expect(groupB!.total).toEqual(30);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: aggregate - $limit and $skip stages', async () => {
|
tap.test('tsmdb: aggregate - $limit and $skip stages', async () => {
|
||||||
const collection = db.collection('users');
|
const collection = db.collection('users');
|
||||||
const results = await collection.aggregate([
|
const results = await collection.aggregate([
|
||||||
{ $skip: 1 },
|
{ $skip: 1 },
|
||||||
@@ -459,7 +459,7 @@ tap.test('congodb: aggregate - $limit and $skip stages', async () => {
|
|||||||
// Bulk Operations Tests
|
// Bulk Operations Tests
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: bulkWrite - executes multiple operations', async () => {
|
tap.test('tsmdb: bulkWrite - executes multiple operations', async () => {
|
||||||
const collection = db.collection('bulktest');
|
const collection = db.collection('bulktest');
|
||||||
|
|
||||||
const result = await collection.bulkWrite([
|
const result = await collection.bulkWrite([
|
||||||
@@ -476,18 +476,18 @@ tap.test('congodb: bulkWrite - executes multiple operations', async () => {
|
|||||||
// Database Operations Tests
|
// Database Operations Tests
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: listCollections - lists all collections', async () => {
|
tap.test('tsmdb: listCollections - lists all collections', async () => {
|
||||||
const collections = await db.listCollections().toArray();
|
const collections = await db.listCollections().toArray();
|
||||||
expect(collections.length).toBeGreaterThan(0);
|
expect(collections.length).toBeGreaterThan(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: createCollection - creates a new collection', async () => {
|
tap.test('tsmdb: createCollection - creates a new collection', async () => {
|
||||||
await db.createCollection('newcollection');
|
await db.createCollection('newcollection');
|
||||||
const collections = await db.listCollections().toArray();
|
const collections = await db.listCollections().toArray();
|
||||||
expect(collections.some(c => c.name === 'newcollection')).toBeTrue();
|
expect(collections.some(c => c.name === 'newcollection')).toBeTrue();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: dropCollection - drops a collection', async () => {
|
tap.test('tsmdb: dropCollection - drops a collection', async () => {
|
||||||
await db.createCollection('todrop');
|
await db.createCollection('todrop');
|
||||||
await db.dropCollection('todrop');
|
await db.dropCollection('todrop');
|
||||||
const collections = await db.listCollections().toArray();
|
const collections = await db.listCollections().toArray();
|
||||||
@@ -498,20 +498,20 @@ tap.test('congodb: dropCollection - drops a collection', async () => {
|
|||||||
// Admin Tests
|
// Admin Tests
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: admin - listDatabases', async () => {
|
tap.test('tsmdb: admin - listDatabases', async () => {
|
||||||
const admin = client.db().admin();
|
const admin = client.db().admin();
|
||||||
const result = await admin.listDatabases();
|
const result = await admin.listDatabases();
|
||||||
expect(result.ok).toEqual(1);
|
expect(result.ok).toEqual(1);
|
||||||
expect(result.databases).toBeArray();
|
expect(result.databases).toBeArray();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: admin - serverStatus', async () => {
|
tap.test('tsmdb: admin - serverStatus', async () => {
|
||||||
const admin = client.db().admin();
|
const admin = client.db().admin();
|
||||||
const status = await admin.serverStatus();
|
const status = await admin.serverStatus();
|
||||||
expect(status.ok).toEqual(1);
|
expect(status.ok).toEqual(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: admin - ping', async () => {
|
tap.test('tsmdb: admin - ping', async () => {
|
||||||
const admin = client.db().admin();
|
const admin = client.db().admin();
|
||||||
const result = await admin.ping();
|
const result = await admin.ping();
|
||||||
expect(result.ok).toEqual(1);
|
expect(result.ok).toEqual(1);
|
||||||
@@ -521,7 +521,7 @@ tap.test('congodb: admin - ping', async () => {
|
|||||||
// Replace Operations Tests
|
// Replace Operations Tests
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: replaceOne - replaces entire document', async () => {
|
tap.test('tsmdb: replaceOne - replaces entire document', async () => {
|
||||||
const collection = db.collection('replacetest');
|
const collection = db.collection('replacetest');
|
||||||
await collection.insertOne({ name: 'Original', field1: 'value1', field2: 'value2' });
|
await collection.insertOne({ name: 'Original', field1: 'value1', field2: 'value2' });
|
||||||
|
|
||||||
@@ -540,7 +540,7 @@ tap.test('congodb: replaceOne - replaces entire document', async () => {
|
|||||||
expect(replaced!.field2).toBeUndefined();
|
expect(replaced!.field2).toBeUndefined();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: findOneAndReplace - returns replaced document', async () => {
|
tap.test('tsmdb: findOneAndReplace - returns replaced document', async () => {
|
||||||
const collection = db.collection('replacetest');
|
const collection = db.collection('replacetest');
|
||||||
await collection.insertOne({ name: 'ToReplace', data: 'old' });
|
await collection.insertOne({ name: 'ToReplace', data: 'old' });
|
||||||
|
|
||||||
@@ -558,12 +558,12 @@ tap.test('congodb: findOneAndReplace - returns replaced document', async () => {
|
|||||||
// Cleanup
|
// Cleanup
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
tap.test('congodb: cleanup - drop database', async () => {
|
tap.test('tsmdb: cleanup - drop database', async () => {
|
||||||
const result = await db.dropDatabase();
|
const result = await db.dropDatabase();
|
||||||
expect(result).toBeTrue();
|
expect(result).toBeTrue();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('congodb: cleanup - close client and server', async () => {
|
tap.test('tsmdb: cleanup - close client and server', async () => {
|
||||||
await client.close();
|
await client.close();
|
||||||
await server.stop();
|
await server.stop();
|
||||||
expect(server.running).toBeFalse();
|
expect(server.running).toBeFalse();
|
||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartmongo',
|
name: '@push.rocks/smartmongo',
|
||||||
version: '2.2.0',
|
version: '4.0.0',
|
||||||
description: 'A module for creating and managing a local MongoDB instance for testing purposes.'
|
description: 'A module for creating and managing a local MongoDB instance for testing purposes.'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,479 +0,0 @@
|
|||||||
import * as plugins from '../congodb.plugins.js';
|
|
||||||
import type { IStorageAdapter } from '../storage/IStorageAdapter.js';
|
|
||||||
import type {
|
|
||||||
Document,
|
|
||||||
IStoredDocument,
|
|
||||||
IIndexSpecification,
|
|
||||||
IIndexInfo,
|
|
||||||
ICreateIndexOptions,
|
|
||||||
} from '../types/interfaces.js';
|
|
||||||
import { CongoDuplicateKeyError, CongoIndexError } from '../errors/CongoErrors.js';
|
|
||||||
import { QueryEngine } from './QueryEngine.js';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Index data structure for fast lookups
|
|
||||||
*/
|
|
||||||
interface IIndexData {
|
|
||||||
name: string;
|
|
||||||
key: Record<string, 1 | -1 | string>;
|
|
||||||
unique: boolean;
|
|
||||||
sparse: boolean;
|
|
||||||
expireAfterSeconds?: number;
|
|
||||||
// Map from index key value to document _id(s)
|
|
||||||
entries: Map<string, Set<string>>;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Index engine for managing indexes and query optimization
|
|
||||||
*/
|
|
||||||
export class IndexEngine {
|
|
||||||
private dbName: string;
|
|
||||||
private collName: string;
|
|
||||||
private storage: IStorageAdapter;
|
|
||||||
private indexes: Map<string, IIndexData> = new Map();
|
|
||||||
private initialized = false;
|
|
||||||
|
|
||||||
constructor(dbName: string, collName: string, storage: IStorageAdapter) {
|
|
||||||
this.dbName = dbName;
|
|
||||||
this.collName = collName;
|
|
||||||
this.storage = storage;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initialize indexes from storage
|
|
||||||
*/
|
|
||||||
async initialize(): Promise<void> {
|
|
||||||
if (this.initialized) return;
|
|
||||||
|
|
||||||
const storedIndexes = await this.storage.getIndexes(this.dbName, this.collName);
|
|
||||||
const documents = await this.storage.findAll(this.dbName, this.collName);
|
|
||||||
|
|
||||||
for (const indexSpec of storedIndexes) {
|
|
||||||
const indexData: IIndexData = {
|
|
||||||
name: indexSpec.name,
|
|
||||||
key: indexSpec.key,
|
|
||||||
unique: indexSpec.unique || false,
|
|
||||||
sparse: indexSpec.sparse || false,
|
|
||||||
expireAfterSeconds: indexSpec.expireAfterSeconds,
|
|
||||||
entries: new Map(),
|
|
||||||
};
|
|
||||||
|
|
||||||
// Build index entries
|
|
||||||
for (const doc of documents) {
|
|
||||||
const keyValue = this.extractKeyValue(doc, indexSpec.key);
|
|
||||||
if (keyValue !== null || !indexData.sparse) {
|
|
||||||
const keyStr = JSON.stringify(keyValue);
|
|
||||||
if (!indexData.entries.has(keyStr)) {
|
|
||||||
indexData.entries.set(keyStr, new Set());
|
|
||||||
}
|
|
||||||
indexData.entries.get(keyStr)!.add(doc._id.toHexString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
this.indexes.set(indexSpec.name, indexData);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.initialized = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new index
|
|
||||||
*/
|
|
||||||
async createIndex(
|
|
||||||
key: Record<string, 1 | -1 | 'text' | '2dsphere'>,
|
|
||||||
options?: ICreateIndexOptions
|
|
||||||
): Promise<string> {
|
|
||||||
await this.initialize();
|
|
||||||
|
|
||||||
// Generate index name if not provided
|
|
||||||
const name = options?.name || this.generateIndexName(key);
|
|
||||||
|
|
||||||
// Check if index already exists
|
|
||||||
if (this.indexes.has(name)) {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create index data structure
|
|
||||||
const indexData: IIndexData = {
|
|
||||||
name,
|
|
||||||
key: key as Record<string, 1 | -1 | string>,
|
|
||||||
unique: options?.unique || false,
|
|
||||||
sparse: options?.sparse || false,
|
|
||||||
expireAfterSeconds: options?.expireAfterSeconds,
|
|
||||||
entries: new Map(),
|
|
||||||
};
|
|
||||||
|
|
||||||
// Build index from existing documents
|
|
||||||
const documents = await this.storage.findAll(this.dbName, this.collName);
|
|
||||||
|
|
||||||
for (const doc of documents) {
|
|
||||||
const keyValue = this.extractKeyValue(doc, key);
|
|
||||||
|
|
||||||
if (keyValue === null && indexData.sparse) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
const keyStr = JSON.stringify(keyValue);
|
|
||||||
|
|
||||||
if (indexData.unique && indexData.entries.has(keyStr)) {
|
|
||||||
throw new CongoDuplicateKeyError(
|
|
||||||
`E11000 duplicate key error index: ${this.dbName}.${this.collName}.$${name}`,
|
|
||||||
key as Record<string, 1>,
|
|
||||||
keyValue
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!indexData.entries.has(keyStr)) {
|
|
||||||
indexData.entries.set(keyStr, new Set());
|
|
||||||
}
|
|
||||||
indexData.entries.get(keyStr)!.add(doc._id.toHexString());
|
|
||||||
}
|
|
||||||
|
|
||||||
// Store index
|
|
||||||
this.indexes.set(name, indexData);
|
|
||||||
await this.storage.saveIndex(this.dbName, this.collName, name, {
|
|
||||||
key,
|
|
||||||
unique: options?.unique,
|
|
||||||
sparse: options?.sparse,
|
|
||||||
expireAfterSeconds: options?.expireAfterSeconds,
|
|
||||||
});
|
|
||||||
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Drop an index
|
|
||||||
*/
|
|
||||||
async dropIndex(name: string): Promise<void> {
|
|
||||||
await this.initialize();
|
|
||||||
|
|
||||||
if (name === '_id_') {
|
|
||||||
throw new CongoIndexError('cannot drop _id index');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!this.indexes.has(name)) {
|
|
||||||
throw new CongoIndexError(`index not found: ${name}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.indexes.delete(name);
|
|
||||||
await this.storage.dropIndex(this.dbName, this.collName, name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Drop all indexes except _id
|
|
||||||
*/
|
|
||||||
async dropAllIndexes(): Promise<void> {
|
|
||||||
await this.initialize();
|
|
||||||
|
|
||||||
const names = Array.from(this.indexes.keys()).filter(n => n !== '_id_');
|
|
||||||
for (const name of names) {
|
|
||||||
this.indexes.delete(name);
|
|
||||||
await this.storage.dropIndex(this.dbName, this.collName, name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* List all indexes
|
|
||||||
*/
|
|
||||||
async listIndexes(): Promise<IIndexInfo[]> {
|
|
||||||
await this.initialize();
|
|
||||||
|
|
||||||
return Array.from(this.indexes.values()).map(idx => ({
|
|
||||||
v: 2,
|
|
||||||
key: idx.key,
|
|
||||||
name: idx.name,
|
|
||||||
unique: idx.unique || undefined,
|
|
||||||
sparse: idx.sparse || undefined,
|
|
||||||
expireAfterSeconds: idx.expireAfterSeconds,
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Check if an index exists
|
|
||||||
*/
|
|
||||||
async indexExists(name: string): Promise<boolean> {
|
|
||||||
await this.initialize();
|
|
||||||
return this.indexes.has(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Update index entries after document insert
|
|
||||||
*/
|
|
||||||
async onInsert(doc: IStoredDocument): Promise<void> {
|
|
||||||
await this.initialize();
|
|
||||||
|
|
||||||
for (const [name, indexData] of this.indexes) {
|
|
||||||
const keyValue = this.extractKeyValue(doc, indexData.key);
|
|
||||||
|
|
||||||
if (keyValue === null && indexData.sparse) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
const keyStr = JSON.stringify(keyValue);
|
|
||||||
|
|
||||||
// Check unique constraint
|
|
||||||
if (indexData.unique) {
|
|
||||||
const existing = indexData.entries.get(keyStr);
|
|
||||||
if (existing && existing.size > 0) {
|
|
||||||
throw new CongoDuplicateKeyError(
|
|
||||||
`E11000 duplicate key error collection: ${this.dbName}.${this.collName} index: ${name}`,
|
|
||||||
indexData.key as Record<string, 1>,
|
|
||||||
keyValue
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!indexData.entries.has(keyStr)) {
|
|
||||||
indexData.entries.set(keyStr, new Set());
|
|
||||||
}
|
|
||||||
indexData.entries.get(keyStr)!.add(doc._id.toHexString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Update index entries after document update
|
|
||||||
*/
|
|
||||||
async onUpdate(oldDoc: IStoredDocument, newDoc: IStoredDocument): Promise<void> {
|
|
||||||
await this.initialize();
|
|
||||||
|
|
||||||
for (const [name, indexData] of this.indexes) {
|
|
||||||
const oldKeyValue = this.extractKeyValue(oldDoc, indexData.key);
|
|
||||||
const newKeyValue = this.extractKeyValue(newDoc, indexData.key);
|
|
||||||
const oldKeyStr = JSON.stringify(oldKeyValue);
|
|
||||||
const newKeyStr = JSON.stringify(newKeyValue);
|
|
||||||
|
|
||||||
// Remove old entry if key changed
|
|
||||||
if (oldKeyStr !== newKeyStr) {
|
|
||||||
if (oldKeyValue !== null || !indexData.sparse) {
|
|
||||||
const oldSet = indexData.entries.get(oldKeyStr);
|
|
||||||
if (oldSet) {
|
|
||||||
oldSet.delete(oldDoc._id.toHexString());
|
|
||||||
if (oldSet.size === 0) {
|
|
||||||
indexData.entries.delete(oldKeyStr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add new entry
|
|
||||||
if (newKeyValue !== null || !indexData.sparse) {
|
|
||||||
// Check unique constraint
|
|
||||||
if (indexData.unique) {
|
|
||||||
const existing = indexData.entries.get(newKeyStr);
|
|
||||||
if (existing && existing.size > 0) {
|
|
||||||
throw new CongoDuplicateKeyError(
|
|
||||||
`E11000 duplicate key error collection: ${this.dbName}.${this.collName} index: ${name}`,
|
|
||||||
indexData.key as Record<string, 1>,
|
|
||||||
newKeyValue
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!indexData.entries.has(newKeyStr)) {
|
|
||||||
indexData.entries.set(newKeyStr, new Set());
|
|
||||||
}
|
|
||||||
indexData.entries.get(newKeyStr)!.add(newDoc._id.toHexString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Update index entries after document delete
|
|
||||||
*/
|
|
||||||
async onDelete(doc: IStoredDocument): Promise<void> {
|
|
||||||
await this.initialize();
|
|
||||||
|
|
||||||
for (const indexData of this.indexes.values()) {
|
|
||||||
const keyValue = this.extractKeyValue(doc, indexData.key);
|
|
||||||
|
|
||||||
if (keyValue === null && indexData.sparse) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
const keyStr = JSON.stringify(keyValue);
|
|
||||||
const set = indexData.entries.get(keyStr);
|
|
||||||
if (set) {
|
|
||||||
set.delete(doc._id.toHexString());
|
|
||||||
if (set.size === 0) {
|
|
||||||
indexData.entries.delete(keyStr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Find the best index for a query
|
|
||||||
*/
|
|
||||||
selectIndex(filter: Document): { name: string; data: IIndexData } | null {
|
|
||||||
if (!filter || Object.keys(filter).length === 0) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get filter fields
|
|
||||||
const filterFields = new Set(this.getFilterFields(filter));
|
|
||||||
|
|
||||||
// Score each index
|
|
||||||
let bestIndex: { name: string; data: IIndexData } | null = null;
|
|
||||||
let bestScore = 0;
|
|
||||||
|
|
||||||
for (const [name, indexData] of this.indexes) {
|
|
||||||
const indexFields = Object.keys(indexData.key);
|
|
||||||
let score = 0;
|
|
||||||
|
|
||||||
// Count how many index fields are in the filter
|
|
||||||
for (const field of indexFields) {
|
|
||||||
if (filterFields.has(field)) {
|
|
||||||
score++;
|
|
||||||
} else {
|
|
||||||
break; // Index fields must be contiguous
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Prefer unique indexes
|
|
||||||
if (indexData.unique && score > 0) {
|
|
||||||
score += 0.5;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (score > bestScore) {
|
|
||||||
bestScore = score;
|
|
||||||
bestIndex = { name, data: indexData };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return bestIndex;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Use index to find candidate document IDs
|
|
||||||
*/
|
|
||||||
async findCandidateIds(filter: Document): Promise<Set<string> | null> {
|
|
||||||
await this.initialize();
|
|
||||||
|
|
||||||
const index = this.selectIndex(filter);
|
|
||||||
if (!index) return null;
|
|
||||||
|
|
||||||
// Try to use the index for equality matches
|
|
||||||
const indexFields = Object.keys(index.data.key);
|
|
||||||
const equalityValues: Record<string, any> = {};
|
|
||||||
|
|
||||||
for (const field of indexFields) {
|
|
||||||
const filterValue = this.getFilterValue(filter, field);
|
|
||||||
if (filterValue === undefined) break;
|
|
||||||
|
|
||||||
// Only use equality matches for index lookup
|
|
||||||
if (typeof filterValue === 'object' && filterValue !== null) {
|
|
||||||
if (filterValue.$eq !== undefined) {
|
|
||||||
equalityValues[field] = filterValue.$eq;
|
|
||||||
} else if (filterValue.$in !== undefined) {
|
|
||||||
// Handle $in with multiple lookups
|
|
||||||
const results = new Set<string>();
|
|
||||||
for (const val of filterValue.$in) {
|
|
||||||
equalityValues[field] = val;
|
|
||||||
const keyStr = JSON.stringify(this.buildKeyValue(equalityValues, index.data.key));
|
|
||||||
const ids = index.data.entries.get(keyStr);
|
|
||||||
if (ids) {
|
|
||||||
for (const id of ids) {
|
|
||||||
results.add(id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return results;
|
|
||||||
} else {
|
|
||||||
break; // Non-equality operator, stop here
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
equalityValues[field] = filterValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Object.keys(equalityValues).length === 0) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
const keyStr = JSON.stringify(this.buildKeyValue(equalityValues, index.data.key));
|
|
||||||
return index.data.entries.get(keyStr) || new Set();
|
|
||||||
}
|
|
||||||
|
|
||||||
// ============================================================================
|
|
||||||
// Helper Methods
|
|
||||||
// ============================================================================
|
|
||||||
|
|
||||||
private generateIndexName(key: Record<string, any>): string {
|
|
||||||
return Object.entries(key)
|
|
||||||
.map(([field, dir]) => `${field}_${dir}`)
|
|
||||||
.join('_');
|
|
||||||
}
|
|
||||||
|
|
||||||
private extractKeyValue(doc: Document, key: Record<string, any>): any {
|
|
||||||
const values: any[] = [];
|
|
||||||
|
|
||||||
for (const field of Object.keys(key)) {
|
|
||||||
const value = QueryEngine.getNestedValue(doc, field);
|
|
||||||
values.push(value === undefined ? null : value);
|
|
||||||
}
|
|
||||||
|
|
||||||
// For single-field index, return the value directly
|
|
||||||
if (values.length === 1) {
|
|
||||||
return values[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
return values;
|
|
||||||
}
|
|
||||||
|
|
||||||
private buildKeyValue(values: Record<string, any>, key: Record<string, any>): any {
|
|
||||||
const result: any[] = [];
|
|
||||||
|
|
||||||
for (const field of Object.keys(key)) {
|
|
||||||
result.push(values[field] !== undefined ? values[field] : null);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (result.length === 1) {
|
|
||||||
return result[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
private getFilterFields(filter: Document, prefix = ''): string[] {
|
|
||||||
const fields: string[] = [];
|
|
||||||
|
|
||||||
for (const [key, value] of Object.entries(filter)) {
|
|
||||||
if (key.startsWith('$')) {
|
|
||||||
// Logical operator
|
|
||||||
if (key === '$and' || key === '$or' || key === '$nor') {
|
|
||||||
for (const subFilter of value as Document[]) {
|
|
||||||
fields.push(...this.getFilterFields(subFilter, prefix));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
const fullKey = prefix ? `${prefix}.${key}` : key;
|
|
||||||
fields.push(fullKey);
|
|
||||||
|
|
||||||
// Check for nested filters
|
|
||||||
if (typeof value === 'object' && value !== null && !Array.isArray(value)) {
|
|
||||||
const subKeys = Object.keys(value);
|
|
||||||
if (subKeys.length > 0 && !subKeys[0].startsWith('$')) {
|
|
||||||
fields.push(...this.getFilterFields(value, fullKey));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return fields;
|
|
||||||
}
|
|
||||||
|
|
||||||
private getFilterValue(filter: Document, field: string): any {
|
|
||||||
// Handle dot notation
|
|
||||||
const parts = field.split('.');
|
|
||||||
let current: any = filter;
|
|
||||||
|
|
||||||
for (const part of parts) {
|
|
||||||
if (current === null || current === undefined) {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
current = current[part];
|
|
||||||
}
|
|
||||||
|
|
||||||
return current;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
import { commitinfo } from './00_commitinfo_data.js';
|
import { commitinfo } from './00_commitinfo_data.js';
|
||||||
import * as plugins from './smartmongo.plugins.js';
|
import * as plugins from './smartmongo.plugins.js';
|
||||||
|
|
||||||
// Export CongoDB module
|
// Export TsmDB module
|
||||||
export * as congodb from './congodb/index.js';
|
export * as tsmdb from './tsmdb/index.js';
|
||||||
|
|
||||||
export class SmartMongo {
|
export class SmartMongo {
|
||||||
// STATIC
|
// STATIC
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as plugins from '../congodb.plugins.js';
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
import type { Document, IStoredDocument, IAggregateOptions } from '../types/interfaces.js';
|
import type { Document, IStoredDocument, IAggregateOptions } from '../types/interfaces.js';
|
||||||
|
|
||||||
// Import mingo Aggregator
|
// Import mingo Aggregator
|
||||||
798
ts/tsmdb/engine/IndexEngine.ts
Normal file
798
ts/tsmdb/engine/IndexEngine.ts
Normal file
@@ -0,0 +1,798 @@
|
|||||||
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
|
import type { IStorageAdapter } from '../storage/IStorageAdapter.js';
|
||||||
|
|
||||||
|
// Simple B-Tree implementation for range queries
|
||||||
|
// Since sorted-btree has ESM/CJS interop issues, we use a simple custom implementation
|
||||||
|
class SimpleBTree<K, V> {
|
||||||
|
private entries: Map<string, { key: K; value: V }> = new Map();
|
||||||
|
private sortedKeys: K[] = [];
|
||||||
|
private comparator: (a: K, b: K) => number;
|
||||||
|
|
||||||
|
constructor(_unused?: undefined, comparator?: (a: K, b: K) => number) {
|
||||||
|
this.comparator = comparator || ((a: K, b: K) => {
|
||||||
|
if (a < b) return -1;
|
||||||
|
if (a > b) return 1;
|
||||||
|
return 0;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private keyToString(key: K): string {
|
||||||
|
return JSON.stringify(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
set(key: K, value: V): boolean {
|
||||||
|
const keyStr = this.keyToString(key);
|
||||||
|
const existed = this.entries.has(keyStr);
|
||||||
|
this.entries.set(keyStr, { key, value });
|
||||||
|
|
||||||
|
if (!existed) {
|
||||||
|
// Insert in sorted order
|
||||||
|
const idx = this.sortedKeys.findIndex(k => this.comparator(k, key) > 0);
|
||||||
|
if (idx === -1) {
|
||||||
|
this.sortedKeys.push(key);
|
||||||
|
} else {
|
||||||
|
this.sortedKeys.splice(idx, 0, key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return !existed;
|
||||||
|
}
|
||||||
|
|
||||||
|
get(key: K): V | undefined {
|
||||||
|
const entry = this.entries.get(this.keyToString(key));
|
||||||
|
return entry?.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
delete(key: K): boolean {
|
||||||
|
const keyStr = this.keyToString(key);
|
||||||
|
if (this.entries.has(keyStr)) {
|
||||||
|
this.entries.delete(keyStr);
|
||||||
|
const idx = this.sortedKeys.findIndex(k => this.comparator(k, key) === 0);
|
||||||
|
if (idx !== -1) {
|
||||||
|
this.sortedKeys.splice(idx, 1);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
forRange(
|
||||||
|
lowKey: K | undefined,
|
||||||
|
highKey: K | undefined,
|
||||||
|
lowInclusive: boolean,
|
||||||
|
highInclusive: boolean,
|
||||||
|
callback: (value: V, key: K) => void
|
||||||
|
): void {
|
||||||
|
for (const key of this.sortedKeys) {
|
||||||
|
// Check low bound
|
||||||
|
if (lowKey !== undefined) {
|
||||||
|
const cmp = this.comparator(key, lowKey);
|
||||||
|
if (cmp < 0) continue;
|
||||||
|
if (cmp === 0 && !lowInclusive) continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check high bound
|
||||||
|
if (highKey !== undefined) {
|
||||||
|
const cmp = this.comparator(key, highKey);
|
||||||
|
if (cmp > 0) break;
|
||||||
|
if (cmp === 0 && !highInclusive) break;
|
||||||
|
}
|
||||||
|
|
||||||
|
const entry = this.entries.get(this.keyToString(key));
|
||||||
|
if (entry) {
|
||||||
|
callback(entry.value, key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
import type {
|
||||||
|
Document,
|
||||||
|
IStoredDocument,
|
||||||
|
IIndexSpecification,
|
||||||
|
IIndexInfo,
|
||||||
|
ICreateIndexOptions,
|
||||||
|
} from '../types/interfaces.js';
|
||||||
|
import { TsmdbDuplicateKeyError, TsmdbIndexError } from '../errors/TsmdbErrors.js';
|
||||||
|
import { QueryEngine } from './QueryEngine.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Comparator for B-Tree that handles mixed types consistently
|
||||||
|
*/
|
||||||
|
function indexKeyComparator(a: any, b: any): number {
|
||||||
|
// Handle null/undefined
|
||||||
|
if (a === null || a === undefined) {
|
||||||
|
if (b === null || b === undefined) return 0;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (b === null || b === undefined) return 1;
|
||||||
|
|
||||||
|
// Handle arrays (compound keys)
|
||||||
|
if (Array.isArray(a) && Array.isArray(b)) {
|
||||||
|
for (let i = 0; i < Math.max(a.length, b.length); i++) {
|
||||||
|
const cmp = indexKeyComparator(a[i], b[i]);
|
||||||
|
if (cmp !== 0) return cmp;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle ObjectId
|
||||||
|
if (a instanceof plugins.bson.ObjectId && b instanceof plugins.bson.ObjectId) {
|
||||||
|
return a.toHexString().localeCompare(b.toHexString());
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle Date
|
||||||
|
if (a instanceof Date && b instanceof Date) {
|
||||||
|
return a.getTime() - b.getTime();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle different types - use type ordering (null < number < string < object)
|
||||||
|
const typeOrder = (v: any): number => {
|
||||||
|
if (v === null || v === undefined) return 0;
|
||||||
|
if (typeof v === 'number') return 1;
|
||||||
|
if (typeof v === 'string') return 2;
|
||||||
|
if (typeof v === 'boolean') return 3;
|
||||||
|
if (v instanceof Date) return 4;
|
||||||
|
if (v instanceof plugins.bson.ObjectId) return 5;
|
||||||
|
return 6;
|
||||||
|
};
|
||||||
|
|
||||||
|
const typeA = typeOrder(a);
|
||||||
|
const typeB = typeOrder(b);
|
||||||
|
if (typeA !== typeB) return typeA - typeB;
|
||||||
|
|
||||||
|
// Same type comparison
|
||||||
|
if (typeof a === 'number') return a - b;
|
||||||
|
if (typeof a === 'string') return a.localeCompare(b);
|
||||||
|
if (typeof a === 'boolean') return (a ? 1 : 0) - (b ? 1 : 0);
|
||||||
|
|
||||||
|
// Fallback to string comparison
|
||||||
|
return String(a).localeCompare(String(b));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Index data structure using B-Tree for range queries
|
||||||
|
*/
|
||||||
|
interface IIndexData {
|
||||||
|
name: string;
|
||||||
|
key: Record<string, 1 | -1 | string>;
|
||||||
|
unique: boolean;
|
||||||
|
sparse: boolean;
|
||||||
|
expireAfterSeconds?: number;
|
||||||
|
// B-Tree for ordered index lookups (supports range queries)
|
||||||
|
btree: SimpleBTree<any, Set<string>>;
|
||||||
|
// Hash map for fast equality lookups
|
||||||
|
hashMap: Map<string, Set<string>>;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Index engine for managing indexes and query optimization
|
||||||
|
*/
|
||||||
|
export class IndexEngine {
|
||||||
|
private dbName: string;
|
||||||
|
private collName: string;
|
||||||
|
private storage: IStorageAdapter;
|
||||||
|
private indexes: Map<string, IIndexData> = new Map();
|
||||||
|
private initialized = false;
|
||||||
|
|
||||||
|
constructor(dbName: string, collName: string, storage: IStorageAdapter) {
|
||||||
|
this.dbName = dbName;
|
||||||
|
this.collName = collName;
|
||||||
|
this.storage = storage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize indexes from storage
|
||||||
|
*/
|
||||||
|
async initialize(): Promise<void> {
|
||||||
|
if (this.initialized) return;
|
||||||
|
|
||||||
|
const storedIndexes = await this.storage.getIndexes(this.dbName, this.collName);
|
||||||
|
const documents = await this.storage.findAll(this.dbName, this.collName);
|
||||||
|
|
||||||
|
for (const indexSpec of storedIndexes) {
|
||||||
|
const indexData: IIndexData = {
|
||||||
|
name: indexSpec.name,
|
||||||
|
key: indexSpec.key,
|
||||||
|
unique: indexSpec.unique || false,
|
||||||
|
sparse: indexSpec.sparse || false,
|
||||||
|
expireAfterSeconds: indexSpec.expireAfterSeconds,
|
||||||
|
btree: new SimpleBTree<any, Set<string>>(undefined, indexKeyComparator),
|
||||||
|
hashMap: new Map(),
|
||||||
|
};
|
||||||
|
|
||||||
|
// Build index entries
|
||||||
|
for (const doc of documents) {
|
||||||
|
const keyValue = this.extractKeyValue(doc, indexSpec.key);
|
||||||
|
if (keyValue !== null || !indexData.sparse) {
|
||||||
|
const keyStr = JSON.stringify(keyValue);
|
||||||
|
|
||||||
|
// Add to hash map
|
||||||
|
if (!indexData.hashMap.has(keyStr)) {
|
||||||
|
indexData.hashMap.set(keyStr, new Set());
|
||||||
|
}
|
||||||
|
indexData.hashMap.get(keyStr)!.add(doc._id.toHexString());
|
||||||
|
|
||||||
|
// Add to B-tree
|
||||||
|
const existing = indexData.btree.get(keyValue);
|
||||||
|
if (existing) {
|
||||||
|
existing.add(doc._id.toHexString());
|
||||||
|
} else {
|
||||||
|
indexData.btree.set(keyValue, new Set([doc._id.toHexString()]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.indexes.set(indexSpec.name, indexData);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.initialized = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new index
|
||||||
|
*/
|
||||||
|
async createIndex(
|
||||||
|
key: Record<string, 1 | -1 | 'text' | '2dsphere'>,
|
||||||
|
options?: ICreateIndexOptions
|
||||||
|
): Promise<string> {
|
||||||
|
await this.initialize();
|
||||||
|
|
||||||
|
// Generate index name if not provided
|
||||||
|
const name = options?.name || this.generateIndexName(key);
|
||||||
|
|
||||||
|
// Check if index already exists
|
||||||
|
if (this.indexes.has(name)) {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create index data structure
|
||||||
|
const indexData: IIndexData = {
|
||||||
|
name,
|
||||||
|
key: key as Record<string, 1 | -1 | string>,
|
||||||
|
unique: options?.unique || false,
|
||||||
|
sparse: options?.sparse || false,
|
||||||
|
expireAfterSeconds: options?.expireAfterSeconds,
|
||||||
|
btree: new SimpleBTree<any, Set<string>>(undefined, indexKeyComparator),
|
||||||
|
hashMap: new Map(),
|
||||||
|
};
|
||||||
|
|
||||||
|
// Build index from existing documents
|
||||||
|
const documents = await this.storage.findAll(this.dbName, this.collName);
|
||||||
|
|
||||||
|
for (const doc of documents) {
|
||||||
|
const keyValue = this.extractKeyValue(doc, key);
|
||||||
|
|
||||||
|
if (keyValue === null && indexData.sparse) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const keyStr = JSON.stringify(keyValue);
|
||||||
|
|
||||||
|
if (indexData.unique && indexData.hashMap.has(keyStr)) {
|
||||||
|
throw new TsmdbDuplicateKeyError(
|
||||||
|
`E11000 duplicate key error index: ${this.dbName}.${this.collName}.$${name}`,
|
||||||
|
key as Record<string, 1>,
|
||||||
|
keyValue
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add to hash map
|
||||||
|
if (!indexData.hashMap.has(keyStr)) {
|
||||||
|
indexData.hashMap.set(keyStr, new Set());
|
||||||
|
}
|
||||||
|
indexData.hashMap.get(keyStr)!.add(doc._id.toHexString());
|
||||||
|
|
||||||
|
// Add to B-tree
|
||||||
|
const existing = indexData.btree.get(keyValue);
|
||||||
|
if (existing) {
|
||||||
|
existing.add(doc._id.toHexString());
|
||||||
|
} else {
|
||||||
|
indexData.btree.set(keyValue, new Set([doc._id.toHexString()]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Store index
|
||||||
|
this.indexes.set(name, indexData);
|
||||||
|
await this.storage.saveIndex(this.dbName, this.collName, name, {
|
||||||
|
key,
|
||||||
|
unique: options?.unique,
|
||||||
|
sparse: options?.sparse,
|
||||||
|
expireAfterSeconds: options?.expireAfterSeconds,
|
||||||
|
});
|
||||||
|
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Drop an index
|
||||||
|
*/
|
||||||
|
async dropIndex(name: string): Promise<void> {
|
||||||
|
await this.initialize();
|
||||||
|
|
||||||
|
if (name === '_id_') {
|
||||||
|
throw new TsmdbIndexError('cannot drop _id index');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!this.indexes.has(name)) {
|
||||||
|
throw new TsmdbIndexError(`index not found: ${name}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.indexes.delete(name);
|
||||||
|
await this.storage.dropIndex(this.dbName, this.collName, name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Drop all indexes except _id
|
||||||
|
*/
|
||||||
|
async dropAllIndexes(): Promise<void> {
|
||||||
|
await this.initialize();
|
||||||
|
|
||||||
|
const names = Array.from(this.indexes.keys()).filter(n => n !== '_id_');
|
||||||
|
for (const name of names) {
|
||||||
|
this.indexes.delete(name);
|
||||||
|
await this.storage.dropIndex(this.dbName, this.collName, name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* List all indexes
|
||||||
|
*/
|
||||||
|
async listIndexes(): Promise<IIndexInfo[]> {
|
||||||
|
await this.initialize();
|
||||||
|
|
||||||
|
return Array.from(this.indexes.values()).map(idx => ({
|
||||||
|
v: 2,
|
||||||
|
key: idx.key,
|
||||||
|
name: idx.name,
|
||||||
|
unique: idx.unique || undefined,
|
||||||
|
sparse: idx.sparse || undefined,
|
||||||
|
expireAfterSeconds: idx.expireAfterSeconds,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if an index exists
|
||||||
|
*/
|
||||||
|
async indexExists(name: string): Promise<boolean> {
|
||||||
|
await this.initialize();
|
||||||
|
return this.indexes.has(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update index entries after document insert
|
||||||
|
*/
|
||||||
|
async onInsert(doc: IStoredDocument): Promise<void> {
|
||||||
|
await this.initialize();
|
||||||
|
|
||||||
|
for (const [name, indexData] of this.indexes) {
|
||||||
|
const keyValue = this.extractKeyValue(doc, indexData.key);
|
||||||
|
|
||||||
|
if (keyValue === null && indexData.sparse) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const keyStr = JSON.stringify(keyValue);
|
||||||
|
|
||||||
|
// Check unique constraint
|
||||||
|
if (indexData.unique) {
|
||||||
|
const existing = indexData.hashMap.get(keyStr);
|
||||||
|
if (existing && existing.size > 0) {
|
||||||
|
throw new TsmdbDuplicateKeyError(
|
||||||
|
`E11000 duplicate key error collection: ${this.dbName}.${this.collName} index: ${name}`,
|
||||||
|
indexData.key as Record<string, 1>,
|
||||||
|
keyValue
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add to hash map
|
||||||
|
if (!indexData.hashMap.has(keyStr)) {
|
||||||
|
indexData.hashMap.set(keyStr, new Set());
|
||||||
|
}
|
||||||
|
indexData.hashMap.get(keyStr)!.add(doc._id.toHexString());
|
||||||
|
|
||||||
|
// Add to B-tree
|
||||||
|
const btreeSet = indexData.btree.get(keyValue);
|
||||||
|
if (btreeSet) {
|
||||||
|
btreeSet.add(doc._id.toHexString());
|
||||||
|
} else {
|
||||||
|
indexData.btree.set(keyValue, new Set([doc._id.toHexString()]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update index entries after document update
|
||||||
|
*/
|
||||||
|
async onUpdate(oldDoc: IStoredDocument, newDoc: IStoredDocument): Promise<void> {
|
||||||
|
await this.initialize();
|
||||||
|
|
||||||
|
for (const [name, indexData] of this.indexes) {
|
||||||
|
const oldKeyValue = this.extractKeyValue(oldDoc, indexData.key);
|
||||||
|
const newKeyValue = this.extractKeyValue(newDoc, indexData.key);
|
||||||
|
const oldKeyStr = JSON.stringify(oldKeyValue);
|
||||||
|
const newKeyStr = JSON.stringify(newKeyValue);
|
||||||
|
|
||||||
|
// Remove old entry if key changed
|
||||||
|
if (oldKeyStr !== newKeyStr) {
|
||||||
|
if (oldKeyValue !== null || !indexData.sparse) {
|
||||||
|
// Remove from hash map
|
||||||
|
const oldHashSet = indexData.hashMap.get(oldKeyStr);
|
||||||
|
if (oldHashSet) {
|
||||||
|
oldHashSet.delete(oldDoc._id.toHexString());
|
||||||
|
if (oldHashSet.size === 0) {
|
||||||
|
indexData.hashMap.delete(oldKeyStr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove from B-tree
|
||||||
|
const oldBtreeSet = indexData.btree.get(oldKeyValue);
|
||||||
|
if (oldBtreeSet) {
|
||||||
|
oldBtreeSet.delete(oldDoc._id.toHexString());
|
||||||
|
if (oldBtreeSet.size === 0) {
|
||||||
|
indexData.btree.delete(oldKeyValue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add new entry
|
||||||
|
if (newKeyValue !== null || !indexData.sparse) {
|
||||||
|
// Check unique constraint
|
||||||
|
if (indexData.unique) {
|
||||||
|
const existing = indexData.hashMap.get(newKeyStr);
|
||||||
|
if (existing && existing.size > 0) {
|
||||||
|
throw new TsmdbDuplicateKeyError(
|
||||||
|
`E11000 duplicate key error collection: ${this.dbName}.${this.collName} index: ${name}`,
|
||||||
|
indexData.key as Record<string, 1>,
|
||||||
|
newKeyValue
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add to hash map
|
||||||
|
if (!indexData.hashMap.has(newKeyStr)) {
|
||||||
|
indexData.hashMap.set(newKeyStr, new Set());
|
||||||
|
}
|
||||||
|
indexData.hashMap.get(newKeyStr)!.add(newDoc._id.toHexString());
|
||||||
|
|
||||||
|
// Add to B-tree
|
||||||
|
const newBtreeSet = indexData.btree.get(newKeyValue);
|
||||||
|
if (newBtreeSet) {
|
||||||
|
newBtreeSet.add(newDoc._id.toHexString());
|
||||||
|
} else {
|
||||||
|
indexData.btree.set(newKeyValue, new Set([newDoc._id.toHexString()]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update index entries after document delete
|
||||||
|
*/
|
||||||
|
async onDelete(doc: IStoredDocument): Promise<void> {
|
||||||
|
await this.initialize();
|
||||||
|
|
||||||
|
for (const indexData of this.indexes.values()) {
|
||||||
|
const keyValue = this.extractKeyValue(doc, indexData.key);
|
||||||
|
|
||||||
|
if (keyValue === null && indexData.sparse) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const keyStr = JSON.stringify(keyValue);
|
||||||
|
|
||||||
|
// Remove from hash map
|
||||||
|
const hashSet = indexData.hashMap.get(keyStr);
|
||||||
|
if (hashSet) {
|
||||||
|
hashSet.delete(doc._id.toHexString());
|
||||||
|
if (hashSet.size === 0) {
|
||||||
|
indexData.hashMap.delete(keyStr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove from B-tree
|
||||||
|
const btreeSet = indexData.btree.get(keyValue);
|
||||||
|
if (btreeSet) {
|
||||||
|
btreeSet.delete(doc._id.toHexString());
|
||||||
|
if (btreeSet.size === 0) {
|
||||||
|
indexData.btree.delete(keyValue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find the best index for a query
|
||||||
|
*/
|
||||||
|
selectIndex(filter: Document): { name: string; data: IIndexData } | null {
|
||||||
|
if (!filter || Object.keys(filter).length === 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get filter fields and operators
|
||||||
|
const filterInfo = this.analyzeFilter(filter);
|
||||||
|
|
||||||
|
// Score each index
|
||||||
|
let bestIndex: { name: string; data: IIndexData } | null = null;
|
||||||
|
let bestScore = 0;
|
||||||
|
|
||||||
|
for (const [name, indexData] of this.indexes) {
|
||||||
|
const indexFields = Object.keys(indexData.key);
|
||||||
|
let score = 0;
|
||||||
|
|
||||||
|
// Count how many index fields can be used
|
||||||
|
for (const field of indexFields) {
|
||||||
|
const info = filterInfo.get(field);
|
||||||
|
if (!info) break;
|
||||||
|
|
||||||
|
// Equality is best
|
||||||
|
if (info.equality) {
|
||||||
|
score += 2;
|
||||||
|
} else if (info.range) {
|
||||||
|
// Range queries can use B-tree
|
||||||
|
score += 1;
|
||||||
|
} else if (info.in) {
|
||||||
|
score += 1.5;
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Prefer unique indexes
|
||||||
|
if (indexData.unique && score > 0) {
|
||||||
|
score += 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (score > bestScore) {
|
||||||
|
bestScore = score;
|
||||||
|
bestIndex = { name, data: indexData };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return bestIndex;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Analyze filter to extract field operators
|
||||||
|
*/
|
||||||
|
private analyzeFilter(filter: Document): Map<string, { equality: boolean; range: boolean; in: boolean; ops: Record<string, any> }> {
|
||||||
|
const result = new Map<string, { equality: boolean; range: boolean; in: boolean; ops: Record<string, any> }>();
|
||||||
|
|
||||||
|
for (const [key, value] of Object.entries(filter)) {
|
||||||
|
if (key.startsWith('$')) continue;
|
||||||
|
|
||||||
|
const info = { equality: false, range: false, in: false, ops: {} as Record<string, any> };
|
||||||
|
|
||||||
|
if (typeof value !== 'object' || value === null || value instanceof plugins.bson.ObjectId || value instanceof Date) {
|
||||||
|
info.equality = true;
|
||||||
|
info.ops['$eq'] = value;
|
||||||
|
} else {
|
||||||
|
const ops = value as Record<string, any>;
|
||||||
|
if (ops.$eq !== undefined) {
|
||||||
|
info.equality = true;
|
||||||
|
info.ops['$eq'] = ops.$eq;
|
||||||
|
}
|
||||||
|
if (ops.$in !== undefined) {
|
||||||
|
info.in = true;
|
||||||
|
info.ops['$in'] = ops.$in;
|
||||||
|
}
|
||||||
|
if (ops.$gt !== undefined || ops.$gte !== undefined || ops.$lt !== undefined || ops.$lte !== undefined) {
|
||||||
|
info.range = true;
|
||||||
|
if (ops.$gt !== undefined) info.ops['$gt'] = ops.$gt;
|
||||||
|
if (ops.$gte !== undefined) info.ops['$gte'] = ops.$gte;
|
||||||
|
if (ops.$lt !== undefined) info.ops['$lt'] = ops.$lt;
|
||||||
|
if (ops.$lte !== undefined) info.ops['$lte'] = ops.$lte;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
result.set(key, info);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Use index to find candidate document IDs (supports range queries with B-tree)
|
||||||
|
*/
|
||||||
|
async findCandidateIds(filter: Document): Promise<Set<string> | null> {
|
||||||
|
await this.initialize();
|
||||||
|
|
||||||
|
const index = this.selectIndex(filter);
|
||||||
|
if (!index) return null;
|
||||||
|
|
||||||
|
const filterInfo = this.analyzeFilter(filter);
|
||||||
|
const indexFields = Object.keys(index.data.key);
|
||||||
|
|
||||||
|
// For single-field indexes with range queries, use B-tree
|
||||||
|
if (indexFields.length === 1) {
|
||||||
|
const field = indexFields[0];
|
||||||
|
const info = filterInfo.get(field);
|
||||||
|
|
||||||
|
if (info) {
|
||||||
|
// Handle equality using hash map (faster)
|
||||||
|
if (info.equality) {
|
||||||
|
const keyStr = JSON.stringify(info.ops['$eq']);
|
||||||
|
return index.data.hashMap.get(keyStr) || new Set();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle $in using hash map
|
||||||
|
if (info.in) {
|
||||||
|
const results = new Set<string>();
|
||||||
|
for (const val of info.ops['$in']) {
|
||||||
|
const keyStr = JSON.stringify(val);
|
||||||
|
const ids = index.data.hashMap.get(keyStr);
|
||||||
|
if (ids) {
|
||||||
|
for (const id of ids) {
|
||||||
|
results.add(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle range queries using B-tree
|
||||||
|
if (info.range) {
|
||||||
|
return this.findRangeCandidates(index.data, info.ops);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// For compound indexes, use hash map with partial key matching
|
||||||
|
const equalityValues: Record<string, any> = {};
|
||||||
|
|
||||||
|
for (const field of indexFields) {
|
||||||
|
const info = filterInfo.get(field);
|
||||||
|
if (!info) break;
|
||||||
|
|
||||||
|
if (info.equality) {
|
||||||
|
equalityValues[field] = info.ops['$eq'];
|
||||||
|
} else if (info.in) {
|
||||||
|
// Handle $in with multiple lookups
|
||||||
|
const results = new Set<string>();
|
||||||
|
for (const val of info.ops['$in']) {
|
||||||
|
equalityValues[field] = val;
|
||||||
|
const keyStr = JSON.stringify(this.buildKeyValue(equalityValues, index.data.key));
|
||||||
|
const ids = index.data.hashMap.get(keyStr);
|
||||||
|
if (ids) {
|
||||||
|
for (const id of ids) {
|
||||||
|
results.add(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return results;
|
||||||
|
} else {
|
||||||
|
break; // Non-equality/in operator, stop here
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Object.keys(equalityValues).length > 0) {
|
||||||
|
const keyStr = JSON.stringify(this.buildKeyValue(equalityValues, index.data.key));
|
||||||
|
return index.data.hashMap.get(keyStr) || new Set();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find candidates using B-tree range scan
|
||||||
|
*/
|
||||||
|
private findRangeCandidates(indexData: IIndexData, ops: Record<string, any>): Set<string> {
|
||||||
|
const results = new Set<string>();
|
||||||
|
|
||||||
|
let lowKey: any = undefined;
|
||||||
|
let highKey: any = undefined;
|
||||||
|
let lowInclusive = true;
|
||||||
|
let highInclusive = true;
|
||||||
|
|
||||||
|
if (ops['$gt'] !== undefined) {
|
||||||
|
lowKey = ops['$gt'];
|
||||||
|
lowInclusive = false;
|
||||||
|
}
|
||||||
|
if (ops['$gte'] !== undefined) {
|
||||||
|
lowKey = ops['$gte'];
|
||||||
|
lowInclusive = true;
|
||||||
|
}
|
||||||
|
if (ops['$lt'] !== undefined) {
|
||||||
|
highKey = ops['$lt'];
|
||||||
|
highInclusive = false;
|
||||||
|
}
|
||||||
|
if (ops['$lte'] !== undefined) {
|
||||||
|
highKey = ops['$lte'];
|
||||||
|
highInclusive = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use B-tree range iteration
|
||||||
|
indexData.btree.forRange(lowKey, highKey, lowInclusive, highInclusive, (value, key) => {
|
||||||
|
if (value) {
|
||||||
|
for (const id of value) {
|
||||||
|
results.add(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// Helper Methods
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
private generateIndexName(key: Record<string, any>): string {
|
||||||
|
return Object.entries(key)
|
||||||
|
.map(([field, dir]) => `${field}_${dir}`)
|
||||||
|
.join('_');
|
||||||
|
}
|
||||||
|
|
||||||
|
private extractKeyValue(doc: Document, key: Record<string, any>): any {
|
||||||
|
const values: any[] = [];
|
||||||
|
|
||||||
|
for (const field of Object.keys(key)) {
|
||||||
|
const value = QueryEngine.getNestedValue(doc, field);
|
||||||
|
values.push(value === undefined ? null : value);
|
||||||
|
}
|
||||||
|
|
||||||
|
// For single-field index, return the value directly
|
||||||
|
if (values.length === 1) {
|
||||||
|
return values[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
return values;
|
||||||
|
}
|
||||||
|
|
||||||
|
private buildKeyValue(values: Record<string, any>, key: Record<string, any>): any {
|
||||||
|
const result: any[] = [];
|
||||||
|
|
||||||
|
for (const field of Object.keys(key)) {
|
||||||
|
result.push(values[field] !== undefined ? values[field] : null);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (result.length === 1) {
|
||||||
|
return result[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
private getFilterFields(filter: Document, prefix = ''): string[] {
|
||||||
|
const fields: string[] = [];
|
||||||
|
|
||||||
|
for (const [key, value] of Object.entries(filter)) {
|
||||||
|
if (key.startsWith('$')) {
|
||||||
|
// Logical operator
|
||||||
|
if (key === '$and' || key === '$or' || key === '$nor') {
|
||||||
|
for (const subFilter of value as Document[]) {
|
||||||
|
fields.push(...this.getFilterFields(subFilter, prefix));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
const fullKey = prefix ? `${prefix}.${key}` : key;
|
||||||
|
fields.push(fullKey);
|
||||||
|
|
||||||
|
// Check for nested filters
|
||||||
|
if (typeof value === 'object' && value !== null && !Array.isArray(value)) {
|
||||||
|
const subKeys = Object.keys(value);
|
||||||
|
if (subKeys.length > 0 && !subKeys[0].startsWith('$')) {
|
||||||
|
fields.push(...this.getFilterFields(value, fullKey));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return fields;
|
||||||
|
}
|
||||||
|
|
||||||
|
private getFilterValue(filter: Document, field: string): any {
|
||||||
|
// Handle dot notation
|
||||||
|
const parts = field.split('.');
|
||||||
|
let current: any = filter;
|
||||||
|
|
||||||
|
for (const part of parts) {
|
||||||
|
if (current === null || current === undefined) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
current = current[part];
|
||||||
|
}
|
||||||
|
|
||||||
|
return current;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as plugins from '../congodb.plugins.js';
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
import type { Document, IStoredDocument, ISortSpecification, ISortDirection } from '../types/interfaces.js';
|
import type { Document, IStoredDocument, ISortSpecification, ISortDirection } from '../types/interfaces.js';
|
||||||
|
|
||||||
// Import mingo Query class
|
// Import mingo Query class
|
||||||
393
ts/tsmdb/engine/QueryPlanner.ts
Normal file
393
ts/tsmdb/engine/QueryPlanner.ts
Normal file
@@ -0,0 +1,393 @@
|
|||||||
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
|
import type { Document, IStoredDocument } from '../types/interfaces.js';
|
||||||
|
import { IndexEngine } from './IndexEngine.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query execution plan types
|
||||||
|
*/
|
||||||
|
export type TQueryPlanType = 'IXSCAN' | 'COLLSCAN' | 'FETCH' | 'IXSCAN_RANGE';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a query execution plan
|
||||||
|
*/
|
||||||
|
export interface IQueryPlan {
|
||||||
|
/** The type of scan used */
|
||||||
|
type: TQueryPlanType;
|
||||||
|
/** Index name if using an index */
|
||||||
|
indexName?: string;
|
||||||
|
/** Index key specification */
|
||||||
|
indexKey?: Record<string, 1 | -1 | string>;
|
||||||
|
/** Whether the query can be fully satisfied by the index */
|
||||||
|
indexCovering: boolean;
|
||||||
|
/** Estimated selectivity (0-1, lower is more selective) */
|
||||||
|
selectivity: number;
|
||||||
|
/** Whether range operators are used */
|
||||||
|
usesRange: boolean;
|
||||||
|
/** Fields used from the index */
|
||||||
|
indexFieldsUsed: string[];
|
||||||
|
/** Filter conditions that must be applied post-index lookup */
|
||||||
|
residualFilter?: Document;
|
||||||
|
/** Explanation for debugging */
|
||||||
|
explanation: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter operator analysis
|
||||||
|
*/
|
||||||
|
interface IFilterOperatorInfo {
|
||||||
|
field: string;
|
||||||
|
operators: string[];
|
||||||
|
equality: boolean;
|
||||||
|
range: boolean;
|
||||||
|
in: boolean;
|
||||||
|
exists: boolean;
|
||||||
|
regex: boolean;
|
||||||
|
values: Record<string, any>;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* QueryPlanner - Analyzes queries and selects optimal execution plans
|
||||||
|
*/
|
||||||
|
export class QueryPlanner {
|
||||||
|
private indexEngine: IndexEngine;
|
||||||
|
|
||||||
|
constructor(indexEngine: IndexEngine) {
|
||||||
|
this.indexEngine = indexEngine;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generate an execution plan for a query filter
|
||||||
|
*/
|
||||||
|
async plan(filter: Document): Promise<IQueryPlan> {
|
||||||
|
await this.indexEngine['initialize']();
|
||||||
|
|
||||||
|
// Empty filter = full collection scan
|
||||||
|
if (!filter || Object.keys(filter).length === 0) {
|
||||||
|
return {
|
||||||
|
type: 'COLLSCAN',
|
||||||
|
indexCovering: false,
|
||||||
|
selectivity: 1.0,
|
||||||
|
usesRange: false,
|
||||||
|
indexFieldsUsed: [],
|
||||||
|
explanation: 'No filter specified, full collection scan required',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// Analyze the filter
|
||||||
|
const operatorInfo = this.analyzeFilter(filter);
|
||||||
|
|
||||||
|
// Get available indexes
|
||||||
|
const indexes = await this.indexEngine.listIndexes();
|
||||||
|
|
||||||
|
// Score each index
|
||||||
|
let bestPlan: IQueryPlan | null = null;
|
||||||
|
let bestScore = -1;
|
||||||
|
|
||||||
|
for (const index of indexes) {
|
||||||
|
const plan = this.scoreIndex(index, operatorInfo, filter);
|
||||||
|
if (plan.selectivity < 1.0) {
|
||||||
|
const score = this.calculateScore(plan);
|
||||||
|
if (score > bestScore) {
|
||||||
|
bestScore = score;
|
||||||
|
bestPlan = plan;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If no suitable index found, fall back to collection scan
|
||||||
|
if (!bestPlan || bestScore <= 0) {
|
||||||
|
return {
|
||||||
|
type: 'COLLSCAN',
|
||||||
|
indexCovering: false,
|
||||||
|
selectivity: 1.0,
|
||||||
|
usesRange: false,
|
||||||
|
indexFieldsUsed: [],
|
||||||
|
explanation: 'No suitable index found for this query',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return bestPlan;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Analyze filter to extract operator information per field
|
||||||
|
*/
|
||||||
|
private analyzeFilter(filter: Document, prefix = ''): Map<string, IFilterOperatorInfo> {
|
||||||
|
const result = new Map<string, IFilterOperatorInfo>();
|
||||||
|
|
||||||
|
for (const [key, value] of Object.entries(filter)) {
|
||||||
|
// Skip logical operators at the top level
|
||||||
|
if (key.startsWith('$')) {
|
||||||
|
if (key === '$and' && Array.isArray(value)) {
|
||||||
|
// Merge $and conditions
|
||||||
|
for (const subFilter of value) {
|
||||||
|
const subInfo = this.analyzeFilter(subFilter, prefix);
|
||||||
|
for (const [field, info] of subInfo) {
|
||||||
|
if (result.has(field)) {
|
||||||
|
// Merge operators
|
||||||
|
const existing = result.get(field)!;
|
||||||
|
existing.operators.push(...info.operators);
|
||||||
|
existing.equality = existing.equality || info.equality;
|
||||||
|
existing.range = existing.range || info.range;
|
||||||
|
existing.in = existing.in || info.in;
|
||||||
|
Object.assign(existing.values, info.values);
|
||||||
|
} else {
|
||||||
|
result.set(field, info);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const fullKey = prefix ? `${prefix}.${key}` : key;
|
||||||
|
const info: IFilterOperatorInfo = {
|
||||||
|
field: fullKey,
|
||||||
|
operators: [],
|
||||||
|
equality: false,
|
||||||
|
range: false,
|
||||||
|
in: false,
|
||||||
|
exists: false,
|
||||||
|
regex: false,
|
||||||
|
values: {},
|
||||||
|
};
|
||||||
|
|
||||||
|
if (typeof value !== 'object' || value === null || value instanceof plugins.bson.ObjectId || value instanceof Date) {
|
||||||
|
// Direct equality
|
||||||
|
info.equality = true;
|
||||||
|
info.operators.push('$eq');
|
||||||
|
info.values['$eq'] = value;
|
||||||
|
} else if (Array.isArray(value)) {
|
||||||
|
// Array equality (rare, but possible)
|
||||||
|
info.equality = true;
|
||||||
|
info.operators.push('$eq');
|
||||||
|
info.values['$eq'] = value;
|
||||||
|
} else {
|
||||||
|
// Operator object
|
||||||
|
for (const [op, opValue] of Object.entries(value)) {
|
||||||
|
if (op.startsWith('$')) {
|
||||||
|
info.operators.push(op);
|
||||||
|
info.values[op] = opValue;
|
||||||
|
|
||||||
|
switch (op) {
|
||||||
|
case '$eq':
|
||||||
|
info.equality = true;
|
||||||
|
break;
|
||||||
|
case '$ne':
|
||||||
|
case '$not':
|
||||||
|
// These can use indexes but with low selectivity
|
||||||
|
break;
|
||||||
|
case '$in':
|
||||||
|
info.in = true;
|
||||||
|
break;
|
||||||
|
case '$nin':
|
||||||
|
// Can't efficiently use indexes
|
||||||
|
break;
|
||||||
|
case '$gt':
|
||||||
|
case '$gte':
|
||||||
|
case '$lt':
|
||||||
|
case '$lte':
|
||||||
|
info.range = true;
|
||||||
|
break;
|
||||||
|
case '$exists':
|
||||||
|
info.exists = true;
|
||||||
|
break;
|
||||||
|
case '$regex':
|
||||||
|
info.regex = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Nested object - recurse
|
||||||
|
const nestedInfo = this.analyzeFilter({ [op]: opValue }, fullKey);
|
||||||
|
for (const [nestedField, nestedFieldInfo] of nestedInfo) {
|
||||||
|
result.set(nestedField, nestedFieldInfo);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (info.operators.length > 0) {
|
||||||
|
result.set(fullKey, info);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Score an index for the given filter
|
||||||
|
*/
|
||||||
|
private scoreIndex(
|
||||||
|
index: { name: string; key: Record<string, any>; unique?: boolean; sparse?: boolean },
|
||||||
|
operatorInfo: Map<string, IFilterOperatorInfo>,
|
||||||
|
filter: Document
|
||||||
|
): IQueryPlan {
|
||||||
|
const indexFields = Object.keys(index.key);
|
||||||
|
const usedFields: string[] = [];
|
||||||
|
let usesRange = false;
|
||||||
|
let canUseIndex = true;
|
||||||
|
let selectivity = 1.0;
|
||||||
|
let residualFilter: Document | undefined;
|
||||||
|
|
||||||
|
// Check each index field in order
|
||||||
|
for (const field of indexFields) {
|
||||||
|
const info = operatorInfo.get(field);
|
||||||
|
if (!info) {
|
||||||
|
// Index field not in filter - stop here
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
usedFields.push(field);
|
||||||
|
|
||||||
|
// Calculate selectivity based on operator
|
||||||
|
if (info.equality) {
|
||||||
|
// Equality has high selectivity
|
||||||
|
selectivity *= 0.01; // Assume 1% match
|
||||||
|
} else if (info.in) {
|
||||||
|
// $in selectivity depends on array size
|
||||||
|
const inValues = info.values['$in'];
|
||||||
|
if (Array.isArray(inValues)) {
|
||||||
|
selectivity *= Math.min(0.5, inValues.length * 0.01);
|
||||||
|
} else {
|
||||||
|
selectivity *= 0.1;
|
||||||
|
}
|
||||||
|
} else if (info.range) {
|
||||||
|
// Range queries have moderate selectivity
|
||||||
|
selectivity *= 0.25;
|
||||||
|
usesRange = true;
|
||||||
|
// After range, can't use more index fields efficiently
|
||||||
|
break;
|
||||||
|
} else if (info.exists) {
|
||||||
|
// $exists can use sparse indexes
|
||||||
|
selectivity *= 0.5;
|
||||||
|
} else {
|
||||||
|
// Other operators may not be indexable
|
||||||
|
canUseIndex = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!canUseIndex || usedFields.length === 0) {
|
||||||
|
return {
|
||||||
|
type: 'COLLSCAN',
|
||||||
|
indexCovering: false,
|
||||||
|
selectivity: 1.0,
|
||||||
|
usesRange: false,
|
||||||
|
indexFieldsUsed: [],
|
||||||
|
explanation: `Index ${index.name} cannot be used for this query`,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build residual filter for conditions not covered by index
|
||||||
|
const coveredFields = new Set(usedFields);
|
||||||
|
const residualConditions: Record<string, any> = {};
|
||||||
|
for (const [field, info] of operatorInfo) {
|
||||||
|
if (!coveredFields.has(field)) {
|
||||||
|
// This field isn't covered by the index
|
||||||
|
if (info.equality) {
|
||||||
|
residualConditions[field] = info.values['$eq'];
|
||||||
|
} else {
|
||||||
|
residualConditions[field] = info.values;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Object.keys(residualConditions).length > 0) {
|
||||||
|
residualFilter = residualConditions;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Unique indexes have better selectivity for equality
|
||||||
|
if (index.unique && usedFields.length === indexFields.length) {
|
||||||
|
selectivity = Math.min(selectivity, 0.001); // At most 1 document
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
type: usesRange ? 'IXSCAN_RANGE' : 'IXSCAN',
|
||||||
|
indexName: index.name,
|
||||||
|
indexKey: index.key,
|
||||||
|
indexCovering: Object.keys(residualConditions).length === 0,
|
||||||
|
selectivity,
|
||||||
|
usesRange,
|
||||||
|
indexFieldsUsed: usedFields,
|
||||||
|
residualFilter,
|
||||||
|
explanation: `Using index ${index.name} on fields [${usedFields.join(', ')}]`,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calculate overall score for a plan (higher is better)
|
||||||
|
*/
|
||||||
|
private calculateScore(plan: IQueryPlan): number {
|
||||||
|
let score = 0;
|
||||||
|
|
||||||
|
// Lower selectivity is better (fewer documents to fetch)
|
||||||
|
score += (1 - plan.selectivity) * 100;
|
||||||
|
|
||||||
|
// Index covering queries are best
|
||||||
|
if (plan.indexCovering) {
|
||||||
|
score += 50;
|
||||||
|
}
|
||||||
|
|
||||||
|
// More index fields used is better
|
||||||
|
score += plan.indexFieldsUsed.length * 10;
|
||||||
|
|
||||||
|
// Equality scans are better than range scans
|
||||||
|
if (!plan.usesRange) {
|
||||||
|
score += 20;
|
||||||
|
}
|
||||||
|
|
||||||
|
return score;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Explain a query - returns detailed plan information
|
||||||
|
*/
|
||||||
|
async explain(filter: Document): Promise<{
|
||||||
|
queryPlanner: {
|
||||||
|
plannerVersion: number;
|
||||||
|
namespace: string;
|
||||||
|
indexFilterSet: boolean;
|
||||||
|
winningPlan: IQueryPlan;
|
||||||
|
rejectedPlans: IQueryPlan[];
|
||||||
|
};
|
||||||
|
}> {
|
||||||
|
await this.indexEngine['initialize']();
|
||||||
|
|
||||||
|
// Analyze the filter
|
||||||
|
const operatorInfo = this.analyzeFilter(filter);
|
||||||
|
|
||||||
|
// Get available indexes
|
||||||
|
const indexes = await this.indexEngine.listIndexes();
|
||||||
|
|
||||||
|
// Score all indexes
|
||||||
|
const plans: IQueryPlan[] = [];
|
||||||
|
|
||||||
|
for (const index of indexes) {
|
||||||
|
const plan = this.scoreIndex(index, operatorInfo, filter);
|
||||||
|
plans.push(plan);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add collection scan as fallback
|
||||||
|
plans.push({
|
||||||
|
type: 'COLLSCAN',
|
||||||
|
indexCovering: false,
|
||||||
|
selectivity: 1.0,
|
||||||
|
usesRange: false,
|
||||||
|
indexFieldsUsed: [],
|
||||||
|
explanation: 'Full collection scan',
|
||||||
|
});
|
||||||
|
|
||||||
|
// Sort by score (best first)
|
||||||
|
plans.sort((a, b) => this.calculateScore(b) - this.calculateScore(a));
|
||||||
|
|
||||||
|
return {
|
||||||
|
queryPlanner: {
|
||||||
|
plannerVersion: 1,
|
||||||
|
namespace: `${this.indexEngine['dbName']}.${this.indexEngine['collName']}`,
|
||||||
|
indexFilterSet: false,
|
||||||
|
winningPlan: plans[0],
|
||||||
|
rejectedPlans: plans.slice(1),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
292
ts/tsmdb/engine/SessionEngine.ts
Normal file
292
ts/tsmdb/engine/SessionEngine.ts
Normal file
@@ -0,0 +1,292 @@
|
|||||||
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
|
import type { TransactionEngine } from './TransactionEngine.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Session state
|
||||||
|
*/
|
||||||
|
export interface ISession {
|
||||||
|
/** Session ID (UUID) */
|
||||||
|
id: string;
|
||||||
|
/** Timestamp when the session was created */
|
||||||
|
createdAt: number;
|
||||||
|
/** Timestamp of the last activity */
|
||||||
|
lastActivityAt: number;
|
||||||
|
/** Current transaction ID if any */
|
||||||
|
txnId?: string;
|
||||||
|
/** Transaction number for ordering */
|
||||||
|
txnNumber?: number;
|
||||||
|
/** Whether the session is in a transaction */
|
||||||
|
inTransaction: boolean;
|
||||||
|
/** Session metadata */
|
||||||
|
metadata?: Record<string, any>;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Session engine options
|
||||||
|
*/
|
||||||
|
export interface ISessionEngineOptions {
|
||||||
|
/** Session timeout in milliseconds (default: 30 minutes) */
|
||||||
|
sessionTimeoutMs?: number;
|
||||||
|
/** Interval to check for expired sessions in ms (default: 60 seconds) */
|
||||||
|
cleanupIntervalMs?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Session engine for managing client sessions
|
||||||
|
* - Tracks session lifecycle (create, touch, end)
|
||||||
|
* - Links sessions to transactions
|
||||||
|
* - Auto-aborts transactions on session expiry
|
||||||
|
*/
|
||||||
|
export class SessionEngine {
|
||||||
|
private sessions: Map<string, ISession> = new Map();
|
||||||
|
private sessionTimeoutMs: number;
|
||||||
|
private cleanupInterval?: ReturnType<typeof setInterval>;
|
||||||
|
private transactionEngine?: TransactionEngine;
|
||||||
|
|
||||||
|
constructor(options?: ISessionEngineOptions) {
|
||||||
|
this.sessionTimeoutMs = options?.sessionTimeoutMs ?? 30 * 60 * 1000; // 30 minutes default
|
||||||
|
const cleanupIntervalMs = options?.cleanupIntervalMs ?? 60 * 1000; // 1 minute default
|
||||||
|
|
||||||
|
// Start cleanup interval
|
||||||
|
this.cleanupInterval = setInterval(() => {
|
||||||
|
this.cleanupExpiredSessions();
|
||||||
|
}, cleanupIntervalMs);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the transaction engine to use for auto-abort
|
||||||
|
*/
|
||||||
|
setTransactionEngine(engine: TransactionEngine): void {
|
||||||
|
this.transactionEngine = engine;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Start a new session
|
||||||
|
*/
|
||||||
|
startSession(sessionId?: string, metadata?: Record<string, any>): ISession {
|
||||||
|
const id = sessionId ?? new plugins.bson.UUID().toHexString();
|
||||||
|
const now = Date.now();
|
||||||
|
|
||||||
|
const session: ISession = {
|
||||||
|
id,
|
||||||
|
createdAt: now,
|
||||||
|
lastActivityAt: now,
|
||||||
|
inTransaction: false,
|
||||||
|
metadata,
|
||||||
|
};
|
||||||
|
|
||||||
|
this.sessions.set(id, session);
|
||||||
|
return session;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a session by ID
|
||||||
|
*/
|
||||||
|
getSession(sessionId: string): ISession | undefined {
|
||||||
|
const session = this.sessions.get(sessionId);
|
||||||
|
if (session && this.isSessionExpired(session)) {
|
||||||
|
// Session expired, clean it up
|
||||||
|
this.endSession(sessionId);
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
return session;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Touch a session to update last activity time
|
||||||
|
*/
|
||||||
|
touchSession(sessionId: string): boolean {
|
||||||
|
const session = this.sessions.get(sessionId);
|
||||||
|
if (!session) return false;
|
||||||
|
|
||||||
|
if (this.isSessionExpired(session)) {
|
||||||
|
this.endSession(sessionId);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
session.lastActivityAt = Date.now();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* End a session explicitly
|
||||||
|
* This will also abort any active transaction
|
||||||
|
*/
|
||||||
|
async endSession(sessionId: string): Promise<boolean> {
|
||||||
|
const session = this.sessions.get(sessionId);
|
||||||
|
if (!session) return false;
|
||||||
|
|
||||||
|
// If session has an active transaction, abort it
|
||||||
|
if (session.inTransaction && session.txnId && this.transactionEngine) {
|
||||||
|
try {
|
||||||
|
await this.transactionEngine.abortTransaction(session.txnId);
|
||||||
|
} catch (e) {
|
||||||
|
// Ignore abort errors during cleanup
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.sessions.delete(sessionId);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Start a transaction in a session
|
||||||
|
*/
|
||||||
|
startTransaction(sessionId: string, txnId: string, txnNumber?: number): boolean {
|
||||||
|
const session = this.sessions.get(sessionId);
|
||||||
|
if (!session) return false;
|
||||||
|
|
||||||
|
if (this.isSessionExpired(session)) {
|
||||||
|
this.endSession(sessionId);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
session.txnId = txnId;
|
||||||
|
session.txnNumber = txnNumber;
|
||||||
|
session.inTransaction = true;
|
||||||
|
session.lastActivityAt = Date.now();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* End a transaction in a session (commit or abort)
|
||||||
|
*/
|
||||||
|
endTransaction(sessionId: string): boolean {
|
||||||
|
const session = this.sessions.get(sessionId);
|
||||||
|
if (!session) return false;
|
||||||
|
|
||||||
|
session.txnId = undefined;
|
||||||
|
session.txnNumber = undefined;
|
||||||
|
session.inTransaction = false;
|
||||||
|
session.lastActivityAt = Date.now();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get transaction ID for a session
|
||||||
|
*/
|
||||||
|
getTransactionId(sessionId: string): string | undefined {
|
||||||
|
const session = this.sessions.get(sessionId);
|
||||||
|
return session?.txnId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if session is in a transaction
|
||||||
|
*/
|
||||||
|
isInTransaction(sessionId: string): boolean {
|
||||||
|
const session = this.sessions.get(sessionId);
|
||||||
|
return session?.inTransaction ?? false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if a session is expired
|
||||||
|
*/
|
||||||
|
isSessionExpired(session: ISession): boolean {
|
||||||
|
return Date.now() - session.lastActivityAt > this.sessionTimeoutMs;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cleanup expired sessions
|
||||||
|
* This is called periodically by the cleanup interval
|
||||||
|
*/
|
||||||
|
private async cleanupExpiredSessions(): Promise<void> {
|
||||||
|
const expiredSessions: string[] = [];
|
||||||
|
|
||||||
|
for (const [id, session] of this.sessions) {
|
||||||
|
if (this.isSessionExpired(session)) {
|
||||||
|
expiredSessions.push(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// End all expired sessions (this will also abort their transactions)
|
||||||
|
for (const sessionId of expiredSessions) {
|
||||||
|
await this.endSession(sessionId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get all active sessions
|
||||||
|
*/
|
||||||
|
listSessions(): ISession[] {
|
||||||
|
const activeSessions: ISession[] = [];
|
||||||
|
for (const session of this.sessions.values()) {
|
||||||
|
if (!this.isSessionExpired(session)) {
|
||||||
|
activeSessions.push(session);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return activeSessions;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get session count
|
||||||
|
*/
|
||||||
|
getSessionCount(): number {
|
||||||
|
return this.sessions.size;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get sessions with active transactions
|
||||||
|
*/
|
||||||
|
getSessionsWithTransactions(): ISession[] {
|
||||||
|
return this.listSessions().filter(s => s.inTransaction);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Refresh session timeout
|
||||||
|
*/
|
||||||
|
refreshSession(sessionId: string): boolean {
|
||||||
|
return this.touchSession(sessionId);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Close the session engine and cleanup
|
||||||
|
*/
|
||||||
|
close(): void {
|
||||||
|
if (this.cleanupInterval) {
|
||||||
|
clearInterval(this.cleanupInterval);
|
||||||
|
this.cleanupInterval = undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clear all sessions
|
||||||
|
this.sessions.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get or create a session for a given session ID
|
||||||
|
* Useful for handling MongoDB driver session requests
|
||||||
|
*/
|
||||||
|
getOrCreateSession(sessionId: string): ISession {
|
||||||
|
let session = this.getSession(sessionId);
|
||||||
|
if (!session) {
|
||||||
|
session = this.startSession(sessionId);
|
||||||
|
} else {
|
||||||
|
this.touchSession(sessionId);
|
||||||
|
}
|
||||||
|
return session;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extract session ID from MongoDB lsid (logical session ID)
|
||||||
|
*/
|
||||||
|
static extractSessionId(lsid: any): string | undefined {
|
||||||
|
if (!lsid) return undefined;
|
||||||
|
|
||||||
|
// MongoDB session ID format: { id: UUID }
|
||||||
|
if (lsid.id) {
|
||||||
|
if (lsid.id instanceof plugins.bson.UUID) {
|
||||||
|
return lsid.id.toHexString();
|
||||||
|
}
|
||||||
|
if (typeof lsid.id === 'string') {
|
||||||
|
return lsid.id;
|
||||||
|
}
|
||||||
|
if (lsid.id.$binary?.base64) {
|
||||||
|
// Binary UUID format
|
||||||
|
return Buffer.from(lsid.id.$binary.base64, 'base64').toString('hex');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import * as plugins from '../congodb.plugins.js';
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
import type { IStorageAdapter } from '../storage/IStorageAdapter.js';
|
import type { IStorageAdapter } from '../storage/IStorageAdapter.js';
|
||||||
import type { Document, IStoredDocument, ITransactionOptions } from '../types/interfaces.js';
|
import type { Document, IStoredDocument, ITransactionOptions } from '../types/interfaces.js';
|
||||||
import { CongoTransactionError, CongoWriteConflictError } from '../errors/CongoErrors.js';
|
import { TsmdbTransactionError, TsmdbWriteConflictError } from '../errors/TsmdbErrors.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Transaction state
|
* Transaction state
|
||||||
@@ -70,7 +70,7 @@ export class TransactionEngine {
|
|||||||
async getSnapshot(txnId: string, dbName: string, collName: string): Promise<IStoredDocument[]> {
|
async getSnapshot(txnId: string, dbName: string, collName: string): Promise<IStoredDocument[]> {
|
||||||
const txn = this.transactions.get(txnId);
|
const txn = this.transactions.get(txnId);
|
||||||
if (!txn || txn.status !== 'active') {
|
if (!txn || txn.status !== 'active') {
|
||||||
throw new CongoTransactionError('Transaction is not active');
|
throw new TsmdbTransactionError('Transaction is not active');
|
||||||
}
|
}
|
||||||
|
|
||||||
const ns = `${dbName}.${collName}`;
|
const ns = `${dbName}.${collName}`;
|
||||||
@@ -148,7 +148,7 @@ export class TransactionEngine {
|
|||||||
recordInsert(txnId: string, dbName: string, collName: string, doc: IStoredDocument): void {
|
recordInsert(txnId: string, dbName: string, collName: string, doc: IStoredDocument): void {
|
||||||
const txn = this.transactions.get(txnId);
|
const txn = this.transactions.get(txnId);
|
||||||
if (!txn || txn.status !== 'active') {
|
if (!txn || txn.status !== 'active') {
|
||||||
throw new CongoTransactionError('Transaction is not active');
|
throw new TsmdbTransactionError('Transaction is not active');
|
||||||
}
|
}
|
||||||
|
|
||||||
const ns = `${dbName}.${collName}`;
|
const ns = `${dbName}.${collName}`;
|
||||||
@@ -174,7 +174,7 @@ export class TransactionEngine {
|
|||||||
): void {
|
): void {
|
||||||
const txn = this.transactions.get(txnId);
|
const txn = this.transactions.get(txnId);
|
||||||
if (!txn || txn.status !== 'active') {
|
if (!txn || txn.status !== 'active') {
|
||||||
throw new CongoTransactionError('Transaction is not active');
|
throw new TsmdbTransactionError('Transaction is not active');
|
||||||
}
|
}
|
||||||
|
|
||||||
const ns = `${dbName}.${collName}`;
|
const ns = `${dbName}.${collName}`;
|
||||||
@@ -203,7 +203,7 @@ export class TransactionEngine {
|
|||||||
recordDelete(txnId: string, dbName: string, collName: string, doc: IStoredDocument): void {
|
recordDelete(txnId: string, dbName: string, collName: string, doc: IStoredDocument): void {
|
||||||
const txn = this.transactions.get(txnId);
|
const txn = this.transactions.get(txnId);
|
||||||
if (!txn || txn.status !== 'active') {
|
if (!txn || txn.status !== 'active') {
|
||||||
throw new CongoTransactionError('Transaction is not active');
|
throw new TsmdbTransactionError('Transaction is not active');
|
||||||
}
|
}
|
||||||
|
|
||||||
const ns = `${dbName}.${collName}`;
|
const ns = `${dbName}.${collName}`;
|
||||||
@@ -231,10 +231,10 @@ export class TransactionEngine {
|
|||||||
async commitTransaction(txnId: string): Promise<void> {
|
async commitTransaction(txnId: string): Promise<void> {
|
||||||
const txn = this.transactions.get(txnId);
|
const txn = this.transactions.get(txnId);
|
||||||
if (!txn) {
|
if (!txn) {
|
||||||
throw new CongoTransactionError('Transaction not found');
|
throw new TsmdbTransactionError('Transaction not found');
|
||||||
}
|
}
|
||||||
if (txn.status !== 'active') {
|
if (txn.status !== 'active') {
|
||||||
throw new CongoTransactionError(`Cannot commit transaction in state: ${txn.status}`);
|
throw new TsmdbTransactionError(`Cannot commit transaction in state: ${txn.status}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for write conflicts
|
// Check for write conflicts
|
||||||
@@ -245,7 +245,7 @@ export class TransactionEngine {
|
|||||||
const hasConflicts = await this.storage.hasConflicts(dbName, collName, ids, txn.startTime);
|
const hasConflicts = await this.storage.hasConflicts(dbName, collName, ids, txn.startTime);
|
||||||
if (hasConflicts) {
|
if (hasConflicts) {
|
||||||
txn.status = 'aborted';
|
txn.status = 'aborted';
|
||||||
throw new CongoWriteConflictError();
|
throw new TsmdbWriteConflictError();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -281,7 +281,7 @@ export class TransactionEngine {
|
|||||||
async abortTransaction(txnId: string): Promise<void> {
|
async abortTransaction(txnId: string): Promise<void> {
|
||||||
const txn = this.transactions.get(txnId);
|
const txn = this.transactions.get(txnId);
|
||||||
if (!txn) {
|
if (!txn) {
|
||||||
throw new CongoTransactionError('Transaction not found');
|
throw new TsmdbTransactionError('Transaction not found');
|
||||||
}
|
}
|
||||||
if (txn.status !== 'active') {
|
if (txn.status !== 'active') {
|
||||||
// Already committed or aborted, just return
|
// Already committed or aborted, just return
|
||||||
@@ -336,7 +336,7 @@ export class TransactionEngine {
|
|||||||
await this.abortTransaction(txnId);
|
await this.abortTransaction(txnId);
|
||||||
this.endTransaction(txnId);
|
this.endTransaction(txnId);
|
||||||
|
|
||||||
if (error instanceof CongoWriteConflictError && attempt < maxRetries - 1) {
|
if (error instanceof TsmdbWriteConflictError && attempt < maxRetries - 1) {
|
||||||
// Retry on write conflict
|
// Retry on write conflict
|
||||||
lastError = error;
|
lastError = error;
|
||||||
continue;
|
continue;
|
||||||
@@ -346,6 +346,6 @@ export class TransactionEngine {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
throw lastError || new CongoTransactionError('Transaction failed after max retries');
|
throw lastError || new TsmdbTransactionError('Transaction failed after max retries');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as plugins from '../congodb.plugins.js';
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
import type { Document, IStoredDocument } from '../types/interfaces.js';
|
import type { Document, IStoredDocument } from '../types/interfaces.js';
|
||||||
import { QueryEngine } from './QueryEngine.js';
|
import { QueryEngine } from './QueryEngine.js';
|
||||||
|
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
/**
|
/**
|
||||||
* Base error class for all CongoDB errors
|
* Base error class for all TsmDB errors
|
||||||
* Mirrors MongoDB driver error hierarchy
|
* Mirrors MongoDB driver error hierarchy
|
||||||
*/
|
*/
|
||||||
export class CongoError extends Error {
|
export class TsmdbError extends Error {
|
||||||
public code?: number;
|
public code?: number;
|
||||||
public codeName?: string;
|
public codeName?: string;
|
||||||
|
|
||||||
constructor(message: string, code?: number, codeName?: string) {
|
constructor(message: string, code?: number, codeName?: string) {
|
||||||
super(message);
|
super(message);
|
||||||
this.name = 'CongoError';
|
this.name = 'TsmdbError';
|
||||||
this.code = code;
|
this.code = code;
|
||||||
this.codeName = codeName;
|
this.codeName = codeName;
|
||||||
Object.setPrototypeOf(this, new.target.prototype);
|
Object.setPrototypeOf(this, new.target.prototype);
|
||||||
@@ -18,33 +18,33 @@ export class CongoError extends Error {
|
|||||||
/**
|
/**
|
||||||
* Error thrown during connection issues
|
* Error thrown during connection issues
|
||||||
*/
|
*/
|
||||||
export class CongoConnectionError extends CongoError {
|
export class TsmdbConnectionError extends TsmdbError {
|
||||||
constructor(message: string) {
|
constructor(message: string) {
|
||||||
super(message);
|
super(message);
|
||||||
this.name = 'CongoConnectionError';
|
this.name = 'TsmdbConnectionError';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Error thrown when an operation times out
|
* Error thrown when an operation times out
|
||||||
*/
|
*/
|
||||||
export class CongoTimeoutError extends CongoError {
|
export class TsmdbTimeoutError extends TsmdbError {
|
||||||
constructor(message: string) {
|
constructor(message: string) {
|
||||||
super(message, 50, 'MaxTimeMSExpired');
|
super(message, 50, 'MaxTimeMSExpired');
|
||||||
this.name = 'CongoTimeoutError';
|
this.name = 'TsmdbTimeoutError';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Error thrown during write operations
|
* Error thrown during write operations
|
||||||
*/
|
*/
|
||||||
export class CongoWriteError extends CongoError {
|
export class TsmdbWriteError extends TsmdbError {
|
||||||
public writeErrors?: IWriteError[];
|
public writeErrors?: IWriteError[];
|
||||||
public result?: any;
|
public result?: any;
|
||||||
|
|
||||||
constructor(message: string, code?: number, writeErrors?: IWriteError[]) {
|
constructor(message: string, code?: number, writeErrors?: IWriteError[]) {
|
||||||
super(message, code);
|
super(message, code);
|
||||||
this.name = 'CongoWriteError';
|
this.name = 'TsmdbWriteError';
|
||||||
this.writeErrors = writeErrors;
|
this.writeErrors = writeErrors;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -52,13 +52,13 @@ export class CongoWriteError extends CongoError {
|
|||||||
/**
|
/**
|
||||||
* Error thrown for duplicate key violations
|
* Error thrown for duplicate key violations
|
||||||
*/
|
*/
|
||||||
export class CongoDuplicateKeyError extends CongoWriteError {
|
export class TsmdbDuplicateKeyError extends TsmdbWriteError {
|
||||||
public keyPattern?: Record<string, 1>;
|
public keyPattern?: Record<string, 1>;
|
||||||
public keyValue?: Record<string, any>;
|
public keyValue?: Record<string, any>;
|
||||||
|
|
||||||
constructor(message: string, keyPattern?: Record<string, 1>, keyValue?: Record<string, any>) {
|
constructor(message: string, keyPattern?: Record<string, 1>, keyValue?: Record<string, any>) {
|
||||||
super(message, 11000);
|
super(message, 11000);
|
||||||
this.name = 'CongoDuplicateKeyError';
|
this.name = 'TsmdbDuplicateKeyError';
|
||||||
this.codeName = 'DuplicateKey';
|
this.codeName = 'DuplicateKey';
|
||||||
this.keyPattern = keyPattern;
|
this.keyPattern = keyPattern;
|
||||||
this.keyValue = keyValue;
|
this.keyValue = keyValue;
|
||||||
@@ -68,13 +68,13 @@ export class CongoDuplicateKeyError extends CongoWriteError {
|
|||||||
/**
|
/**
|
||||||
* Error thrown for bulk write failures
|
* Error thrown for bulk write failures
|
||||||
*/
|
*/
|
||||||
export class CongoBulkWriteError extends CongoError {
|
export class TsmdbBulkWriteError extends TsmdbError {
|
||||||
public writeErrors: IWriteError[];
|
public writeErrors: IWriteError[];
|
||||||
public result: any;
|
public result: any;
|
||||||
|
|
||||||
constructor(message: string, writeErrors: IWriteError[], result: any) {
|
constructor(message: string, writeErrors: IWriteError[], result: any) {
|
||||||
super(message, 65);
|
super(message, 65);
|
||||||
this.name = 'CongoBulkWriteError';
|
this.name = 'TsmdbBulkWriteError';
|
||||||
this.writeErrors = writeErrors;
|
this.writeErrors = writeErrors;
|
||||||
this.result = result;
|
this.result = result;
|
||||||
}
|
}
|
||||||
@@ -83,20 +83,20 @@ export class CongoBulkWriteError extends CongoError {
|
|||||||
/**
|
/**
|
||||||
* Error thrown during transaction operations
|
* Error thrown during transaction operations
|
||||||
*/
|
*/
|
||||||
export class CongoTransactionError extends CongoError {
|
export class TsmdbTransactionError extends TsmdbError {
|
||||||
constructor(message: string, code?: number) {
|
constructor(message: string, code?: number) {
|
||||||
super(message, code);
|
super(message, code);
|
||||||
this.name = 'CongoTransactionError';
|
this.name = 'TsmdbTransactionError';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Error thrown when a transaction is aborted due to conflict
|
* Error thrown when a transaction is aborted due to conflict
|
||||||
*/
|
*/
|
||||||
export class CongoWriteConflictError extends CongoTransactionError {
|
export class TsmdbWriteConflictError extends TsmdbTransactionError {
|
||||||
constructor(message: string = 'Write conflict during transaction') {
|
constructor(message: string = 'Write conflict during transaction') {
|
||||||
super(message, 112);
|
super(message, 112);
|
||||||
this.name = 'CongoWriteConflictError';
|
this.name = 'TsmdbWriteConflictError';
|
||||||
this.codeName = 'WriteConflict';
|
this.codeName = 'WriteConflict';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -104,20 +104,20 @@ export class CongoWriteConflictError extends CongoTransactionError {
|
|||||||
/**
|
/**
|
||||||
* Error thrown for invalid arguments
|
* Error thrown for invalid arguments
|
||||||
*/
|
*/
|
||||||
export class CongoArgumentError extends CongoError {
|
export class TsmdbArgumentError extends TsmdbError {
|
||||||
constructor(message: string) {
|
constructor(message: string) {
|
||||||
super(message);
|
super(message);
|
||||||
this.name = 'CongoArgumentError';
|
this.name = 'TsmdbArgumentError';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Error thrown when an operation is not supported
|
* Error thrown when an operation is not supported
|
||||||
*/
|
*/
|
||||||
export class CongoNotSupportedError extends CongoError {
|
export class TsmdbNotSupportedError extends TsmdbError {
|
||||||
constructor(message: string) {
|
constructor(message: string) {
|
||||||
super(message, 115);
|
super(message, 115);
|
||||||
this.name = 'CongoNotSupportedError';
|
this.name = 'TsmdbNotSupportedError';
|
||||||
this.codeName = 'CommandNotSupported';
|
this.codeName = 'CommandNotSupported';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -125,20 +125,20 @@ export class CongoNotSupportedError extends CongoError {
|
|||||||
/**
|
/**
|
||||||
* Error thrown when cursor is exhausted or closed
|
* Error thrown when cursor is exhausted or closed
|
||||||
*/
|
*/
|
||||||
export class CongoCursorError extends CongoError {
|
export class TsmdbCursorError extends TsmdbError {
|
||||||
constructor(message: string) {
|
constructor(message: string) {
|
||||||
super(message);
|
super(message);
|
||||||
this.name = 'CongoCursorError';
|
this.name = 'TsmdbCursorError';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Error thrown when a namespace (database.collection) is invalid
|
* Error thrown when a namespace (database.collection) is invalid
|
||||||
*/
|
*/
|
||||||
export class CongoNamespaceError extends CongoError {
|
export class TsmdbNamespaceError extends TsmdbError {
|
||||||
constructor(message: string) {
|
constructor(message: string) {
|
||||||
super(message, 73);
|
super(message, 73);
|
||||||
this.name = 'CongoNamespaceError';
|
this.name = 'TsmdbNamespaceError';
|
||||||
this.codeName = 'InvalidNamespace';
|
this.codeName = 'InvalidNamespace';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -146,10 +146,10 @@ export class CongoNamespaceError extends CongoError {
|
|||||||
/**
|
/**
|
||||||
* Error thrown when an index operation fails
|
* Error thrown when an index operation fails
|
||||||
*/
|
*/
|
||||||
export class CongoIndexError extends CongoError {
|
export class TsmdbIndexError extends TsmdbError {
|
||||||
constructor(message: string, code?: number) {
|
constructor(message: string, code?: number) {
|
||||||
super(message, code || 86);
|
super(message, code || 86);
|
||||||
this.name = 'CongoIndexError';
|
this.name = 'TsmdbIndexError';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -164,18 +164,18 @@ export interface IWriteError {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert any error to a CongoError
|
* Convert any error to a TsmdbError
|
||||||
*/
|
*/
|
||||||
export function toCongoError(error: any): CongoError {
|
export function toTsmdbError(error: any): TsmdbError {
|
||||||
if (error instanceof CongoError) {
|
if (error instanceof TsmdbError) {
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
const congoError = new CongoError(error.message || String(error));
|
const tsmdbError = new TsmdbError(error.message || String(error));
|
||||||
if (error.code) {
|
if (error.code) {
|
||||||
congoError.code = error.code;
|
tsmdbError.code = error.code;
|
||||||
}
|
}
|
||||||
if (error.codeName) {
|
if (error.codeName) {
|
||||||
congoError.codeName = error.codeName;
|
tsmdbError.codeName = error.codeName;
|
||||||
}
|
}
|
||||||
return congoError;
|
return tsmdbError;
|
||||||
}
|
}
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
// CongoDB - MongoDB Wire Protocol compatible in-memory database server
|
// TsmDB - MongoDB Wire Protocol compatible in-memory database server
|
||||||
// Use the official MongoDB driver to connect to CongoServer
|
// Use the official MongoDB driver to connect to TsmdbServer
|
||||||
|
|
||||||
// Re-export plugins for external use
|
// Re-export plugins for external use
|
||||||
import * as plugins from './congodb.plugins.js';
|
import * as plugins from './tsmdb.plugins.js';
|
||||||
export { plugins };
|
export { plugins };
|
||||||
|
|
||||||
// Export BSON types for convenience
|
// Export BSON types for convenience
|
||||||
@@ -12,13 +12,15 @@ export { ObjectId, Binary, Timestamp, Long, Decimal128, UUID } from 'bson';
|
|||||||
export * from './types/interfaces.js';
|
export * from './types/interfaces.js';
|
||||||
|
|
||||||
// Export errors
|
// Export errors
|
||||||
export * from './errors/CongoErrors.js';
|
export * from './errors/TsmdbErrors.js';
|
||||||
|
|
||||||
// Export storage adapters
|
// Export storage adapters
|
||||||
export type { IStorageAdapter } from './storage/IStorageAdapter.js';
|
export type { IStorageAdapter } from './storage/IStorageAdapter.js';
|
||||||
export { MemoryStorageAdapter } from './storage/MemoryStorageAdapter.js';
|
export { MemoryStorageAdapter } from './storage/MemoryStorageAdapter.js';
|
||||||
export { FileStorageAdapter } from './storage/FileStorageAdapter.js';
|
export { FileStorageAdapter } from './storage/FileStorageAdapter.js';
|
||||||
export { OpLog } from './storage/OpLog.js';
|
export { OpLog } from './storage/OpLog.js';
|
||||||
|
export { WAL } from './storage/WAL.js';
|
||||||
|
export type { IWalEntry, TWalOperation } from './storage/WAL.js';
|
||||||
|
|
||||||
// Export engines
|
// Export engines
|
||||||
export { QueryEngine } from './engine/QueryEngine.js';
|
export { QueryEngine } from './engine/QueryEngine.js';
|
||||||
@@ -26,12 +28,19 @@ export { UpdateEngine } from './engine/UpdateEngine.js';
|
|||||||
export { AggregationEngine } from './engine/AggregationEngine.js';
|
export { AggregationEngine } from './engine/AggregationEngine.js';
|
||||||
export { IndexEngine } from './engine/IndexEngine.js';
|
export { IndexEngine } from './engine/IndexEngine.js';
|
||||||
export { TransactionEngine } from './engine/TransactionEngine.js';
|
export { TransactionEngine } from './engine/TransactionEngine.js';
|
||||||
|
export { QueryPlanner } from './engine/QueryPlanner.js';
|
||||||
|
export type { IQueryPlan, TQueryPlanType } from './engine/QueryPlanner.js';
|
||||||
|
export { SessionEngine } from './engine/SessionEngine.js';
|
||||||
|
export type { ISession, ISessionEngineOptions } from './engine/SessionEngine.js';
|
||||||
|
|
||||||
// Export server (the main entry point for using CongoDB)
|
// Export server (the main entry point for using TsmDB)
|
||||||
export { CongoServer } from './server/CongoServer.js';
|
export { TsmdbServer } from './server/TsmdbServer.js';
|
||||||
export type { ICongoServerOptions } from './server/CongoServer.js';
|
export type { ITsmdbServerOptions } from './server/TsmdbServer.js';
|
||||||
|
|
||||||
// Export wire protocol utilities (for advanced usage)
|
// Export wire protocol utilities (for advanced usage)
|
||||||
export { WireProtocol } from './server/WireProtocol.js';
|
export { WireProtocol } from './server/WireProtocol.js';
|
||||||
export { CommandRouter } from './server/CommandRouter.js';
|
export { CommandRouter } from './server/CommandRouter.js';
|
||||||
export type { ICommandHandler, IHandlerContext, ICursorState } from './server/CommandRouter.js';
|
export type { ICommandHandler, IHandlerContext, ICursorState } from './server/CommandRouter.js';
|
||||||
|
|
||||||
|
// Export utilities
|
||||||
|
export * from './utils/checksum.js';
|
||||||
@@ -1,7 +1,10 @@
|
|||||||
import * as plugins from '../congodb.plugins.js';
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
import type { IStorageAdapter } from '../storage/IStorageAdapter.js';
|
import type { IStorageAdapter } from '../storage/IStorageAdapter.js';
|
||||||
import type { IParsedCommand } from './WireProtocol.js';
|
import type { IParsedCommand } from './WireProtocol.js';
|
||||||
import type { CongoServer } from './CongoServer.js';
|
import type { TsmdbServer } from './TsmdbServer.js';
|
||||||
|
import { IndexEngine } from '../engine/IndexEngine.js';
|
||||||
|
import { TransactionEngine } from '../engine/TransactionEngine.js';
|
||||||
|
import { SessionEngine } from '../engine/SessionEngine.js';
|
||||||
|
|
||||||
// Import handlers
|
// Import handlers
|
||||||
import { HelloHandler } from './handlers/HelloHandler.js';
|
import { HelloHandler } from './handlers/HelloHandler.js';
|
||||||
@@ -18,10 +21,20 @@ import { AdminHandler } from './handlers/AdminHandler.js';
|
|||||||
*/
|
*/
|
||||||
export interface IHandlerContext {
|
export interface IHandlerContext {
|
||||||
storage: IStorageAdapter;
|
storage: IStorageAdapter;
|
||||||
server: CongoServer;
|
server: TsmdbServer;
|
||||||
database: string;
|
database: string;
|
||||||
command: plugins.bson.Document;
|
command: plugins.bson.Document;
|
||||||
documentSequences?: Map<string, plugins.bson.Document[]>;
|
documentSequences?: Map<string, plugins.bson.Document[]>;
|
||||||
|
/** Get or create an IndexEngine for a collection */
|
||||||
|
getIndexEngine: (collName: string) => IndexEngine;
|
||||||
|
/** Transaction engine instance */
|
||||||
|
transactionEngine: TransactionEngine;
|
||||||
|
/** Current transaction ID (if in a transaction) */
|
||||||
|
txnId?: string;
|
||||||
|
/** Session ID (from lsid) */
|
||||||
|
sessionId?: string;
|
||||||
|
/** Session engine instance */
|
||||||
|
sessionEngine: SessionEngine;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -36,19 +49,61 @@ export interface ICommandHandler {
|
|||||||
*/
|
*/
|
||||||
export class CommandRouter {
|
export class CommandRouter {
|
||||||
private storage: IStorageAdapter;
|
private storage: IStorageAdapter;
|
||||||
private server: CongoServer;
|
private server: TsmdbServer;
|
||||||
private handlers: Map<string, ICommandHandler> = new Map();
|
private handlers: Map<string, ICommandHandler> = new Map();
|
||||||
|
|
||||||
// Cursor state for getMore operations
|
// Cursor state for getMore operations
|
||||||
private cursors: Map<bigint, ICursorState> = new Map();
|
private cursors: Map<bigint, ICursorState> = new Map();
|
||||||
private cursorIdCounter: bigint = BigInt(1);
|
private cursorIdCounter: bigint = BigInt(1);
|
||||||
|
|
||||||
constructor(storage: IStorageAdapter, server: CongoServer) {
|
// Index engine cache: db.collection -> IndexEngine
|
||||||
|
private indexEngines: Map<string, IndexEngine> = new Map();
|
||||||
|
|
||||||
|
// Transaction engine (shared across all handlers)
|
||||||
|
private transactionEngine: TransactionEngine;
|
||||||
|
|
||||||
|
// Session engine (shared across all handlers)
|
||||||
|
private sessionEngine: SessionEngine;
|
||||||
|
|
||||||
|
constructor(storage: IStorageAdapter, server: TsmdbServer) {
|
||||||
this.storage = storage;
|
this.storage = storage;
|
||||||
this.server = server;
|
this.server = server;
|
||||||
|
this.transactionEngine = new TransactionEngine(storage);
|
||||||
|
this.sessionEngine = new SessionEngine();
|
||||||
|
// Link session engine to transaction engine for auto-abort on session expiry
|
||||||
|
this.sessionEngine.setTransactionEngine(this.transactionEngine);
|
||||||
this.registerHandlers();
|
this.registerHandlers();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get or create an IndexEngine for a database.collection
|
||||||
|
*/
|
||||||
|
getIndexEngine(dbName: string, collName: string): IndexEngine {
|
||||||
|
const key = `${dbName}.${collName}`;
|
||||||
|
let engine = this.indexEngines.get(key);
|
||||||
|
if (!engine) {
|
||||||
|
engine = new IndexEngine(dbName, collName, this.storage);
|
||||||
|
this.indexEngines.set(key, engine);
|
||||||
|
}
|
||||||
|
return engine;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clear index engine cache for a collection (used when collection is dropped)
|
||||||
|
*/
|
||||||
|
clearIndexEngineCache(dbName: string, collName?: string): void {
|
||||||
|
if (collName) {
|
||||||
|
this.indexEngines.delete(`${dbName}.${collName}`);
|
||||||
|
} else {
|
||||||
|
// Clear all engines for the database
|
||||||
|
for (const key of this.indexEngines.keys()) {
|
||||||
|
if (key.startsWith(`${dbName}.`)) {
|
||||||
|
this.indexEngines.delete(key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register all command handlers
|
* Register all command handlers
|
||||||
*/
|
*/
|
||||||
@@ -120,6 +175,29 @@ export class CommandRouter {
|
|||||||
async route(parsedCommand: IParsedCommand): Promise<plugins.bson.Document> {
|
async route(parsedCommand: IParsedCommand): Promise<plugins.bson.Document> {
|
||||||
const { commandName, command, database, documentSequences } = parsedCommand;
|
const { commandName, command, database, documentSequences } = parsedCommand;
|
||||||
|
|
||||||
|
// Extract session ID from lsid using SessionEngine helper
|
||||||
|
let sessionId = SessionEngine.extractSessionId(command.lsid);
|
||||||
|
let txnId: string | undefined;
|
||||||
|
|
||||||
|
// If we have a session ID, register/touch the session
|
||||||
|
if (sessionId) {
|
||||||
|
this.sessionEngine.getOrCreateSession(sessionId);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if this starts a new transaction
|
||||||
|
if (command.startTransaction && sessionId) {
|
||||||
|
txnId = this.transactionEngine.startTransaction(sessionId);
|
||||||
|
this.sessionEngine.startTransaction(sessionId, txnId, command.txnNumber);
|
||||||
|
} else if (sessionId && this.sessionEngine.isInTransaction(sessionId)) {
|
||||||
|
// Continue existing transaction
|
||||||
|
txnId = this.sessionEngine.getTransactionId(sessionId);
|
||||||
|
// Verify transaction is still active
|
||||||
|
if (txnId && !this.transactionEngine.isActive(txnId)) {
|
||||||
|
this.sessionEngine.endTransaction(sessionId);
|
||||||
|
txnId = undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Create handler context
|
// Create handler context
|
||||||
const context: IHandlerContext = {
|
const context: IHandlerContext = {
|
||||||
storage: this.storage,
|
storage: this.storage,
|
||||||
@@ -127,6 +205,11 @@ export class CommandRouter {
|
|||||||
database,
|
database,
|
||||||
command,
|
command,
|
||||||
documentSequences,
|
documentSequences,
|
||||||
|
getIndexEngine: (collName: string) => this.getIndexEngine(database, collName),
|
||||||
|
transactionEngine: this.transactionEngine,
|
||||||
|
sessionEngine: this.sessionEngine,
|
||||||
|
txnId,
|
||||||
|
sessionId,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Find handler
|
// Find handler
|
||||||
@@ -164,6 +247,32 @@ export class CommandRouter {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Close the command router and cleanup resources
|
||||||
|
*/
|
||||||
|
close(): void {
|
||||||
|
// Close session engine (stops cleanup interval, clears sessions)
|
||||||
|
this.sessionEngine.close();
|
||||||
|
// Clear cursors
|
||||||
|
this.cursors.clear();
|
||||||
|
// Clear index engine cache
|
||||||
|
this.indexEngines.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get session engine (for administrative purposes)
|
||||||
|
*/
|
||||||
|
getSessionEngine(): SessionEngine {
|
||||||
|
return this.sessionEngine;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get transaction engine (for administrative purposes)
|
||||||
|
*/
|
||||||
|
getTransactionEngine(): TransactionEngine {
|
||||||
|
return this.transactionEngine;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import * as net from 'net';
|
import * as net from 'net';
|
||||||
import * as plugins from '../congodb.plugins.js';
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
import { WireProtocol, OP_QUERY } from './WireProtocol.js';
|
import { WireProtocol, OP_QUERY } from './WireProtocol.js';
|
||||||
import { CommandRouter } from './CommandRouter.js';
|
import { CommandRouter } from './CommandRouter.js';
|
||||||
import { MemoryStorageAdapter } from '../storage/MemoryStorageAdapter.js';
|
import { MemoryStorageAdapter } from '../storage/MemoryStorageAdapter.js';
|
||||||
@@ -9,7 +9,7 @@ import type { IStorageAdapter } from '../storage/IStorageAdapter.js';
|
|||||||
/**
|
/**
|
||||||
* Server configuration options
|
* Server configuration options
|
||||||
*/
|
*/
|
||||||
export interface ICongoServerOptions {
|
export interface ITsmdbServerOptions {
|
||||||
/** Port to listen on (default: 27017) */
|
/** Port to listen on (default: 27017) */
|
||||||
port?: number;
|
port?: number;
|
||||||
/** Host to bind to (default: 127.0.0.1) */
|
/** Host to bind to (default: 127.0.0.1) */
|
||||||
@@ -36,25 +36,25 @@ interface IConnectionState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CongoServer - MongoDB Wire Protocol compatible server
|
* TsmdbServer - MongoDB Wire Protocol compatible server
|
||||||
*
|
*
|
||||||
* This server implements the MongoDB wire protocol (OP_MSG) to allow
|
* This server implements the MongoDB wire protocol (OP_MSG) to allow
|
||||||
* official MongoDB drivers to connect and perform operations.
|
* official MongoDB drivers to connect and perform operations.
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* ```typescript
|
* ```typescript
|
||||||
* import { CongoServer } from '@push.rocks/smartmongo/congodb';
|
* import { TsmdbServer } from '@push.rocks/smartmongo/tsmdb';
|
||||||
* import { MongoClient } from 'mongodb';
|
* import { MongoClient } from 'mongodb';
|
||||||
*
|
*
|
||||||
* const server = new CongoServer({ port: 27017 });
|
* const server = new TsmdbServer({ port: 27017 });
|
||||||
* await server.start();
|
* await server.start();
|
||||||
*
|
*
|
||||||
* const client = new MongoClient('mongodb://127.0.0.1:27017');
|
* const client = new MongoClient('mongodb://127.0.0.1:27017');
|
||||||
* await client.connect();
|
* await client.connect();
|
||||||
* ```
|
* ```
|
||||||
*/
|
*/
|
||||||
export class CongoServer {
|
export class TsmdbServer {
|
||||||
private options: Required<ICongoServerOptions>;
|
private options: Required<ITsmdbServerOptions>;
|
||||||
private server: net.Server | null = null;
|
private server: net.Server | null = null;
|
||||||
private storage: IStorageAdapter;
|
private storage: IStorageAdapter;
|
||||||
private commandRouter: CommandRouter;
|
private commandRouter: CommandRouter;
|
||||||
@@ -63,7 +63,7 @@ export class CongoServer {
|
|||||||
private isRunning = false;
|
private isRunning = false;
|
||||||
private startTime: Date = new Date();
|
private startTime: Date = new Date();
|
||||||
|
|
||||||
constructor(options: ICongoServerOptions = {}) {
|
constructor(options: ITsmdbServerOptions = {}) {
|
||||||
this.options = {
|
this.options = {
|
||||||
port: options.port ?? 27017,
|
port: options.port ?? 27017,
|
||||||
host: options.host ?? '127.0.0.1',
|
host: options.host ?? '127.0.0.1',
|
||||||
@@ -154,6 +154,9 @@ export class CongoServer {
|
|||||||
}
|
}
|
||||||
this.connections.clear();
|
this.connections.clear();
|
||||||
|
|
||||||
|
// Close command router (cleans up session engine, cursors, etc.)
|
||||||
|
this.commandRouter.close();
|
||||||
|
|
||||||
// Close storage
|
// Close storage
|
||||||
await this.storage.close();
|
await this.storage.close();
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as plugins from '../congodb.plugins.js';
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* MongoDB Wire Protocol Implementation
|
* MongoDB Wire Protocol Implementation
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
import * as plugins from '../../congodb.plugins.js';
|
import * as plugins from '../../tsmdb.plugins.js';
|
||||||
import type { ICommandHandler, IHandlerContext } from '../CommandRouter.js';
|
import type { ICommandHandler, IHandlerContext } from '../CommandRouter.js';
|
||||||
|
import { SessionEngine } from '../../engine/SessionEngine.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* AdminHandler - Handles administrative commands
|
* AdminHandler - Handles administrative commands
|
||||||
@@ -237,16 +238,18 @@ export class AdminHandler implements ICommandHandler {
|
|||||||
* Handle serverStatus command
|
* Handle serverStatus command
|
||||||
*/
|
*/
|
||||||
private async handleServerStatus(context: IHandlerContext): Promise<plugins.bson.Document> {
|
private async handleServerStatus(context: IHandlerContext): Promise<plugins.bson.Document> {
|
||||||
const { server } = context;
|
const { server, sessionEngine } = context;
|
||||||
|
|
||||||
const uptime = server.getUptime();
|
const uptime = server.getUptime();
|
||||||
const connections = server.getConnectionCount();
|
const connections = server.getConnectionCount();
|
||||||
|
const sessions = sessionEngine.listSessions();
|
||||||
|
const sessionsWithTxn = sessionEngine.getSessionsWithTransactions();
|
||||||
|
|
||||||
return {
|
return {
|
||||||
ok: 1,
|
ok: 1,
|
||||||
host: `${server.host}:${server.port}`,
|
host: `${server.host}:${server.port}`,
|
||||||
version: '7.0.0',
|
version: '7.0.0',
|
||||||
process: 'congodb',
|
process: 'tsmdb',
|
||||||
pid: process.pid,
|
pid: process.pid,
|
||||||
uptime,
|
uptime,
|
||||||
uptimeMillis: uptime * 1000,
|
uptimeMillis: uptime * 1000,
|
||||||
@@ -263,13 +266,33 @@ export class AdminHandler implements ICommandHandler {
|
|||||||
totalCreated: connections,
|
totalCreated: connections,
|
||||||
active: connections,
|
active: connections,
|
||||||
},
|
},
|
||||||
|
logicalSessionRecordCache: {
|
||||||
|
activeSessionsCount: sessions.length,
|
||||||
|
sessionsCollectionJobCount: 0,
|
||||||
|
lastSessionsCollectionJobDurationMillis: 0,
|
||||||
|
lastSessionsCollectionJobTimestamp: new Date(),
|
||||||
|
transactionReaperJobCount: 0,
|
||||||
|
lastTransactionReaperJobDurationMillis: 0,
|
||||||
|
lastTransactionReaperJobTimestamp: new Date(),
|
||||||
|
},
|
||||||
|
transactions: {
|
||||||
|
retriedCommandsCount: 0,
|
||||||
|
retriedStatementsCount: 0,
|
||||||
|
transactionsCollectionWriteCount: 0,
|
||||||
|
currentActive: sessionsWithTxn.length,
|
||||||
|
currentInactive: 0,
|
||||||
|
currentOpen: sessionsWithTxn.length,
|
||||||
|
totalStarted: sessionsWithTxn.length,
|
||||||
|
totalCommitted: 0,
|
||||||
|
totalAborted: 0,
|
||||||
|
},
|
||||||
network: {
|
network: {
|
||||||
bytesIn: 0,
|
bytesIn: 0,
|
||||||
bytesOut: 0,
|
bytesOut: 0,
|
||||||
numRequests: 0,
|
numRequests: 0,
|
||||||
},
|
},
|
||||||
storageEngine: {
|
storageEngine: {
|
||||||
name: 'congodb',
|
name: 'tsmdb',
|
||||||
supportsCommittedReads: true,
|
supportsCommittedReads: true,
|
||||||
persistent: false,
|
persistent: false,
|
||||||
},
|
},
|
||||||
@@ -283,7 +306,7 @@ export class AdminHandler implements ICommandHandler {
|
|||||||
return {
|
return {
|
||||||
ok: 1,
|
ok: 1,
|
||||||
version: '7.0.0',
|
version: '7.0.0',
|
||||||
gitVersion: 'congodb',
|
gitVersion: 'tsmdb',
|
||||||
modules: [],
|
modules: [],
|
||||||
allocator: 'system',
|
allocator: 'system',
|
||||||
javascriptEngine: 'none',
|
javascriptEngine: 'none',
|
||||||
@@ -294,7 +317,7 @@ export class AdminHandler implements ICommandHandler {
|
|||||||
compiled: 'disabled',
|
compiled: 'disabled',
|
||||||
},
|
},
|
||||||
buildEnvironment: {
|
buildEnvironment: {
|
||||||
distmod: 'congodb',
|
distmod: 'tsmdb',
|
||||||
distarch: process.arch,
|
distarch: process.arch,
|
||||||
cc: '',
|
cc: '',
|
||||||
ccflags: '',
|
ccflags: '',
|
||||||
@@ -307,7 +330,7 @@ export class AdminHandler implements ICommandHandler {
|
|||||||
bits: 64,
|
bits: 64,
|
||||||
debug: false,
|
debug: false,
|
||||||
maxBsonObjectSize: 16777216,
|
maxBsonObjectSize: 16777216,
|
||||||
storageEngines: ['congodb'],
|
storageEngines: ['tsmdb'],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -409,6 +432,17 @@ export class AdminHandler implements ICommandHandler {
|
|||||||
* Handle endSessions command
|
* Handle endSessions command
|
||||||
*/
|
*/
|
||||||
private async handleEndSessions(context: IHandlerContext): Promise<plugins.bson.Document> {
|
private async handleEndSessions(context: IHandlerContext): Promise<plugins.bson.Document> {
|
||||||
|
const { command, sessionEngine } = context;
|
||||||
|
|
||||||
|
// End each session in the array
|
||||||
|
const sessions = command.endSessions || [];
|
||||||
|
for (const sessionSpec of sessions) {
|
||||||
|
const sessionId = SessionEngine.extractSessionId(sessionSpec);
|
||||||
|
if (sessionId) {
|
||||||
|
await sessionEngine.endSession(sessionId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return { ok: 1 };
|
return { ok: 1 };
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -416,16 +450,87 @@ export class AdminHandler implements ICommandHandler {
|
|||||||
* Handle abortTransaction command
|
* Handle abortTransaction command
|
||||||
*/
|
*/
|
||||||
private async handleAbortTransaction(context: IHandlerContext): Promise<plugins.bson.Document> {
|
private async handleAbortTransaction(context: IHandlerContext): Promise<plugins.bson.Document> {
|
||||||
// Transactions are not fully supported, but acknowledge the command
|
const { transactionEngine, sessionEngine, txnId, sessionId } = context;
|
||||||
|
|
||||||
|
if (!txnId) {
|
||||||
|
return {
|
||||||
|
ok: 0,
|
||||||
|
errmsg: 'No transaction started',
|
||||||
|
code: 251,
|
||||||
|
codeName: 'NoSuchTransaction',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
await transactionEngine.abortTransaction(txnId);
|
||||||
|
transactionEngine.endTransaction(txnId);
|
||||||
|
// Update session state
|
||||||
|
if (sessionId) {
|
||||||
|
sessionEngine.endTransaction(sessionId);
|
||||||
|
}
|
||||||
return { ok: 1 };
|
return { ok: 1 };
|
||||||
|
} catch (error: any) {
|
||||||
|
return {
|
||||||
|
ok: 0,
|
||||||
|
errmsg: error.message || 'Abort transaction failed',
|
||||||
|
code: error.code || 1,
|
||||||
|
codeName: error.codeName || 'UnknownError',
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle commitTransaction command
|
* Handle commitTransaction command
|
||||||
*/
|
*/
|
||||||
private async handleCommitTransaction(context: IHandlerContext): Promise<plugins.bson.Document> {
|
private async handleCommitTransaction(context: IHandlerContext): Promise<plugins.bson.Document> {
|
||||||
// Transactions are not fully supported, but acknowledge the command
|
const { transactionEngine, sessionEngine, txnId, sessionId } = context;
|
||||||
|
|
||||||
|
if (!txnId) {
|
||||||
|
return {
|
||||||
|
ok: 0,
|
||||||
|
errmsg: 'No transaction started',
|
||||||
|
code: 251,
|
||||||
|
codeName: 'NoSuchTransaction',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
await transactionEngine.commitTransaction(txnId);
|
||||||
|
transactionEngine.endTransaction(txnId);
|
||||||
|
// Update session state
|
||||||
|
if (sessionId) {
|
||||||
|
sessionEngine.endTransaction(sessionId);
|
||||||
|
}
|
||||||
return { ok: 1 };
|
return { ok: 1 };
|
||||||
|
} catch (error: any) {
|
||||||
|
// If commit fails, transaction should be aborted
|
||||||
|
try {
|
||||||
|
await transactionEngine.abortTransaction(txnId);
|
||||||
|
transactionEngine.endTransaction(txnId);
|
||||||
|
if (sessionId) {
|
||||||
|
sessionEngine.endTransaction(sessionId);
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
// Ignore abort errors
|
||||||
|
}
|
||||||
|
|
||||||
|
if (error.code === 112) {
|
||||||
|
// Write conflict
|
||||||
|
return {
|
||||||
|
ok: 0,
|
||||||
|
errmsg: error.message || 'Write conflict during commit',
|
||||||
|
code: 112,
|
||||||
|
codeName: 'WriteConflict',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
ok: 0,
|
||||||
|
errmsg: error.message || 'Commit transaction failed',
|
||||||
|
code: error.code || 1,
|
||||||
|
codeName: error.codeName || 'UnknownError',
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as plugins from '../../congodb.plugins.js';
|
import * as plugins from '../../tsmdb.plugins.js';
|
||||||
import type { ICommandHandler, IHandlerContext, ICursorState } from '../CommandRouter.js';
|
import type { ICommandHandler, IHandlerContext, ICursorState } from '../CommandRouter.js';
|
||||||
import { AggregationEngine } from '../../engine/AggregationEngine.js';
|
import { AggregationEngine } from '../../engine/AggregationEngine.js';
|
||||||
|
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
import * as plugins from '../../congodb.plugins.js';
|
import * as plugins from '../../tsmdb.plugins.js';
|
||||||
import type { ICommandHandler, IHandlerContext } from '../CommandRouter.js';
|
import type { ICommandHandler, IHandlerContext } from '../CommandRouter.js';
|
||||||
|
import type { IStoredDocument } from '../../types/interfaces.js';
|
||||||
import { QueryEngine } from '../../engine/QueryEngine.js';
|
import { QueryEngine } from '../../engine/QueryEngine.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -47,6 +48,8 @@ export class DeleteHandler implements ICommandHandler {
|
|||||||
return { ok: 1, n: 0 };
|
return { ok: 1, n: 0 };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const indexEngine = context.getIndexEngine(collection);
|
||||||
|
|
||||||
for (let i = 0; i < deletes.length; i++) {
|
for (let i = 0; i < deletes.length; i++) {
|
||||||
const deleteSpec = deletes[i];
|
const deleteSpec = deletes[i];
|
||||||
const filter = deleteSpec.q || deleteSpec.filter || {};
|
const filter = deleteSpec.q || deleteSpec.filter || {};
|
||||||
@@ -56,8 +59,15 @@ export class DeleteHandler implements ICommandHandler {
|
|||||||
const deleteAll = limit === 0;
|
const deleteAll = limit === 0;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Get all documents
|
// Try to use index-accelerated query
|
||||||
const documents = await storage.findAll(database, collection);
|
const candidateIds = await indexEngine.findCandidateIds(filter);
|
||||||
|
|
||||||
|
let documents: IStoredDocument[];
|
||||||
|
if (candidateIds !== null) {
|
||||||
|
documents = await storage.findByIds(database, collection, candidateIds);
|
||||||
|
} else {
|
||||||
|
documents = await storage.findAll(database, collection);
|
||||||
|
}
|
||||||
|
|
||||||
// Apply filter
|
// Apply filter
|
||||||
const matchingDocs = QueryEngine.filter(documents, filter);
|
const matchingDocs = QueryEngine.filter(documents, filter);
|
||||||
@@ -69,6 +79,11 @@ export class DeleteHandler implements ICommandHandler {
|
|||||||
// Determine which documents to delete
|
// Determine which documents to delete
|
||||||
const docsToDelete = deleteAll ? matchingDocs : matchingDocs.slice(0, 1);
|
const docsToDelete = deleteAll ? matchingDocs : matchingDocs.slice(0, 1);
|
||||||
|
|
||||||
|
// Update indexes for deleted documents
|
||||||
|
for (const doc of docsToDelete) {
|
||||||
|
await indexEngine.onDelete(doc as any);
|
||||||
|
}
|
||||||
|
|
||||||
// Delete the documents
|
// Delete the documents
|
||||||
const idsToDelete = docsToDelete.map(doc => doc._id);
|
const idsToDelete = docsToDelete.map(doc => doc._id);
|
||||||
const deleted = await storage.deleteByIds(database, collection, idsToDelete);
|
const deleted = await storage.deleteByIds(database, collection, idsToDelete);
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
import * as plugins from '../../congodb.plugins.js';
|
import * as plugins from '../../tsmdb.plugins.js';
|
||||||
import type { ICommandHandler, IHandlerContext, ICursorState } from '../CommandRouter.js';
|
import type { ICommandHandler, IHandlerContext, ICursorState } from '../CommandRouter.js';
|
||||||
|
import type { IStoredDocument } from '../../types/interfaces.js';
|
||||||
import { QueryEngine } from '../../engine/QueryEngine.js';
|
import { QueryEngine } from '../../engine/QueryEngine.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -45,7 +46,7 @@ export class FindHandler implements ICommandHandler {
|
|||||||
* Handle find command
|
* Handle find command
|
||||||
*/
|
*/
|
||||||
private async handleFind(context: IHandlerContext): Promise<plugins.bson.Document> {
|
private async handleFind(context: IHandlerContext): Promise<plugins.bson.Document> {
|
||||||
const { storage, database, command } = context;
|
const { storage, database, command, getIndexEngine } = context;
|
||||||
|
|
||||||
const collection = command.find;
|
const collection = command.find;
|
||||||
const filter = command.filter || {};
|
const filter = command.filter || {};
|
||||||
@@ -70,11 +71,22 @@ export class FindHandler implements ICommandHandler {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get all documents
|
// Try to use index-accelerated query
|
||||||
let documents = await storage.findAll(database, collection);
|
const indexEngine = getIndexEngine(collection);
|
||||||
|
const candidateIds = await indexEngine.findCandidateIds(filter);
|
||||||
|
|
||||||
|
let documents: IStoredDocument[];
|
||||||
|
if (candidateIds !== null) {
|
||||||
|
// Index hit - fetch only candidate documents
|
||||||
|
documents = await storage.findByIds(database, collection, candidateIds);
|
||||||
|
// Still apply filter for any conditions the index couldn't fully satisfy
|
||||||
|
documents = QueryEngine.filter(documents, filter);
|
||||||
|
} else {
|
||||||
|
// No suitable index - full collection scan
|
||||||
|
documents = await storage.findAll(database, collection);
|
||||||
// Apply filter
|
// Apply filter
|
||||||
documents = QueryEngine.filter(documents, filter);
|
documents = QueryEngine.filter(documents, filter);
|
||||||
|
}
|
||||||
|
|
||||||
// Apply sort
|
// Apply sort
|
||||||
if (sort) {
|
if (sort) {
|
||||||
@@ -233,7 +245,7 @@ export class FindHandler implements ICommandHandler {
|
|||||||
* Handle count command
|
* Handle count command
|
||||||
*/
|
*/
|
||||||
private async handleCount(context: IHandlerContext): Promise<plugins.bson.Document> {
|
private async handleCount(context: IHandlerContext): Promise<plugins.bson.Document> {
|
||||||
const { storage, database, command } = context;
|
const { storage, database, command, getIndexEngine } = context;
|
||||||
|
|
||||||
const collection = command.count;
|
const collection = command.count;
|
||||||
const query = command.query || {};
|
const query = command.query || {};
|
||||||
@@ -246,11 +258,20 @@ export class FindHandler implements ICommandHandler {
|
|||||||
return { ok: 1, n: 0 };
|
return { ok: 1, n: 0 };
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get all documents
|
// Try to use index-accelerated query
|
||||||
let documents = await storage.findAll(database, collection);
|
const indexEngine = getIndexEngine(collection);
|
||||||
|
const candidateIds = await indexEngine.findCandidateIds(query);
|
||||||
|
|
||||||
// Apply filter
|
let documents: IStoredDocument[];
|
||||||
|
if (candidateIds !== null) {
|
||||||
|
// Index hit - fetch only candidate documents
|
||||||
|
documents = await storage.findByIds(database, collection, candidateIds);
|
||||||
documents = QueryEngine.filter(documents, query);
|
documents = QueryEngine.filter(documents, query);
|
||||||
|
} else {
|
||||||
|
// No suitable index - full collection scan
|
||||||
|
documents = await storage.findAll(database, collection);
|
||||||
|
documents = QueryEngine.filter(documents, query);
|
||||||
|
}
|
||||||
|
|
||||||
// Apply skip
|
// Apply skip
|
||||||
if (skip > 0) {
|
if (skip > 0) {
|
||||||
@@ -269,7 +290,7 @@ export class FindHandler implements ICommandHandler {
|
|||||||
* Handle distinct command
|
* Handle distinct command
|
||||||
*/
|
*/
|
||||||
private async handleDistinct(context: IHandlerContext): Promise<plugins.bson.Document> {
|
private async handleDistinct(context: IHandlerContext): Promise<plugins.bson.Document> {
|
||||||
const { storage, database, command } = context;
|
const { storage, database, command, getIndexEngine } = context;
|
||||||
|
|
||||||
const collection = command.distinct;
|
const collection = command.distinct;
|
||||||
const key = command.key;
|
const key = command.key;
|
||||||
@@ -290,8 +311,16 @@ export class FindHandler implements ICommandHandler {
|
|||||||
return { ok: 1, values: [] };
|
return { ok: 1, values: [] };
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get all documents
|
// Try to use index-accelerated query
|
||||||
const documents = await storage.findAll(database, collection);
|
const indexEngine = getIndexEngine(collection);
|
||||||
|
const candidateIds = await indexEngine.findCandidateIds(query);
|
||||||
|
|
||||||
|
let documents: IStoredDocument[];
|
||||||
|
if (candidateIds !== null) {
|
||||||
|
documents = await storage.findByIds(database, collection, candidateIds);
|
||||||
|
} else {
|
||||||
|
documents = await storage.findAll(database, collection);
|
||||||
|
}
|
||||||
|
|
||||||
// Get distinct values
|
// Get distinct values
|
||||||
const values = QueryEngine.distinct(documents, key, query);
|
const values = QueryEngine.distinct(documents, key, query);
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as plugins from '../../congodb.plugins.js';
|
import * as plugins from '../../tsmdb.plugins.js';
|
||||||
import type { ICommandHandler, IHandlerContext } from '../CommandRouter.js';
|
import type { ICommandHandler, IHandlerContext } from '../CommandRouter.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as plugins from '../../congodb.plugins.js';
|
import * as plugins from '../../tsmdb.plugins.js';
|
||||||
import type { ICommandHandler, IHandlerContext } from '../CommandRouter.js';
|
import type { ICommandHandler, IHandlerContext } from '../CommandRouter.js';
|
||||||
import { IndexEngine } from '../../engine/IndexEngine.js';
|
import { IndexEngine } from '../../engine/IndexEngine.js';
|
||||||
|
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
import * as plugins from '../../congodb.plugins.js';
|
import * as plugins from '../../tsmdb.plugins.js';
|
||||||
import type { ICommandHandler, IHandlerContext } from '../CommandRouter.js';
|
import type { ICommandHandler, IHandlerContext } from '../CommandRouter.js';
|
||||||
|
import type { IStoredDocument } from '../../types/interfaces.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* InsertHandler - Handles insert commands
|
* InsertHandler - Handles insert commands
|
||||||
@@ -42,6 +43,8 @@ export class InsertHandler implements ICommandHandler {
|
|||||||
// Ensure collection exists
|
// Ensure collection exists
|
||||||
await storage.createCollection(database, collection);
|
await storage.createCollection(database, collection);
|
||||||
|
|
||||||
|
const indexEngine = context.getIndexEngine(collection);
|
||||||
|
|
||||||
// Insert documents
|
// Insert documents
|
||||||
for (let i = 0; i < documents.length; i++) {
|
for (let i = 0; i < documents.length; i++) {
|
||||||
const doc = documents[i];
|
const doc = documents[i];
|
||||||
@@ -52,6 +55,9 @@ export class InsertHandler implements ICommandHandler {
|
|||||||
doc._id = new plugins.bson.ObjectId();
|
doc._id = new plugins.bson.ObjectId();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check index constraints before insert (doc now has _id)
|
||||||
|
await indexEngine.onInsert(doc as IStoredDocument);
|
||||||
|
|
||||||
await storage.insertOne(database, collection, doc);
|
await storage.insertOne(database, collection, doc);
|
||||||
insertedCount++;
|
insertedCount++;
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
import * as plugins from '../../congodb.plugins.js';
|
import * as plugins from '../../tsmdb.plugins.js';
|
||||||
import type { ICommandHandler, IHandlerContext } from '../CommandRouter.js';
|
import type { ICommandHandler, IHandlerContext } from '../CommandRouter.js';
|
||||||
|
import type { IStoredDocument } from '../../types/interfaces.js';
|
||||||
import { QueryEngine } from '../../engine/QueryEngine.js';
|
import { QueryEngine } from '../../engine/QueryEngine.js';
|
||||||
import { UpdateEngine } from '../../engine/UpdateEngine.js';
|
import { UpdateEngine } from '../../engine/UpdateEngine.js';
|
||||||
|
|
||||||
@@ -69,6 +70,8 @@ export class UpdateHandler implements ICommandHandler {
|
|||||||
// Ensure collection exists
|
// Ensure collection exists
|
||||||
await storage.createCollection(database, collection);
|
await storage.createCollection(database, collection);
|
||||||
|
|
||||||
|
const indexEngine = context.getIndexEngine(collection);
|
||||||
|
|
||||||
for (let i = 0; i < updates.length; i++) {
|
for (let i = 0; i < updates.length; i++) {
|
||||||
const updateSpec = updates[i];
|
const updateSpec = updates[i];
|
||||||
const filter = updateSpec.q || updateSpec.filter || {};
|
const filter = updateSpec.q || updateSpec.filter || {};
|
||||||
@@ -78,8 +81,15 @@ export class UpdateHandler implements ICommandHandler {
|
|||||||
const arrayFilters = updateSpec.arrayFilters;
|
const arrayFilters = updateSpec.arrayFilters;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Get all documents
|
// Try to use index-accelerated query
|
||||||
let documents = await storage.findAll(database, collection);
|
const candidateIds = await indexEngine.findCandidateIds(filter);
|
||||||
|
|
||||||
|
let documents: IStoredDocument[];
|
||||||
|
if (candidateIds !== null) {
|
||||||
|
documents = await storage.findByIds(database, collection, candidateIds);
|
||||||
|
} else {
|
||||||
|
documents = await storage.findAll(database, collection);
|
||||||
|
}
|
||||||
|
|
||||||
// Apply filter
|
// Apply filter
|
||||||
let matchingDocs = QueryEngine.filter(documents, filter);
|
let matchingDocs = QueryEngine.filter(documents, filter);
|
||||||
@@ -99,6 +109,8 @@ export class UpdateHandler implements ICommandHandler {
|
|||||||
Object.assign(updatedDoc, update.$setOnInsert);
|
Object.assign(updatedDoc, update.$setOnInsert);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Update index for the new document
|
||||||
|
await indexEngine.onInsert(updatedDoc);
|
||||||
await storage.insertOne(database, collection, updatedDoc);
|
await storage.insertOne(database, collection, updatedDoc);
|
||||||
totalUpserted++;
|
totalUpserted++;
|
||||||
upserted.push({ index: i, _id: updatedDoc._id });
|
upserted.push({ index: i, _id: updatedDoc._id });
|
||||||
@@ -113,6 +125,8 @@ export class UpdateHandler implements ICommandHandler {
|
|||||||
// Check if document actually changed
|
// Check if document actually changed
|
||||||
const changed = JSON.stringify(doc) !== JSON.stringify(updatedDoc);
|
const changed = JSON.stringify(doc) !== JSON.stringify(updatedDoc);
|
||||||
if (changed) {
|
if (changed) {
|
||||||
|
// Update index
|
||||||
|
await indexEngine.onUpdate(doc as any, updatedDoc);
|
||||||
await storage.updateById(database, collection, doc._id, updatedDoc);
|
await storage.updateById(database, collection, doc._id, updatedDoc);
|
||||||
totalModified++;
|
totalModified++;
|
||||||
}
|
}
|
||||||
@@ -186,8 +200,17 @@ export class UpdateHandler implements ICommandHandler {
|
|||||||
// Ensure collection exists
|
// Ensure collection exists
|
||||||
await storage.createCollection(database, collection);
|
await storage.createCollection(database, collection);
|
||||||
|
|
||||||
// Get matching documents
|
// Try to use index-accelerated query
|
||||||
let documents = await storage.findAll(database, collection);
|
const indexEngine = context.getIndexEngine(collection);
|
||||||
|
const candidateIds = await indexEngine.findCandidateIds(query);
|
||||||
|
|
||||||
|
let documents: IStoredDocument[];
|
||||||
|
if (candidateIds !== null) {
|
||||||
|
documents = await storage.findByIds(database, collection, candidateIds);
|
||||||
|
} else {
|
||||||
|
documents = await storage.findAll(database, collection);
|
||||||
|
}
|
||||||
|
|
||||||
let matchingDocs = QueryEngine.filter(documents, query);
|
let matchingDocs = QueryEngine.filter(documents, query);
|
||||||
|
|
||||||
// Apply sort if specified
|
// Apply sort if specified
|
||||||
@@ -203,6 +226,8 @@ export class UpdateHandler implements ICommandHandler {
|
|||||||
return { ok: 1, value: null };
|
return { ok: 1, value: null };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Update index for delete
|
||||||
|
await indexEngine.onDelete(doc as any);
|
||||||
await storage.deleteById(database, collection, doc._id);
|
await storage.deleteById(database, collection, doc._id);
|
||||||
|
|
||||||
let result = doc;
|
let result = doc;
|
||||||
@@ -231,6 +256,8 @@ export class UpdateHandler implements ICommandHandler {
|
|||||||
// Update existing
|
// Update existing
|
||||||
originalDoc = { ...doc };
|
originalDoc = { ...doc };
|
||||||
resultDoc = UpdateEngine.applyUpdate(doc, update, arrayFilters);
|
resultDoc = UpdateEngine.applyUpdate(doc, update, arrayFilters);
|
||||||
|
// Update index
|
||||||
|
await indexEngine.onUpdate(doc as any, resultDoc as any);
|
||||||
await storage.updateById(database, collection, doc._id, resultDoc as any);
|
await storage.updateById(database, collection, doc._id, resultDoc as any);
|
||||||
} else {
|
} else {
|
||||||
// Upsert
|
// Upsert
|
||||||
@@ -243,6 +270,8 @@ export class UpdateHandler implements ICommandHandler {
|
|||||||
Object.assign(resultDoc, update.$setOnInsert);
|
Object.assign(resultDoc, update.$setOnInsert);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Update index for insert
|
||||||
|
await indexEngine.onInsert(resultDoc as any);
|
||||||
await storage.insertOne(database, collection, resultDoc);
|
await storage.insertOne(database, collection, resultDoc);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
// Server module exports
|
// Server module exports
|
||||||
|
|
||||||
export { CongoServer } from './CongoServer.js';
|
export { TsmdbServer } from './TsmdbServer.js';
|
||||||
export type { ICongoServerOptions } from './CongoServer.js';
|
export type { ITsmdbServerOptions } from './TsmdbServer.js';
|
||||||
export { WireProtocol } from './WireProtocol.js';
|
export { WireProtocol } from './WireProtocol.js';
|
||||||
export { CommandRouter } from './CommandRouter.js';
|
export { CommandRouter } from './CommandRouter.js';
|
||||||
export type { ICommandHandler, IHandlerContext, ICursorState } from './CommandRouter.js';
|
export type { ICommandHandler, IHandlerContext, ICursorState } from './CommandRouter.js';
|
||||||
@@ -1,9 +1,20 @@
|
|||||||
import * as plugins from '../congodb.plugins.js';
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
import type { IStorageAdapter } from './IStorageAdapter.js';
|
import type { IStorageAdapter } from './IStorageAdapter.js';
|
||||||
import type { IStoredDocument, IOpLogEntry, Document } from '../types/interfaces.js';
|
import type { IStoredDocument, IOpLogEntry, Document } from '../types/interfaces.js';
|
||||||
|
import { calculateDocumentChecksum, verifyChecksum } from '../utils/checksum.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* File-based storage adapter for CongoDB
|
* File storage adapter options
|
||||||
|
*/
|
||||||
|
export interface IFileStorageAdapterOptions {
|
||||||
|
/** Enable checksum verification for data integrity */
|
||||||
|
enableChecksums?: boolean;
|
||||||
|
/** Throw error on checksum mismatch (default: false, just log warning) */
|
||||||
|
strictChecksums?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* File-based storage adapter for TsmDB
|
||||||
* Stores data in JSON files on disk for persistence
|
* Stores data in JSON files on disk for persistence
|
||||||
*/
|
*/
|
||||||
export class FileStorageAdapter implements IStorageAdapter {
|
export class FileStorageAdapter implements IStorageAdapter {
|
||||||
@@ -11,9 +22,13 @@ export class FileStorageAdapter implements IStorageAdapter {
|
|||||||
private opLogCounter = 0;
|
private opLogCounter = 0;
|
||||||
private initialized = false;
|
private initialized = false;
|
||||||
private fs = new plugins.smartfs.SmartFs(new plugins.smartfs.SmartFsProviderNode());
|
private fs = new plugins.smartfs.SmartFs(new plugins.smartfs.SmartFsProviderNode());
|
||||||
|
private enableChecksums: boolean;
|
||||||
|
private strictChecksums: boolean;
|
||||||
|
|
||||||
constructor(basePath: string) {
|
constructor(basePath: string, options?: IFileStorageAdapterOptions) {
|
||||||
this.basePath = basePath;
|
this.basePath = basePath;
|
||||||
|
this.enableChecksums = options?.enableChecksums ?? false;
|
||||||
|
this.strictChecksums = options?.strictChecksums ?? false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
@@ -68,6 +83,45 @@ export class FileStorageAdapter implements IStorageAdapter {
|
|||||||
return doc;
|
return doc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verify document checksum and handle errors
|
||||||
|
*/
|
||||||
|
private verifyDocumentChecksum(doc: any): boolean {
|
||||||
|
if (!this.enableChecksums || !doc._checksum) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
const isValid = verifyChecksum(doc);
|
||||||
|
if (!isValid) {
|
||||||
|
const errorMsg = `Checksum mismatch for document ${doc._id}`;
|
||||||
|
if (this.strictChecksums) {
|
||||||
|
throw new Error(errorMsg);
|
||||||
|
} else {
|
||||||
|
console.warn(`WARNING: ${errorMsg}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return isValid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add checksum to document before storing
|
||||||
|
*/
|
||||||
|
private prepareDocumentForStorage(doc: any): any {
|
||||||
|
if (!this.enableChecksums) {
|
||||||
|
return doc;
|
||||||
|
}
|
||||||
|
const checksum = calculateDocumentChecksum(doc);
|
||||||
|
return { ...doc, _checksum: checksum };
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove internal checksum field before returning to user
|
||||||
|
*/
|
||||||
|
private cleanDocumentForReturn(doc: any): IStoredDocument {
|
||||||
|
const { _checksum, ...cleanDoc } = doc;
|
||||||
|
return this.restoreObjectIds(cleanDoc);
|
||||||
|
}
|
||||||
|
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
// Initialization
|
// Initialization
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
@@ -233,7 +287,9 @@ export class FileStorageAdapter implements IStorageAdapter {
|
|||||||
throw new Error(`Duplicate key error: _id ${idStr}`);
|
throw new Error(`Duplicate key error: _id ${idStr}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
docs.push(storedDoc);
|
// Add checksum if enabled
|
||||||
|
const docToStore = this.prepareDocumentForStorage(storedDoc);
|
||||||
|
docs.push(docToStore);
|
||||||
await this.writeJsonFile(collPath, docs);
|
await this.writeJsonFile(collPath, docs);
|
||||||
return storedDoc;
|
return storedDoc;
|
||||||
}
|
}
|
||||||
@@ -258,7 +314,9 @@ export class FileStorageAdapter implements IStorageAdapter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
existingIds.add(idStr);
|
existingIds.add(idStr);
|
||||||
docs.push(storedDoc);
|
// Add checksum if enabled
|
||||||
|
const docToStore = this.prepareDocumentForStorage(storedDoc);
|
||||||
|
docs.push(docToStore);
|
||||||
results.push(storedDoc);
|
results.push(storedDoc);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -270,10 +328,33 @@ export class FileStorageAdapter implements IStorageAdapter {
|
|||||||
await this.createCollection(dbName, collName);
|
await this.createCollection(dbName, collName);
|
||||||
const collPath = this.getCollectionPath(dbName, collName);
|
const collPath = this.getCollectionPath(dbName, collName);
|
||||||
const docs = await this.readJsonFile<any[]>(collPath, []);
|
const docs = await this.readJsonFile<any[]>(collPath, []);
|
||||||
return docs.map(doc => this.restoreObjectIds(doc));
|
return docs.map(doc => {
|
||||||
|
// Verify checksum if enabled
|
||||||
|
this.verifyDocumentChecksum(doc);
|
||||||
|
// Clean and return document without internal checksum field
|
||||||
|
return this.cleanDocumentForReturn(doc);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async findByIds(dbName: string, collName: string, ids: Set<string>): Promise<IStoredDocument[]> {
|
||||||
|
await this.createCollection(dbName, collName);
|
||||||
|
const collPath = this.getCollectionPath(dbName, collName);
|
||||||
|
const docs = await this.readJsonFile<any[]>(collPath, []);
|
||||||
|
const results: IStoredDocument[] = [];
|
||||||
|
for (const doc of docs) {
|
||||||
|
// Verify checksum if enabled
|
||||||
|
this.verifyDocumentChecksum(doc);
|
||||||
|
// Clean and restore document
|
||||||
|
const cleaned = this.cleanDocumentForReturn(doc);
|
||||||
|
if (ids.has(cleaned._id.toHexString())) {
|
||||||
|
results.push(cleaned);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return results;
|
||||||
}
|
}
|
||||||
|
|
||||||
async findById(dbName: string, collName: string, id: plugins.bson.ObjectId): Promise<IStoredDocument | null> {
|
async findById(dbName: string, collName: string, id: plugins.bson.ObjectId): Promise<IStoredDocument | null> {
|
||||||
|
// Use findAll which already handles checksum verification
|
||||||
const docs = await this.findAll(dbName, collName);
|
const docs = await this.findAll(dbName, collName);
|
||||||
const idStr = id.toHexString();
|
const idStr = id.toHexString();
|
||||||
return docs.find(d => d._id.toHexString() === idStr) || null;
|
return docs.find(d => d._id.toHexString() === idStr) || null;
|
||||||
@@ -291,7 +372,9 @@ export class FileStorageAdapter implements IStorageAdapter {
|
|||||||
|
|
||||||
if (idx === -1) return false;
|
if (idx === -1) return false;
|
||||||
|
|
||||||
docs[idx] = doc;
|
// Add checksum if enabled
|
||||||
|
const docToStore = this.prepareDocumentForStorage(doc);
|
||||||
|
docs[idx] = docToStore;
|
||||||
await this.writeJsonFile(collPath, docs);
|
await this.writeJsonFile(collPath, docs);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
import type * as plugins from '../congodb.plugins.js';
|
import type * as plugins from '../tsmdb.plugins.js';
|
||||||
import type { IStoredDocument, IOpLogEntry, Document } from '../types/interfaces.js';
|
import type { IStoredDocument, IOpLogEntry, Document } from '../types/interfaces.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Storage adapter interface for CongoDB
|
* Storage adapter interface for TsmDB
|
||||||
* Implementations can provide different storage backends (memory, file, etc.)
|
* Implementations can provide different storage backends (memory, file, etc.)
|
||||||
*/
|
*/
|
||||||
export interface IStorageAdapter {
|
export interface IStorageAdapter {
|
||||||
@@ -90,6 +90,12 @@ export interface IStorageAdapter {
|
|||||||
*/
|
*/
|
||||||
findAll(dbName: string, collName: string): Promise<IStoredDocument[]>;
|
findAll(dbName: string, collName: string): Promise<IStoredDocument[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find documents by a set of _id strings (hex format)
|
||||||
|
* Used for index-accelerated queries
|
||||||
|
*/
|
||||||
|
findByIds(dbName: string, collName: string, ids: Set<string>): Promise<IStoredDocument[]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Find a document by _id
|
* Find a document by _id
|
||||||
*/
|
*/
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
import * as plugins from '../congodb.plugins.js';
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
import type { IStorageAdapter } from './IStorageAdapter.js';
|
import type { IStorageAdapter } from './IStorageAdapter.js';
|
||||||
import type { IStoredDocument, IOpLogEntry, Document } from '../types/interfaces.js';
|
import type { IStoredDocument, IOpLogEntry, Document } from '../types/interfaces.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* In-memory storage adapter for CongoDB
|
* In-memory storage adapter for TsmDB
|
||||||
* Optionally supports persistence to a file
|
* Optionally supports persistence to a file
|
||||||
*/
|
*/
|
||||||
export class MemoryStorageAdapter implements IStorageAdapter {
|
export class MemoryStorageAdapter implements IStorageAdapter {
|
||||||
@@ -196,6 +196,18 @@ export class MemoryStorageAdapter implements IStorageAdapter {
|
|||||||
return Array.from(collection.values());
|
return Array.from(collection.values());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async findByIds(dbName: string, collName: string, ids: Set<string>): Promise<IStoredDocument[]> {
|
||||||
|
const collection = this.ensureCollection(dbName, collName);
|
||||||
|
const results: IStoredDocument[] = [];
|
||||||
|
for (const id of ids) {
|
||||||
|
const doc = collection.get(id);
|
||||||
|
if (doc) {
|
||||||
|
results.push(doc);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
async findById(dbName: string, collName: string, id: plugins.bson.ObjectId): Promise<IStoredDocument | null> {
|
async findById(dbName: string, collName: string, id: plugins.bson.ObjectId): Promise<IStoredDocument | null> {
|
||||||
const collection = this.ensureCollection(dbName, collName);
|
const collection = this.ensureCollection(dbName, collName);
|
||||||
return collection.get(id.toHexString()) || null;
|
return collection.get(id.toHexString()) || null;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as plugins from '../congodb.plugins.js';
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
import type { IStorageAdapter } from './IStorageAdapter.js';
|
import type { IStorageAdapter } from './IStorageAdapter.js';
|
||||||
import type { IOpLogEntry, Document, IResumeToken, ChangeStreamOperationType } from '../types/interfaces.js';
|
import type { IOpLogEntry, Document, IResumeToken, ChangeStreamOperationType } from '../types/interfaces.js';
|
||||||
|
|
||||||
375
ts/tsmdb/storage/WAL.ts
Normal file
375
ts/tsmdb/storage/WAL.ts
Normal file
@@ -0,0 +1,375 @@
|
|||||||
|
import * as plugins from '../tsmdb.plugins.js';
|
||||||
|
import type { Document, IStoredDocument } from '../types/interfaces.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* WAL entry operation types
|
||||||
|
*/
|
||||||
|
export type TWalOperation = 'insert' | 'update' | 'delete' | 'checkpoint' | 'begin' | 'commit' | 'abort';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* WAL entry structure
|
||||||
|
*/
|
||||||
|
export interface IWalEntry {
|
||||||
|
/** Log Sequence Number - monotonically increasing */
|
||||||
|
lsn: number;
|
||||||
|
/** Timestamp of the operation */
|
||||||
|
timestamp: number;
|
||||||
|
/** Operation type */
|
||||||
|
operation: TWalOperation;
|
||||||
|
/** Database name */
|
||||||
|
dbName: string;
|
||||||
|
/** Collection name */
|
||||||
|
collName: string;
|
||||||
|
/** Document ID (hex string) */
|
||||||
|
documentId: string;
|
||||||
|
/** Document data (BSON serialized, base64 encoded) */
|
||||||
|
data?: string;
|
||||||
|
/** Previous document data for updates (for rollback) */
|
||||||
|
previousData?: string;
|
||||||
|
/** Transaction ID if part of a transaction */
|
||||||
|
txnId?: string;
|
||||||
|
/** CRC32 checksum of the entry (excluding this field) */
|
||||||
|
checksum: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checkpoint record
|
||||||
|
*/
|
||||||
|
interface ICheckpointRecord {
|
||||||
|
lsn: number;
|
||||||
|
timestamp: number;
|
||||||
|
lastCommittedLsn: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Write-Ahead Log (WAL) for durability and crash recovery
|
||||||
|
*
|
||||||
|
* The WAL ensures durability by writing operations to a log file before
|
||||||
|
* they are applied to the main storage. On crash recovery, uncommitted
|
||||||
|
* operations can be replayed to restore the database to a consistent state.
|
||||||
|
*/
|
||||||
|
export class WAL {
|
||||||
|
private walPath: string;
|
||||||
|
private currentLsn: number = 0;
|
||||||
|
private lastCheckpointLsn: number = 0;
|
||||||
|
private entries: IWalEntry[] = [];
|
||||||
|
private isInitialized: boolean = false;
|
||||||
|
private fs = new plugins.smartfs.SmartFs(new plugins.smartfs.SmartFsProviderNode());
|
||||||
|
|
||||||
|
// In-memory uncommitted entries per transaction
|
||||||
|
private uncommittedTxns: Map<string, IWalEntry[]> = new Map();
|
||||||
|
|
||||||
|
// Checkpoint interval (number of entries between checkpoints)
|
||||||
|
private checkpointInterval: number = 1000;
|
||||||
|
|
||||||
|
constructor(walPath: string, options?: { checkpointInterval?: number }) {
|
||||||
|
this.walPath = walPath;
|
||||||
|
if (options?.checkpointInterval) {
|
||||||
|
this.checkpointInterval = options.checkpointInterval;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize the WAL, loading existing entries and recovering if needed
|
||||||
|
*/
|
||||||
|
async initialize(): Promise<{ recoveredEntries: IWalEntry[] }> {
|
||||||
|
if (this.isInitialized) {
|
||||||
|
return { recoveredEntries: [] };
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ensure WAL directory exists
|
||||||
|
const walDir = this.walPath.substring(0, this.walPath.lastIndexOf('/'));
|
||||||
|
if (walDir) {
|
||||||
|
await this.fs.directory(walDir).recursive().create();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Try to load existing WAL
|
||||||
|
const exists = await this.fs.file(this.walPath).exists();
|
||||||
|
if (exists) {
|
||||||
|
const content = await this.fs.file(this.walPath).encoding('utf8').read();
|
||||||
|
const lines = (content as string).split('\n').filter(line => line.trim());
|
||||||
|
|
||||||
|
for (const line of lines) {
|
||||||
|
try {
|
||||||
|
const entry = JSON.parse(line) as IWalEntry;
|
||||||
|
// Verify checksum
|
||||||
|
if (this.verifyChecksum(entry)) {
|
||||||
|
this.entries.push(entry);
|
||||||
|
if (entry.lsn > this.currentLsn) {
|
||||||
|
this.currentLsn = entry.lsn;
|
||||||
|
}
|
||||||
|
if (entry.operation === 'checkpoint') {
|
||||||
|
this.lastCheckpointLsn = entry.lsn;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
// Skip corrupted entries
|
||||||
|
console.warn('Skipping corrupted WAL entry');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.isInitialized = true;
|
||||||
|
|
||||||
|
// Return entries after last checkpoint that need recovery
|
||||||
|
const recoveredEntries = this.entries.filter(
|
||||||
|
e => e.lsn > this.lastCheckpointLsn &&
|
||||||
|
(e.operation === 'insert' || e.operation === 'update' || e.operation === 'delete')
|
||||||
|
);
|
||||||
|
|
||||||
|
return { recoveredEntries };
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log an insert operation
|
||||||
|
*/
|
||||||
|
async logInsert(dbName: string, collName: string, doc: IStoredDocument, txnId?: string): Promise<number> {
|
||||||
|
return this.appendEntry({
|
||||||
|
operation: 'insert',
|
||||||
|
dbName,
|
||||||
|
collName,
|
||||||
|
documentId: doc._id.toHexString(),
|
||||||
|
data: this.serializeDocument(doc),
|
||||||
|
txnId,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log an update operation
|
||||||
|
*/
|
||||||
|
async logUpdate(
|
||||||
|
dbName: string,
|
||||||
|
collName: string,
|
||||||
|
oldDoc: IStoredDocument,
|
||||||
|
newDoc: IStoredDocument,
|
||||||
|
txnId?: string
|
||||||
|
): Promise<number> {
|
||||||
|
return this.appendEntry({
|
||||||
|
operation: 'update',
|
||||||
|
dbName,
|
||||||
|
collName,
|
||||||
|
documentId: oldDoc._id.toHexString(),
|
||||||
|
data: this.serializeDocument(newDoc),
|
||||||
|
previousData: this.serializeDocument(oldDoc),
|
||||||
|
txnId,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log a delete operation
|
||||||
|
*/
|
||||||
|
async logDelete(dbName: string, collName: string, doc: IStoredDocument, txnId?: string): Promise<number> {
|
||||||
|
return this.appendEntry({
|
||||||
|
operation: 'delete',
|
||||||
|
dbName,
|
||||||
|
collName,
|
||||||
|
documentId: doc._id.toHexString(),
|
||||||
|
previousData: this.serializeDocument(doc),
|
||||||
|
txnId,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log transaction begin
|
||||||
|
*/
|
||||||
|
async logBeginTransaction(txnId: string): Promise<number> {
|
||||||
|
this.uncommittedTxns.set(txnId, []);
|
||||||
|
return this.appendEntry({
|
||||||
|
operation: 'begin',
|
||||||
|
dbName: '',
|
||||||
|
collName: '',
|
||||||
|
documentId: '',
|
||||||
|
txnId,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log transaction commit
|
||||||
|
*/
|
||||||
|
async logCommitTransaction(txnId: string): Promise<number> {
|
||||||
|
this.uncommittedTxns.delete(txnId);
|
||||||
|
return this.appendEntry({
|
||||||
|
operation: 'commit',
|
||||||
|
dbName: '',
|
||||||
|
collName: '',
|
||||||
|
documentId: '',
|
||||||
|
txnId,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log transaction abort
|
||||||
|
*/
|
||||||
|
async logAbortTransaction(txnId: string): Promise<number> {
|
||||||
|
this.uncommittedTxns.delete(txnId);
|
||||||
|
return this.appendEntry({
|
||||||
|
operation: 'abort',
|
||||||
|
dbName: '',
|
||||||
|
collName: '',
|
||||||
|
documentId: '',
|
||||||
|
txnId,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get entries to roll back for an aborted transaction
|
||||||
|
*/
|
||||||
|
getTransactionEntries(txnId: string): IWalEntry[] {
|
||||||
|
return this.entries.filter(e => e.txnId === txnId);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a checkpoint - marks a consistent point in the log
|
||||||
|
*/
|
||||||
|
async checkpoint(): Promise<number> {
|
||||||
|
const lsn = await this.appendEntry({
|
||||||
|
operation: 'checkpoint',
|
||||||
|
dbName: '',
|
||||||
|
collName: '',
|
||||||
|
documentId: '',
|
||||||
|
});
|
||||||
|
this.lastCheckpointLsn = lsn;
|
||||||
|
|
||||||
|
// Truncate old entries (keep only entries after checkpoint)
|
||||||
|
await this.truncate();
|
||||||
|
|
||||||
|
return lsn;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Truncate the WAL file, removing entries before the last checkpoint
|
||||||
|
*/
|
||||||
|
private async truncate(): Promise<void> {
|
||||||
|
// Keep entries after last checkpoint
|
||||||
|
const newEntries = this.entries.filter(e => e.lsn >= this.lastCheckpointLsn);
|
||||||
|
this.entries = newEntries;
|
||||||
|
|
||||||
|
// Rewrite the WAL file
|
||||||
|
const lines = this.entries.map(e => JSON.stringify(e)).join('\n');
|
||||||
|
await this.fs.file(this.walPath).encoding('utf8').write(lines);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get current LSN
|
||||||
|
*/
|
||||||
|
getCurrentLsn(): number {
|
||||||
|
return this.currentLsn;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get entries after a specific LSN (for recovery)
|
||||||
|
*/
|
||||||
|
getEntriesAfter(lsn: number): IWalEntry[] {
|
||||||
|
return this.entries.filter(e => e.lsn > lsn);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Close the WAL
|
||||||
|
*/
|
||||||
|
async close(): Promise<void> {
|
||||||
|
if (this.isInitialized) {
|
||||||
|
// Final checkpoint before close
|
||||||
|
await this.checkpoint();
|
||||||
|
}
|
||||||
|
this.isInitialized = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// Private Methods
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
private async appendEntry(
|
||||||
|
partial: Omit<IWalEntry, 'lsn' | 'timestamp' | 'checksum'>
|
||||||
|
): Promise<number> {
|
||||||
|
await this.initialize();
|
||||||
|
|
||||||
|
this.currentLsn++;
|
||||||
|
const entry: IWalEntry = {
|
||||||
|
...partial,
|
||||||
|
lsn: this.currentLsn,
|
||||||
|
timestamp: Date.now(),
|
||||||
|
checksum: 0, // Will be calculated
|
||||||
|
};
|
||||||
|
|
||||||
|
// Calculate checksum
|
||||||
|
entry.checksum = this.calculateChecksum(entry);
|
||||||
|
|
||||||
|
// Track in transaction if applicable
|
||||||
|
if (partial.txnId && this.uncommittedTxns.has(partial.txnId)) {
|
||||||
|
this.uncommittedTxns.get(partial.txnId)!.push(entry);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add to in-memory log
|
||||||
|
this.entries.push(entry);
|
||||||
|
|
||||||
|
// Append to file (append mode for durability)
|
||||||
|
await this.fs.file(this.walPath).encoding('utf8').append(JSON.stringify(entry) + '\n');
|
||||||
|
|
||||||
|
// Check if we need a checkpoint
|
||||||
|
if (this.entries.length - this.lastCheckpointLsn >= this.checkpointInterval) {
|
||||||
|
await this.checkpoint();
|
||||||
|
}
|
||||||
|
|
||||||
|
return entry.lsn;
|
||||||
|
}
|
||||||
|
|
||||||
|
private serializeDocument(doc: Document): string {
|
||||||
|
// Serialize document to BSON and encode as base64
|
||||||
|
const bsonData = plugins.bson.serialize(doc);
|
||||||
|
return Buffer.from(bsonData).toString('base64');
|
||||||
|
}
|
||||||
|
|
||||||
|
private deserializeDocument(data: string): Document {
|
||||||
|
// Decode base64 and deserialize from BSON
|
||||||
|
const buffer = Buffer.from(data, 'base64');
|
||||||
|
return plugins.bson.deserialize(buffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
private calculateChecksum(entry: IWalEntry): number {
|
||||||
|
// Simple CRC32-like checksum
|
||||||
|
const str = JSON.stringify({
|
||||||
|
lsn: entry.lsn,
|
||||||
|
timestamp: entry.timestamp,
|
||||||
|
operation: entry.operation,
|
||||||
|
dbName: entry.dbName,
|
||||||
|
collName: entry.collName,
|
||||||
|
documentId: entry.documentId,
|
||||||
|
data: entry.data,
|
||||||
|
previousData: entry.previousData,
|
||||||
|
txnId: entry.txnId,
|
||||||
|
});
|
||||||
|
|
||||||
|
let crc = 0xFFFFFFFF;
|
||||||
|
for (let i = 0; i < str.length; i++) {
|
||||||
|
crc ^= str.charCodeAt(i);
|
||||||
|
for (let j = 0; j < 8; j++) {
|
||||||
|
crc = (crc >>> 1) ^ (crc & 1 ? 0xEDB88320 : 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return (~crc) >>> 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
private verifyChecksum(entry: IWalEntry): boolean {
|
||||||
|
const savedChecksum = entry.checksum;
|
||||||
|
entry.checksum = 0;
|
||||||
|
const calculatedChecksum = this.calculateChecksum(entry);
|
||||||
|
entry.checksum = savedChecksum;
|
||||||
|
return calculatedChecksum === savedChecksum;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recover document from WAL entry
|
||||||
|
*/
|
||||||
|
recoverDocument(entry: IWalEntry): IStoredDocument | null {
|
||||||
|
if (!entry.data) return null;
|
||||||
|
return this.deserializeDocument(entry.data) as IStoredDocument;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recover previous document state from WAL entry (for rollback)
|
||||||
|
*/
|
||||||
|
recoverPreviousDocument(entry: IWalEntry): IStoredDocument | null {
|
||||||
|
if (!entry.previousData) return null;
|
||||||
|
return this.deserializeDocument(entry.previousData) as IStoredDocument;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import type * as plugins from '../congodb.plugins.js';
|
import type * as plugins from '../tsmdb.plugins.js';
|
||||||
|
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
// Document Types
|
// Document Types
|
||||||
@@ -14,7 +14,7 @@ export interface WithId<TSchema> {
|
|||||||
// Client Options
|
// Client Options
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
export interface ICongoClientOptions {
|
export interface ITsmdbClientOptions {
|
||||||
/** Storage adapter type: 'memory' or 'file' */
|
/** Storage adapter type: 'memory' or 'file' */
|
||||||
storageType?: 'memory' | 'file';
|
storageType?: 'memory' | 'file';
|
||||||
/** Path for file-based storage */
|
/** Path for file-based storage */
|
||||||
@@ -30,7 +30,7 @@ export interface ICongoClientOptions {
|
|||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
export interface IParsedConnectionString {
|
export interface IParsedConnectionString {
|
||||||
protocol: 'congo';
|
protocol: 'tsmdb';
|
||||||
storageType: 'memory' | 'file';
|
storageType: 'memory' | 'file';
|
||||||
options: {
|
options: {
|
||||||
persist?: string;
|
persist?: string;
|
||||||
88
ts/tsmdb/utils/checksum.ts
Normal file
88
ts/tsmdb/utils/checksum.ts
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
/**
|
||||||
|
* CRC32 checksum utilities for data integrity
|
||||||
|
*/
|
||||||
|
|
||||||
|
// CRC32 lookup table
|
||||||
|
const CRC32_TABLE: number[] = [];
|
||||||
|
|
||||||
|
// Initialize the CRC32 table
|
||||||
|
function initCRC32Table(): void {
|
||||||
|
if (CRC32_TABLE.length > 0) return;
|
||||||
|
|
||||||
|
for (let i = 0; i < 256; i++) {
|
||||||
|
let crc = i;
|
||||||
|
for (let j = 0; j < 8; j++) {
|
||||||
|
crc = (crc & 1) ? (0xEDB88320 ^ (crc >>> 1)) : (crc >>> 1);
|
||||||
|
}
|
||||||
|
CRC32_TABLE[i] = crc >>> 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calculate CRC32 checksum for a string
|
||||||
|
*/
|
||||||
|
export function calculateCRC32(data: string): number {
|
||||||
|
initCRC32Table();
|
||||||
|
|
||||||
|
let crc = 0xFFFFFFFF;
|
||||||
|
for (let i = 0; i < data.length; i++) {
|
||||||
|
const byte = data.charCodeAt(i) & 0xFF;
|
||||||
|
crc = CRC32_TABLE[(crc ^ byte) & 0xFF] ^ (crc >>> 8);
|
||||||
|
}
|
||||||
|
return (~crc) >>> 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calculate CRC32 checksum for a Buffer
|
||||||
|
*/
|
||||||
|
export function calculateCRC32Buffer(data: Buffer): number {
|
||||||
|
initCRC32Table();
|
||||||
|
|
||||||
|
let crc = 0xFFFFFFFF;
|
||||||
|
for (let i = 0; i < data.length; i++) {
|
||||||
|
crc = CRC32_TABLE[(crc ^ data[i]) & 0xFF] ^ (crc >>> 8);
|
||||||
|
}
|
||||||
|
return (~crc) >>> 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calculate checksum for a document (serialized as JSON)
|
||||||
|
*/
|
||||||
|
export function calculateDocumentChecksum(doc: Record<string, any>): number {
|
||||||
|
// Exclude _checksum field from calculation
|
||||||
|
const { _checksum, ...docWithoutChecksum } = doc;
|
||||||
|
const json = JSON.stringify(docWithoutChecksum);
|
||||||
|
return calculateCRC32(json);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add checksum to a document
|
||||||
|
*/
|
||||||
|
export function addChecksum<T extends Record<string, any>>(doc: T): T & { _checksum: number } {
|
||||||
|
const checksum = calculateDocumentChecksum(doc);
|
||||||
|
return { ...doc, _checksum: checksum };
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verify checksum of a document
|
||||||
|
* Returns true if checksum is valid or if document has no checksum
|
||||||
|
*/
|
||||||
|
export function verifyChecksum(doc: Record<string, any>): boolean {
|
||||||
|
if (!('_checksum' in doc)) {
|
||||||
|
// No checksum to verify
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
const storedChecksum = doc._checksum;
|
||||||
|
const calculatedChecksum = calculateDocumentChecksum(doc);
|
||||||
|
|
||||||
|
return storedChecksum === calculatedChecksum;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove checksum from a document
|
||||||
|
*/
|
||||||
|
export function removeChecksum<T extends Record<string, any>>(doc: T): Omit<T, '_checksum'> {
|
||||||
|
const { _checksum, ...docWithoutChecksum } = doc;
|
||||||
|
return docWithoutChecksum as Omit<T, '_checksum'>;
|
||||||
|
}
|
||||||
1
ts/tsmdb/utils/index.ts
Normal file
1
ts/tsmdb/utils/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export * from './checksum.js';
|
||||||
Reference in New Issue
Block a user