A base worker class extending bfx-wrk-base.
The tether-wrk-base class is designed to initialize and configure services for the base worker. It simplifies the setup of facilities such as service storage and networking, starts an RPC server, and provides methods for handling RPC requests.
To run this worker, the init() function must be called in the constructor during the worker's initialization.
The worker is run using bfx-svc-boot-js. The initial code is written in worker.js, which is used to load the code in workers/base.wrk.tether.js via a Bash command:
node worker.js --wtype tether-wrk-base --env development --debug trueFor more details, refer to the repository bfx-svc-boot-js.
This method initializes the class by:
- Loading the configuration from the
config/common.jsonfile. - Setting up facilities for service storage and networking.
- Configuring the logger with the appropriate log level (
debugorinfo).
This method returns the RPC public key of the worker.
This method returns the RPC client key of the worker.
This method starts the RPC server using the hp-svc-facs-net facility. It can be overridden if extra logic is needed while starting the RPC server.
This method manages the complete startup process of the worker:
- It calls the parent class's
_start()method to initialize the base components. - It starts the RPC server and defines an RPC function
pingto test if the worker is operational. - It saves the RPC server's public key in the worker's status.
-
Configuration is loaded from the
config/common.jsonfile. Example ofcommon.json:{ "debug": 0 }The
debugkey controls the logging level in the worker. -
The class sets up the following facilities:
-
hp-svc-facs-store: A facility that exposes persistent Holepunch datastores. This facility does not require any additional configuration files. -
hp-svc-facs-net: A facility that provides access to the Holepunch networking stack (Hyperswarm). Its configuration is loaded fromconfig/facs/net.config.json. Example ofnet.config.json:{ "r0": { "allow": [], "allowLocal": true } }allow: An array used as an allowlist to validate incoming connections based on theirremotePublicKey.allowLocal: If set totrue, the function allows connections originating from the local IP address.
-
-
The
setup-config.shscript is used to convert allconfig.json.examplefiles intoconfig.json.