make new algorithm.js

This commit is contained in:
Andre Staltz 2023-04-10 22:53:36 +03:00
parent 5b0244709b
commit 08d9fd1eda
6 changed files with 180 additions and 67 deletions

View File

@ -1 +1 @@
module.exports = [require('./lib/feed-sync'), require('./lib/thread-sync')]
module.exports = [require('./lib/plugin')]

107
lib/algorithm.js Normal file
View File

@ -0,0 +1,107 @@
const { BloomFilter } = require('bloom-filters')
const FeedV1 = require('ppppp-db/lib/feed-v1')
const p = require('util').promisify
const { isEmptyRange, estimateMsgCount } = require('./range')
function countIter(iter) {
let count = 0
for (const _ of iter) count++
return count
}
class Algorithm {
#peer
constructor(peer) {
this.#peer = peer
}
haveRange(rootMsgHash) {
const rootMsg = this.#peer.db.get(rootMsgHash)
if (!rootMsg) return [1, 0]
let maxDepth = 0
for (const rec of this.#peer.db.records()) {
const tangles = rec.msg.metadata.tangles
if (rec.hash !== rootMsgHash && tangles[rootMsgHash]) {
const depth = tangles[rootMsgHash].depth
maxDepth = Math.max(maxDepth, depth)
}
}
return [0, maxDepth]
}
wantRange(rootMsgId, localHaveRange, remoteHaveRange) {
if (isEmptyRange(remoteHaveRange)) return [1, 0]
const [minLocalHave, maxLocalHave] = localHaveRange
const [minRemoteHave, maxRemoteHave] = remoteHaveRange
if (minRemoteHave !== 0) throw new Error('minRemoteHave must be 0')
return [0, Math.max(maxLocalHave, maxRemoteHave)]
}
bloomFor(feedId, round, range, extraIds = []) {
const filterSize =
(isEmptyRange(range) ? 2 : estimateMsgCount(range)) + countIter(extraIds)
const filter = BloomFilter.create(2 * filterSize, 0.00001)
if (!isEmptyRange(range)) {
for (const msg of this.yieldMsgsIn(feedId, range)) {
filter.add('' + round + FeedV1.getMsgHash(msg))
}
}
for (const msgId of extraIds) {
filter.add('' + round + msgId)
}
return filter.saveAsJSON()
}
msgsMissing(rootMsgHash, round, range, remoteBloomJSON) {
if (isEmptyRange(range)) return []
const remoteFilter = BloomFilter.fromJSON(remoteBloomJSON)
const missing = []
for (const msg of this.yieldMsgsIn(rootMsgHash, range)) {
const msgHash = FeedV1.getMsgHash(msg)
if (!remoteFilter.has('' + round + msgHash)) {
missing.push(msgHash)
}
}
return missing
}
*yieldMsgsIn(rootMsgHash, range) {
const [minDepth, maxDepth] = range
const rootMsg = this.#peer.db.get(rootMsgHash)
if (!rootMsg) return
for (const msg of this.#peer.db.msgs()) {
const tangles = msg.metadata.tangles
if (
tangles[rootMsgHash] &&
tangles[rootMsgHash].depth >= minDepth &&
tangles[rootMsgHash].depth <= maxDepth
) {
yield msg
}
}
}
async commit(newMsgs, rootMsgHash, cb) {
newMsgs.sort((a, b) => {
const aDepth = a.metadata.tangles[rootMsgHash].depth
const bDepth = b.metadata.tangles[rootMsgHash].depth
return aDepth - bDepth
})
for (const msg of newMsgs) {
await p(this.#peer.db.add)(msg, rootMsgHash)
}
cb()
}
getMsgs(msgIds) {
const msgs = []
for (const msgId of msgIds) {
const msg = this.#peer.db.get(msgId)
if (msg) msgs.push(msg)
}
return msgs
}
}
module.exports = Algorithm

View File

@ -2,7 +2,7 @@ const toPull = require('push-stream-to-pull-stream')
const pull = require('pull-stream')
const makeDebug = require('debug')
const getSeverity = require('ssb-network-errors')
const syncAlgorithm = require('./old-algorithm')
const Algorithm = require('./algorithm')
const SyncStream = require('./stream')
function isMuxrpcMissingError(err, namespace, methodName) {
@ -11,9 +11,8 @@ function isMuxrpcMissingError(err, namespace, methodName) {
return err.message === jsErrorMessage || err.message === goErrorMessage
}
module.exports = function makeSyncPlugin(name, getOpts) {
return {
name: name,
module.exports = {
name: 'tangleSync',
manifest: {
connect: 'duplex',
request: 'sync',
@ -24,18 +23,8 @@ module.exports = function makeSyncPlugin(name, getOpts) {
},
},
init(peer, config) {
const debug = makeDebug(`ppppp:${name}`)
const opts = getOpts(peer, config)
const algo = syncAlgorithm(opts)
algo.getMsgs = function getMsgs(msgIds) {
const msgs = []
for (const msgId of msgIds) {
const msg = peer.db.get(msgId)
if (msg) msgs.push(msg)
}
return msgs
}
const debug = makeDebug(`ppppp:tangleSync`)
const algo = new Algorithm(peer)
const streams = []
function createStream(remoteId, isClient) {
@ -51,14 +40,14 @@ module.exports = function makeSyncPlugin(name, getOpts) {
if (!isClient) return
const local = toPull.duplex(createStream(rpc.id, true))
const remote = rpc[name].connect((networkError) => {
const remote = rpc.tangleSync.connect((networkError) => {
if (networkError && getSeverity(networkError) >= 3) {
if (isMuxrpcMissingError(networkError, name, 'connect')) {
if (isMuxrpcMissingError(networkError, 'tangleSync', 'connect')) {
console.warn(`peer ${rpc.id} does not support sync connect`)
// } else if (isReconnectedError(networkError)) { // TODO: bring back
// Do nothing, this is a harmless error
} else {
console.error(`rpc.${name}.connect exception:`, networkError)
console.error(`rpc.tangleSync.connect exception:`, networkError)
}
}
})
@ -81,5 +70,4 @@ module.exports = function makeSyncPlugin(name, getOpts) {
request,
}
},
}
}

17
lib/range.js Normal file
View File

@ -0,0 +1,17 @@
function isEmptyRange(range) {
const [min, max] = range
return min > max
}
function estimateMsgCount(range) {
const [minDepth, maxDepth] = range
const estimate = 2 * (maxDepth - minDepth + 1)
if (estimate > 1000) return 1000
else if (estimate < 5) return 5
else return estimate
}
module.exports = {
isEmptyRange,
estimateMsgCount
}

View File

@ -1,4 +1,5 @@
const Pipeable = require('push-stream/pipeable')
const {isEmptyRange} = require('./range')
class SyncStream extends Pipeable {
#myId
@ -261,7 +262,7 @@ class SyncStream extends Pipeable {
}
case 2: {
const { haveRange, wantRange } = payload
if (this.#algo.isEmptyRange(haveRange)) {
if (isEmptyRange(haveRange)) {
// prettier-ignore
this.#debug('%s Stream IN: received remote have-range %o and want-range %o for %s', this.#myId, haveRange, wantRange, id)
return this.#sendMsgsInRemoteWant(id, wantRange)
@ -272,7 +273,7 @@ class SyncStream extends Pipeable {
case 3: {
const { wantRange, bloom } = payload
const haveRange = this.#remoteHave.get(id)
if (haveRange && this.#algo.isEmptyRange(haveRange)) {
if (haveRange && isEmptyRange(haveRange)) {
// prettier-ignore
this.#debug('%s Stream IN: received remote want-range want-range %o and remember empty have-range %o for %s', this.#myId, wantRange, haveRange, id)
return this.#sendMsgsInRemoteWant(id, wantRange)

View File

@ -76,7 +76,7 @@ test('sync a normal feed', async (t) => {
const remoteAlice = await p(bob.connect)(alice.getAddress())
t.pass('bob connected to alice')
bob.threadSync.request(carolRootHash)
bob.tangleSync.request(carolRootHash)
await p(setTimeout)(1000)
t.pass('tangleSync!')