-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Adds the ability to start a circuit relay server for testing webrtc - Renames server/client listener/dialer - Uses env vars for config because browser bundles don't get node internals or cli args - Adds pw-test for running in browsers
- Loading branch information
1 parent
50b451f
commit 89bb195
Showing
18 changed files
with
12,804 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
DOCKER_IMAGE := node:20-alpine | ||
DOCKER_RUN := docker run --rm -v "$(shell pwd)":/usr/src/myapp -w /usr/src/myapp $(DOCKER_IMAGE) | ||
|
||
all: perf | ||
|
||
perf: | ||
$(DOCKER_RUN) npm ci | ||
|
||
clean: | ||
rm -rf node_modules | ||
|
||
.PHONY: all clean perf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import { noise } from '@chainsafe/libp2p-noise' | ||
import { yamux } from '@chainsafe/libp2p-yamux' | ||
import { createLibp2p } from 'libp2p' | ||
import { perf } from '@libp2p/perf' | ||
import { circuitRelayTransport } from '@libp2p/circuit-relay-v2' | ||
import { webRTC } from '@libp2p/webrtc' | ||
import { tcp } from '@libp2p/tcp' | ||
import { identify } from '@libp2p/identify' | ||
import { multiaddr } from '@multiformats/multiaddr' | ||
import { webSockets } from '@libp2p/websockets' | ||
import { all } from '@libp2p/websockets/filters' | ||
|
||
const transport = process.env.TRANSPORT | ||
const listenerAddress = process.env.LISTENER_ADDRESS | ||
const uploadBytes = Number(process.env.UPLOAD_BYTES) | ||
const downloadBytes = Number(process.env.DOWNLOAD_BYTES) | ||
|
||
const config = { | ||
transports: [], | ||
streamMuxers: [ | ||
yamux() | ||
], | ||
connectionEncryption: [ | ||
noise() | ||
], | ||
connectionManager: { | ||
minConnections: 0 | ||
}, | ||
services: { | ||
perf: perf(), | ||
identify: identify() | ||
} | ||
} | ||
|
||
if (transport === 'tcp') { | ||
config.transports.push(tcp()) | ||
} else if (transport === 'webrtc') { | ||
config.transports.push(circuitRelayTransport()) | ||
config.transports.push(webRTC()) | ||
config.transports.push(webSockets({ | ||
filter: all | ||
})) | ||
} else if (transport === 'ws') { | ||
config.transports.push(webSockets({ | ||
filter: all | ||
})) | ||
} else if (transport === 'wss') { | ||
config.transports.push(webSockets({ | ||
filter: all | ||
})) | ||
} | ||
|
||
const node = await createLibp2p(config) | ||
|
||
for await (const output of node.services.perf.measurePerformance(multiaddr(listenerAddress), uploadBytes, downloadBytes)) { | ||
// eslint-disable-next-line no-console | ||
console.log(JSON.stringify(output)) | ||
} | ||
|
||
process.exit(0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
import { noise } from '@chainsafe/libp2p-noise' | ||
import { yamux } from '@chainsafe/libp2p-yamux' | ||
import { tcp } from '@libp2p/tcp' | ||
import { multiaddr } from '@multiformats/multiaddr' | ||
import { createLibp2p } from 'libp2p' | ||
import { perf } from '@libp2p/perf' | ||
import { parseArgs } from 'node:util' | ||
|
||
const argv = parseArgs({ | ||
options: { | ||
'run-server': { | ||
type: 'string', | ||
default: 'false' | ||
}, | ||
'server-address': { | ||
type: 'string' | ||
}, | ||
transport: { | ||
type: 'string', | ||
default: 'tcp' | ||
}, | ||
'upload-bytes': { | ||
type: 'string', | ||
default: '0' | ||
}, | ||
'download-bytes': { | ||
type: 'string', | ||
default: '0' | ||
} | ||
} | ||
}) | ||
|
||
/** | ||
* @param {boolean} runServer | ||
* @param {string} serverIpAddress | ||
* @param {string} transport | ||
* @param {number} uploadBytes | ||
* @param {number} downloadBytes | ||
*/ | ||
export async function main (runServer, serverIpAddress, transport, uploadBytes, downloadBytes) { | ||
const { host, port } = splitHostPort(serverIpAddress) | ||
|
||
const config = { | ||
transports: [ | ||
tcp() | ||
], | ||
streamMuxers: [ | ||
yamux() | ||
], | ||
connectionEncryption: [ | ||
noise() | ||
], | ||
connectionManager: { | ||
minConnections: 0 | ||
}, | ||
services: { | ||
perf: perf() | ||
} | ||
} | ||
|
||
if (runServer) { | ||
Object.assign(config, { | ||
addresses: { | ||
listen: [ | ||
// #TODO: right now we only support tcp | ||
`/ip4/${host}/tcp/${port}` | ||
] | ||
} | ||
}) | ||
} | ||
|
||
const node = await createLibp2p(config) | ||
|
||
await node.start() | ||
|
||
if (!runServer) { | ||
for await (const output of node.services.perf.measurePerformance(multiaddr(`/ip4/${host}/tcp/${port}`), uploadBytes, downloadBytes)) { | ||
// eslint-disable-next-line no-console | ||
console.log(JSON.stringify(output)) | ||
} | ||
|
||
await node.stop() | ||
} | ||
} | ||
|
||
/** | ||
* @param {string} address | ||
* @returns { host: string, port?: string } | ||
*/ | ||
function splitHostPort (address) { | ||
try { | ||
const parts = address.split(':') | ||
const host = parts[0] | ||
const port = parts[1] | ||
return { | ||
host, | ||
port | ||
} | ||
} catch (error) { | ||
throw Error('Invalid server address') | ||
} | ||
} | ||
|
||
main(argv.values['run-server'] === 'true', argv.values['server-address'], argv.values.transport, Number(argv.values['upload-bytes']), Number(argv.values['download-bytes'])).catch((err) => { | ||
// eslint-disable-next-line no-console | ||
console.error(err) | ||
process.exit(1) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
import { noise } from '@chainsafe/libp2p-noise' | ||
import { yamux } from '@chainsafe/libp2p-yamux' | ||
import { createLibp2p } from 'libp2p' | ||
import { perf } from '@libp2p/perf' | ||
import { WebRTC, TCP } from '@multiformats/multiaddr-matcher' | ||
import { webSockets } from '@libp2p/websockets' | ||
import { all } from '@libp2p/websockets/filters' | ||
import { identify } from '@libp2p/identify' | ||
import { circuitRelayTransport } from '@libp2p/circuit-relay-v2' | ||
import { webRTC } from '@libp2p/webrtc' | ||
import { tcp } from '@libp2p/tcp' | ||
|
||
const transport = process.env.TRANSPORT | ||
const relayAddress = process.env.RELAY_ADDRESS | ||
const listenPort = process.env.LISTEN_PORT | ||
const externalIp = process.env.EXTERNAL_IP | ||
|
||
const config = { | ||
transports: [], | ||
streamMuxers: [ | ||
yamux() | ||
], | ||
connectionEncryption: [ | ||
noise() | ||
], | ||
connectionManager: { | ||
minConnections: 0 | ||
}, | ||
services: { | ||
perf: perf(), | ||
identify: identify() | ||
}, | ||
connectionGater: { | ||
denyDialMultiaddr: () => false | ||
} | ||
} | ||
|
||
if (transport === 'tcp') { | ||
config.transports.push(tcp()) | ||
|
||
config.addresses = { | ||
listen: [ | ||
`/ip4/0.0.0.0/tcp/${listenPort}` | ||
], | ||
announce: [ | ||
`/ip4/${externalIp}/tcp/${listenPort}` | ||
] | ||
} | ||
} else if (transport === 'webrtc') { | ||
config.transports.push(circuitRelayTransport()) | ||
config.transports.push(webRTC()) | ||
config.transports.push(webSockets({ | ||
filter: all | ||
})) | ||
|
||
config.addresses = { | ||
listen: [ | ||
`${relayAddress}/p2p-circuit`, | ||
'/webrtc' | ||
], | ||
announce: [ | ||
`${relayAddress}/p2p-circuit/webrtc`, | ||
] | ||
} | ||
} else if (transport === 'ws') { | ||
config.transports.push(webSockets({ | ||
filter: all | ||
})) | ||
} else if (transport === 'wss') { | ||
config.transports.push(webSockets({ | ||
filter: all | ||
})) | ||
} | ||
|
||
const node = await createLibp2p(config) | ||
let multiaddr | ||
|
||
if (transport === 'tcp') { | ||
multiaddr = node.getMultiaddrs() | ||
.filter(ma => TCP.matches(ma)) | ||
.map(ma => ma.toString()) | ||
.pop() | ||
} else if (transport === 'webrtc') { | ||
multiaddr = node.getMultiaddrs() | ||
.filter(ma => WebRTC.matches(ma)) | ||
.map(ma => ma.toString()) | ||
.pop() | ||
} | ||
|
||
// only need to print out one multiaddr because the runner will switch the | ||
// private IP for the public one before passing it to the client/server | ||
console.info(multiaddr) |
Oops, something went wrong.