2016-04-26 09:04:13 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright 2016 Realm Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/* eslint-env es6, node */
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
class Worker {
|
2016-12-08 12:01:41 +00:00
|
|
|
constructor(script, args) {
|
2017-03-28 20:20:49 +00:00
|
|
|
let options;
|
|
|
|
if (process.execArgv.find(arg => arg.indexOf("--debug="))) {
|
|
|
|
options = { execArgv: ['--debug=44725'] };
|
|
|
|
}
|
|
|
|
|
|
|
|
this._process = require('child_process').fork(script, args, options);
|
2016-04-26 09:04:13 +00:00
|
|
|
|
|
|
|
this._process.on('message', (message) => {
|
|
|
|
if (this.onmessage) {
|
|
|
|
this.onmessage(message);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
postMessage(message) {
|
2016-10-04 22:02:51 +00:00
|
|
|
if (this._process) {
|
|
|
|
this._process.send(message);
|
|
|
|
}
|
2016-04-26 09:04:13 +00:00
|
|
|
}
|
2017-03-07 22:24:30 +00:00
|
|
|
terminate(cb) {
|
|
|
|
if (!cb) {
|
|
|
|
cb = function() { };
|
|
|
|
}
|
|
|
|
|
2016-04-26 09:04:13 +00:00
|
|
|
if (this._process) {
|
2017-03-07 22:24:30 +00:00
|
|
|
this._process.once('close', cb);
|
2016-04-26 09:04:13 +00:00
|
|
|
this._process.kill();
|
|
|
|
delete this._process;
|
2017-03-07 22:24:30 +00:00
|
|
|
} else {
|
|
|
|
cb();
|
2016-04-26 09:04:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Worker;
|