const Vertex = require('merkle-trie') const imports = require('./EVMinterface.js') const codeHandler = require('./codeHandler.js') const MessageQueue = require('./messageQueue') const PARENT_SYMBOL = Symbol('parent') const ROOT_SYMBOL = Symbol('root') module.exports = class Kernel { constructor (opts = {}) { const state = this.state = opts.state || new Vertex() state.value = opts.code || state.value this.imports = opts.imports || [imports] this.parent = opts.parent // RENAME agent this._vm = (opts.codeHandler || codeHandler).init(state.value) this._messageQueue = new MessageQueue(this) this._instanceCache = new Map() } static get PARENT () { return PARENT_SYMBOL } static get ROOT () { return ROOT_SYMBOL } get PARENT () { return PARENT_SYMBOL } get ROOT () { return ROOT_SYMBOL } /** * run the kernels code with a given enviroment * The Kernel Stores all of its state in the Environment. The Interface is used * to by the VM to retrive infromation from the Environment. */ async run (message, imports = this.imports) { const state = this.state.copy() // const stateInterface = new StateInterface(state) const result = await this._vm.run(message, this, imports) if (!result.execption) { // update the state await this.state.set([], state) } return result } async recieve (message) { if (message.isCyclic(this)) { const result = await this.run(message) message.finished() return result } else { return this._messageQueue.add(message) } } async send (port, message) { message.sending(this, this._messageQueue.currentMessage) // replace root with parent path to root if (port === ROOT_SYMBOL) { port = PARENT_SYMBOL message.to = new Array(this.state.path.length - 1).fill(PARENT_SYMBOL).concat(message.to) } if (port === PARENT_SYMBOL) { message.from.push(this.state.name) } else { message.from.push(this.PARENT) } const dest = await this.getPort(port) return dest.recieve(message) } async getPort (port) { if (this._instanceCache.has(port)) { return this._instanceCache.get(port) } else { const destState = await (port === this.PARENT ? this.state.getParent() : this.state.get([port])) const kernel = new Kernel({ state: destState }) this._instanceCache.set(port, kernel) return kernel } } }