Sha256: 860521937ca81ebce51cef398fa76d303e79d8ac63d522ff04b5dadf3f2daddc

Contents?: true

Size: 1.33 KB

Versions: 26

Compression:

Stored size: 1.33 KB

Contents

'use strict'

let $module

/*
  let contextProto = this.context;
  while (contextProto = Object.getPrototypeOf(contextProto)) {
    completionGroups.push(Object.getOwnPropertyNames(contextProto));
  }
*/


function handle (data) {
  let idx      = data.idx
    , child    = data.child
    , method   = data.method
    , args     = data.args
    , callback = function () {
        let _args = Array.prototype.slice.call(arguments)
        if (_args[0] instanceof Error) {
          let e = _args[0]
          _args[0] = {
              '$error'  : '$error'
            , 'type'    : e.constructor.name
            , 'message' : e.message
            , 'stack'   : e.stack
          }
          Object.keys(e).forEach(function(key) {
            _args[0][key] = e[key]
          })
        }
        process.send({ owner: 'farm', idx: idx, child: child, args: _args })
      }
    , exec

  if (method == null && typeof $module == 'function')
    exec = $module
  else if (typeof $module[method] == 'function')
    exec = $module[method]

  if (!exec)
    return console.error('NO SUCH METHOD:', method)

  exec.apply(null, args.concat([ callback ]))
}


process.on('message', function (data) {
  if (data.owner !== 'farm') {
    return;
  }

  if (!$module) return $module = require(data.module)
  if (data.event == 'die') return process.exit(0)
  handle(data)
})

Version data entries

26 entries across 25 versions & 8 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/worker-farm/lib/child/index.js
disco_app-0.18.0 test/dummy/node_modules/worker-farm/lib/child/index.js
disco_app-0.18.2 test/dummy/node_modules/worker-farm/lib/child/index.js
disco_app-0.16.1 test/dummy/node_modules/worker-farm/lib/child/index.js
disco_app-0.15.2 test/dummy/node_modules/worker-farm/lib/child/index.js
disco_app-0.18.4 test/dummy/node_modules/worker-farm/lib/child/index.js
disco_app-0.18.1 test/dummy/node_modules/worker-farm/lib/child/index.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/worker-farm/lib/child/index.js
disco_app-0.14.0 test/dummy/node_modules/worker-farm/lib/child/index.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/worker-farm/lib/child/index.js
tang-0.2.1 spec/tang_app/node_modules/worker-farm/lib/child/index.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/worker-farm/lib/child/index.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/worker-farm/lib/child/index.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/worker-farm/lib/child/index.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/worker-farm/lib/child/index.js
tang-0.2.0 spec/tang_app/node_modules/worker-farm/lib/child/index.js
tang-0.1.0 spec/tang_app/node_modules/worker-farm/lib/child/index.js
tang-0.0.9 spec/tang_app/node_modules/worker-farm/lib/child/index.js
enju_library-0.3.8 spec/dummy/node_modules/worker-farm/lib/child/index.js
jester-data-8.0.0 node_modules/worker-farm/lib/child/index.js