Spaces:
Paused
Paused
File size: 18,540 Bytes
529090e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 | /**
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* β NEO4J ADAPTER - SYNAPTIC CORTEX β
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* β Graph-Native connection layer for WidgeTDC knowledge graph β
* β β
* β CODEX RULE #3: Self-Healing & Robustness β
* β - Automatic reconnection on failure β
* β - Circuit breaker pattern β
* β - Health monitoring β
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
*/
import neo4j, { Driver, Session, QueryResult, Record as Neo4jRecord } from 'neo4j-driver';
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Types
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export interface Neo4jConfig {
uri: string;
user: string;
password: string;
database?: string;
}
export interface QueryOptions {
timeout?: number;
database?: string;
readOnly?: boolean;
}
export interface HealthStatus {
connected: boolean;
latencyMs?: number;
nodeCount?: number;
relationshipCount?: number;
lastCheck: string;
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Neo4j Adapter - Singleton Pattern
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class Neo4jAdapter {
private static instance: Neo4jAdapter;
private driver: Driver | null = null;
private _isConnected: boolean = false;
private lastHealthCheck: HealthStatus | null = null;
// Public getter for connection status
public get connected(): boolean {
return this._isConnected;
}
// Circuit breaker state
private failureCount: number = 0;
private readonly failureThreshold: number = 5;
private lastFailureTime: number = 0;
private readonly resetTimeoutMs: number = 60000;
// Connection config
private config: Neo4jConfig;
private constructor() {
this.config = {
uri: process.env.NEO4J_URI || 'bolt://localhost:7687',
user: process.env.NEO4J_USER || 'neo4j',
password: process.env.NEO4J_PASSWORD || 'password',
database: process.env.NEO4J_DATABASE || 'neo4j'
};
this.connect();
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Singleton Access
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
public static getInstance(): Neo4jAdapter {
if (!Neo4jAdapter.instance) {
Neo4jAdapter.instance = new Neo4jAdapter();
}
return Neo4jAdapter.instance;
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Connection Management
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
private async connect(): Promise<boolean> {
try {
console.error(`[Neo4jAdapter] π§ Establishing synaptic link to ${this.config.uri}...`);
this.driver = neo4j.driver(
this.config.uri,
neo4j.auth.basic(this.config.user, this.config.password),
{
maxConnectionPoolSize: 50,
connectionAcquisitionTimeout: 30000,
connectionTimeout: 20000,
}
);
// Verify connectivity
await this.driver.verifyConnectivity();
this._isConnected = true;
this.failureCount = 0;
console.error('[Neo4jAdapter] β
Synaptic link ESTABLISHED. Cortex is online.');
return true;
} catch (error: any) {
console.error('[Neo4jAdapter] β CONNECTION FAILURE:', error.message);
this._isConnected = false;
this.failureCount++;
this.lastFailureTime = Date.now();
return false;
}
}
private async ensureConnection(): Promise<void> {
// Check circuit breaker
if (this.failureCount >= this.failureThreshold) {
const timeSinceFailure = Date.now() - this.lastFailureTime;
if (timeSinceFailure < this.resetTimeoutMs) {
throw new Error(`Neo4j Cortex circuit OPEN - ${Math.ceil((this.resetTimeoutMs - timeSinceFailure) / 1000)}s until retry`);
}
// Reset and try again
this.failureCount = 0;
}
if (!this.driver || !this._isConnected) {
const connected = await this.connect();
if (!connected) {
throw new Error('Neo4j Cortex Unreachable - connection failed');
}
}
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Query Execution
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
public async executeQuery(
cypher: string,
params: Record<string, any> = {},
options: QueryOptions = {}
): Promise<any[]> {
await this.ensureConnection();
const session: Session = this.driver!.session({
database: options.database || this.config.database,
defaultAccessMode: options.readOnly ? neo4j.session.READ : neo4j.session.WRITE
});
const startTime = Date.now();
try {
const result: QueryResult = await session.run(cypher, params);
const latency = Date.now() - startTime;
console.error(`[Neo4jAdapter] β‘ Query executed in ${latency}ms (${result.records.length} records)`);
return result.records.map((record: Neo4jRecord) => this.recordToObject(record));
} catch (error: any) {
this.failureCount++;
this.lastFailureTime = Date.now();
console.error(`[Neo4jAdapter] β Query failed: ${error.message}`);
console.error(`[Neo4jAdapter] Cypher: ${cypher.substring(0, 100)}...`);
throw error;
} finally {
await session.close();
}
}
/**
* Execute a read-only query (optimized for replicas)
*/
public async readQuery(
cypher: string,
params: Record<string, any> = {}
): Promise<any[]> {
return this.executeQuery(cypher, params, { readOnly: true });
}
/**
* Execute a write query
*/
public async writeQuery(
cypher: string,
params: Record<string, any> = {}
): Promise<any[]> {
return this.executeQuery(cypher, params, { readOnly: false });
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// High-Level Operations
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/**
* Search nodes by label and properties
*/
public async searchNodes(
label: string,
searchTerm: string,
limit: number = 20
): Promise<any[]> {
const cypher = `
MATCH (n:${label})
WHERE n.name CONTAINS $searchTerm
OR n.title CONTAINS $searchTerm
OR n.content CONTAINS $searchTerm
RETURN n
LIMIT $limit
`;
return this.readQuery(cypher, { searchTerm, limit: neo4j.int(limit) });
}
/**
* Get node by ID
*/
public async getNodeById(nodeId: string): Promise<any | null> {
const cypher = `
MATCH (n)
WHERE n.id = $nodeId OR elementId(n) = $nodeId
RETURN n
LIMIT 1
`;
const results = await this.readQuery(cypher, { nodeId });
return results[0] || null;
}
/**
* Get node relationships
*/
public async getNodeRelationships(
nodeId: string,
direction: 'in' | 'out' | 'both' = 'both',
limit: number = 50
): Promise<any[]> {
let pattern: string;
switch (direction) {
case 'in':
pattern = '(n)<-[r]-(m)';
break;
case 'out':
pattern = '(n)-[r]->(m)';
break;
default:
pattern = '(n)-[r]-(m)';
}
const cypher = `
MATCH ${pattern}
WHERE n.id = $nodeId OR elementId(n) = $nodeId
RETURN type(r) as relationship, m as node, r as details
LIMIT $limit
`;
return this.readQuery(cypher, { nodeId, limit: neo4j.int(limit) });
}
/**
* Create or merge a node
*/
public async createNode(
label: string,
properties: Record<string, any>
): Promise<any> {
const cypher = `
MERGE (n:${label} {id: $id})
SET n += $properties
SET n.updatedAt = datetime()
RETURN n
`;
const id = properties.id || this.generateId(label, properties);
const results = await this.writeQuery(cypher, {
id,
properties: { ...properties, id }
});
return results[0];
}
/**
* Create a relationship between nodes
*/
public async createRelationship(
fromId: string,
toId: string,
relationshipType: string,
properties: Record<string, any> = {}
): Promise<any> {
const cypher = `
MATCH (a), (b)
WHERE (a.id = $fromId OR elementId(a) = $fromId)
AND (b.id = $toId OR elementId(b) = $toId)
MERGE (a)-[r:${relationshipType}]->(b)
SET r += $properties
SET r.createdAt = datetime()
RETURN a, r, b
`;
const results = await this.writeQuery(cypher, { fromId, toId, properties });
return results[0];
}
/**
* Delete a node by ID
*/
public async deleteNode(nodeId: string): Promise<boolean> {
const cypher = `
MATCH (n)
WHERE n.id = $nodeId OR elementId(n) = $nodeId
DETACH DELETE n
RETURN count(n) as deleted
`;
const results = await this.writeQuery(cypher, { nodeId });
return (results[0]?.deleted || 0) > 0;
}
/**
* Alias for executeQuery - for compatibility
*/
public async runQuery(
cypher: string,
params: Record<string, any> = {}
): Promise<any[]> {
return this.executeQuery(cypher, params);
}
/**
* Alias for executeQuery - for compatibility
*/
public async query(
cypher: string,
params: Record<string, any> = {}
): Promise<any[]> {
return this.executeQuery(cypher, params);
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Health & Monitoring
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
public async healthCheck(): Promise<HealthStatus> {
const startTime = Date.now();
try {
await this.ensureConnection();
// Get database stats
const [statsResult] = await this.readQuery(`
CALL apoc.meta.stats() YIELD nodeCount, relCount
RETURN nodeCount, relCount
`).catch(() => [{ nodeCount: -1, relCount: -1 }]);
const latency = Date.now() - startTime;
this.lastHealthCheck = {
connected: true,
latencyMs: latency,
nodeCount: statsResult?.nodeCount,
relationshipCount: statsResult?.relCount,
lastCheck: new Date().toISOString()
};
return this.lastHealthCheck;
} catch (error: any) {
this.lastHealthCheck = {
connected: false,
lastCheck: new Date().toISOString()
};
return this.lastHealthCheck;
}
}
public getLastHealthStatus(): HealthStatus | null {
return this.lastHealthCheck;
}
public isHealthy(): boolean {
return this._isConnected && this.failureCount < this.failureThreshold;
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Cleanup
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
public async close(): Promise<void> {
if (this.driver) {
await this.driver.close();
this._isConnected = false;
console.error('[Neo4jAdapter] π Synaptic link severed.');
}
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Helpers
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
private recordToObject(record: Neo4jRecord): any {
const obj: any = {};
record.keys.forEach((key) => {
const value = record.get(key);
obj[key] = this.convertNeo4jValue(value);
});
return obj;
}
private convertNeo4jValue(value: any): any {
if (value === null || value === undefined) {
return value;
}
// Neo4j Integer
if (neo4j.isInt(value)) {
return value.toNumber();
}
// Neo4j Node
if (value.labels && value.properties) {
return {
id: value.elementId || value.identity?.toString(),
labels: value.labels,
...value.properties
};
}
// Neo4j Relationship
if (value.type && value.properties && value.start && value.end) {
return {
id: value.elementId || value.identity?.toString(),
type: value.type,
startNodeId: value.startNodeElementId || value.start?.toString(),
endNodeId: value.endNodeElementId || value.end?.toString(),
...value.properties
};
}
// Arrays
if (Array.isArray(value)) {
return value.map(v => this.convertNeo4jValue(v));
}
// Objects
if (typeof value === 'object') {
const converted: any = {};
for (const key of Object.keys(value)) {
converted[key] = this.convertNeo4jValue(value[key]);
}
return converted;
}
return value;
}
private generateId(label: string, properties: Record<string, any>): string {
const crypto = require('crypto');
const content = `${label}:${properties.name || properties.title || JSON.stringify(properties)}`;
return crypto.createHash('md5').update(content).digest('hex');
}
}
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Export Singleton Instance
// βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export const neo4jAdapter = Neo4jAdapter.getInstance();
export { Neo4jAdapter };
|