Skip to main content
summaryrefslogtreecommitdiffstats
blob: 42813d05915724892edcc65663ded8f19a49f4d8 (plain) (blame)
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
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.ote.ui.mux.view;

import java.io.IOException;
import java.io.InterruptedIOException;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.DatagramChannel;
import java.rmi.Remote;
import java.rmi.RemoteException;
import java.util.logging.Level;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.viewers.ISelectionChangedListener;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.SelectionChangedEvent;
import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.jface.viewers.ViewerSorter;
import org.eclipse.osee.connection.service.IServiceConnector;
import org.eclipse.osee.framework.jdk.core.util.network.PortUtil;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.ui.swt.PeriodicDisplayTask;
import org.eclipse.osee.ote.core.environment.interfaces.ITestEnvironment;
import org.eclipse.osee.ote.message.IInstrumentationRegistrationListener;
import org.eclipse.osee.ote.message.instrumentation.IOInstrumentation;
import org.eclipse.osee.ote.message.interfaces.ITestEnvironmentMessageSystem;
import org.eclipse.osee.ote.service.ConnectionEvent;
import org.eclipse.osee.ote.service.ITestConnectionListener;
import org.eclipse.osee.ote.ui.mux.MuxToolPlugin;
import org.eclipse.osee.ote.ui.mux.datatable.DatawordContentProvider;
import org.eclipse.osee.ote.ui.mux.datatable.DatawordLabelProvider;
import org.eclipse.osee.ote.ui.mux.datatable.RowNode;
import org.eclipse.osee.ote.ui.mux.model.DatawordModel;
import org.eclipse.osee.ote.ui.mux.model.MessageModel;
import org.eclipse.osee.ote.ui.mux.msgtable.MessageNode;
import org.eclipse.osee.ote.ui.mux.msgtable.MuxMsgContentProvider;
import org.eclipse.osee.ote.ui.mux.msgtable.MuxMsgLabelProvider;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.ControlEditor;
import org.eclipse.swt.custom.TableCursor;
import org.eclipse.swt.events.FocusAdapter;
import org.eclipse.swt.events.FocusEvent;
import org.eclipse.swt.events.KeyAdapter;
import org.eclipse.swt.events.KeyEvent;
import org.eclipse.swt.events.MouseAdapter;
import org.eclipse.swt.events.MouseEvent;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.MenuItem;
import org.eclipse.swt.widgets.TabFolder;
import org.eclipse.swt.widgets.TabItem;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;
import org.eclipse.swt.widgets.TableItem;
import org.eclipse.swt.widgets.Text;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.part.ViewPart;

/**
 * This sample class demonstrates how to plug-in a new workbench view. The view shows data obtained from the model. The
 * sample creates a dummy model on the fly, but a real implementation would connect to the model available either in
 * this or another plug-in (e.g. the workspace). The view is connected to the model using a content provider.
 * <p>
 * The view uses a label provider to define how model objects should be presented in the view. Each view can present the
 * same model objects using different labels and icons, if needed. Alternatively, a single label provider can be shared
 * between views in order to ensure that objects of the same type are presented in the same way everywhere.
 * <p>
 */

public class MuxView extends ViewPart implements ITestConnectionListener, IInstrumentationRegistrationListener, Remote {
   private TableViewer msgViewer1, msgViewer2, msgViewer3, msgViewer5;
   private TableViewer dataViewer1, dataViewer2, dataViewer3, dataViewer5;
   private MessageModel chan1Msgs, chan2Msgs, chan3Msgs, chan5Msgs;
   private DatawordModel chan1Dwrds, chan2Dwrds, chan3Dwrds, chan5Dwrds;
   private IOInstrumentation muxProbe;
   private PeriodicDisplayTask task;
   private ListenerThread thread;
   private int port;
   private int selectedChannel;
   private int selectedRt;
   private int selectedTR;
   private int selectedSubaddr;
   private final static Color GRAY = Display.getDefault().getSystemColor(SWT.COLOR_GRAY);
   private final static Color WHITE = Display.getDefault().getSystemColor(SWT.COLOR_WHITE);

   private IInstrumentationRegistrationListener exportedThis;

   public static final String VIEW_ID = "osee.test.muxTool.views.MuxView";
   class NameSorter extends ViewerSorter {
   }

   /**
    * The constructor.
    */
   public MuxView() {
      super();
   }

   /**
    * This is a callback that will allow us to create the viewers and initialize them.
    */
   @Override
   public void createPartControl(Composite parent) {
      final TabFolder tabFolder = new TabFolder(parent, SWT.WRAP);
      tabFolder.addSelectionListener(new SelectionListener() {
         public void widgetSelected(SelectionEvent e) {
            switch (tabFolder.getSelectionIndex()) {
               case 0:
                  selectedChannel = 1;
                  break;
               case 1:
                  selectedChannel = 2;
                  break;
               case 2:
                  selectedChannel = 3;
                  break;
               case 3:
                  selectedChannel = 5;
                  break;
               default:
                  selectedChannel = 1;
            }
         }

         public void widgetDefaultSelected(SelectionEvent e) {
         }
      });

      // Setup Channel 1 display
      TabItem chan1Tab = new TabItem(tabFolder, SWT.NONE);
      chan1Tab.setText("Channel 1");
      Composite chan1TabComp = new Composite(tabFolder, SWT.NONE);
      chan1Tab.setControl(chan1TabComp);
      GridLayout chan1Layout = new GridLayout(1, false);
      chan1TabComp.setLayout(chan1Layout);

      msgViewer1 = new TableViewer(chan1TabComp, SWT.BORDER | SWT.FULL_SELECTION);
      msgViewer1.setLabelProvider(new MuxMsgLabelProvider());
      msgViewer1.setSorter(new NameSorter());
      msgViewer1.setContentProvider(new MuxMsgContentProvider());

      createMsgTable(msgViewer1);

      Composite bottom1 = new Composite(chan1TabComp, SWT.NONE);
      bottom1.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
      bottom1.setLayout(new GridLayout(2, false));

      Composite data1 = new Composite(bottom1, SWT.NONE);
      RowLayout dataLayout1 = new RowLayout(SWT.HORIZONTAL);
      data1.setLayout(dataLayout1);

      Composite labels1 = new Composite(data1, SWT.NONE);
      RowLayout labelLayout1 = new RowLayout(SWT.VERTICAL);
      labelLayout1.marginTop = 5;
      labelLayout1.spacing = 1;
      labels1.setLayout(labelLayout1);
      Label label1_1 = new Label(labels1, SWT.NONE);
      label1_1.setText("Datawords 1-8");
      Label label2_1 = new Label(labels1, SWT.NONE);
      label2_1.setText("Datawords 9-16");
      Label label3_1 = new Label(labels1, SWT.NONE);
      label3_1.setText("Datawords 17-24");
      Label label4_1 = new Label(labels1, SWT.NONE);
      label4_1.setText("Datawords 25-32");

      Composite datawords1 = new Composite(data1, SWT.NONE);
      datawords1.setLayout(new GridLayout(1, false));
      dataViewer1 = new TableViewer(datawords1, SWT.BORDER | SWT.FULL_SELECTION);
      dataViewer1.setContentProvider(new DatawordContentProvider());
      dataViewer1.setLabelProvider(new DatawordLabelProvider());
      createDwordTable(dataViewer1);
      msgViewer1.addSelectionChangedListener(new ISelectionChangedListener() {
         public void selectionChanged(SelectionChangedEvent event) {
            IStructuredSelection selection = (IStructuredSelection) event.getSelection();
            MessageNode node = (MessageNode) selection.getFirstElement();
            if (node != null) {
               selectedRt = node.getRt();
               selectedTR = node.getTransmitReceive();
               selectedSubaddr = node.getSubaddress();
               chan1Dwrds.setCurrentNode(node.getName());
            }
         }
      });
      final Button reset1 = new Button(bottom1, SWT.PUSH);
      reset1.setText("Reset Display");
      reset1.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_CENTER | GridData.GRAB_HORIZONTAL));
      reset1.addSelectionListener(new SelectionAdapter() {
         @Override
         public void widgetSelected(SelectionEvent e) {
            selectedRt = 0;
            selectedTR = 0;
            selectedSubaddr = 0;
            chan1Msgs.removeMessages();
            chan1Dwrds.setCurrentNode(null);
         }
      });

      // Setup Channel 2 display
      TabItem chan2Tab = new TabItem(tabFolder, SWT.NONE);
      chan2Tab.setText("Channel 2");
      Composite chan2TabComp = new Composite(tabFolder, SWT.NONE);
      chan2Tab.setControl(chan2TabComp);
      GridLayout chan2Layout = new GridLayout(1, false);
      chan2TabComp.setLayout(chan2Layout);
      msgViewer2 = new TableViewer(chan2TabComp, SWT.BORDER | SWT.FULL_SELECTION);
      msgViewer2.setContentProvider(new MuxMsgContentProvider());
      msgViewer2.setLabelProvider(new MuxMsgLabelProvider());
      msgViewer2.setSorter(new NameSorter());
      createMsgTable(msgViewer2);
      Composite bottom2 = new Composite(chan2TabComp, SWT.NONE);
      bottom2.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
      bottom2.setLayout(new GridLayout(2, false));

      Composite data2 = new Composite(bottom2, SWT.NONE);
      RowLayout dataLayout2 = new RowLayout(SWT.HORIZONTAL);
      data2.setLayout(dataLayout2);

      Composite labels2 = new Composite(data2, SWT.NONE);
      RowLayout lableLayout2 = new RowLayout(SWT.VERTICAL);
      lableLayout2.marginTop = 5;
      lableLayout2.spacing = 1;
      labels2.setLayout(lableLayout2);
      Label label1_2 = new Label(labels2, SWT.NONE);
      label1_2.setText("Datawords 1-8");
      Label label2_2 = new Label(labels2, SWT.NONE);
      label2_2.setText("Datawords 9-16");
      Label label3_2 = new Label(labels2, SWT.NONE);
      label3_2.setText("Datawords 17-24");
      Label label4_2 = new Label(labels2, SWT.NONE);
      label4_2.setText("Datawords 25-32");

      Composite datawords2 = new Composite(data2, SWT.NONE);
      datawords2.setLayout(new GridLayout(1, false));
      dataViewer2 = new TableViewer(datawords2, SWT.BORDER | SWT.FULL_SELECTION);
      dataViewer2.setContentProvider(new DatawordContentProvider());
      dataViewer2.setLabelProvider(new DatawordLabelProvider());
      createDwordTable(dataViewer2);
      msgViewer2.addSelectionChangedListener(new ISelectionChangedListener() {
         public void selectionChanged(SelectionChangedEvent event) {
            IStructuredSelection selection = (IStructuredSelection) event.getSelection();
            MessageNode node = (MessageNode) selection.getFirstElement();
            if (node != null) {
               selectedRt = node.getRt();
               selectedTR = node.getTransmitReceive();
               selectedSubaddr = node.getSubaddress();
               chan2Dwrds.setCurrentNode(node.getName());
            }
         }
      });
      final Button reset2 = new Button(bottom2, SWT.PUSH);
      reset2.setText("Reset Display");
      reset2.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_CENTER | GridData.GRAB_HORIZONTAL));
      reset2.addSelectionListener(new SelectionAdapter() {
         @Override
         public void widgetSelected(SelectionEvent e) {
            selectedRt = 0;
            selectedTR = 0;
            selectedSubaddr = 0;
            chan2Msgs.removeMessages();
            chan2Dwrds.setCurrentNode(null);
         }
      });

      // Setup Channel 3 display
      TabItem chan3Tab = new TabItem(tabFolder, SWT.NONE);
      chan3Tab.setText("Channel 3");
      Composite chan3TabComp = new Composite(tabFolder, SWT.NONE);
      chan3Tab.setControl(chan3TabComp);
      GridLayout chan3Layout = new GridLayout(1, false);
      chan3TabComp.setLayout(chan3Layout);
      msgViewer3 = new TableViewer(chan3TabComp, SWT.BORDER | SWT.FULL_SELECTION);
      msgViewer3.setContentProvider(new MuxMsgContentProvider());
      msgViewer3.setLabelProvider(new MuxMsgLabelProvider());
      msgViewer3.setSorter(new NameSorter());
      createMsgTable(msgViewer3);
      Composite bottom3 = new Composite(chan3TabComp, SWT.NONE);
      bottom3.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
      bottom3.setLayout(new GridLayout(2, false));

      Composite data3 = new Composite(bottom3, SWT.NONE);
      RowLayout dataLayout3 = new RowLayout(SWT.HORIZONTAL);
      data3.setLayout(dataLayout3);

      Composite labels3 = new Composite(data3, SWT.NONE);
      RowLayout lableLayout3 = new RowLayout(SWT.VERTICAL);
      lableLayout3.marginTop = 5;
      lableLayout3.spacing = 1;
      labels3.setLayout(lableLayout3);
      Label label1_3 = new Label(labels3, SWT.NONE);
      label1_3.setText("Datawords 1-8");
      Label label2_3 = new Label(labels3, SWT.NONE);
      label2_3.setText("Datawords 9-16");
      Label label3_3 = new Label(labels3, SWT.NONE);
      label3_3.setText("Datawords 17-24");
      Label label4_3 = new Label(labels3, SWT.NONE);
      label4_3.setText("Datawords 25-32");

      Composite datawords3 = new Composite(data3, SWT.NONE);
      datawords3.setLayout(new GridLayout(1, false));
      dataViewer3 = new TableViewer(datawords3, SWT.BORDER | SWT.FULL_SELECTION);
      dataViewer3.setContentProvider(new DatawordContentProvider());
      dataViewer3.setLabelProvider(new DatawordLabelProvider());
      createDwordTable(dataViewer3);
      msgViewer3.addSelectionChangedListener(new ISelectionChangedListener() {
         public void selectionChanged(SelectionChangedEvent event) {
            IStructuredSelection selection = (IStructuredSelection) event.getSelection();
            MessageNode node = (MessageNode) selection.getFirstElement();
            if (node != null) {
               selectedRt = node.getRt();
               selectedTR = node.getTransmitReceive();
               selectedSubaddr = node.getSubaddress();
               chan3Dwrds.setCurrentNode(node.getName());
            }
         }
      });
      final Button reset3 = new Button(bottom3, SWT.PUSH);
      reset3.setText("Reset Display");
      reset3.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_CENTER | GridData.GRAB_HORIZONTAL));
      reset3.addSelectionListener(new SelectionAdapter() {
         @Override
         public void widgetSelected(SelectionEvent e) {
            selectedRt = 0;
            selectedTR = 0;
            selectedSubaddr = 0;
            chan3Msgs.removeMessages();
            chan3Dwrds.setCurrentNode(null);
         }
      });

      // Setup Channel 5 display
      TabItem chan5Tab = new TabItem(tabFolder, SWT.NONE);
      chan5Tab.setText("Channel 5");
      Composite chan5TabComp = new Composite(tabFolder, SWT.NONE);
      chan5Tab.setControl(chan5TabComp);
      GridLayout chan5Layout = new GridLayout(1, false);
      chan5TabComp.setLayout(chan5Layout);
      msgViewer5 = new TableViewer(chan5TabComp, SWT.BORDER | SWT.FULL_SELECTION);
      msgViewer5.setContentProvider(new MuxMsgContentProvider());
      msgViewer5.setLabelProvider(new MuxMsgLabelProvider());
      msgViewer5.setSorter(new NameSorter());
      createMsgTable(msgViewer5);
      Composite bottom5 = new Composite(chan5TabComp, SWT.NONE);
      bottom5.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
      bottom5.setLayout(new GridLayout(2, false));

      Composite data5 = new Composite(bottom5, SWT.NONE);
      RowLayout dataLayout5 = new RowLayout(SWT.HORIZONTAL);
      data5.setLayout(dataLayout5);

      Composite labels5 = new Composite(data5, SWT.NONE);
      RowLayout lableLayout5 = new RowLayout(SWT.VERTICAL);
      lableLayout5.marginTop = 5;
      lableLayout5.spacing = 1;
      labels5.setLayout(lableLayout5);
      Label label1_5 = new Label(labels5, SWT.NONE);
      label1_5.setText("Datawords 1-8");
      Label label2_5 = new Label(labels5, SWT.NONE);
      label2_5.setText("Datawords 9-16");
      Label label3_5 = new Label(labels5, SWT.NONE);
      label3_5.setText("Datawords 17-24");
      Label label4_5 = new Label(labels5, SWT.NONE);
      label4_5.setText("Datawords 25-32");

      Composite datawords5 = new Composite(data5, SWT.NONE);
      datawords5.setLayout(new GridLayout(1, false));
      dataViewer5 = new TableViewer(datawords5, SWT.BORDER | SWT.FULL_SELECTION);
      dataViewer5.setContentProvider(new DatawordContentProvider());
      dataViewer5.setLabelProvider(new DatawordLabelProvider());
      createDwordTable(dataViewer5);
      msgViewer5.addSelectionChangedListener(new ISelectionChangedListener() {
         public void selectionChanged(SelectionChangedEvent event) {
            IStructuredSelection selection = (IStructuredSelection) event.getSelection();
            MessageNode node = (MessageNode) selection.getFirstElement();
            if (node != null) {
               selectedRt = node.getRt();
               selectedTR = node.getTransmitReceive();
               selectedSubaddr = node.getSubaddress();
               chan5Dwrds.setCurrentNode(node.getName());
            }
         }
      });
      final Button reset5 = new Button(bottom5, SWT.PUSH);
      reset5.setText("Reset Display");
      reset5.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_CENTER | GridData.GRAB_HORIZONTAL));
      reset5.addSelectionListener(new SelectionAdapter() {
         @Override
         public void widgetSelected(SelectionEvent e) {
            selectedRt = 0;
            selectedTR = 0;
            selectedSubaddr = 0;
            chan5Msgs.removeMessages();
            chan5Dwrds.setCurrentNode(null);
         }
      });
      msgViewer1.setInput(chan1Msgs = new MessageModel());
      dataViewer1.setInput(chan1Dwrds = new DatawordModel());
      msgViewer2.setInput(chan2Msgs = new MessageModel());
      dataViewer2.setInput(chan2Dwrds = new DatawordModel());
      msgViewer3.setInput(chan3Msgs = new MessageModel());
      dataViewer3.setInput(chan3Dwrds = new DatawordModel());
      msgViewer5.setInput(chan5Msgs = new MessageModel());
      dataViewer5.setInput(chan5Dwrds = new DatawordModel());
      updateColors(false);
      try {
         thread = new ListenerThread();
      } catch (Exception e) {
         OseeLog.log(MuxView.class, Level.SEVERE, "Mux View could not start listening thread", e);
         MessageDialog.openError(parent.getShell(), "Error", "Mux View could not initialize. See Error Log for details");
         return;
      }
      thread.start();

      task = new PeriodicDisplayTask(Display.getDefault(), 333) {
         @Override
         protected void update() {
            try {
               msgViewer1.refresh();
               dataViewer1.refresh();
               msgViewer2.refresh();
               dataViewer2.refresh();
               msgViewer3.refresh();
               dataViewer3.refresh();
               msgViewer5.refresh();
               dataViewer5.refresh();
            } catch (Throwable t) {
               OseeLog.log(MuxToolPlugin.class, Level.SEVERE, "problems refreshing viewer", t);
               stop();
            }
         }
      };
      task.start();
      PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, "org.eclipse.osee.ote.ui.mux.muxView");
      MuxToolPlugin.getDefault().getOteClientService().addConnectionListener(this);
   }

   /**
    * Create the Mux Message Tree
    */
   private void createMsgTable(TableViewer parent) {
      final Table table = parent.getTable();
      GridData gridData = new GridData(GridData.HORIZONTAL_ALIGN_FILL | GridData.VERTICAL_ALIGN_FILL);
      int height = table.getItemHeight() * 20;
      Rectangle trim = table.computeTrim(0, 0, 0, height);
      gridData.heightHint = trim.height;
      table.setLayoutData(gridData);
      table.setHeaderVisible(true);
      TableColumn column = new TableColumn(table, SWT.CENTER, 0);
      column.setText("Message");
      column.setWidth(70);
      column = new TableColumn(table, SWT.CENTER, 1);
      column.setText("RT-RT");
      column.setWidth(60);
      column = new TableColumn(table, SWT.CENTER, 2);
      column.setText("Word Cnt");
      column.setWidth(70);
      column = new TableColumn(table, SWT.CENTER, 3);
      column.setText("StatusWd");
      column.setWidth(70);
      column = new TableColumn(table, SWT.CENTER, 4);
      column.setText("Emulation");
      column.setWidth(70);
      column = new TableColumn(table, SWT.CENTER, 5);
      column.setText("Bus");
      column.setWidth(50);
      column = new TableColumn(table, SWT.CENTER, 6);
      column.setText("Activity");
      column.setWidth(60);
      column = new TableColumn(table, SWT.CENTER, 7);
      column.setText("Error Cnt");
      column.setWidth(70);
      column = new TableColumn(table, SWT.CENTER, 8);
      column.setText("Error Type");
      column.setWidth(150);

      table.addMouseListener(new MouseAdapter() {
         @Override
         public void mouseDown(final MouseEvent event) {
            if (event.button == 3) {
               Menu menu = new Menu(table.getShell(), SWT.POP_UP);
               MenuItem enableBoth = new MenuItem(menu, SWT.PUSH);
               enableBoth.setText("Emulate RT (Pri + Sec)");
               enableBoth.addSelectionListener(new SelectionAdapter() {
                  @Override
                  public void widgetSelected(SelectionEvent e) {
                     if (muxProbe != null) {
                        byte[] cmd = new byte[4];
                        cmd[0] = 'R'; // RT simulation cmd
                        cmd[1] = (byte) selectedChannel;
                        cmd[2] = (byte) selectedRt;
                        cmd[3] = (byte) 3;
                        try {
                           muxProbe.command(cmd);
                        } catch (RemoteException ex) {
                           OseeLog.log(MuxToolPlugin.class, Level.WARNING,
                                 "MuxView unable to send RT simulation command");
                        }
                     }
                  }
               });
               MenuItem enableA = new MenuItem(menu, SWT.PUSH);
               enableA.setText("Emulate RT (Pri Only)");
               enableA.addSelectionListener(new SelectionAdapter() {
                  @Override
                  public void widgetSelected(SelectionEvent e) {
                     if (muxProbe != null) {
                        byte[] cmd = new byte[4];
                        cmd[0] = 'R'; // RT simulation cmd
                        cmd[1] = (byte) selectedChannel;
                        cmd[2] = (byte) selectedRt;
                        cmd[3] = (byte) 1;
                        try {
                           muxProbe.command(cmd);
                        } catch (RemoteException ex) {
                           OseeLog.log(MuxToolPlugin.class, Level.WARNING,
                                 "MuxView unable to send RT simulation command");
                        }
                     }
                  }
               });
               MenuItem enableB = new MenuItem(menu, SWT.PUSH);
               enableB.setText("Emulate RT (Sec only)");
               enableB.addSelectionListener(new SelectionAdapter() {
                  @Override
                  public void widgetSelected(SelectionEvent e) {
                     if (muxProbe != null) {
                        byte[] cmd = new byte[4];
                        cmd[0] = 'R'; // RT simulation cmd
                        cmd[1] = (byte) selectedChannel;
                        cmd[2] = (byte) selectedRt;
                        cmd[3] = (byte) 2;
                        try {
                           muxProbe.command(cmd);
                        } catch (RemoteException ex) {
                           OseeLog.log(MuxToolPlugin.class, Level.WARNING,
                                 "MuxView unable to send RT simulation command");
                        }
                     }
                  }
               });
               new MenuItem(menu, SWT.SEPARATOR);
               MenuItem disableBoth = new MenuItem(menu, SWT.PUSH);
               disableBoth.setText("Monitor RT (Pri + Sec)");
               disableBoth.addSelectionListener(new SelectionAdapter() {
                  @Override
                  public void widgetSelected(SelectionEvent e) {
                     if (muxProbe != null) {
                        byte[] cmd = new byte[4];
                        cmd[0] = 'R'; // RT simulation cmd
                        cmd[1] = (byte) selectedChannel;
                        cmd[2] = (byte) selectedRt;
                        cmd[3] = (byte) 0;
                        try {
                           muxProbe.command(cmd);
                        } catch (RemoteException ex) {
                           OseeLog.log(MuxToolPlugin.class, Level.WARNING,
                                 "MuxView unable to send RT simulation command");
                        }
                     }
                  }
               });

               // draws pop up menu:
               Point pt = new Point(event.x, event.y);
               pt = table.toDisplay(pt);
               menu.setLocation(pt.x, pt.y);
               menu.setVisible(true);
            }
         }
      });

   }

   /**
    * Create the Datawords Tree
    */
   private void createDwordTable(final TableViewer parent) {
      final Table table = parent.getTable();
      GridData gridData = new GridData();
      int height = table.getItemHeight() * 2;
      Rectangle trim = table.computeTrim(0, 0, 0, height);
      gridData.heightHint = trim.height;
      table.setLayoutData(gridData);
      table.setHeaderVisible(false);
      table.setLinesVisible(true);

      TableColumn column = new TableColumn(table, SWT.CENTER, 0);
      column.setWidth(50);
      column = new TableColumn(table, SWT.CENTER, 1);
      column.setWidth(50);
      column = new TableColumn(table, SWT.CENTER, 2);
      column.setWidth(50);
      column = new TableColumn(table, SWT.CENTER, 3);
      column.setWidth(50);
      column = new TableColumn(table, SWT.CENTER, 4);
      column.setWidth(50);
      column = new TableColumn(table, SWT.CENTER, 5);
      column.setWidth(50);
      column = new TableColumn(table, SWT.CENTER, 6);
      column.setWidth(50);
      column = new TableColumn(table, SWT.CENTER, 7);
      column.setWidth(50);

      table.addSelectionListener(new SelectionAdapter() {
         @Override
         public void widgetSelected(SelectionEvent e) {

            final TableCursor cursor = new TableCursor(table, SWT.NONE);
            final ControlEditor editor = new ControlEditor(cursor);
            editor.grabHorizontal = true;
            editor.grabVertical = true;

            cursor.addSelectionListener(new SelectionAdapter() {
               @Override
               public void widgetSelected(SelectionEvent e) {
                  final Text text = new Text(cursor, SWT.NONE);
                  text.setTextLimit(4);
                  TableItem row = cursor.getRow();
                  int column = cursor.getColumn();
                  text.setText(row.getText(column));
                  text.addKeyListener(new KeyAdapter() {
                     @Override
                     public void keyPressed(KeyEvent e) {
                        // close the text editor and copy the data over
                        // when the user hits "ENTER"
                        if (e.character == SWT.CR) {
                           TableItem row = cursor.getRow();
                           int column = cursor.getColumn();
                           int newVal = Integer.parseInt(text.getText(), 16);
                           row.setText(column, text.getText());
                           text.dispose();
                           cursor.dispose();
                           if (muxProbe != null) {
                              byte[] cmd = new byte[100];
                              int index = 0;
                              cmd[index++] = 'S'; // set 1553 data cmd
                              cmd[index++] = (byte) selectedChannel;
                              cmd[index++] = (byte) selectedRt;
                              cmd[index++] = (byte) selectedTR;
                              cmd[index++] = (byte) selectedSubaddr;
                              Object[] o = ((DatawordModel) parent.getInput()).getChildren();
                              ((RowNode) o[table.indexOf(row)]).setDataword(newVal, column);
                              for (Object r : o) {
                                 for (int i = 0; i < 16; i++) {
                                    cmd[index++] = ((RowNode) r).getDatabyte(i);
                                 }
                              }
                              try {
                                 muxProbe.command(cmd);
                              } catch (RemoteException ex) {
                                 OseeLog.log(MuxToolPlugin.class, Level.WARNING,
                                       "MuxView unable to send RT simulation command");
                              }
                           }
                        }
                        // close the text editor when the user hits
                        // "ESC"
                        if (e.character == SWT.ESC) {
                           text.dispose();
                           cursor.dispose();
                        }
                        // allow only hexadecimal characters, backspace,
                        // delete,
                        // left and right arrow keys
                        if (e.character >= 0x30 && e.character <= 0x39 || e.character >= 0x41 && e.character <= 0x46 || e.character >= 0x61 && e.character <= 0x66 || e.character == SWT.BS || e.character == SWT.DEL || e.keyCode == SWT.ARROW_LEFT || e.keyCode == SWT.ARROW_RIGHT) {
                           e.doit = true;
                        } else {
                           e.doit = false;
                        }
                     }
                  });
                  // close the text editor when the user clicks away
                  text.addFocusListener(new FocusAdapter() {
                     @Override
                     public void focusLost(FocusEvent e) {
                        text.dispose();
                        cursor.dispose();
                     }
                  });
                  editor.setEditor(text);
                  text.setFocus();
               }
            });
            table.deselectAll();
         }
      });
   }

   /**
    * Passing the focus request to the viewer's control.
    */
   @Override
   public void setFocus() {
      // msgViewer1.getControl().setFocus();
   }

   @Override
   public void dispose() {
      MuxToolPlugin.getDefault().getOteClientService().removeConnectionListener(this);
      ITestEnvironment env = MuxToolPlugin.getDefault().getOteClientService().getConnectedEnvironment();
      if (env != null) {
         try {
            ((ITestEnvironmentMessageSystem) env).removeInstrumentationRegistrationListener(exportedThis);
         } catch (RemoteException ex) {
            OseeLog.log(MuxView.class, Level.WARNING, "could not deregister instrumentation registration listener", ex);
         }
         IServiceConnector connector = MuxToolPlugin.getDefault().getOteClientService().getConnector();
         try {
            connector.unexport(this);
         } catch (Exception ex) {
            OseeLog.log(MuxView.class, Level.WARNING, "could not unexport this", ex);
         }
      }
      if (muxProbe != null) {
         try {
            muxProbe.unregister(thread.address);
         } catch (RemoteException ex) {
            OseeLog.log(MuxView.class, Level.WARNING, "could not disconnect from mux probe", ex);
         }
         muxProbe = null;
      }
      if (task != null) {
         task.stop();
      }
      thread.shutdown();

      super.dispose();
   }

   class ListenerThread extends Thread {
      private volatile boolean done = false;
      private final DatagramChannel channel;
      private final InetSocketAddress address;

      public ListenerThread() throws IOException {
         super("Mux View Listener Thread");
         channel = DatagramChannel.open();
         port = PortUtil.getInstance().getValidPort();
         address = new InetSocketAddress(InetAddress.getLocalHost(), port);
         channel.socket().bind(address);
         OseeLog.log(MuxToolPlugin.class, Level.INFO,
               "MuxView connection - host: " + address.getHostName() + "    port: " + address.getPort());
      }

      @Override
      public void run() {
         final ByteBuffer buffer = ByteBuffer.wrap(new byte[256]);
         try {
            while (!done) {
               buffer.clear();
               channel.receive(buffer);
               buffer.flip();
               switch (buffer.array()[0]) {
                  case 1:
                     chan1Msgs.onDataAvailable(buffer);
                     chan1Dwrds.onDataAvailable(buffer);
                     break;
                  case 2:
                     chan2Msgs.onDataAvailable(buffer);
                     chan2Dwrds.onDataAvailable(buffer);
                     break;
                  case 3:
                     chan3Msgs.onDataAvailable(buffer);
                     chan3Dwrds.onDataAvailable(buffer);
                     break;
                  case 5:
                     chan5Msgs.onDataAvailable(buffer);
                     chan5Dwrds.onDataAvailable(buffer);
               }
            }
         } catch (InterruptedIOException e) {
            Thread.currentThread().interrupt();
         } catch (IOException e) {
            if (!isInterrupted()) {
               OseeLog.log(MuxToolPlugin.class, Level.SEVERE, "Interrupted", e);
            }
         } finally {
            try {
               channel.close();
            } catch (IOException e) {
               // do nothing
            }
         }
      }

      public void shutdown() {
         done = true;
         interrupt();
         try {
            thread.join(5000);
            assert !channel.isOpen();
         } catch (InterruptedException e) {
            OseeLog.log(MuxView.class, Level.SEVERE, "could not join wiht listener thread", e);
         }
      }
   }

   @Override
   public void onConnectionLost(IServiceConnector connector) {
      handleConnectionLostStatus();
   }

   @Override
   public void onPostConnect(final ConnectionEvent event) {
      final ITestEnvironmentMessageSystem environment = (ITestEnvironmentMessageSystem) event.getEnvironment();
      if (environment != null) {
         // we are connected
         try {
            exportedThis = (IInstrumentationRegistrationListener) event.getConnector().findExport(MuxView.this);
            if (exportedThis == null) {
               exportedThis = (IInstrumentationRegistrationListener) event.getConnector().export(MuxView.this);
            }
            environment.addInstrumentationRegistrationListener(exportedThis);
         } catch (Exception ex) {
            OseeLog.log(MuxView.class, Level.SEVERE, "could not register for instrumentation events", ex);
            Display.getDefault().asyncExec(new Runnable() {

               @Override
               public void run() {
                  MessageDialog.openError(Display.getDefault().getActiveShell(), "Connect Error",
                        "Could not register for instrumentation events. See Error Log for details");
               }

            });

         }
      }

   }

   private void detach() {

   }

   @Override
   public void onPreDisconnect(ConnectionEvent event) {
      final ITestEnvironmentMessageSystem environment = (ITestEnvironmentMessageSystem) event.getEnvironment();
      try {
         environment.removeInstrumentationRegistrationListener(exportedThis);
      } catch (RemoteException ex1) {
         OseeLog.log(MuxToolPlugin.class, Level.SEVERE, "Problem unregistering instrumentation registration listener",
               ex1);
      }

      if (muxProbe != null) {
         try {
            muxProbe.unregister(thread.address);
         } catch (RemoteException ex) {
            OseeLog.log(MuxToolPlugin.class, Level.SEVERE, "Problem unregistering socket address", ex);
         } finally {
            muxProbe = null;
         }
      }
      handleConnectionLostStatus();
   }

   private void handleConnectionLostStatus() {
      Display.getDefault().asyncExec(new Runnable() {

         @Override
         public void run() {
            updateColors(false);
            // we are not connected
            if (task != null) {
               task.stop();
            }
         }
      });
   }

   private void updateColors(boolean connected) {
      msgViewer1.getTable().setBackground(connected ? WHITE : GRAY);
      msgViewer2.getTable().setBackground(connected ? WHITE : GRAY);
      msgViewer3.getTable().setBackground(connected ? WHITE : GRAY);
      msgViewer5.getTable().setBackground(connected ? WHITE : GRAY);
      dataViewer1.getTable().setBackground(connected ? WHITE : GRAY);
      dataViewer2.getTable().setBackground(connected ? WHITE : GRAY);
      dataViewer3.getTable().setBackground(connected ? WHITE : GRAY);
      dataViewer5.getTable().setBackground(connected ? WHITE : GRAY);
   }

   @Override
   public void onDeregistered(String name) throws RemoteException {
      if (muxProbe != null && name.equals("MUXIO")) {
         muxProbe = null;
         handleConnectionLostStatus();
      }
   }

   @Override
   public void onRegistered(String name, IOInstrumentation instrumentation) throws RemoteException {
      try {
         if (muxProbe == null && name.equals("MUXIO")) {
            muxProbe = instrumentation;
            Display.getDefault().asyncExec(new Runnable() {

               @Override
               public void run() {
                  if (task != null) {
                     task.start();
                  }
                  updateColors(true);
               }

            });
            muxProbe.register(thread.address);

         }
      } catch (RemoteException ex) {
         OseeLog.log(MuxToolPlugin.class, Level.SEVERE,
               "Problem registering socket address with remote instrumentation service", ex);
      }

   }
}

Back to the top