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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
|
// **********************************************************************
//
// Copyright (c) 2003-2013 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ComponentEvent;
import java.awt.event.ComponentListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.BoxLayout;
import javax.swing.JDialog;
import javax.swing.AbstractAction;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JPopupMenu;
import javax.swing.JScrollBar;
import javax.swing.JScrollPane;
import javax.swing.JSeparator;
import javax.swing.JSplitPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.DefaultEditorKit;
import javax.swing.text.Document;
import javax.swing.text.Element;
import Glacier2.SessionFactoryHelper;
import Glacier2.SessionHelper;
import Glacier2.SessionCallback;
import Glacier2.SessionNotExistException;
import Ice.Current;
import Ice.LocalException;
import Ice.StringSeqHolder;
import Ice.Util;
@SuppressWarnings("serial")
public class Client extends JFrame
{
public static void
main(final String[] args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void
run()
{
try
{
//
// Create and set up the window.
//
new Client(args);
}
catch(Ice.LocalException e)
{
JOptionPane.showMessageDialog(null,
e.toString(),
"Initialization failed",
JOptionPane.ERROR_MESSAGE);
}
}
});
}
Client(String[] args)
{
// Build the JTextArea that shows the chat conversation.
_output = new JTextArea("");
_output.setLineWrap(true);
_output.setEditable(false);
final JPopupMenu textMenu = new JPopupMenu();
textMenu.add(new DefaultEditorKit.CopyAction());
textMenu.pack();
_output.addMouseListener(new MouseAdapter()
{
public void
mousePressed(MouseEvent e)
{
if(e.isPopupTrigger())
{
textMenu.show(_output, e.getX(), e.getY());
}
}
});
// Build the JTextArea where the user writes input messages.
_input = new JTextArea("");
_input.setLineWrap(true);
_input.setEditable(true);
_input.addKeyListener(new KeyListener()
{
public void
keyTyped(KeyEvent e)
{
if(e.getKeyChar() == KeyEvent.VK_ENTER)
{
Document doc = _input.getDocument();
try
{
String msg = doc.getText(0, doc.getLength()).trim();
if(msg.length() > 0)
{
_chat.begin_say(msg, new Demo.Callback_ChatSession_say()
{
@Override
public void
response()
{
}
@Override
public void
exception(final LocalException ex)
{
appendMessage("<system-message> - " + ex);
}
});
}
}
catch(BadLocationException e1)
{
}
_input.setText("");
}
}
public void
keyPressed(KeyEvent e)
{
}
public void
keyReleased(KeyEvent e)
{
}
});
_outputScroll = new JScrollPane(_output);
_outputScroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
_outputScroll.setBorder(null);
_outputScroll.setMinimumSize(new Dimension(100, 100));
_outputScroll.setPreferredSize(new Dimension(100, 100));
JSplitPane verticalSplit = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
verticalSplit.setTopComponent(_outputScroll);
JScrollPane conversationInputScroll = new JScrollPane(_input);
conversationInputScroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
conversationInputScroll.setBorder(null);
conversationInputScroll.setMinimumSize(new Dimension(100, 100));
conversationInputScroll.setPreferredSize(new Dimension(100, 100));
verticalSplit.setBottomComponent(conversationInputScroll);
verticalSplit.setResizeWeight(0.9);
_output.addComponentListener(new ComponentListener()
{
public void
componentResized(ComponentEvent e)
{
JScrollBar vertivalScrollbar = _outputScroll.getVerticalScrollBar();
vertivalScrollbar.setValue(vertivalScrollbar.getMaximum());
}
public void
componentHidden(ComponentEvent e)
{
}
public void
componentMoved(ComponentEvent e)
{
}
public void
componentShown(ComponentEvent e)
{
}
});
add(verticalSplit, BorderLayout.CENTER);
JPanel statusPanel = new JPanel();
JSeparator statusPanelSeparator = new JSeparator();
_status = new JLabel();
_status.setText("Not connected");
statusPanel.add(statusPanelSeparator, BorderLayout.NORTH);
statusPanel.add(_status, BorderLayout.SOUTH);
add(statusPanel, BorderLayout.SOUTH);
JMenuBar menuBar = new JMenuBar();
JMenu connectMenu = new JMenu("Session");
_login = new AbstractAction("Login")
{
public void
actionPerformed(ActionEvent e)
{
login();
}
};
_logout = new AbstractAction("Logout")
{
public void
actionPerformed(ActionEvent e)
{
setEnabled(false);
_status.setText("Logging out");
destroySession();
_chat = null;
}
};
_logout.setEnabled(false);
_exit = new AbstractAction("Exit")
{
public void
actionPerformed(ActionEvent e)
{
exit();
}
};
connectMenu.add(_login);
connectMenu.add(_logout);
if(!System.getProperty("os.name").startsWith("Mac OS"))
{
connectMenu.add(_exit);
}
menuBar.add(connectMenu);
setJMenuBar(menuBar);
setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
addWindowListener(new WindowAdapter()
{
public void
windowClosing(WindowEvent e)
{
exit();
}
});
pack();
setSize(640, 480);
locateOnScreen(this);
setVisible(true);
// Create the labels and text fields.
JLabel hostLabel = new JLabel("Host: ", JLabel.RIGHT);
_hostField = new JTextField("", 12);
_hostField.setText("127.0.0.1");
JLabel userNameLabel = new JLabel("Username: ", JLabel.RIGHT);
_userNameField = new JTextField("", 12);
_userNameField.setText("test");
JLabel passwordLabel = new JLabel("Password: ", JLabel.RIGHT);
_passwordField = new JPasswordField("", 12);
_connectionPanel = new JPanel(false);
_connectionPanel.setLayout(new BoxLayout(_connectionPanel, BoxLayout.X_AXIS));
JPanel labelPanel = new JPanel(false);
labelPanel.setLayout(new GridLayout(0, 1));
labelPanel.add(hostLabel);
labelPanel.add(userNameLabel);
labelPanel.add(passwordLabel);
JPanel fieldPanel = new JPanel(false);
fieldPanel.setLayout(new GridLayout(0, 1));
fieldPanel.add(_hostField);
fieldPanel.add(_userNameField);
fieldPanel.add(_passwordField);
_connectionPanel.add(labelPanel);
_connectionPanel.add(fieldPanel);
_input.setEnabled(false);
Ice.InitializationData initData = new Ice.InitializationData();
// Load the configuration file.
initData.properties = Ice.Util.createProperties();
initData.properties.load("config.client");
StringSeqHolder argHolder = new StringSeqHolder(args);
initData.properties = Util.createProperties(argHolder, initData.properties);
// Setup a dispatcher to dispath Ice and Glacier2 helper callbacks to the GUI thread.
initData.dispatcher = new Ice.Dispatcher()
{
public void
dispatch(Runnable runnable, Ice.Connection connection)
{
SwingUtilities.invokeLater(runnable);
}
};
_factory = new SessionFactoryHelper(initData, new SessionCallback()
{
public void
connected(SessionHelper session)
throws SessionNotExistException
{
// If the session has been reassigned avoid the spurious callback.
if(session != _session)
{
return;
}
// The chat callback servant. We use an anonymous
// inner class since the implementation is very
// simple.
Demo._ChatCallbackDisp servant = new Demo._ChatCallbackDisp()
{
public void
message(final String data, Current current)
{
appendMessage(data);
}
};
Demo.ChatCallbackPrx callback = Demo.ChatCallbackPrxHelper.uncheckedCast(_session.addWithUUID(servant));
_chat = Demo.ChatSessionPrxHelper.uncheckedCast(_session.session());
_chat.begin_setCallback(callback, new Demo.Callback_ChatSession_setCallback()
{
@Override
public void
response()
{
assert _loginDialog != null;
_loginDialog.dispose();
_login.setEnabled(false);
_logout.setEnabled(true);
_input.setEnabled(true);
_status.setText("Connected with " + _hostField.getText());
}
@Override
public void
exception(LocalException ex)
{
destroySession();
}
});
}
public void
disconnected(SessionHelper session)
{
// If the session has been reassigned avoid the spurious callback.
if(session != _session)
{
return;
}
if(_loginDialog != null)
{
_loginDialog.dispose();
}
_session = null;
_chat = null;
_login.setEnabled(true);
_logout.setEnabled(false);
_input.setEnabled(false);
_status.setText("Not connected");
}
public void
connectFailed(SessionHelper session, Throwable ex)
{
// If the session has been reassigned avoid the
// spurious callback.
if(session != _session)
{
return;
}
if(_loginDialog != null)
{
_loginDialog.dispose();
}
_status.setText(ex.getClass().getName());
}
public void
createdCommunicator(SessionHelper session)
{
}
});
_factory.setRouterIdentity(new Ice.Identity("router", "DemoGlacier2"));
login();
}
protected void
login()
{
String[] options = {"Login", "Cancel" };
// Show Login Dialog.
int option = JOptionPane.showOptionDialog(this, _connectionPanel, "Login", JOptionPane.OK_CANCEL_OPTION,
JOptionPane.INFORMATION_MESSAGE, null, options, options[0]);
if(option == 0)
{
_factory.setRouterHost(_hostField.getText());
// Connect to Glacier2 using SessionFactoryHelper
_session = _factory.connect(_userNameField.getText(), _passwordField.getText());
String[] cancel = { "Cancel" };
// Show Connecting Dialog
JOptionPane pane = new JOptionPane("Please wait while connecting...", JOptionPane.INFORMATION_MESSAGE,
JOptionPane.DEFAULT_OPTION, null, cancel, cancel[0]);
_loginDialog = pane.createDialog(this, "Connecting");
_loginDialog.setVisible(true);
// User pressed cancel.
if(pane.getValue() != JOptionPane.UNINITIALIZED_VALUE)
{
// Destroy session
destroySession();
}
}
}
private void
destroySession()
{
if(_session != null)
{
_session.destroy();
//The session will be set to null on disconnected.
}
}
private void
exit()
{
destroySession();
dispose();
Runtime.getRuntime().exit(0);
}
public void
appendMessage(String message)
{
Document doc = (Document) _output.getDocument();
Element e = doc.getDefaultRootElement();
AttributeSet attr = e.getAttributes().copyAttributes();
try
{
doc.insertString(doc.getLength(), message + "\n", attr);
}
catch(BadLocationException ex)
{
}
_output.setCaretPosition(doc.getLength());
}
private static void
locateOnScreen(Component component)
{
Dimension paneSize = component.getSize();
Dimension screenSize = component.getToolkit().getScreenSize();
component.setLocation((screenSize.width - paneSize.width) / 2, (screenSize.height - paneSize.height) / 2);
}
private JLabel _status;
private JTextArea _output;
private JTextArea _input;
private JScrollPane _outputScroll;
// Login/Logout actions.
private AbstractAction _login;
private AbstractAction _logout;
private AbstractAction _exit;
// Login dialog
private JDialog _loginDialog;
private JTextField _userNameField;
private JTextField _passwordField;
private JTextField _hostField;
private JPanel _connectionPanel;
// The session factory and current session.
private SessionFactoryHelper _factory;
private SessionHelper _session;
private Demo.ChatSessionPrx _chat;
}
|