const Pipe = require('buffer-pipe') const leb128 = require('leb128').unsigned module.exports = class Actor { /** * the Actor manages the varous message passing functions and provides * an interface for the containers to use * @param {Object} opts * @param {Object} opts.id - the UUID of the Actor * @param {Object} opts.state - the state of the container * @param {Object} opts.hypervisor - the instance of the hypervisor * @param {Object} opts.container - the container constuctor and argments */ constructor (opts) { Object.assign(this, opts) this.inbox = [] this.ticks = 0 this.running = false this.container = new this.Container(this) } serializeMetaData () { return Actor.serializeMetaData(this.type, this.nonce) } getFuncRef (name) { return { name, destId: this.id } } /** * Runs the shutdown routine for the actor */ async shutdown () { await this.state.done() this.state.root['/'][3] = this.serializeMetaData() } /** * Runs the startup routine for the actor */ startup () { return this.container.onStartup() } /** * run the Actor with a given message * @param {object} message - the message to run * @param {String} method - which method to run * @returns {Promise} */ async runMessage (message) { if (message._fromTicks > this.ticks) { this.ticks = message._fromTicks } try { this.currentMessage = message await this.container.onMessage(message) } catch (e) { message.emit('execution:error', e) } message.emit('done', this) } /** * updates the number of ticks that the actor has run * @param {Number} count - the number of ticks to add */ incrementTicks (count) { this.ticks += count } /** * creates an actor * @param {Integer} type - the type id for the container * @param {Object} message - an intial [message](https://github.com/primea/js-primea-message) to send newly created actor */ createActor (type, code) { const id = this._generateNextId() return this.hypervisor.createActor(type, code, id) } _generateNextId () { const id = { nonce: this.nonce, parent: this.id } this.nonce++ return id } /** * sends a message to a given port * @param {Object} portRef - the port * @param {Message} message - the message */ send (message) { message._fromTicks = this.ticks message._fromId = this.id this.hypervisor.scheduler.queue([message]) } static serializeMetaData (type, nonce = 0) { const p = new Pipe() leb128.write(type, p) leb128.write(nonce, p) return p.buffer } static deserializeMetaData (buffer) { const pipe = new Pipe(buffer) const type = leb128.read(pipe) const nonce = leb128.read(pipe) return { nonce, type } } }