Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Add env argument to cluster.fork
Browse files Browse the repository at this point in the history
Fixes 2378
  • Loading branch information
AndreasMadsen authored and ry committed Dec 19, 2011
1 parent 8085876 commit 07b1997
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 10 deletions.
6 changes: 4 additions & 2 deletions doc/api/cluster.markdown
Expand Up @@ -72,9 +72,11 @@ in the master process via message passing:



### cluster.fork()
### cluster.fork([env])

Spawn a new worker process. This can only be called from the master process.
The function takes an optional `env` object. The propertyies in this object

This comment has been minimized.

Copy link
@mscdex

mscdex Dec 20, 2011

This should be "properties" and not "propertyies." I'd send a pull request, but for some reason github is giving me a 404 when I try to propose the file change.

This comment has been minimized.

Copy link
@AndreasMadsen

AndreasMadsen via email Dec 20, 2011

Author Member

This comment has been minimized.

Copy link
@AndreasMadsen

AndreasMadsen Dec 20, 2011

Author Member

@mscdex The pull request is now uploaded, you are welcome to check the spelling if you want to do so.

will be added to the process environment in the worker.

### cluster.isMaster
### cluster.isWorker
Expand All @@ -92,6 +94,6 @@ This can be used to restart the worker by calling `fork()` again.
console.log('worker ' + worker.pid + ' died. restart...');
cluster.fork();
});

Different techniques can be used to restart the worker depending on the
application.
32 changes: 24 additions & 8 deletions lib/cluster.js
Expand Up @@ -24,8 +24,21 @@ var fork = require('child_process').fork;
var net = require('net');
var EventEmitter = require('events').EventEmitter;

var cluster = module.exports = new EventEmitter();
function isObject(o) {
return (typeof o === 'object' && o !== null);

This comment has been minimized.

Copy link
@tj

tj Dec 19, 2011

parens here is really weird

}

function extendObject(origin, add) {
console.log('object: ', add);

This comment has been minimized.

Copy link
@tj

tj Dec 19, 2011

?

for (var name in add) {
if (Object.hasOwnProperty.call(add, name)) {
origin[name] = add[name];
}
}
return origin;
}

var cluster = module.exports = new EventEmitter();

var debug;
if (process.env.NODE_DEBUG && /cluster/.test(process.env.NODE_DEBUG)) {
Expand Down Expand Up @@ -139,23 +152,26 @@ function eachWorker(cb) {
}


cluster.fork = function() {
cluster.fork = function(env) {
// This can only be called from the master.
assert(cluster.isMaster);

// Lazily start the master process stuff.
startMaster();

var id = ++ids;
var envCopy = {};

for (var x in process.env) {
envCopy[x] = process.env[x];
}

//Create env object
var envCopy = extendObject({}, process.env);
envCopy['NODE_WORKER_ID'] = id;
if (isObject(env)) {
envCopy = extendObject(envCopy, env);
}

var worker = fork(workerFilename, workerArgs, { env: envCopy });
//fork worker
var worker = fork(workerFilename, workerArgs, {
'env': envCopy
});

workers[id] = worker;

Expand Down
66 changes: 66 additions & 0 deletions test/simple/test-cluster-fork-env.js
@@ -0,0 +1,66 @@
// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to permit
// persons to whom the Software is furnished to do so, subject to the
// following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.


var common = require('../common');
var assert = require('assert');
var cluster = require('cluster');

if (cluster.isWorker) {
process.send({
testcase: true,
prop: process.env['cluster_test_prop'],
overwrite: process.env['cluster_test_overwrite']
});

} else if (cluster.isMaster) {

var checks = {
using: false,
overwrite: false
};

//To check that the cluster extend on the process.env we will overwrite a
//property
process.env['cluster_test_overwrite'] = 'old';

//Fork worker
var worker = cluster.fork({
'cluster_test_prop': 'custom',
'cluster_test_overwrite': 'new'
});

//Checks worker env
worker.on('message', function(data) {
if (data.testcase) {
checks.using = (data.prop === 'custom');
checks.overwrite = (data.overwrite === 'new');
process.exit(0);
}
});

process.once('exit', function() {
assert.ok(checks.using, 'The worker did not receive the correct env.');
assert.ok(checks.overwrite, 'The custom environment did not overwrite ' +
'the existing environment.');
});

}

0 comments on commit 07b1997

Please sign in to comment.