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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
|
// **********************************************************************
//
// Copyright (c) 2003-2014 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.
//
// **********************************************************************
package IceGridGUI.LiveDeployment;
import java.awt.Component;
import javax.swing.Icon;
import javax.swing.JOptionPane;
import javax.swing.JPopupMenu;
import javax.swing.JTree;
import javax.swing.SwingUtilities;
import javax.swing.tree.DefaultTreeCellRenderer;
import javax.swing.tree.TreeModel;
import javax.swing.tree.TreePath;
import java.util.Enumeration;
import IceGrid.*;
import IceGridGUI.*;
public class Service extends ListArrayTreeNode
{
//
// Actions
//
public boolean[] getAvailableActions()
{
boolean[] actions = new boolean[IceGridGUI.LiveDeployment.TreeNode.ACTION_COUNT];
ServerState serverState = ((Server)_parent).getState();
if(serverState != null)
{
actions[RETRIEVE_LOG] = _serviceDescriptor.logs.length > 0;
}
if(serverState == ServerState.Active)
{
if(((Server)_parent).hasServiceObserver())
{
actions[START] = !_started;
actions[STOP] = _started;
}
else
{
actions[START] = true;
actions[STOP] = true;
}
}
return actions;
}
public void start()
{
Ice.ObjectPrx serverAdmin = ((Server)_parent).getServerAdmin();
if(serverAdmin != null)
{
final String prefix = "Starting service '" + _id + "'...";
getCoordinator().getStatusBar().setText(prefix);
IceBox.Callback_ServiceManager_startService cb = new IceBox.Callback_ServiceManager_startService()
{
//
// Called by another thread!
//
public void response()
{
amiSuccess(prefix);
}
public void exception(Ice.UserException e)
{
if(e instanceof IceBox.AlreadyStartedException)
{
amiSuccess(prefix);
}
else
{
amiFailure(prefix, "Failed to start service " + _id, e.toString());
}
}
public void exception(Ice.LocalException e)
{
amiFailure(prefix, "Failed to start service " + _id, e.toString());
}
};
IceBox.ServiceManagerPrx serviceManager = IceBox.ServiceManagerPrxHelper.
uncheckedCast(serverAdmin.ice_facet("IceBox.ServiceManager"));
try
{
serviceManager.begin_startService(_id, cb);
}
catch(Ice.LocalException e)
{
failure(prefix, "Failed to start service " + _id, e.toString());
}
}
}
public void stop()
{
Ice.ObjectPrx serverAdmin = ((Server)_parent).getServerAdmin();
if(serverAdmin != null)
{
final String prefix = "Stopping service '" + _id + "'...";
getCoordinator().getStatusBar().setText(prefix);
IceBox.Callback_ServiceManager_stopService cb = new IceBox.Callback_ServiceManager_stopService()
{
//
// Called by another thread!
//
public void response()
{
amiSuccess(prefix);
}
public void exception(Ice.UserException e)
{
if(e instanceof IceBox.AlreadyStoppedException)
{
amiSuccess(prefix);
}
else
{
amiFailure(prefix, "Failed to stop service " + _id, e.toString());
}
}
public void exception(Ice.LocalException e)
{
amiFailure(prefix, "Failed to stop service " + _id, e.toString());
}
};
IceBox.ServiceManagerPrx serviceManager = IceBox.ServiceManagerPrxHelper.
uncheckedCast(serverAdmin.ice_facet("IceBox.ServiceManager"));
try
{
serviceManager.begin_stopService(_id, cb);
}
catch(Ice.LocalException e)
{
failure(prefix, "Failed to stop service " + _id, e.toString());
}
}
}
public void retrieveLog()
{
assert _serviceDescriptor.logs.length > 0;
String path = null;
if(_serviceDescriptor.logs.length == 1)
{
path = _resolver.substitute(_serviceDescriptor.logs[0]);
}
else
{
Object[] pathArray = new Object[_serviceDescriptor.logs.length];
int i = 0;
for(String log : _serviceDescriptor.logs)
{
pathArray[i++] = _resolver.substitute(log);
}
path = (String)JOptionPane.showInputDialog(
getCoordinator().getMainFrame(),
"Which log file do you want to retrieve?",
"Retrieve Log File",
JOptionPane.QUESTION_MESSAGE, null,
pathArray, pathArray[0]);
}
if(path != null)
{
final String fPath = path;
getRoot().openShowLogDialog(new ShowLogDialog.FileIteratorFactory()
{
public FileIteratorPrx open(int count)
throws FileNotAvailableException, ServerNotExistException, NodeUnreachableException,
DeploymentException
{
AdminSessionPrx session = getRoot().getCoordinator().getSession();
return session.openServerLog(_parent.getId(), fPath, count);
}
public String getTitle()
{
return "Service " + _parent.getId() + "/" + _id + " " + new java.io.File(fPath).getName();
}
public String getDefaultFilename()
{
return new java.io.File(fPath).getName();
}
});
}
}
public Component getTreeCellRendererComponent(
JTree tree,
Object value,
boolean sel,
boolean expanded,
boolean leaf,
int row,
boolean hasFocus)
{
if(_cellRenderer == null)
{
_cellRenderer = new DefaultTreeCellRenderer();
_startedIcon = Utils.getIcon("/icons/16x16/service_running.png");
_stoppedIcon = Utils.getIcon("/icons/16x16/service.png");
}
Icon icon = _started ? _startedIcon : _stoppedIcon;
if(expanded)
{
_cellRenderer.setOpenIcon(icon);
}
else
{
_cellRenderer.setClosedIcon(icon);
}
return _cellRenderer.getTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus);
}
public Editor getEditor()
{
if(_editor == null)
{
_editor = new ServiceEditor(getCoordinator());
}
_editor.show(this);
return _editor;
}
public JPopupMenu getPopupMenu()
{
LiveActions la = getCoordinator().getLiveActionsForPopup();
if(_popup == null)
{
_popup = new JPopupMenu();
_popup.add(la.get(START));
_popup.add(la.get(STOP));
_popup.addSeparator();
_popup.add(la.get(RETRIEVE_LOG));
}
la.setTarget(this);
return _popup;
}
Service(Server parent, String serviceName, Utils.Resolver resolver, ServiceInstanceDescriptor descriptor,
ServiceDescriptor serviceDescriptor, PropertySetDescriptor serverInstancePSDescriptor)
{
super(parent, serviceName, 3);
_resolver = resolver;
_instanceDescriptor = descriptor;
_serviceDescriptor = serviceDescriptor;
_serverInstancePSDescriptor = serverInstancePSDescriptor;
_childrenArray[0] = _adapters;
_childrenArray[1] = _dbEnvs;
_childrenArray[2] = _metrics;
createAdapters();
createDbEnvs();
}
boolean updateAdapter(AdapterDynamicInfo info)
{
for(Adapter p : _adapters)
{
if(p.update(info))
{
return true;
}
}
return false;
}
int updateAdapters(java.util.List<AdapterDynamicInfo> infoList)
{
int result = 0;
java.util.Iterator<Adapter> p = _adapters.iterator();
while(p.hasNext() && result < infoList.size())
{
Adapter adapter = p.next();
if(adapter.update(infoList))
{
result++;
}
}
return result;
}
void nodeDown()
{
for(Adapter p : _adapters)
{
p.update((AdapterDynamicInfo)null);
}
}
boolean isStarted()
{
return _started;
}
void started()
{
if(!_started)
{
_started = true;
if(getRoot().getTree().isExpanded(getPath()))
{
fetchMetricsViewNames();
}
getRoot().getTreeModel().nodeChanged(this);
}
}
void stopped()
{
if(_started)
{
_started = false;
_metricsRetrieved = false;
if(!_metrics.isEmpty())
{
_metrics.clear();
rebuild(this);
}
getRoot().getTreeModel().nodeChanged(this);
}
}
void showRuntimeProperties()
{
Ice.ObjectPrx serverAdmin = ((Server)_parent).getServerAdmin();
if(serverAdmin == null)
{
_editor.setBuildId("", this);
}
else
{
Ice.Callback_PropertiesAdmin_getPropertiesForPrefix cb = new Ice.Callback_PropertiesAdmin_getPropertiesForPrefix()
{
public void response(final java.util.Map<String, String> properties)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
_editor.setRuntimeProperties((java.util.SortedMap<String, String>)properties,
Service.this);
}
});
}
public void exception(final Ice.LocalException e)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
if(e instanceof Ice.ObjectNotExistException)
{
_editor.setBuildId("Error: can't reach the icebox Admin object", Service.this);
}
else if(e instanceof Ice.FacetNotExistException)
{
_editor.setBuildId("Error: this icebox Admin object does not provide a " +
"'Properties' facet for this service", Service.this);
}
else
{
_editor.setBuildId("Error: " + e.toString(), Service.this);
}
}
});
}
};
try
{
Ice.PropertiesAdminPrx propAdmin =
Ice.PropertiesAdminPrxHelper.uncheckedCast(serverAdmin.ice_facet("IceBox.Service." + _id +
".Properties"));
propAdmin.begin_getPropertiesForPrefix("", cb);
}
catch(Ice.LocalException e)
{
_editor.setBuildId("Error: " + e.toString(), this);
}
}
}
Utils.Resolver getResolver()
{
return _resolver;
}
ServiceDescriptor getServiceDescriptor()
{
return _serviceDescriptor;
}
ServiceInstanceDescriptor getInstanceDescriptor()
{
return _instanceDescriptor;
}
java.util.SortedMap<String, String> getProperties()
{
java.util.List<Utils.ExpandedPropertySet> psList = new java.util.LinkedList<Utils.ExpandedPropertySet>();
Node node = (Node)_parent.getParent();
String applicationName = ((Server)_parent).getApplication().name;
psList.add(node.expand(_serviceDescriptor.propertySet, applicationName, _resolver));
if(_instanceDescriptor != null)
{
psList.add(node.expand(_instanceDescriptor.propertySet, applicationName, _resolver));
}
if(_serverInstancePSDescriptor != null)
{
psList.add(node.expand(_serverInstancePSDescriptor, applicationName, _resolver));
}
return Utils.propertySetsToMap(psList, _resolver);
}
private void createAdapters()
{
for(AdapterDescriptor p : _serviceDescriptor.adapters)
{
String adapterName = Utils.substitute(p.name, _resolver);
String adapterId = Utils.substitute(p.id, _resolver);
Ice.ObjectPrx proxy = null;
if(adapterId.length() > 0)
{
proxy = ((Node)_parent.getParent()).getProxy(adapterId);
}
insertSortedChild(new Adapter(this, adapterName, _resolver, adapterId, p, proxy), _adapters, null);
}
}
private void createDbEnvs()
{
for(DbEnvDescriptor p : _serviceDescriptor.dbEnvs)
{
String dbEnvName = Utils.substitute(p.name, _resolver);
insertSortedChild(new DbEnv(this, dbEnvName, _resolver, p), _dbEnvs, null);
}
}
public void fetchMetricsViewNames()
{
if(_metricsRetrieved)
{
return; // Already loaded.
}
Ice.ObjectPrx serverAdmin = ((Server)_parent).getServerAdmin();
if(serverAdmin == null)
{
return;
}
_metricsRetrieved = true;
final IceMX.MetricsAdminPrx metricsAdmin =
IceMX.MetricsAdminPrxHelper.uncheckedCast(serverAdmin.ice_facet("IceBox.Service." + _id +
".Metrics"));
IceMX.Callback_MetricsAdmin_getMetricsViewNames cb = new IceMX.Callback_MetricsAdmin_getMetricsViewNames()
{
public void response(final String[] enabledViews, final String[] disabledViews)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
for(String name : enabledViews)
{
insertSortedChild(new MetricsView(Service.this, name, metricsAdmin, true), _metrics, null);
}
for(String name : disabledViews)
{
insertSortedChild(new MetricsView(Service.this, name, metricsAdmin, false), _metrics, null);
}
rebuild(Service.this);
}
});
}
public void exception(final Ice.LocalException e)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
_metricsRetrieved = false;
if(e instanceof Ice.ObjectNotExistException)
{
// Server is down.
}
else if(e instanceof Ice.FacetNotExistException)
{
// MetricsAdmin facet not present. Old server version?
}
else
{
e.printStackTrace();
JOptionPane.showMessageDialog(getCoordinator().getMainFrame(),
"Error: " + e.toString(), "Error",
JOptionPane.ERROR_MESSAGE);
}
}
});
}
};
try
{
metricsAdmin.begin_getMetricsViewNames(cb);
}
catch(Ice.LocalException e)
{
_metricsRetrieved = false;
JOptionPane.showMessageDialog(getCoordinator().getMainFrame(), "Error: " + e.toString(), "Error",
JOptionPane.ERROR_MESSAGE);
}
}
void rebuild(Service service)
{
_adapters = service._adapters;
_dbEnvs = service._dbEnvs;
_metrics = service._metrics;
_childrenArray[0] = _adapters;
_childrenArray[1] = _dbEnvs;
_childrenArray[2] = _metrics;
//
// Need to re-parent all the children
//
for(Adapter adapter: _adapters)
{
adapter.reparent(this);
}
for(DbEnv dbEnv: _dbEnvs)
{
dbEnv.reparent(this);
}
for(MetricsView metrics: _metrics)
{
metrics.reparent(this);
}
getRoot().getTreeModel().nodeStructureChanged(this);
}
private final ServiceInstanceDescriptor _instanceDescriptor;
private final ServiceDescriptor _serviceDescriptor;
private final PropertySetDescriptor _serverInstancePSDescriptor;
private final Utils.Resolver _resolver;
private java.util.List<Adapter> _adapters = new java.util.LinkedList<Adapter>();
private java.util.List<DbEnv> _dbEnvs = new java.util.LinkedList<DbEnv>();
private java.util.List<MetricsView> _metrics = new java.util.LinkedList<MetricsView>();
private boolean _started = false;
private boolean _metricsRetrieved = false;
static private ServiceEditor _editor;
static private DefaultTreeCellRenderer _cellRenderer;
static private JPopupMenu _popup;
static private Icon _startedIcon;
static private Icon _stoppedIcon;
}
|