cb5eaf0675fb1f4b3956a8c755ed1bc93703667f
[platform/upstream/nodejs.git] / test / parallel / test-cluster-dgram-2.js
1 // Copyright Joyent, Inc. and other Node contributors.
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining a
4 // copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to permit
8 // persons to whom the Software is furnished to do so, subject to the
9 // following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included
12 // in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18 // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 // USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22 var NUM_WORKERS = 4;
23 var PACKETS_PER_WORKER = 10;
24
25 var assert = require('assert');
26 var cluster = require('cluster');
27 var common = require('../common');
28 var dgram = require('dgram');
29
30
31 if (process.platform === 'win32') {
32   console.warn("dgram clustering is currently not supported on windows.");
33   process.exit(0);
34 }
35
36 if (cluster.isMaster)
37   master();
38 else
39   worker();
40
41
42 function master() {
43   var i;
44   var received = 0;
45
46   // Start listening on a socket.
47   var socket = dgram.createSocket('udp4');
48   socket.bind(common.PORT);
49
50   // Disconnect workers when the expected number of messages have been
51   // received.
52   socket.on('message', function(data, info) {
53     received++;
54
55     if (received == PACKETS_PER_WORKER * NUM_WORKERS) {
56       console.log('master received %d packets', received);
57
58       // Close the socket.
59       socket.close();
60
61       // Disconnect all workers.
62       cluster.disconnect();
63     }
64   });
65
66   // Fork workers.
67   for (var i = 0; i < NUM_WORKERS; i++)
68     cluster.fork();
69 }
70
71
72 function worker() {
73   // Create udp socket and send packets to master.
74   var socket = dgram.createSocket('udp4');
75   var buf = new Buffer('hello world');
76
77   for (var i = 0; i < PACKETS_PER_WORKER; i++)
78     socket.send(buf, 0, buf.length, common.PORT, '127.0.0.1');
79
80   console.log('worker %d sent %d packets', cluster.worker.id, PACKETS_PER_WORKER);
81 }