-
Notifications
You must be signed in to change notification settings - Fork 23
/
NoLocalPubSub.js
266 lines (247 loc) · 11.2 KB
/
NoLocalPubSub.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
/**
* Solace Systems Node.js API
* NoLocal tutorial
* Demonstrates the use of the NO_LOCAL Session and MessageConsumer properties.
*
* With these properties enabled, messages published on a Session cannot be received on that
* same session or on a Consumer on that Session even when there is a matching subscription.
* This sample will create and use a temporary queue.
*
* This sample will:
* - Subscribe to a Topic for Direct messages on a Session with No Local delivery enabled.
* - Create a message Consumer to a Queue with No Local Delivery enabled on the Message Consumer,
* but not on the Session.
* - Publish a Direct message on each Session, and verify it is not delivered locally.
* - Publish a message to the Queue on each Session, and verify it is not delivered locally.
*/
/*jslint es6 node:true devel:true*/
var NoLocalPubSub = function (solaceModule, topicName) {
'use strict';
var solace = solaceModule;
var sample = {};
sample.session1 = null;
sample.session2 = null;
sample.topicName = topicName;
sample.topicDestination = new solace.Destination(sample.topicName, solace.DestinationType.TOPIC);
sample.queueDestination = null;
sample.sessionsUp = 0;
// Logger
sample.log = function (line) {
var now = new Date();
var time = [('0' + now.getHours()).slice(-2), ('0' + now.getMinutes()).slice(-2),
('0' + now.getSeconds()).slice(-2)];
var timestamp = '[' + time.join(':') + '] ';
console.log(timestamp + line);
};
sample.log('\n*** NoLocalPubSub is ready to connect ***');
// main function
sample.run = function (argv) {
sample.connect(argv);
};
// Establishes connection to Solace PubSub+ Event Broker
sample.connect = function (argv) {
if (sample.session1 !== null) {
sample.log('Already connected and ready to start demo.');
return;
}
// extract params
if (argv.length < (2 + 3)) { // expecting 3 real arguments
sample.log('Cannot connect: expecting all arguments' +
' <protocol://host[:port]> <client-username>@<message-vpn> <client-password>.\n' +
'Available protocols are ws://, wss://, http://, https://, tcp://, tcps://');
process.exit();
}
var hosturl = argv.slice(2)[0];
sample.log('Connecting to Solace PubSub+ Event Broker using url: ' + hosturl);
var usernamevpn = argv.slice(3)[0];
var username = usernamevpn.split('@')[0];
sample.log('Client username: ' + username);
var vpn = usernamevpn.split('@')[1];
sample.log('Solace PubSub+ Event Broker VPN name: ' + vpn);
var pass = argv.slice(4)[0];
// create session properties
var sessionProperties = new solace.SessionProperties({
url: hosturl,
vpnName: vpn,
userName: username,
password: pass,
});
try {
// session 1: session level NoLocal is not set,
// consuming on queue with message consumer level NoLocal is SET
sessionProperties.noLocal = false;
sample.session1 = sample.createSession({
sessionName: 'Session1 (session NoLocal=false, message consumer NoLocal=true)',
sessionProperties: sessionProperties,
isDirectSubscriberFlag: false,
isConsumerFlag: true });
sample.session1.connect();
// session 2: session level NoLocal is SET, will consume direct messages on topic
sessionProperties.noLocal = true;
sample.session2 = sample.createSession({
sessionName: 'Session2 (session NoLocal=true, direct message consumer)',
sessionProperties: sessionProperties,
isDirectSubscriberFlag: true,
isConsumerFlag: false, });
sample.session2.connect();
} catch (error) {
sample.log(error.toString());
}
};
sample.createSession = function (params) {
// create session
var session = null;
session = solace.SolclientFactory.createSession(params.sessionProperties);
// define session event listeners
session.on(solace.SessionEventCode.UP_NOTICE, function (sessionEvent) {
sample.log('=== ' + params.sessionName + ' successfully connected ===');
if (params.isDirectSubscriberFlag) {
if (!session.isCapable(solace.CapabilityType.NO_LOCAL)) {
sample.log('This sample requires an appliance with support for NO_LOCAL.');
sample.exit();
}
session.subscribe(
sample.topicDestination,
false, // not interested in confirmation this time
'', // not used
10000 // 10 seconds timeout for this operation
);
sample.log('Subscribed to topic: ' + sample.topicName);
};
if (params.isConsumerFlag) {
// Create the message consumer with NoLocal SET
var messageConsumer = session.createMessageConsumer({
queueDescriptor: { type: solace.QueueType.QUEUE, durable: false },
queueProperties: {
permissions: solace.QueuePermissions.DELETE,
quotaMB: 100,
maxMessageSize: 50000 },
noLocal: true,
});
// Define message consumer event listeners
messageConsumer.on(solace.MessageConsumerEventName.UP, function () {
sample.log('=== ' + params.sessionName + ' consumer to temporary queue is up. ===');
sample.queueDestination = messageConsumer.getDestination();
// start demo if both sessions up
if (sample.sessionsUp === 2) {
sample.startDemo();
}
});
// Define message event listener
messageConsumer.on(solace.MessageConsumerEventName.MESSAGE, function (message) {
sample.log('Received ' + message.getBinaryAttachment() + '! - session: ' + params.sessionName + ', ' +
'guaranteed message.');
});
// Connect the message consumer
messageConsumer.connect();
};
sample.sessionsUp++;
});
session.on(solace.SessionEventCode.CONNECT_FAILED_ERROR, function (sessionEvent) {
sample.log('Connection failed to the message router: ' + sessionEvent.infoStr +
' - check correct parameter values and connectivity!');
});
if (params.isDirectSubscriberFlag) {
// define message event listener
session.on(solace.SessionEventCode.MESSAGE, function (message) {
sample.log('Received ' + message.getBinaryAttachment() + '! - session: ' + params.sessionName + ',' +
'direct message.');
});
};
session.on(solace.SessionEventCode.DISCONNECTED, function (sessionEvent) {
sample.log('Disconnected.');
if (session !== null) {
session.dispose();
session = null;
}
});
return session;
};
sample.startDemo = function () {
// Demo 1
sample.log('Sending Message1: direct message from Session1, ' +
'expecting it is received by Session2');
sample.sendMessage(sample.session1, 'Message1', sample.topicDestination,
solace.MessageDeliveryModeType.DIRECT);
// Demo 2
sample.log('Sending Message2: guaranteed message from Session1, ' +
'expecting it is NOT received by Session1 message consumer');
sample.sendMessage(sample.session1, 'Message2', sample.queueDestination,
solace.MessageDeliveryModeType.PERSISTENT);
// Demo 3
sample.log('Sending Message3: direct message from Session2, ' +
'expecting it is NOT received by local Session2');
sample.sendMessage(sample.session2, 'Message3', sample.topicDestination,
solace.MessageDeliveryModeType.DIRECT);
// Demo 4
sample.log('Sending Message4: guaranteed message from Session2, ' +
'expecting it is received by message consumer on Session1');
sample.sendMessage(sample.session2, 'Message4', sample.queueDestination,
solace.MessageDeliveryModeType.PERSISTENT);
// wait
setTimeout(function () {
sample.exit();
}, 2000); // tear down in 2 seconds
};
sample.sendMessage = function (fromSession, messageText, destination, deliveryMode) {
var message = solace.SolclientFactory.createMessage();
message.setDeliveryMode(deliveryMode);
message.setDestination(destination);
message.setBinaryAttachment(messageText);
fromSession.send(message);
};
sample.exit = function () {
sample.disconnect();
setTimeout(function () {
process.exit();
}, 1000); // wait for 1 second to finish
};
// Gracefully disconnects from Solace PubSub+ Event Broker
sample.disconnect = function () {
sample.log('Disconnecting both sessions from Solace PubSub+ Event Broker...');
[sample.session1, sample.session2].forEach(function(session) {
if (session && session !== null) {
try {
session.disconnect();
} catch (error) {
sample.log(error.toString());
}
};
});
};
return sample;
};
var solace = require('solclientjs').debug; // logging supported
// Initialize factory with the most recent API defaults
var factoryProps = new solace.SolclientFactoryProperties();
factoryProps.profile = solace.SolclientFactoryProfiles.version10;
solace.SolclientFactory.init(factoryProps);
// enable logging to JavaScript console at WARN level
// NOTICE: works only with ('solclientjs').debug
solace.SolclientFactory.setLogLevel(solace.LogLevel.WARN);
// create the consumer, specifying the name of the DTE and the topic
var demo = new NoLocalPubSub(solace, 'tutorial/topic');
// subscribe to messages on Solace PubSub+ Event Broker
demo.run(process.argv);
process.on('SIGINT', function () {
'use strict';
demo.exit();
});