2020-12-23 17:24:22 +03:00
|
|
|
/*
|
2023-04-03 21:52:40 +04:00
|
|
|
* Copyright 2023 Fluence Labs Limited
|
2020-12-23 17:24:22 +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
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2023-02-13 17:41:35 +03:00
|
|
|
import type { PeerIdB58 } from '@fluencelabs/interfaces';
|
|
|
|
import type { SecurityTetraplet } from '@fluencelabs/avm';
|
2023-04-03 21:52:40 +04:00
|
|
|
import { JSONValue } from '../util/commonTypes.js';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* JS Service host a low level interface for managing pure javascript services.
|
|
|
|
* It operates on a notion of Call Service Handlers - functions which are called when a `call` air instruction is executed on the local peer.
|
|
|
|
*/
|
|
|
|
export interface IJsServiceHost {
|
|
|
|
/**
|
|
|
|
* Returns true if any handler for the specified serviceId is registered
|
|
|
|
*/
|
|
|
|
hasService(serviceId: string): boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find call service handler for specified particle
|
|
|
|
* @param serviceId Service ID as specified in `call` air instruction
|
|
|
|
* @param fnName Function name as specified in `call` air instruction
|
|
|
|
* @param particleId Particle ID
|
|
|
|
*/
|
|
|
|
getHandler(serviceId: string, fnName: string, particleId: string): GenericCallServiceHandler | null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute service call for specified call service data
|
|
|
|
*/
|
|
|
|
callService(req: CallServiceData): Promise<CallServiceResult | null>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register handler for all particles
|
|
|
|
*/
|
|
|
|
registerGlobalHandler(serviceId: string, fnName: string, handler: GenericCallServiceHandler): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register handler which will be called only for particle with the specific id
|
|
|
|
*/
|
|
|
|
registerParticleScopeHandler(
|
|
|
|
particleId: string,
|
|
|
|
serviceId: string,
|
|
|
|
fnName: string,
|
|
|
|
handler: GenericCallServiceHandler,
|
|
|
|
): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes all handlers associated with the specified particle scope
|
|
|
|
* @param particleId Particle ID to remove handlers for
|
|
|
|
*/
|
|
|
|
removeParticleScopeHandlers(particleId: string): void;
|
|
|
|
}
|
2021-10-20 22:20:43 +03:00
|
|
|
|
|
|
|
export enum ResultCodes {
|
|
|
|
success = 0,
|
2021-12-10 16:47:58 +03:00
|
|
|
error = 1,
|
2021-10-20 22:20:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Particle context. Contains additional information about particle which triggered `call` air instruction from AVM
|
|
|
|
*/
|
|
|
|
export interface ParticleContext {
|
|
|
|
/**
|
2021-11-09 14:37:44 +03:00
|
|
|
* The identifier of particle which triggered the call
|
2021-10-20 22:20:43 +03:00
|
|
|
*/
|
|
|
|
particleId: string;
|
2021-11-09 14:37:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The peer id which created the particle
|
|
|
|
*/
|
2021-10-20 22:20:43 +03:00
|
|
|
initPeerId: PeerIdB58;
|
2021-11-09 14:37:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Particle's timestamp when it was created
|
|
|
|
*/
|
2021-10-20 22:20:43 +03:00
|
|
|
timestamp: number;
|
2021-11-09 14:37:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Time to live in milliseconds. The time after the particle should be expired
|
|
|
|
*/
|
2021-10-20 22:20:43 +03:00
|
|
|
ttl: number;
|
2021-11-09 14:37:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Particle's signature
|
|
|
|
*/
|
2022-05-12 17:14:16 +03:00
|
|
|
signature?: string;
|
2021-10-20 22:20:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents the information passed from AVM when a `call` air instruction is executed on the local peer
|
|
|
|
*/
|
|
|
|
export interface CallServiceData {
|
|
|
|
/**
|
|
|
|
* Service ID as specified in `call` air instruction
|
|
|
|
*/
|
|
|
|
serviceId: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function name as specified in `call` air instruction
|
|
|
|
*/
|
|
|
|
fnName: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Arguments as specified in `call` air instruction
|
|
|
|
*/
|
|
|
|
args: any[];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Security Tetraplets received from AVM
|
|
|
|
*/
|
|
|
|
tetraplets: SecurityTetraplet[][];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Particle context, @see {@link ParticleContext}
|
|
|
|
*/
|
|
|
|
particleContext: ParticleContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-05-12 17:14:16 +03:00
|
|
|
* Type for all the possible objects that can be returned to the AVM
|
2021-10-20 22:20:43 +03:00
|
|
|
*/
|
2022-09-12 13:32:50 +03:00
|
|
|
export type CallServiceResultType = JSONValue;
|
2021-10-20 22:20:43 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generic call service handler
|
|
|
|
*/
|
|
|
|
export type GenericCallServiceHandler = (req: CallServiceData) => CallServiceResult | Promise<CallServiceResult>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents the result of the `call` air instruction to be returned into AVM
|
|
|
|
*/
|
|
|
|
export interface CallServiceResult {
|
|
|
|
/**
|
|
|
|
* Return code to be returned to AVM
|
|
|
|
*/
|
|
|
|
retCode: ResultCodes;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Result object to be returned to AVM
|
|
|
|
*/
|
|
|
|
result: CallServiceResultType;
|
|
|
|
}
|