From 4c33f9f5a58b2ed041684030b3133d69261b706f Mon Sep 17 00:00:00 2001 From: Derek Anderson Date: Thu, 22 Aug 2024 15:08:50 -0500 Subject: [PATCH] remove message about missing file file Signed-off-by: Derek Anderson --- src/commands/offchain/start.ts | 136 +++++++++++++++++---------------- 1 file changed, 69 insertions(+), 67 deletions(-) diff --git a/src/commands/offchain/start.ts b/src/commands/offchain/start.ts index ed01894..efa0ff2 100644 --- a/src/commands/offchain/start.ts +++ b/src/commands/offchain/start.ts @@ -1,98 +1,100 @@ -import Chalk from 'chalk' -import { store, get as storeGet, set as storeSet } from '../../store' -import { execSync } from 'child_process' -const fs = require('fs') +import Chalk from "chalk"; +import { store, get as storeGet, set as storeSet } from "../../store"; +import { execSync } from "child_process"; +const fs = require("fs"); -const headPrivateIdentity = `${store.system.homedir}/.bls/network/keys/head/priv.bin` -const workerPrivateIdentity = `${store.system.homedir}/.bls/network/keys/worker1/priv.bin` +const headPrivateIdentity = `${store.system.homedir}/.bls/network/keys/head/priv.bin`; +const workerPrivateIdentity = `${store.system.homedir}/.bls/network/keys/worker1/priv.bin`; -const runtimePath = `${store.system.homedir}/.bls/runtime` +const runtimePath = `${store.system.homedir}/.bls/runtime`; const readFirstLineSync = (filePath: string) => { try { - const fileContent = fs.readFileSync(filePath, 'utf8') - const lines = fileContent.split(/\r?\n/) // This regex handles both Windows (\r\n) and UNIX (\n) line endings - return lines[0] || '' // Return an empty string if the first line does not exist + const fileContent = fs.readFileSync(filePath, "utf8"); + const lines = fileContent.split(/\r?\n/); // This regex handles both Windows (\r\n) and UNIX (\n) line endings + return lines[0] || ""; // Return an empty string if the first line does not exist } catch (error: any) { - console.error(`Error reading the file: ${error.message}`) - return '' // Return an empty string if an error occurs + // console.error(`Error reading the file: ${error.message}`) + return ""; // Return an empty string if an error occurs } -} +}; + +const peerIdFile = `${store.system.homedir}/.bls/network/keys/head/peerid.txt`; +const headNodePeerId = readFirstLineSync(peerIdFile); -const peerIdFile = `${store.system.homedir}/.bls/network/keys/head/peerid.txt` -const headNodePeerId = readFirstLineSync(peerIdFile) +// I don't think it matters at the moment if (!headNodePeerId) { - console.log('The file is empty or does not exist.') + // console.log('The file is empty or does not exist.') } const headCommand = [ - '--peer-db', - '/tmp/b7s/head-peer-db', - '--function-db', - '/tmp/b7s/head-fdb', - '--log-level', - 'debug', - '--port', - '9527', - '--role', - 'head', - '--workspace', - '/tmp/debug/head', - '--private-key', + "--peer-db", + "/tmp/b7s/head-peer-db", + "--function-db", + "/tmp/b7s/head-fdb", + "--log-level", + "debug", + "--port", + "9527", + "--role", + "head", + "--workspace", + "/tmp/debug/head", + "--private-key", headPrivateIdentity, - '--rest-api', - ':6000' -].join(' ') + "--rest-api", + ":6000", +].join(" "); const workerCommand = [ - '--peer-db', - '/tmp/b7s/worker-peer-db', - '--function-db', - '/tmp/b7s/worker-fdb', - '--log-level', - 'debug', - '--port', - '0', - '--role', - 'worker', - '--runtime', + "--peer-db", + "/tmp/b7s/worker-peer-db", + "--function-db", + "/tmp/b7s/worker-fdb", + "--log-level", + "debug", + "--port", + "0", + "--role", + "worker", + "--runtime", runtimePath, - '--workspace', - '/tmp/debug/worker', - '--private-key', + "--workspace", + "/tmp/debug/worker", + "--private-key", workerPrivateIdentity, - '--boot-nodes', - `/ip4/0.0.0.0/tcp/9527/p2p/${headNodePeerId}` -].join(' ') + "--boot-nodes", + `/ip4/0.0.0.0/tcp/9527/p2p/${headNodePeerId}`, +].join(" "); -export const run = (agentType: string = 'head') => { - let type = 'head' +export const run = (agentType: string = "head") => { + let type = "head"; switch (agentType) { - case 'worker': - type = 'worker' - break - case 'head': - type = 'head' - break + case "worker": + type = "worker"; + break; + case "head": + type = "head"; + break; default: - type = 'head' - break + type = "head"; + break; } - console.log(`${Chalk.yellow('Off-Chain')} ... starting ${type} node`) + console.log(`${Chalk.yellow("Off-Chain")} ... starting ${type} node`); try { execSync( `cd ${store.system.homedir}/.bls/network; ./b7s ${ - type == 'head' ? headCommand : workerCommand + type == "head" ? headCommand : workerCommand }`, { - stdio: 'inherit' - } - ) - process.exit(0) + stdio: "inherit", + }, + ); + process.exit(0); } catch (error) { - process.exit(0) + process.exit(0); } -} +};