Add a script to check for outdated Maven dependencies
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / uml2sd / core / Frame.java
CommitLineData
73005152 1/**********************************************************************
ed902a2b 2 * Copyright (c) 2005, 2014 IBM Corporation, Ericsson
73005152
BH
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
a55887ca
AM
7 *
8 * Contributors:
c8422608
AM
9 * IBM - Initial API and implementation
10 * Bernd Hufmann - Updated for TMF
73005152 11 **********************************************************************/
c8422608 12
2bdf0193 13package org.eclipse.tracecompass.tmf.ui.views.uml2sd.core;
73005152
BH
14
15import java.util.ArrayList;
16import java.util.Arrays;
17import java.util.Iterator;
18import java.util.List;
19
2bdf0193
AM
20import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
21import org.eclipse.tracecompass.tmf.ui.views.uml2sd.drawings.IColor;
22import org.eclipse.tracecompass.tmf.ui.views.uml2sd.drawings.IGC;
23import org.eclipse.tracecompass.tmf.ui.views.uml2sd.preferences.SDViewPref;
24import org.eclipse.tracecompass.tmf.ui.views.uml2sd.util.TimeEventComparator;
73005152
BH
25
26/**
27 * The Frame class is the base sequence diagram graph nodes container.<br>
28 * For instance, only one frame can be drawn in the View.<br>
29 * Lifelines, Messages and Stop which are supposed to represent a Sequence diagram are drawn in a Frame.<br>
30 * Only the graph node added to their representing list will be drawn.
a55887ca 31 *
73005152
BH
32 * The lifelines are appended along the X axsis when added in a frame.<br>
33 * The syncMessages are ordered along the Y axsis depending on the event occurrence they are attached to.<br>
a55887ca 34 *
2bdf0193 35 * @see org.eclipse.tracecompass.tmf.ui.views.uml2sd.core.Lifeline Lifeline for more event occurence details
73005152
BH
36 * @author sveyrier
37 * @version 1.0
38 */
39public class Frame extends BasicFrame {
40
df0b8ff4
BH
41 // ------------------------------------------------------------------------
42 // Attributes
43 // ------------------------------------------------------------------------
44 /**
45 * The lifeline that is current highlighted.
46 */
cab6c8ff 47 private Lifeline fHighlightLifeline = null;
df0b8ff4
BH
48 /**
49 * The value of the start event.
50 */
cab6c8ff 51 private int fStartEvent = 0;
df0b8ff4 52 /**
cab6c8ff 53 * The number of events in the frame.
df0b8ff4 54 */
cab6c8ff 55 private int fNbEvent = 0;
df0b8ff4
BH
56 /**
57 * The color for highlighting.
58 */
cab6c8ff 59 private IColor fHighlightColor = null;
df0b8ff4
BH
60 /**
61 * The list of time events of the corresponding execution occurrences.
62 */
cab6c8ff 63 private List<SDTimeEvent> fExecutionOccurrencesWithTime;
df0b8ff4
BH
64 /**
65 * The Array of lifeline categories.
66 */
cab6c8ff 67 private LifelineCategories[] fLifelineCategories = null;
73005152 68
df0b8ff4
BH
69 // ------------------------------------------------------------------------
70 // Methods
71 // ------------------------------------------------------------------------
72
73005152
BH
73 /**
74 * Returns a list of all lifelines known by this frame. Known lifelines are the only one which can be displayed on
75 * screen.
a55887ca 76 *
73005152
BH
77 * @return the lifelines list
78 */
79 protected List<GraphNode> getLifelines() {
cab6c8ff 80 if (!hasChildren()) {
73005152 81 return null;
a55887ca 82 }
cab6c8ff 83 return getNodeMap().get(Lifeline.LIFELINE_TAG);
73005152
BH
84 }
85
86 /**
87 * Returns the number of lifelines stored in the frame
a55887ca 88 *
73005152
BH
89 * @return the number of lifelines
90 */
91 public int lifeLinesCount() {
92 List<GraphNode> lifelines = getLifelines();
df0b8ff4 93 if (lifelines != null) {
73005152 94 return lifelines.size();
df0b8ff4
BH
95 }
96 return 0;
73005152
BH
97 }
98
99 /**
100 * Returns the lifeline at the given index in the lifelines array
a55887ca 101 *
73005152 102 * @param index the position in the lifeline array
df0b8ff4 103 * @return the lifeline or <code>null</code>
73005152
BH
104 */
105 public Lifeline getLifeline(int index) {
df0b8ff4 106 if ((getLifelines() != null) && (index >= 0) && (index < lifeLinesCount())) {
73005152 107 return (Lifeline) getLifelines().get(index);
df0b8ff4 108 }
73005152
BH
109 return null;
110 }
111
112 /**
113 * Returns a list of syncMessages known by this frame. Known syncMessages are the only on which can be displayed on
114 * screen
a55887ca 115 *
73005152
BH
116 * @return the syncMessages list
117 */
118 protected List<GraphNode> getSyncMessages() {
cab6c8ff 119 if (!hasChildren()) {
73005152 120 return null;
a55887ca 121 }
cab6c8ff 122 return getNodeMap().get(SyncMessage.SYNC_MESS_TAG);
73005152
BH
123 }
124
125 /**
126 * Returns the number of syncMessages stored in the frame
a55887ca 127 *
73005152
BH
128 * @return the number of syncMessage
129 */
130 public int syncMessageCount() {
df0b8ff4 131 if (getSyncMessages() != null) {
73005152 132 return getSyncMessages().size();
a55887ca 133 }
df0b8ff4 134 return 0;
73005152
BH
135 }
136
137 /**
138 * Returns the syncMessage at the given index in the syncMessages array
a55887ca 139 *
73005152 140 * @param index the position in the syncMessages array
df0b8ff4 141 * @return the syncMessage or <code>null</code>
73005152
BH
142 */
143 public SyncMessage getSyncMessage(int index) {
df0b8ff4 144 if ((getSyncMessages() != null) && (index >= 0) && (index < getSyncMessages().size())) {
73005152 145 return (SyncMessage) getSyncMessages().get(index);
df0b8ff4 146 }
73005152
BH
147 return null;
148 }
149
150 /**
151 * Returns a list of asyncMessages known by this frame. Known asyncMessages are the only on which can be displayed
152 * on screen
a55887ca 153 *
df0b8ff4 154 * @return the asyncMessages list or <code>null</code>
73005152
BH
155 */
156 protected List<GraphNode> getAsyncMessages() {
cab6c8ff 157 if (!hasChildren()) {
73005152 158 return null;
df0b8ff4 159 }
cab6c8ff 160 return getNodeMap().get(AsyncMessage.ASYNC_MESS_TAG);
73005152
BH
161 }
162
163 /**
164 * Returns the number of asyncMessage stored in the frame
a55887ca 165 *
73005152
BH
166 * @return the number of asyncMessage
167 */
168 public int asyncMessageCount() {
df0b8ff4 169 if (getAsyncMessages() != null) {
73005152 170 return getAsyncMessages().size();
df0b8ff4
BH
171 }
172 return 0;
73005152
BH
173 }
174
175 /**
176 * Returns the asyncMessage at the given index in the asyncMessage array
a55887ca 177 *
73005152 178 * @param index the position in the asyncMessage array
df0b8ff4 179 * @return the asyncMessage or <code>null</code>
73005152
BH
180 */
181 public AsyncMessage getAsyncMessage(int index) {
df0b8ff4 182 if ((getAsyncMessages() != null) && (index >= 0) && (index < getAsyncMessages().size())) {
73005152 183 return (AsyncMessage) getAsyncMessages().get(index);
df0b8ff4 184 }
73005152
BH
185 return null;
186 }
187
188 /**
189 * Returns a list of syncMessages return known by this frame. Known syncMessages return are the only on which can be
190 * displayed on screen
a55887ca 191 *
df0b8ff4 192 * @return the syncMessages return list or <code>null</code>
73005152
BH
193 */
194 protected List<GraphNode> getSyncMessagesReturn() {
cab6c8ff 195 if (!hasChildren()) {
73005152 196 return null;
df0b8ff4 197 }
cab6c8ff 198 return getNodeMap().get(SyncMessageReturn.SYNC_MESS_RET_TAG);
73005152
BH
199 }
200
201 /**
202 * Returns the number of syncMessageReturn stored in the frame
a55887ca 203 *
73005152
BH
204 * @return the number of syncMessageReturn
205 */
206 public int syncMessageReturnCount() {
df0b8ff4 207 if (getSyncMessagesReturn() != null) {
73005152 208 return getSyncMessagesReturn().size();
df0b8ff4
BH
209 }
210 return 0;
73005152
BH
211 }
212
213 /**
214 * Returns the syncMessageReturn at the given index in the syncMessageReturn array
a55887ca 215 *
73005152 216 * @param index the position in the syncMessageReturn array
df0b8ff4 217 * @return the syncMessageReturn or <code>null</code>
73005152
BH
218 */
219 public SyncMessageReturn getSyncMessageReturn(int index) {
df0b8ff4 220 if ((getSyncMessagesReturn() != null) && (index >= 0) && (index < getSyncMessagesReturn().size())) {
73005152 221 return (SyncMessageReturn) getSyncMessagesReturn().get(index);
df0b8ff4 222 }
73005152
BH
223 return null;
224 }
225
226 /**
227 * Returns a list of asyncMessageRetun known by this frame. Known asyncMessageRetun are the only on which can be
228 * displayed on screen
a55887ca 229 *
df0b8ff4 230 * @return the asyncMessageRetun list or <code>null</code>
73005152
BH
231 */
232 protected List<GraphNode> getAsyncMessagesReturn() {
cab6c8ff 233 if (!hasChildren()) {
73005152 234 return null;
df0b8ff4 235 }
cab6c8ff 236 return getNodeMap().get(AsyncMessageReturn.ASYNC_MESS_RET_TAG);
73005152
BH
237 }
238
239 /**
240 * Returns the number of asyncMessageReturn stored in the frame
a55887ca 241 *
73005152
BH
242 * @return the number of asyncMessageReturn
243 */
244 public int asyncMessageReturnCount() {
df0b8ff4 245 if (getAsyncMessagesReturn() != null) {
73005152 246 return getAsyncMessagesReturn().size();
df0b8ff4
BH
247 }
248 return 0;
73005152
BH
249 }
250
251 /**
252 * Returns the asyncMessageReturn at the given index in the asyncMessageReturn array
a55887ca 253 *
73005152 254 * @param index the position in the asyncMessageReturn array
df0b8ff4 255 * @return the asyncMessageReturn or <code>null</code>
73005152
BH
256 */
257 public AsyncMessageReturn getAsyncMessageReturn(int index) {
df0b8ff4 258 if ((getAsyncMessagesReturn() != null) && (index >= 0) && (index < getAsyncMessagesReturn().size())) {
73005152 259 return (AsyncMessageReturn) getAsyncMessagesReturn().get(index);
df0b8ff4 260 }
73005152
BH
261 return null;
262 }
263
264 /**
265 * Adds a lifeline to the frame lifelines list. The lifeline X drawing order depends on the lifeline addition order
266 * into the frame lifelines list.
a55887ca 267 *
0d9a6d76 268 * @param lifeline the lifeline to add
73005152 269 */
0d9a6d76 270 public void addLifeLine(Lifeline lifeline) {
cab6c8ff 271 setComputeMinMax(true);
df0b8ff4 272 if (lifeline == null) {
73005152 273 return;
df0b8ff4 274 }
73005152 275 // set the lifeline parent frame
0d9a6d76 276 lifeline.setFrame(this);
73005152
BH
277 // Increate the frame lifeline counter
278 // and set the lifeline drawing order
0d9a6d76
FC
279 lifeline.setIndex(getNewHorizontalIndex());
280 if (lifeline.hasTimeInfo()) {
cab6c8ff 281 setHasTimeInfo(true);
73005152
BH
282 }
283 // add the lifeline to the lifelines list
0d9a6d76 284 addNode(lifeline);
73005152
BH
285 }
286
287 /**
288 * Returns the first visible lifeline drawn in the view
a55887ca 289 *
73005152
BH
290 * @return the first visible lifeline index
291 */
292 public int getFirstVisibleLifeline() {
cab6c8ff 293 if (!hasChildren()) {
73005152 294 return 0;
cab6c8ff
BH
295 } else if (getIndexes().get(Lifeline.LIFELINE_TAG) != null) {
296 return getIndexes().get(Lifeline.LIFELINE_TAG).intValue();
df0b8ff4
BH
297 }
298 return 0;
73005152
BH
299 }
300
301 /**
302 * Returns the first visible synchronous message drawn in the view
a55887ca 303 *
73005152
BH
304 * @return the first visible synchronous message index
305 */
306 public int getFirstVisibleSyncMessage() {
cab6c8ff 307 if (!hasChildren()) {
73005152 308 return 0;
cab6c8ff
BH
309 } else if (getIndexes().get(SyncMessage.SYNC_MESS_TAG) != null) {
310 return getIndexes().get(SyncMessage.SYNC_MESS_TAG).intValue();
df0b8ff4
BH
311 }
312 return 0;
73005152
BH
313 }
314
315 /**
316 * Returns the first visible synchronous message return drawn in the view
a55887ca 317 *
73005152
BH
318 * @return the first visible synchronous message return index
319 */
320 public int getFirstVisibleSyncMessageReturn() {
cab6c8ff 321 if (!hasChildren()) {
73005152 322 return 0;
cab6c8ff
BH
323 } else if (getIndexes().get(SyncMessageReturn.SYNC_MESS_RET_TAG) != null) {
324 return getIndexes().get(SyncMessageReturn.SYNC_MESS_RET_TAG).intValue();
df0b8ff4
BH
325 }
326 return 0;
73005152
BH
327 }
328
329 /**
330 * Returns the first visible synchronous message drawn in the view
a55887ca 331 *
73005152
BH
332 * @return the first visible synchronous message index
333 */
334 public int getFirstVisibleAsyncMessage() {
cab6c8ff 335 if (!hasChildren()) {
73005152 336 return 0;
cab6c8ff
BH
337 } else if (getIndexes().get(AsyncMessage.ASYNC_MESS_TAG) != null) {
338 return getIndexes().get(AsyncMessage.ASYNC_MESS_TAG).intValue();
df0b8ff4
BH
339 }
340 return 0;
73005152
BH
341 }
342
343 /**
344 * Returns the first visible synchronous message return drawn in the view
a55887ca 345 *
73005152
BH
346 * @return the first visible synchronous message return index
347 */
348 public int getFirstVisibleAsyncMessageReturn() {
cab6c8ff 349 if (!hasChildren()) {
73005152 350 return 0;
cab6c8ff
BH
351 } else if (getIndexes().get(AsyncMessageReturn.ASYNC_MESS_RET_TAG) != null) {
352 return getIndexes().get(AsyncMessageReturn.ASYNC_MESS_RET_TAG).intValue();
df0b8ff4
BH
353 }
354 return 0;
73005152
BH
355 }
356
df0b8ff4
BH
357 /**
358 * Returns the list of execution occurrences.
a55887ca 359 *
df0b8ff4
BH
360 * @return the list of execution occurrences
361 */
73005152 362 public List<SDTimeEvent> getExecutionOccurrencesWithTime() {
eb63f5ff 363 return fExecutionOccurrencesWithTime;
73005152
BH
364 }
365
df0b8ff4
BH
366 /**
367 * Inserts a lifeline after a given lifeline.
a55887ca 368 *
df0b8ff4 369 * @param toInsert A lifeline to insert
a55887ca 370 * @param after A lifelife the toInsert-lifeline will be inserted after.
df0b8ff4 371 */
73005152 372 public void insertLifelineAfter(Lifeline toInsert, Lifeline after) {
df0b8ff4 373 if ((toInsert == null)) {
73005152 374 return;
df0b8ff4
BH
375 }
376 if (toInsert == after) {
73005152 377 return;
df0b8ff4 378 }
73005152 379 int insertPoint = 0;
df0b8ff4 380 if (after != null) {
73005152 381 insertPoint = after.getIndex();
df0b8ff4 382 }
73005152 383 int removePoint = toInsert.getIndex() - 1;
df0b8ff4 384 if (removePoint >= insertPoint) {
73005152 385 getLifelines().remove(removePoint);
df0b8ff4 386 }
73005152 387 getLifelines().add(insertPoint, toInsert);
df0b8ff4 388 if (removePoint < insertPoint) {
73005152 389 getLifelines().remove(removePoint);
df0b8ff4 390 }
73005152 391
df0b8ff4 392 if (removePoint >= insertPoint) {
73005152 393 toInsert.setIndex(insertPoint + 1);
df0b8ff4 394 } else {
73005152 395 toInsert.setIndex(insertPoint - 1);
df0b8ff4 396 }
73005152
BH
397
398 insertPoint++;
399 if (removePoint >= insertPoint) {
400 for (int i = insertPoint; i < getLifelines().size(); i++) {
401 getLifeline(i).setIndex(i + 1);
402 }
403 } else {
404 for (int i = 0; i < insertPoint && i < getLifelines().size(); i++) {
405 getLifeline(i).setIndex(i + 1);
406 }
407 }
408 }
409
df0b8ff4
BH
410 /**
411 * Inserts a lifeline before a given lifeline.
a55887ca
AM
412 *
413 * @param toInsert
414 * A lifeline to insert
415 * @param before
416 * A lifeline the toInsert-lifeline will be inserted before.
df0b8ff4 417 */
73005152 418 public void insertLifelineBefore(Lifeline toInsert, Lifeline before) {
df0b8ff4 419 if ((toInsert == null)) {
73005152 420 return;
df0b8ff4
BH
421 }
422 if (toInsert == before) {
73005152 423 return;
df0b8ff4 424 }
73005152 425 int insertPoint = 0;
df0b8ff4 426 if (before != null) {
73005152 427 insertPoint = before.getIndex() - 1;
df0b8ff4 428 }
73005152 429 int removePoint = toInsert.getIndex() - 1;
df0b8ff4 430 if (removePoint >= insertPoint) {
73005152 431 getLifelines().remove(removePoint);
df0b8ff4 432 }
73005152 433 getLifelines().add(insertPoint, toInsert);
df0b8ff4 434 if (removePoint < insertPoint) {
73005152 435 getLifelines().remove(removePoint);
df0b8ff4 436 }
73005152 437
df0b8ff4 438 if (removePoint >= insertPoint) {
73005152 439 toInsert.setIndex(insertPoint + 1);
df0b8ff4 440 } else {
73005152 441 toInsert.setIndex(insertPoint - 1);
df0b8ff4 442 }
73005152
BH
443
444 insertPoint++;
445 if (removePoint >= insertPoint) {
446 for (int i = insertPoint; i < getLifelines().size(); i++) {
447 getLifeline(i).setIndex(i + 1);
448 }
449 } else {
450 for (int i = 0; i < insertPoint && i < getLifelines().size(); i++) {
451 getLifeline(i).setIndex(i + 1);
452 }
453 }
454 }
455
df0b8ff4
BH
456 /**
457 * Gets the closer life line to the given x-coordinate.
a55887ca 458 *
df0b8ff4 459 * @param x A x coordinate
a55887ca 460 * @return the closer lifeline
df0b8ff4 461 */
73005152
BH
462 public Lifeline getCloserLifeline(int x) {
463 int index = (x - Metrics.FRAME_H_MARGIN + Metrics.LIFELINE_H_MAGIN) / Metrics.swimmingLaneWidth() - 1;
df0b8ff4 464 if (index < 0) {
73005152 465 index = 0;
df0b8ff4
BH
466 }
467 if (index >= getLifelines().size()) {
73005152 468 index = getLifelines().size() - 1;
df0b8ff4 469 }
73005152
BH
470 Lifeline node1, node2, node3;
471 int dist1, dist2, dist3;
472 node1 = node2 = node3 = getLifeline(index);
473 dist1 = dist2 = dist3 = Math.abs(node1.getX() + node1.getWidth() / 2 - x);
474 if (index > 0) {
475 node2 = getLifeline(index - 1);
476 dist2 = Math.abs(node2.getX() + node2.getWidth() / 2 - x);
477 }
478 if (index < getLifelines().size() - 1) {
479 node3 = getLifeline(index + 1);
480 dist3 = Math.abs(node3.getX() + node3.getWidth() / 2 - x);
481 }
df0b8ff4 482 if (dist1 <= dist2 && dist1 <= dist3) {
73005152 483 return node1;
df0b8ff4 484 } else if (dist2 <= dist1 && dist2 <= dist3) {
73005152 485 return node2;
df0b8ff4
BH
486 }
487 return node3;
73005152
BH
488 }
489
df0b8ff4
BH
490 /**
491 * Re-orders the given list of lifelines.
a55887ca 492 *
df0b8ff4
BH
493 * @param list A list of lifelines to reorder.
494 */
eb63f5ff 495 public void reorder(List<?> list) {
73005152
BH
496 for (int i = 0; i < list.size(); i++) {
497 if (list.get(i) instanceof Lifeline[]) {
498 Lifeline temp[] = (Lifeline[]) list.get(i);
499 if (temp.length == 2) {
500 if (temp[1] == null) {
501 insertLifelineAfter(temp[0], getLifeline(lifeLinesCount() - 1));
df0b8ff4 502 } else {
73005152 503 insertLifelineBefore(temp[0], temp[1]);
df0b8ff4 504 }
73005152
BH
505 }
506 }
507 }
508 }
509
df0b8ff4
BH
510 /**
511 * Resets the time compression information.
512 */
73005152 513 public void resetTimeCompression() {
eb63f5ff
BH
514 fHighlightLifeline = null;
515 this.fStartEvent = 0;
516 this.fNbEvent = 0;
517 fHighlightColor = null;
73005152
BH
518 }
519
520 @Override
521 protected void computeMinMax() {
522 List<SDTimeEvent> timeArray = buildTimeArray();
3145ec83 523 if ((timeArray == null) || timeArray.isEmpty()) {
73005152 524 return;
df0b8ff4 525 }
73005152 526 for (int i = 0; i < timeArray.size() - 1; i++) {
abbdd66a
AM
527 SDTimeEvent m1 = timeArray.get(i);
528 SDTimeEvent m2 = timeArray.get(i + 1);
eb63f5ff
BH
529 if (SDViewPref.getInstance().excludeExternalTime() && ((m1.getGraphNode() instanceof BaseMessage) && (m2.getGraphNode() instanceof BaseMessage))) {
530 BaseMessage mes1 = (BaseMessage) m1.getGraphNode();
531 BaseMessage mes2 = (BaseMessage) m2.getGraphNode();
cab6c8ff 532 if ((mes2.getStartLifeline() == null) || (mes1.getEndLifeline() == null)) {
eb63f5ff 533 continue;
73005152 534 }
eb63f5ff 535 }
73005152
BH
536
537 updateMinMax(m1, m2);
538 }
539 }
540
541 /**
542 * Find the two graph nodes that are closest to this date, one just earlier, second just later. If date is before
543 * any graph node, bounds[0] is null and bounds[1] is the earliest. If date is after any graph node, bounds[1] is
544 * null and bounds[0] is the latest.
a55887ca 545 *
73005152
BH
546 * @param dateToFind date to be found
547 * @param bounds a two items array that will receive bounds if found
548 * @return true if both bounds not null
549 */
d7dbf09a 550 public boolean findDateBounds(ITmfTimestamp dateToFind, ITimeRange bounds[]) {
73005152
BH
551 if (hasTimeInfo()) {
552 List<SDTimeEvent> timeArray = buildTimeArray();
3145ec83
BH
553
554 if ((timeArray == null) || timeArray.isEmpty()) {
555 return false;
556 }
557
73005152
BH
558 bounds[0] = null;
559 bounds[1] = null;
560 for (int i = 0; i < timeArray.size(); i++) {
abbdd66a 561 SDTimeEvent m = timeArray.get(i);
065cc19b 562 if (m.getTime().compareTo(dateToFind) > 0) {
73005152
BH
563 bounds[1] = m.getGraphNode();
564 if (i > 0) {
abbdd66a 565 bounds[0] = timeArray.get(i - 1).getGraphNode();
73005152
BH
566 return true;
567 }
568 return false;
569 }
570 }
abbdd66a 571 bounds[0] = timeArray.get(timeArray.size() - 1).getGraphNode();
73005152
BH
572 }
573 return false;
574 }
575
73005152 576 /**
df0b8ff4 577 * Highlights the time compression.
a55887ca 578 *
df0b8ff4
BH
579 * @param lifeline A lifeline to highlight
580 * @param startEvent A start event number
581 * @param nbEvent A number of events
582 * @param color A color for highlighting
73005152
BH
583 */
584 public void highlightTimeCompression(Lifeline lifeline, int startEvent, int nbEvent, IColor color) {
eb63f5ff
BH
585 fHighlightLifeline = lifeline;
586 this.fStartEvent = startEvent;
587 this.fNbEvent = nbEvent;
588 fHighlightColor = color;
73005152
BH
589 }
590
591 /**
592 * Set the lifeline categories which will be use during the lifelines creation
a55887ca 593 *
73005152
BH
594 * @see Lifeline#setCategory(int)
595 * @param categories the lifeline categories array
596 */
597 public void setLifelineCategories(LifelineCategories[] categories) {
eb63f5ff 598 fLifelineCategories = Arrays.copyOf(categories, categories.length);
73005152
BH
599 }
600
601 /**
602 * Returns the lifeline categories array set for the this frame
a55887ca 603 *
73005152
BH
604 * @return the lifeline categories array or null if not set
605 */
606 public LifelineCategories[] getLifelineCategories() {
a55887ca 607 return Arrays.copyOf(fLifelineCategories, fLifelineCategories.length);
73005152
BH
608 }
609
610 /**
611 * Adds a message to the Frame message list. Four kinds of syncMessages can be added:<br>
612 * - synchronous syncMessages<br>
613 * - synchronous syncMessages return<br>
614 * - asynchronous syncMessages<br>
615 * - asynchronous syncMessages return<br>
616 * For drawing performance reason, it is recommended to add synchronous syncMessages in the same order they should
617 * appear along the Y axis in the Frame.
a55887ca 618 *
0d9a6d76 619 * @param message the message to add
73005152
BH
620 */
621 public void addMessage(BaseMessage message) {
622 addNode(message);
623 }
624
625 @Override
626 public void draw(IGC context) {
627 drawFrame(context);
cab6c8ff 628 if (!hasChildren()) {
73005152 629 return;
df0b8ff4 630 }
a55887ca 631
eb63f5ff 632 if (fHighlightLifeline != null) {
73005152 633 IColor backupColor = context.getBackground();
3145ec83 634 context.setBackground(SDViewPref.getInstance().getTimeCompressionSelectionColor());
eb63f5ff
BH
635 int gy = fHighlightLifeline.getY() + fHighlightLifeline.getHeight() + (Metrics.getMessageFontHeigth() + Metrics.getMessagesSpacing()) * fStartEvent;
636 context.fillRectangle(Metrics.FRAME_H_MARGIN + 1, gy, fHighlightLifeline.getX() + Metrics.getLifelineWidth() / 2 - Metrics.FRAME_H_MARGIN, (Metrics.getMessageFontHeigth() + Metrics.getMessagesSpacing()) * fNbEvent);
73005152
BH
637 context.setBackground(backupColor);
638 }
639 super.draw(context, false);
640 int lifelineArryStep = 1;
df0b8ff4 641 if (Metrics.swimmingLaneWidth() * context.getZoom() < Metrics.LIFELINE_SIGNIFICANT_HSPACING) {
73005152 642 lifelineArryStep = Math.round(Metrics.LIFELINE_SIGNIFICANT_HSPACING / (Metrics.swimmingLaneWidth() * context.getZoom()));
df0b8ff4 643 }
cab6c8ff 644 if (getIndexes().size() == 0) {
73005152 645 return;
df0b8ff4 646 }
cab6c8ff
BH
647 int lifeLineDrawIndex = getIndexes().get(Lifeline.LIFELINE_TAG).intValue();
648 for (int i = lifeLineDrawIndex; i < getNodeMap().get(Lifeline.LIFELINE_TAG).size(); i = i + lifelineArryStep) {
649 Lifeline toDraw = (Lifeline) getNodeMap().get(Lifeline.LIFELINE_TAG).get(i);
df0b8ff4 650 if (toDraw.getX() - Metrics.LIFELINE_SPACING / 2 > context.getContentsX() + context.getVisibleWidth()) {
73005152 651 break;
df0b8ff4 652 }
73005152
BH
653 toDraw.drawName(context);
654
eb63f5ff
BH
655 if (fHighlightLifeline != null) {
656 if (toDraw == fHighlightLifeline) {
657 toDraw.highlightExecOccurrenceRegion(context, fStartEvent, fNbEvent, fHighlightColor);
8a06d27c 658 } else if (toDraw.getIndex() < fHighlightLifeline.getIndex()) {
73005152
BH
659 int acIndex = toDraw.getExecOccurrenceDrawIndex();
660 // acIndex = first visible execution occurrence
661 // for drawing speed reason with only search on the visible subset
df0b8ff4 662 if (toDraw.getExecutions() != null) {
73005152
BH
663 for (int index = acIndex; index < toDraw.getExecutions().size(); index++) {
664 BasicExecutionOccurrence exec = (BasicExecutionOccurrence) toDraw.getExecutions().get(index);
eb63f5ff
BH
665 int tempEvent = fStartEvent;
666 for (int j = 0; j < fNbEvent; j++) {
cab6c8ff 667 if (((tempEvent >= exec.getStartOccurrence()) && (tempEvent <= exec.getEndOccurrence()) && (tempEvent + 1 >= exec.getStartOccurrence()) && (tempEvent + 1 <= exec.getEndOccurrence()))) {
3145ec83 668 toDraw.highlightExecOccurrenceRegion(context, tempEvent, 1, SDViewPref.getInstance().getTimeCompressionSelectionColor());
73005152
BH
669 }
670 tempEvent = tempEvent + 1;
671 }
672 // if we are outside the visible area we stop right now
673 // This works because execution occurrences are ordered along the Y axis
df0b8ff4 674 if (exec.getY() > getY()) {
73005152 675 break;
df0b8ff4 676 }
73005152 677 }
df0b8ff4 678 }
73005152
BH
679 }
680 }
681 }
682 }
683
684 @Override
685 protected List<SDTimeEvent> buildTimeArray() {
3145ec83 686
cab6c8ff 687 if (!hasChildren()) {
507b1336 688 return new ArrayList<>();
3145ec83
BH
689 }
690
691 List<SDTimeEvent> timeArray = super.buildTimeArray();
692 fExecutionOccurrencesWithTime = null;
693 if (getLifelines() != null) {
cab6c8ff
BH
694 for (int i = 0; i < getNodeMap().get(Lifeline.LIFELINE_TAG).size(); i++) {
695 Lifeline lifeline = (Lifeline) getNodeMap().get(Lifeline.LIFELINE_TAG).get(i);
3145ec83
BH
696 if (lifeline.hasTimeInfo() && lifeline.getExecutions() != null) {
697 for (Iterator<GraphNode> j = lifeline.getExecutions().iterator(); j.hasNext();) {
698 GraphNode o = j.next();
699 if (o instanceof ExecutionOccurrence) {
700 ExecutionOccurrence eo = (ExecutionOccurrence) o;
701 if (eo.hasTimeInfo()) {
702 int event = eo.getStartOccurrence();
703 ITmfTimestamp time = eo.getStartTime();
704 SDTimeEvent f = new SDTimeEvent(time, event, eo);
705 timeArray.add(f);
706 if (fExecutionOccurrencesWithTime == null) {
507b1336 707 fExecutionOccurrencesWithTime = new ArrayList<>();
73005152 708 }
3145ec83
BH
709 fExecutionOccurrencesWithTime.add(f);
710 event = eo.getEndOccurrence();
711 time = eo.getEndTime();
712 f = new SDTimeEvent(time, event, eo);
713 timeArray.add(f);
714 fExecutionOccurrencesWithTime.add(f);
73005152
BH
715 }
716 }
717 }
718 }
df0b8ff4 719 }
3145ec83 720 }
73005152 721
3145ec83
BH
722 if (fExecutionOccurrencesWithTime != null) {
723 SDTimeEvent[] temp = fExecutionOccurrencesWithTime.toArray(new SDTimeEvent[fExecutionOccurrencesWithTime.size()]);
73005152 724 Arrays.sort(temp, new TimeEventComparator());
3145ec83 725 fExecutionOccurrencesWithTime = Arrays.asList(temp);
73005152 726 }
3145ec83
BH
727 SDTimeEvent[] temp = timeArray.toArray(new SDTimeEvent[timeArray.size()]);
728 Arrays.sort(temp, new TimeEventComparator());
729 timeArray = Arrays.asList(temp);
730 return timeArray;
73005152
BH
731 }
732
df0b8ff4
BH
733 /**
734 * Get the closer leaving message.
a55887ca 735 *
df0b8ff4
BH
736 * @param lifeline A lifeline reference
737 * @param message A message reference
738 * @param list A list of graph nodes
739 * @param smallerEvent A smaller event flag
740 * @return the closer leaving message.
741 */
73005152 742 protected GraphNode getCloserLeavingMessage(Lifeline lifeline, BaseMessage message, List<GraphNode> list, boolean smallerEvent) {
df0b8ff4 743 if (list == null) {
73005152 744 return null;
df0b8ff4
BH
745 }
746
3145ec83 747 if (!smallerEvent) {
73005152 748 int event = 0;
df0b8ff4 749 if (message != null) {
73005152 750 event = message.getEventOccurrence();
df0b8ff4 751 }
73005152 752 for (int i = 0; i < list.size(); i++) {
abbdd66a 753 GraphNode node = list.get(i);
73005152
BH
754 if (node instanceof SyncMessage) {
755 SyncMessage syncNode = (SyncMessage) node;
df0b8ff4 756 if ((syncNode.getEventOccurrence() > event) && (syncNode.getStartLifeline() == lifeline) && !syncNode.isSameAs(message)) {
73005152 757 return node;
df0b8ff4 758 }
73005152
BH
759 } else if (node instanceof AsyncMessage) {
760 AsyncMessage asyncNode = (AsyncMessage) node;
df0b8ff4 761 if ((asyncNode.getStartOccurrence() > event) && (asyncNode.getStartLifeline() == lifeline) && !asyncNode.isSameAs(message)) {
73005152 762 return node;
df0b8ff4 763 }
73005152
BH
764 }
765 }
766 } else {
767 int event = getMaxEventOccurrence();
df0b8ff4 768 if (message != null) {
73005152
BH
769 if (message instanceof AsyncMessage) {
770 event = ((AsyncMessage) message).getStartOccurrence();
df0b8ff4 771 } else {
73005152 772 event = message.getEventOccurrence();
df0b8ff4
BH
773 }
774 }
73005152 775 for (int i = list.size() - 1; i >= 0; i--) {
abbdd66a 776 GraphNode node = list.get(i);
73005152
BH
777 if (node instanceof SyncMessage) {
778 SyncMessage syncNode = (SyncMessage) node;
df0b8ff4 779 if ((syncNode.getEventOccurrence() < event) && (syncNode.getStartLifeline() == lifeline) && !syncNode.isSameAs(message)) {
73005152 780 return node;
df0b8ff4 781 }
73005152
BH
782 } else if (node instanceof AsyncMessage) {
783 AsyncMessage asyncNode = (AsyncMessage) node;
df0b8ff4 784 if ((asyncNode.getStartOccurrence() < event) && (asyncNode.getStartLifeline() == lifeline) && !asyncNode.isSameAs(message)) {
73005152 785 return node;
df0b8ff4 786 }
73005152
BH
787 }
788 }
789 }
790 return null;
791 }
792
a55887ca 793
df0b8ff4
BH
794 /**
795 * Get the closer entering message.
a55887ca 796 *
df0b8ff4
BH
797 * @param lifeline A lifeline reference
798 * @param message A message reference
799 * @param list A list of graph nodes
800 * @param smallerEvent A smaller event flag
801 * @return the closer entering message.
802 */
73005152 803 protected GraphNode getCloserEnteringMessage(Lifeline lifeline, BaseMessage message, List<GraphNode> list, boolean smallerEvent) {
df0b8ff4 804 if (list == null) {
73005152 805 return null;
df0b8ff4 806 }
eb63f5ff 807 if (!smallerEvent) {
73005152 808 int event = 0;
df0b8ff4 809 if (message != null) {
73005152 810 event = message.getEventOccurrence();
df0b8ff4 811 }
73005152 812 for (int i = 0; i < list.size(); i++) {
abbdd66a 813 GraphNode node = list.get(i);
73005152
BH
814 if (node instanceof SyncMessage) {
815 SyncMessage syncNode = (SyncMessage) node;
df0b8ff4 816 if ((syncNode.getEventOccurrence() > event) && (syncNode.getEndLifeline() == lifeline) && !syncNode.isSameAs(message)) {
73005152 817 return node;
df0b8ff4 818 }
73005152
BH
819 } else if (node instanceof AsyncMessage) {
820 AsyncMessage asyncNode = (AsyncMessage) node;
df0b8ff4 821 if ((asyncNode.getStartOccurrence() > event) && (asyncNode.getEndLifeline() == lifeline) && !asyncNode.isSameAs(message)) {
73005152 822 return node;
df0b8ff4 823 }
73005152
BH
824 }
825 }
826 } else {
827 int event = getMaxEventOccurrence();
a55887ca 828 if (message != null) {
73005152
BH
829 if (message instanceof AsyncMessage) {
830 event = ((AsyncMessage) message).getStartOccurrence();
df0b8ff4 831 } else {
73005152 832 event = message.getEventOccurrence();
df0b8ff4 833 }
a55887ca 834 }
73005152 835 for (int i = list.size() - 1; i >= 0; i--) {
abbdd66a 836 GraphNode node = list.get(i);
73005152
BH
837 if (node instanceof SyncMessage) {
838 SyncMessage syncNode = (SyncMessage) node;
df0b8ff4 839 if ((syncNode.getEventOccurrence() < event) && (syncNode.getEndLifeline() == lifeline) && !syncNode.isSameAs(message)) {
73005152 840 return node;
df0b8ff4 841 }
73005152
BH
842 } else if (node instanceof AsyncMessage) {
843 AsyncMessage asyncNode = (AsyncMessage) node;
df0b8ff4 844 if ((asyncNode.getStartOccurrence() < event) && (asyncNode.getEndLifeline() == lifeline) && !asyncNode.isSameAs(message)) {
73005152 845 return node;
df0b8ff4 846 }
73005152
BH
847 }
848 }
849 }
850 return null;
851 }
852
df0b8ff4
BH
853 /**
854 * Get distance of given event from given graph node.
a55887ca 855 *
df0b8ff4
BH
856 * @param node A graph node reference.
857 * @param event A event number to check.
858 * @return distance of event from graph node.
859 */
73005152
BH
860 protected int distanceFromEvent(GraphNode node, int event) {
861 int distance = 0;
df0b8ff4 862 if (node instanceof SyncMessage) {
73005152 863 distance = ((SyncMessage) node).getEventOccurrence() - event;
df0b8ff4 864 } else if (node instanceof AsyncMessage) {
73005152
BH
865 int start = ((AsyncMessage) node).getStartOccurrence();
866 int end = ((AsyncMessage) node).getEndOccurrence();
df0b8ff4 867 if ((start - event) < (end - event)) {
73005152 868 distance = start - event;
df0b8ff4 869 } else {
73005152 870 distance = end - event;
df0b8ff4 871 }
73005152
BH
872 }
873 return Math.abs(distance);
874 }
875
df0b8ff4
BH
876 /**
877 * Get node from 2 given nodes that is close to event.
a55887ca 878 *
df0b8ff4
BH
879 * @param node1 A first graph node
880 * @param node2 A second graph node
881 * @param event A event to check.
882 * @return graph node that is closer or <code>null</code>
883 */
73005152
BH
884 protected GraphNode getCloserToEvent(GraphNode node1, GraphNode node2, int event) {
885 if ((node1 != null) && (node2 != null)) {
df0b8ff4 886 if (distanceFromEvent(node1, event) < distanceFromEvent(node2, event)) {
73005152 887 return node1;
df0b8ff4 888 }
abbdd66a 889 return node2;
df0b8ff4 890 } else if (node1 != null) {
73005152 891 return node1;
df0b8ff4 892 } else if (node2 != null) {
73005152 893 return node2;
a55887ca 894 }
df0b8ff4 895 return null;
73005152
BH
896 }
897
df0b8ff4
BH
898 /**
899 * Get called message based on given start message.
a55887ca 900 *
df0b8ff4
BH
901 * @param startMessage A start message to check.
902 * @return called message (graph node) or <code>null</code>
903 */
904 public GraphNode getCalledMessage(BaseMessage startMessage) {
73005152
BH
905 int event = 0;
906 GraphNode result = null;
907 Lifeline lifeline = null;
df0b8ff4 908 if (startMessage != null) {
abbdd66a
AM
909 event = startMessage.getEventOccurrence();
910 lifeline = startMessage.getEndLifeline();
df0b8ff4 911 if (lifeline == null) {
abbdd66a 912 lifeline = startMessage.getStartLifeline();
df0b8ff4 913 }
73005152 914 }
df0b8ff4 915 if (lifeline == null) {
73005152 916 return null;
df0b8ff4
BH
917 }
918 GraphNode message = getCloserLeavingMessage(lifeline, startMessage, getSyncMessages(), false);
919 GraphNode messageReturn = getCloserLeavingMessage(lifeline, startMessage, getSyncMessagesReturn(), false);
73005152 920 result = getCloserToEvent(message, messageReturn, event);
df0b8ff4 921 message = getCloserLeavingMessage(lifeline, startMessage, getAsyncMessages(), false);
73005152 922 result = getCloserToEvent(result, message, event);
df0b8ff4 923 messageReturn = getCloserLeavingMessage(lifeline, startMessage, getAsyncMessagesReturn(), false);
73005152
BH
924 result = getCloserToEvent(result, messageReturn, event);
925 return result;
926 }
927
df0b8ff4
BH
928 /**
929 * Get caller message based on given start message.
a55887ca 930 *
df0b8ff4
BH
931 * @param startMessage A start message to check.
932 * @return called message (graph node) or <code>null</code>
933 */
934 public GraphNode getCallerMessage(BaseMessage startMessage) {
73005152
BH
935 int event = getMaxEventOccurrence();
936 GraphNode result = null;
937 Lifeline lifeline = null;
df0b8ff4 938 if (startMessage != null) {
abbdd66a
AM
939 event = startMessage.getEventOccurrence();
940 lifeline = startMessage.getStartLifeline();
df0b8ff4 941 if (lifeline == null) {
abbdd66a 942 lifeline = startMessage.getEndLifeline();
df0b8ff4 943 }
73005152 944 }
df0b8ff4 945 if (lifeline == null) {
73005152 946 return null;
df0b8ff4
BH
947 }
948 GraphNode message = getCloserEnteringMessage(lifeline, startMessage, getSyncMessages(), true);
949 GraphNode messageReturn = getCloserEnteringMessage(lifeline, startMessage, getSyncMessagesReturn(), true);
73005152 950 result = getCloserToEvent(message, messageReturn, event);
df0b8ff4 951 message = getCloserEnteringMessage(lifeline, startMessage, getAsyncMessages(), true);
73005152 952 result = getCloserToEvent(result, message, event);
df0b8ff4 953 messageReturn = getCloserEnteringMessage(lifeline, startMessage, getAsyncMessagesReturn(), true);
73005152
BH
954 result = getCloserToEvent(result, messageReturn, event);
955 return result;
956 }
957
df0b8ff4
BH
958 /**
959 * Get next lifeline based on given message.
a55887ca 960 *
df0b8ff4
BH
961 * @param lifeline A lifeline reference
962 * @param startMessage A start message to check
963 * @return next lifeline or <code>null</code>
964 */
965 public GraphNode getNextLifelineMessage(Lifeline lifeline, BaseMessage startMessage) {
73005152 966 int event = 0;
df0b8ff4 967 if (startMessage != null) {
abbdd66a 968 event = startMessage.getEventOccurrence();
df0b8ff4
BH
969 }
970 if (lifeline == null) {
73005152 971 return null;
df0b8ff4
BH
972 }
973 GraphNode message = getCloserLeavingMessage(lifeline, startMessage, getSyncMessages(), false);
974 GraphNode messageReturn = getCloserLeavingMessage(lifeline, startMessage, getSyncMessagesReturn(), false);
73005152 975 GraphNode result = getCloserToEvent(message, messageReturn, event);
df0b8ff4 976 message = getCloserLeavingMessage(lifeline, startMessage, getAsyncMessages(), false);
73005152 977 result = getCloserToEvent(result, message, event);
df0b8ff4 978 messageReturn = getCloserLeavingMessage(lifeline, startMessage, getAsyncMessagesReturn(), false);
73005152
BH
979 result = getCloserToEvent(result, messageReturn, event);
980 return result;
981 }
982
df0b8ff4
BH
983 /**
984 * Get previous lifeline based on given message.
a55887ca 985 *
df0b8ff4
BH
986 * @param lifeline A lifeline reference
987 * @param startMessage A start message to check.
988 * @return previous lifeline or <code>null</code>
989 */
990 public GraphNode getPrevLifelineMessage(Lifeline lifeline, BaseMessage startMessage) {
991 int event = getMaxEventOccurrence();
a55887ca 992 if (startMessage != null) {
df0b8ff4
BH
993 if (startMessage instanceof AsyncMessage) {
994 event = ((AsyncMessage) startMessage).getStartOccurrence();
995 } else {
996 event = startMessage.getEventOccurrence();
997 }
a55887ca 998 }
df0b8ff4
BH
999 if (lifeline == null) {
1000 return null;
1001 }
1002 GraphNode message = getCloserLeavingMessage(lifeline, startMessage, getSyncMessages(), true);
1003 GraphNode messageReturn = getCloserLeavingMessage(lifeline, startMessage, getSyncMessagesReturn(), true);
1004 GraphNode result = getCloserToEvent(message, messageReturn, event);
1005 message = getCloserLeavingMessage(lifeline, startMessage, getAsyncMessages(), true);
1006 result = getCloserToEvent(result, message, event);
1007 messageReturn = getCloserLeavingMessage(lifeline, startMessage, getAsyncMessagesReturn(), true);
1008 result = getCloserToEvent(result, messageReturn, event);
1009 return result;
1010 }
a55887ca 1011
df0b8ff4
BH
1012 /**
1013 * Get the first execution occurrence.
a55887ca 1014 *
df0b8ff4
BH
1015 * @param lifeline A lifeline reference
1016 * @return the first execution occurrence of lifeline or <code>null</code>.
1017 */
73005152 1018 public BasicExecutionOccurrence getFirstExecution(Lifeline lifeline) {
df0b8ff4 1019 if (lifeline == null) {
73005152 1020 return null;
df0b8ff4 1021 }
73005152 1022 List<GraphNode> list = lifeline.getExecutions();
eb63f5ff
BH
1023
1024 if ((list == null) || (list.isEmpty())) {
73005152 1025 return null;
df0b8ff4 1026 }
eb63f5ff 1027
73005152
BH
1028 BasicExecutionOccurrence result = (BasicExecutionOccurrence) list.get(0);
1029 for (int i = 0; i < list.size(); i++) {
1030 BasicExecutionOccurrence e = (BasicExecutionOccurrence) list.get(i);
df0b8ff4 1031 if ((e.getStartOccurrence() < result.getEndOccurrence())) {
73005152 1032 result = e;
df0b8ff4 1033 }
73005152
BH
1034 }
1035 return result;
1036 }
a55887ca 1037
df0b8ff4
BH
1038 /**
1039 * Get the previous execution occurrence relative to a given execution occurrence.
a55887ca 1040 *
df0b8ff4
BH
1041 * @param exec A execution occurrence reference.
1042 * @return the previous execution occurrence of lifeline or <code>null</code>.
1043 */
73005152 1044 public BasicExecutionOccurrence getPrevExecOccurrence(BasicExecutionOccurrence exec) {
df0b8ff4 1045 if (exec == null) {
73005152 1046 return null;
df0b8ff4 1047 }
73005152 1048 Lifeline lifeline = exec.getLifeline();
df0b8ff4 1049 if (lifeline == null) {
73005152 1050 return null;
df0b8ff4 1051 }
73005152 1052 List<GraphNode> list = lifeline.getExecutions();
df0b8ff4 1053 if (list == null) {
73005152 1054 return null;
df0b8ff4 1055 }
73005152
BH
1056 BasicExecutionOccurrence result = null;
1057 for (int i = 0; i < list.size(); i++) {
1058 BasicExecutionOccurrence e = (BasicExecutionOccurrence) list.get(i);
cab6c8ff 1059 if ((e.getStartOccurrence() < exec.getStartOccurrence()) && (result == null)) {
73005152 1060 result = e;
df0b8ff4 1061 }
cab6c8ff 1062 if ((e.getStartOccurrence() < exec.getStartOccurrence()) && (result != null) && (e.getStartOccurrence() >= result.getEndOccurrence())) {
73005152 1063 result = e;
df0b8ff4 1064 }
73005152
BH
1065 }
1066 return result;
1067 }
1068
df0b8ff4
BH
1069 /**
1070 * Get the next execution occurrence relative to a given execution occurrence.
a55887ca 1071 *
df0b8ff4
BH
1072 * @param exec A execution occurrence reference.
1073 * @return the next execution occurrence of lifeline or <code>null</code>.
1074 */
73005152 1075 public BasicExecutionOccurrence getNextExecOccurrence(BasicExecutionOccurrence exec) {
df0b8ff4 1076 if (exec == null) {
73005152 1077 return null;
df0b8ff4 1078 }
73005152 1079 Lifeline lifeline = exec.getLifeline();
df0b8ff4 1080 if (lifeline == null) {
73005152 1081 return null;
df0b8ff4 1082 }
73005152 1083 List<GraphNode> list = lifeline.getExecutions();
df0b8ff4 1084 if (list == null) {
73005152 1085 return null;
df0b8ff4 1086 }
73005152
BH
1087 BasicExecutionOccurrence result = null;
1088 for (int i = 0; i < list.size(); i++) {
1089 BasicExecutionOccurrence e = (BasicExecutionOccurrence) list.get(i);
cab6c8ff 1090 if ((e.getStartOccurrence() > exec.getStartOccurrence()) && (result == null)) {
73005152 1091 result = e;
df0b8ff4 1092 }
cab6c8ff 1093 if ((e.getStartOccurrence() > exec.getStartOccurrence()) && (result != null) && (e.getStartOccurrence() <= result.getEndOccurrence())) {
73005152 1094 result = e;
df0b8ff4 1095 }
73005152
BH
1096 }
1097 return result;
1098 }
1099
df0b8ff4
BH
1100 /**
1101 * Get the last execution occurrence.
a55887ca 1102 *
df0b8ff4
BH
1103 * @param lifeline A lifeline reference.
1104 * @return the last execution occurrence of lifeline or <code>null</code>.
1105 */
73005152 1106 public BasicExecutionOccurrence getLastExecOccurrence(Lifeline lifeline) {
df0b8ff4 1107 if (lifeline == null) {
73005152 1108 return null;
df0b8ff4 1109 }
73005152 1110 List<GraphNode> list = lifeline.getExecutions();
df0b8ff4 1111 if (list == null) {
73005152 1112 return null;
df0b8ff4 1113 }
73005152
BH
1114 BasicExecutionOccurrence result = null;
1115 for (int i = 0; i < list.size(); i++) {
1116 BasicExecutionOccurrence e = (BasicExecutionOccurrence) list.get(i);
df0b8ff4 1117 if (result == null) {
73005152 1118 result = e;
df0b8ff4
BH
1119 }
1120 if (e.getStartOccurrence() > result.getEndOccurrence()) {
73005152 1121 result = e;
df0b8ff4 1122 }
73005152
BH
1123 }
1124 return result;
1125 }
cab6c8ff
BH
1126
1127 /**
1128 * @return highlighted life line if set else null.
cab6c8ff
BH
1129 */
1130 protected Lifeline getHighlightLifeline() {
1131 return fHighlightLifeline;
1132 }
1133
1134 /**
1135 * @return the start event value.
cab6c8ff
BH
1136 */
1137 protected int getStartEvent() {
1138 return fStartEvent;
1139 }
1140
1141 /**
1142 * Returns the number of events
1143 *
1144 * @return the number of events
cab6c8ff
BH
1145 */
1146 protected int getNumberOfEvents() {
1147 return fNbEvent;
1148 }
1149
1150 /**
1151 * Returns the highlight color.
ae09c4ad 1152 *
cab6c8ff 1153 * @return the highlight color
cab6c8ff
BH
1154 */
1155 protected IColor getHighlightColor() {
1156 return fHighlightColor;
1157 }
1158
1159 /**
1160 * Set the highlighted life line.
ae09c4ad 1161 *
cab6c8ff
BH
1162 * @param lifeline
1163 * The highlighted life line if set else null
cab6c8ff
BH
1164 */
1165 protected void setHighlightLifeline(Lifeline lifeline) {
1166 fHighlightLifeline = lifeline;
1167 }
1168
1169 /**
1170 * Sets the start event value
ae09c4ad 1171 *
cab6c8ff
BH
1172 * @param startEvent
1173 * the start event value.
cab6c8ff
BH
1174 */
1175 protected void setStartEvent(int startEvent) {
1176 fStartEvent = startEvent;
1177 }
1178
1179 /**
1180 * Sets the number of events
1181 *
1182 * @param nbEvents
1183 * The number of events
cab6c8ff
BH
1184 */
1185 protected void setNumberOfEvents(int nbEvents) {
1186 fNbEvent = nbEvents;
1187 }
1188
1189 /**
1190 * Sets the highlight color.
ae09c4ad 1191 *
cab6c8ff
BH
1192 * @param color
1193 * the highlight color
cab6c8ff
BH
1194 */
1195 protected void setHighlightColor(IColor color) {
1196 fHighlightColor = color;
1197 }
1198
1199 /**
1200 * sets the list of execution occurrences.
1201 *
1202 * @param occurences
1203 * the list of execution occurrences
cab6c8ff
BH
1204 */
1205 protected void setExecutionOccurrencesWithTime(List<SDTimeEvent> occurences) {
1206 fExecutionOccurrencesWithTime = occurences;
1207 }
1208}
This page took 0.148425 seconds and 5 git commands to generate.