2023-04-03 21:52:40 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2023 Fluence Labs Limited
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as api from '@fluencelabs/aqua-api/aqua-api.js';
|
|
|
|
|
|
|
|
import { promises as fs } from 'fs';
|
|
|
|
import { DEFAULT_CONFIG, FluencePeer, PeerConfig } from '../jsPeer/FluencePeer.js';
|
|
|
|
import { Particle } from '../particle/Particle.js';
|
|
|
|
import { ClientConfig, IFluenceClient, RelayOptions, ServiceDef } from '@fluencelabs/interfaces';
|
|
|
|
import { callAquaFunction } from '../compilerSupport/callFunction.js';
|
|
|
|
|
|
|
|
import { MarineBackgroundRunner } from '../marine/worker/index.js';
|
|
|
|
import { WorkerLoader } from '../marine/worker-script/workerLoader.js';
|
|
|
|
import { KeyPair } from '../keypair/index.js';
|
|
|
|
import { Subject, Subscribable } from 'rxjs';
|
|
|
|
import { WrapFnIntoServiceCall } from '../jsServiceHost/serviceUtils.js';
|
|
|
|
import { JsServiceHost } from '../jsServiceHost/JsServiceHost.js';
|
|
|
|
import { ClientPeer, makeClientPeerConfig } from '../clientPeer/ClientPeer.js';
|
2023-08-25 00:15:49 +07:00
|
|
|
import { WasmLoaderFromNpm, WorkerLoaderFromNpm } from '../marine/deps-loader/node.js';
|
2023-04-03 21:52:40 +04:00
|
|
|
import { IConnection } from '../connection/interfaces.js';
|
|
|
|
|
|
|
|
export const registerHandlersHelper = (
|
|
|
|
peer: FluencePeer,
|
|
|
|
particle: Particle,
|
|
|
|
handlers: Record<string, Record<string, any>>,
|
|
|
|
) => {
|
|
|
|
Object.entries(handlers).forEach(([serviceId, service]) => {
|
|
|
|
Object.entries(service).forEach(([fnName, fn]) => {
|
|
|
|
peer.internals.regHandler.forParticle(particle.id, serviceId, fnName, WrapFnIntoServiceCall(fn));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
export type CompiledFnCall = (peer: IFluenceClient, args: { [key: string]: any }) => Promise<unknown>;
|
|
|
|
export type CompiledFile = {
|
|
|
|
functions: { [key: string]: CompiledFnCall };
|
|
|
|
services: { [key: string]: ServiceDef };
|
|
|
|
};
|
|
|
|
|
|
|
|
export const compileAqua = async (aquaFile: string): Promise<CompiledFile> => {
|
|
|
|
await fs.access(aquaFile);
|
|
|
|
|
|
|
|
const compilationResult = await api.Aqua.compile(new api.Path(aquaFile), [], undefined);
|
|
|
|
|
|
|
|
if (compilationResult.errors.length > 0) {
|
|
|
|
throw new Error('Aqua compilation failed. Error: ' + compilationResult.errors.join('/n'));
|
|
|
|
}
|
|
|
|
|
|
|
|
const functions = Object.entries(compilationResult.functions)
|
|
|
|
.map(([name, fnInfo]) => {
|
|
|
|
const callFn = (peer: IFluenceClient, args: { [key: string]: any }) => {
|
|
|
|
return callAquaFunction({
|
|
|
|
def: fnInfo.funcDef,
|
|
|
|
script: fnInfo.script,
|
|
|
|
config: {},
|
|
|
|
peer: peer,
|
|
|
|
args,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
return { [name]: callFn };
|
|
|
|
})
|
|
|
|
.reduce((agg, obj) => {
|
|
|
|
return { ...agg, ...obj };
|
|
|
|
}, {});
|
|
|
|
|
|
|
|
return { functions, services: compilationResult.services };
|
|
|
|
};
|
|
|
|
|
|
|
|
class NoopConnection implements IConnection {
|
2023-09-14 10:22:59 +07:00
|
|
|
start(): Promise<void> {
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
|
|
|
|
stop(): Promise<void> {
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
|
2023-04-03 21:52:40 +04:00
|
|
|
getRelayPeerId(): string {
|
|
|
|
return 'nothing_here';
|
|
|
|
}
|
|
|
|
supportsRelay(): boolean {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
particleSource: Subscribable<Particle> = new Subject<Particle>();
|
|
|
|
|
|
|
|
sendParticle(nextPeerIds: string[], particle: Particle): Promise<void> {
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class TestPeer extends FluencePeer {
|
|
|
|
constructor(keyPair: KeyPair, connection: IConnection) {
|
|
|
|
const workerLoader = new WorkerLoader();
|
|
|
|
const controlModuleLoader = new WasmLoaderFromNpm('@fluencelabs/marine-js', 'marine-js.wasm');
|
|
|
|
const avmModuleLoader = new WasmLoaderFromNpm('@fluencelabs/avm', 'avm.wasm');
|
2023-08-25 00:15:49 +07:00
|
|
|
const marine = new MarineBackgroundRunner(workerLoader, controlModuleLoader, avmModuleLoader);
|
2023-04-03 21:52:40 +04:00
|
|
|
const jsHost = new JsServiceHost();
|
2023-08-25 00:15:49 +07:00
|
|
|
super(DEFAULT_CONFIG, keyPair, marine, jsHost, connection);
|
2023-04-03 21:52:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const mkTestPeer = async () => {
|
|
|
|
const kp = await KeyPair.randomEd25519();
|
|
|
|
const conn = new NoopConnection();
|
|
|
|
return new TestPeer(kp, conn);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const withPeer = async (action: (p: FluencePeer) => Promise<void>) => {
|
|
|
|
const p = await mkTestPeer();
|
|
|
|
try {
|
|
|
|
await p.start();
|
|
|
|
await action(p);
|
|
|
|
} finally {
|
|
|
|
await p.stop();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export const withClient = async (
|
|
|
|
relay: RelayOptions,
|
|
|
|
config: ClientConfig,
|
|
|
|
action: (client: ClientPeer) => Promise<void>,
|
|
|
|
) => {
|
|
|
|
const workerLoader = new WorkerLoader();
|
|
|
|
const controlModuleLoader = new WasmLoaderFromNpm('@fluencelabs/marine-js', 'marine-js.wasm');
|
|
|
|
const avmModuleLoader = new WasmLoaderFromNpm('@fluencelabs/avm', 'avm.wasm');
|
2023-08-25 00:15:49 +07:00
|
|
|
const marine = new MarineBackgroundRunner(workerLoader, controlModuleLoader, avmModuleLoader);
|
2023-04-03 21:52:40 +04:00
|
|
|
const { keyPair, peerConfig, relayConfig } = await makeClientPeerConfig(relay, config);
|
2023-08-25 00:15:49 +07:00
|
|
|
const client = new ClientPeer(peerConfig, relayConfig, keyPair, marine);
|
2023-04-03 21:52:40 +04:00
|
|
|
try {
|
|
|
|
await client.connect();
|
|
|
|
await action(client);
|
|
|
|
} finally {
|
|
|
|
await client.disconnect();
|
|
|
|
}
|
|
|
|
};
|