fluence-js/src/fluenceConnection.ts

139 lines
4.3 KiB
TypeScript
Raw Normal View History

2020-05-14 15:20:39 +03:00
/*
2020-05-14 17:30:17 +03:00
* Copyright 2020 Fluence Labs Limited
2020-05-14 15:20:39 +03:00
*
2020-05-14 17:30:17 +03:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
2020-05-14 15:20:39 +03:00
*
2020-05-14 17:30:17 +03:00
* http://www.apache.org/licenses/LICENSE-2.0
2020-05-14 15:20:39 +03:00
*
2020-05-14 17:30:17 +03:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
2020-05-14 15:20:39 +03:00
*/
import Websockets from "libp2p-websockets";
import Mplex from "libp2p-mplex";
import SECIO from "libp2p-secio";
import Peer from "libp2p";
import {decode, encode} from "it-length-prefixed";
import pipe from "it-pipe";
import Multiaddr from "multiaddr";
import PeerId from "peer-id";
2020-09-15 12:09:13 +03:00
import * as log from 'loglevel';
2020-09-28 17:01:49 +03:00
import {parseParticle, Particle, stringifyParticle} from "./particle";
2020-05-14 15:20:39 +03:00
export const PROTOCOL_NAME = '/fluence/faas/1.0.0';
enum Status {
Initializing = "Initializing",
Connected = "Connected",
Disconnected = "Disconnected"
}
export class FluenceConnection {
private readonly selfPeerId: PeerId;
2020-09-28 17:01:49 +03:00
readonly relay: PeerId;
2020-05-14 15:20:39 +03:00
private node: LibP2p;
private readonly address: Multiaddr;
2020-07-27 16:39:54 +03:00
readonly nodePeerId: PeerId;
private readonly selfPeerIdStr: string;
2020-09-28 17:01:49 +03:00
private readonly handleCall: (call: Particle) => void;
2020-05-14 15:20:39 +03:00
2020-09-28 17:01:49 +03:00
constructor(multiaddr: Multiaddr, hostPeerId: PeerId, selfPeerId: PeerId, handleCall: (call: Particle) => void) {
this.selfPeerId = selfPeerId;
2020-05-14 15:20:39 +03:00
this.handleCall = handleCall;
this.selfPeerIdStr = selfPeerId.toB58String();
2020-05-14 15:20:39 +03:00
this.address = multiaddr;
this.nodePeerId = hostPeerId;
2020-06-30 16:34:05 +03:00
}
2020-05-14 15:20:39 +03:00
async connect() {
let peerInfo = this.selfPeerId;
2020-05-14 15:20:39 +03:00
this.node = await Peer.create({
peerId: peerInfo,
2020-05-14 15:20:39 +03:00
config: {},
modules: {
transport: [Websockets],
streamMuxer: [Mplex],
connEncryption: [SECIO],
peerDiscovery: []
},
});
await this.startReceiving();
}
isConnected() {
return this.status === Status.Connected
}
// connection status. If `Disconnected`, it cannot be reconnected
private status: Status = Status.Initializing;
private async startReceiving() {
if (this.status === Status.Initializing) {
await this.node.start();
2020-09-15 12:09:13 +03:00
log.debug("dialing to the node with address: " + this.node.peerId.toB58String());
2020-05-14 15:20:39 +03:00
await this.node.dial(this.address);
let _this = this;
this.node.handle([PROTOCOL_NAME], async ({connection, stream}) => {
pipe(
stream.source,
decode(),
async function (source: AsyncIterable<string>) {
for await (const msg of source) {
try {
2020-09-15 12:09:13 +03:00
log.debug(_this.selfPeerIdStr);
2020-09-28 17:01:49 +03:00
let particle = parseParticle(msg);
_this.handleCall(particle);
2020-05-14 15:20:39 +03:00
} catch(e) {
2020-09-15 12:09:13 +03:00
log.error("error on handling a new incoming message: " + e);
2020-05-14 15:20:39 +03:00
}
}
}
)
});
this.status = Status.Connected;
} else {
throw Error(`can't start receiving. Status: ${this.status}`);
}
}
private checkConnectedOrThrow() {
if (this.status !== Status.Connected) {
throw Error(`connection is in ${this.status} state`)
}
}
async disconnect() {
await this.node.stop();
this.status = Status.Disconnected;
}
2020-09-28 17:01:49 +03:00
async sendParticle(particle: Particle): Promise<void> {
this.checkConnectedOrThrow();
let particleStr = stringifyParticle(particle);
log.debug("send function call: \n" + JSON.stringify(particle, undefined, 2));
2020-05-14 15:20:39 +03:00
// create outgoing substream
const conn = await this.node.dialProtocol(this.address, PROTOCOL_NAME) as {stream: Stream; protocol: string};
pipe(
2020-09-28 17:01:49 +03:00
[particleStr],
2020-05-14 15:20:39 +03:00
// at first, make a message varint
encode(),
conn.stream.sink,
);
}
2020-06-19 14:29:06 +03:00
}