mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2026-02-03 23:36:12 +00:00
Compare commits
4 Commits
be9b91318f
...
28f7553187
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
28f7553187 | ||
|
|
ca29d9b515 | ||
|
|
ab802c8dbe | ||
|
|
9db705d86c |
@@ -88,9 +88,7 @@ export class AbstractSimplePool {
|
||||
enableReconnect: this.enableReconnect,
|
||||
})
|
||||
relay.onclose = () => {
|
||||
if (relay && !relay.enableReconnect) {
|
||||
this.relays.delete(url)
|
||||
}
|
||||
this.relays.delete(url)
|
||||
}
|
||||
this.relays.set(url, relay)
|
||||
}
|
||||
@@ -102,10 +100,15 @@ export class AbstractSimplePool {
|
||||
}
|
||||
}
|
||||
|
||||
await relay.connect({
|
||||
timeout: params?.connectionTimeout,
|
||||
abort: params?.abort,
|
||||
})
|
||||
try {
|
||||
await relay.connect({
|
||||
timeout: params?.connectionTimeout,
|
||||
abort: params?.abort,
|
||||
})
|
||||
} catch (err) {
|
||||
this.relays.delete(url)
|
||||
throw err
|
||||
}
|
||||
|
||||
return relay
|
||||
}
|
||||
@@ -380,4 +383,19 @@ export class AbstractSimplePool {
|
||||
this.relays.forEach(conn => conn.close())
|
||||
this.relays = new Map()
|
||||
}
|
||||
|
||||
pruneIdleRelays(idleThresholdMs: number = 10000): string[] {
|
||||
const prunedUrls: string[] = []
|
||||
|
||||
// check each relay's idle status and prune if over threshold
|
||||
for (const [url, relay] of this.relays) {
|
||||
if (relay.idleSince && Date.now() - relay.idleSince >= idleThresholdMs) {
|
||||
this.relays.delete(url)
|
||||
prunedUrls.push(url)
|
||||
relay.close()
|
||||
}
|
||||
}
|
||||
|
||||
return prunedUrls
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,6 +41,8 @@ export class AbstractRelay {
|
||||
public openSubs: Map<string, Subscription> = new Map()
|
||||
public enablePing: boolean | undefined
|
||||
public enableReconnect: boolean
|
||||
public idleSince: number | undefined = Date.now() // when undefined that means it isn't idle
|
||||
public ongoingOperations: number = 0 // used to compute idleness
|
||||
private reconnectTimeoutHandle: ReturnType<typeof setTimeout> | undefined
|
||||
private pingIntervalHandle: ReturnType<typeof setInterval> | undefined
|
||||
private reconnectAttempts: number = 0
|
||||
@@ -116,12 +118,12 @@ export class AbstractRelay {
|
||||
|
||||
this._connected = false
|
||||
this.connectionPromise = undefined
|
||||
|
||||
this.onclose?.()
|
||||
this.idleSince = undefined
|
||||
|
||||
if (this.enableReconnect && !this.skipReconnection) {
|
||||
this.reconnect()
|
||||
} else {
|
||||
this.onclose?.()
|
||||
this.closeAllSubscriptions(reason)
|
||||
}
|
||||
}
|
||||
@@ -227,7 +229,7 @@ export class AbstractRelay {
|
||||
const sub = this.subscribe(
|
||||
[{ ids: ['aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'], limit: 0 }],
|
||||
{
|
||||
label: 'forced-ping',
|
||||
label: '<forced-ping>',
|
||||
oneose: () => {
|
||||
resolve(true)
|
||||
sub.close()
|
||||
@@ -299,6 +301,9 @@ export class AbstractRelay {
|
||||
}
|
||||
|
||||
public async publish(event: Event): Promise<string> {
|
||||
this.idleSince = undefined
|
||||
this.ongoingOperations++
|
||||
|
||||
const ret = new Promise<string>((resolve, reject) => {
|
||||
const timeout = setTimeout(() => {
|
||||
const ep = this.openEventPublishes.get(event.id) as EventPublishResolver
|
||||
@@ -310,6 +315,11 @@ export class AbstractRelay {
|
||||
this.openEventPublishes.set(event.id, { resolve, reject, timeout })
|
||||
})
|
||||
this.send('["EVENT",' + JSON.stringify(event) + ']')
|
||||
|
||||
// compute idleness state
|
||||
this.ongoingOperations--
|
||||
if (this.ongoingOperations === 0) this.idleSince = Date.now()
|
||||
|
||||
return ret
|
||||
}
|
||||
|
||||
@@ -327,6 +337,11 @@ export class AbstractRelay {
|
||||
filters: Filter[],
|
||||
params: Partial<SubscriptionParams> & { label?: string; id?: string },
|
||||
): Subscription {
|
||||
if (params.label !== '<forced-ping>') {
|
||||
this.idleSince = undefined
|
||||
this.ongoingOperations++
|
||||
}
|
||||
|
||||
const sub = this.prepareSubscription(filters, params)
|
||||
sub.fire()
|
||||
|
||||
@@ -343,9 +358,9 @@ export class AbstractRelay {
|
||||
): Subscription {
|
||||
this.serial++
|
||||
const id = params.id || (params.label ? params.label + ':' : 'sub:') + this.serial
|
||||
const subscription = new Subscription(this, id, filters, params)
|
||||
this.openSubs.set(id, subscription)
|
||||
return subscription
|
||||
const sub = new Subscription(this, id, filters, params)
|
||||
this.openSubs.set(id, sub)
|
||||
return sub
|
||||
}
|
||||
|
||||
public close() {
|
||||
@@ -360,6 +375,7 @@ export class AbstractRelay {
|
||||
}
|
||||
this.closeAllSubscriptions('relay connection closed by us')
|
||||
this._connected = false
|
||||
this.idleSince = undefined
|
||||
this.onclose?.()
|
||||
if (this.ws?.readyState === this._WebSocket.OPEN) {
|
||||
this.ws?.close()
|
||||
@@ -368,10 +384,10 @@ export class AbstractRelay {
|
||||
|
||||
// this is the function assigned to this.ws.onmessage
|
||||
// it's exposed for testing and debugging purposes
|
||||
public _onmessage(ev: MessageEvent<any>) {
|
||||
public _onmessage(ev: MessageEvent<any>): void {
|
||||
const json = ev.data
|
||||
if (!json) {
|
||||
return false
|
||||
return
|
||||
}
|
||||
|
||||
// shortcut EVENT sub
|
||||
@@ -549,6 +565,11 @@ export class Subscription {
|
||||
this.closed = true
|
||||
}
|
||||
this.relay.openSubs.delete(this.id)
|
||||
|
||||
// compute idleness state
|
||||
this.relay.ongoingOperations--
|
||||
if (this.relay.ongoingOperations === 0) this.relay.idleSince = Date.now()
|
||||
|
||||
this.onclose?.(reason)
|
||||
}
|
||||
}
|
||||
|
||||
2
jsr.json
2
jsr.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nostr/tools",
|
||||
"version": "2.22.2",
|
||||
"version": "2.23.0",
|
||||
"exports": {
|
||||
".": "./index.ts",
|
||||
"./core": "./core.ts",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"type": "module",
|
||||
"name": "nostr-tools",
|
||||
"version": "2.22.2",
|
||||
"version": "2.23.0",
|
||||
"description": "Tools for making a Nostr client.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import { describe, test, expect } from 'bun:test'
|
||||
import { buildEvent } from './test-helpers.ts'
|
||||
import {
|
||||
Queue,
|
||||
insertEventIntoAscendingList,
|
||||
insertEventIntoDescendingList,
|
||||
binarySearch,
|
||||
@@ -221,48 +220,6 @@ describe('inserting into a asc sorted list of events', () => {
|
||||
})
|
||||
})
|
||||
|
||||
describe('enqueue a message into MessageQueue', () => {
|
||||
test('enqueue into an empty queue', () => {
|
||||
const queue = new Queue()
|
||||
queue.enqueue('node1')
|
||||
expect(queue.first!.value).toBe('node1')
|
||||
})
|
||||
test('enqueue into a non-empty queue', () => {
|
||||
const queue = new Queue()
|
||||
queue.enqueue('node1')
|
||||
queue.enqueue('node3')
|
||||
queue.enqueue('node2')
|
||||
expect(queue.first!.value).toBe('node1')
|
||||
expect(queue.last!.value).toBe('node2')
|
||||
})
|
||||
test('dequeue from an empty queue', () => {
|
||||
const queue = new Queue()
|
||||
const item1 = queue.dequeue()
|
||||
expect(item1).toBe(null)
|
||||
})
|
||||
test('dequeue from a non-empty queue', () => {
|
||||
const queue = new Queue()
|
||||
queue.enqueue('node1')
|
||||
queue.enqueue('node3')
|
||||
queue.enqueue('node2')
|
||||
const item1 = queue.dequeue()
|
||||
expect(item1).toBe('node1')
|
||||
const item2 = queue.dequeue()
|
||||
expect(item2).toBe('node3')
|
||||
})
|
||||
test('dequeue more than in queue', () => {
|
||||
const queue = new Queue()
|
||||
queue.enqueue('node1')
|
||||
queue.enqueue('node3')
|
||||
const item1 = queue.dequeue()
|
||||
expect(item1).toBe('node1')
|
||||
const item2 = queue.dequeue()
|
||||
expect(item2).toBe('node3')
|
||||
const item3 = queue.dequeue()
|
||||
expect(item3).toBe(null)
|
||||
})
|
||||
})
|
||||
|
||||
test('binary search', () => {
|
||||
expect(binarySearch(['a', 'b', 'd', 'e'], b => ('e' < b ? -1 : 'e' === b ? 0 : 1))).toEqual([3, true])
|
||||
expect(binarySearch(['a', 'b', 'd', 'e'], b => ('x' < b ? -1 : 'x' === b ? 0 : 1))).toEqual([4, false])
|
||||
|
||||
Reference in New Issue
Block a user