This commit is contained in:
Agent
2026-05-20 09:15:08 -04:00
parent 1a7f18a472
commit df66149908
10 changed files with 979 additions and 0 deletions
+110
View File
@@ -0,0 +1,110 @@
const EventEmitter = require('bare-events')
const Protomux = require('protomux')
const b4a = require('b4a')
const RPC_PROTOCOL = 'hyper-p2p-rpc/v1'
class RPCServer extends EventEmitter {
constructor (opts = {}) {
super()
this.services = new Map()
this.connections = new Set()
}
register (name, handler) {
if (typeof handler !== 'function') throw new TypeError('handler must be function')
this.services.set(name, handler)
}
handleConnection (socket) {
const mux = Protomux.from(socket)
const channel = mux.createChannel({ protocol: RPC_PROTOCOL })
channel.on('open', () => {
this.connections.add(socket)
this.emit('connection', socket)
})
const msgStream = channel.createMessageStream({ encoding: 'json' })
msgStream.on('data', async (msg) => {
if (!msg || !msg.method) return
const handler = this.services.get(msg.method)
if (!handler) {
msgStream.write({ id: msg.id, error: 'Method not found: ' + msg.method })
return
}
try {
const result = await handler(msg.params, { socket, stream: msgStream })
msgStream.write({ id: msg.id, result })
} catch (err) {
msgStream.write({ id: msg.id, error: err.message || String(err) })
}
})
socket.on('close', () => {
this.connections.delete(socket)
this.emit('disconnection', socket)
})
}
async call (socket, method, params = {}, timeoutMs = 10000) {
const mux = Protomux.from(socket)
const channel = mux.createChannel({ protocol: RPC_PROTOCOL })
const msgStream = channel.createMessageStream({ encoding: 'json' })
const id = b4a.toString(crypto.randomBytes(8), 'hex') // would need bare-crypto but simplified
return new Promise((resolve, reject) => {
const timer = setTimeout(() => {
reject(new Error('RPC timeout'))
}, timeoutMs)
msgStream.on('data', (reply) => {
if (reply.id !== id) return
clearTimeout(timer)
if (reply.error) reject(new Error(reply.error))
else resolve(reply.result)
})
msgStream.write({ id, method, params })
})
}
close () {
for (const s of this.connections) s.destroy()
this.connections.clear()
}
}
class RPCClient {
constructor (socket) {
this.socket = socket
this.mux = Protomux.from(socket)
this.pending = new Map()
}
async call (method, params = {}, timeoutMs = 10000) {
const channel = this.mux.createChannel({ protocol: RPC_PROTOCOL })
const msgStream = channel.createMessageStream({ encoding: 'json' })
const id = Date.now().toString(36) + Math.random().toString(36).slice(2)
return new Promise((resolve, reject) => {
const timer = setTimeout(() => reject(new Error('Timeout')), timeoutMs)
msgStream.on('data', (reply) => {
if (reply.id !== id) return
clearTimeout(timer)
if (reply.error) reject(new Error(reply.error))
else resolve(reply.result)
})
msgStream.write({ id, method, params })
})
}
}
module.exports = { RPCServer, RPCClient, RPC_PROTOCOL }
+17
View File
@@ -0,0 +1,17 @@
{
"name": "hyper-p2p-rpc",
"version": "0.1.0",
"description": "Novel typed/streaming RPC framework for P2P services over Protomux in Bare/Pear. Enables easy definition of remote procedures with request/response, bidirectional streams, and built-in error handling.",
"main": "index.js",
"keywords": ["holepunch", "bare", "pear", "p2p", "rpc", "protomux", "streaming", "microservices"],
"author": "Holepunch Development Agent",
"license": "Apache-2.0",
"dependencies": {
"bare-events": "^2.0.0",
"protomux": "^3.0.0",
"b4a": "^1.6.0"
},
"devDependencies": {
"bare-test": "^1.0.0"
}
}