Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
fix: remove it-pipe (#69)
Browse files Browse the repository at this point in the history
Every iteration of every pipeline function in `it-pipe` crosses an
async boundary so it can harm performance if your pipleline would
otherwise be synchronous.

Fixes #44
  • Loading branch information
achingbrain committed Mar 2, 2023
1 parent ac2f065 commit dcf2e8e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@
"it-filter": "^2.0.0",
"it-foreach": "^1.0.0",
"it-map": "^2.0.0",
"it-pipe": "^2.0.3",
"mortice": "^3.0.0",
"multiformats": "^11.0.0",
"protons-runtime": "^5.0.0",
Expand Down
31 changes: 16 additions & 15 deletions src/address-book.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ import { CodeError } from '@libp2p/interfaces/errors'
import { isMultiaddr } from '@multiformats/multiaddr'
import { codes } from './errors.js'
import { PeerRecord, RecordEnvelope } from '@libp2p/peer-record'
import { pipe } from 'it-pipe'
import all from 'it-all'
import filter from 'it-filter'
import map from 'it-map'
import each from 'it-foreach'
import { peerIdFromPeerId } from '@libp2p/peer-id'
import { CustomEvent } from '@libp2p/interfaces/events'
import type { Address, AddressFilter, Peer, PeerMultiaddrsChangeData, PeerStore } from '@libp2p/interface-peer-store'
Expand Down Expand Up @@ -346,21 +341,27 @@ export class PeerStoreAddressBook {
}

async function filterMultiaddrs (peerId: PeerId, multiaddrs: Multiaddr[], addressFilter: AddressFilter, isCertified: boolean = false): Promise<Address[]> {
return await pipe(
multiaddrs,
(source) => each(source, (multiaddr) => {
const output: Address[] = []

await Promise.all(
multiaddrs.map(async multiaddr => {
if (!isMultiaddr(multiaddr)) {
log.error('multiaddr must be an instance of Multiaddr')
throw new CodeError('multiaddr must be an instance of Multiaddr', codes.ERR_INVALID_PARAMETERS)
}
}),
(source) => filter(source, async (multiaddr) => await addressFilter(peerId, multiaddr)),
(source) => map(source, (multiaddr) => {
return {

const include = await addressFilter(peerId, multiaddr)

if (!include) {
return
}

output.push({
multiaddr,
isCertified
}
}),
async (source) => await all(source)
})
})
)

return output
}

0 comments on commit dcf2e8e

Please sign in to comment.