Bump target sequence number to pick up Mars M7
[deliverable/tracecompass.git] / 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);
658 } else if ((toDraw.getIndex() < fHighlightLifeline.getIndex()) || ((toDraw.getIndex() < fHighlightLifeline.getIndex()))) {
73005152
BH
659
660 int acIndex = toDraw.getExecOccurrenceDrawIndex();
661 // acIndex = first visible execution occurrence
662 // for drawing speed reason with only search on the visible subset
df0b8ff4 663 if (toDraw.getExecutions() != null) {
73005152
BH
664 for (int index = acIndex; index < toDraw.getExecutions().size(); index++) {
665 BasicExecutionOccurrence exec = (BasicExecutionOccurrence) toDraw.getExecutions().get(index);
eb63f5ff
BH
666 int tempEvent = fStartEvent;
667 for (int j = 0; j < fNbEvent; j++) {
cab6c8ff 668 if (((tempEvent >= exec.getStartOccurrence()) && (tempEvent <= exec.getEndOccurrence()) && (tempEvent + 1 >= exec.getStartOccurrence()) && (tempEvent + 1 <= exec.getEndOccurrence()))) {
3145ec83 669 toDraw.highlightExecOccurrenceRegion(context, tempEvent, 1, SDViewPref.getInstance().getTimeCompressionSelectionColor());
73005152
BH
670 }
671 tempEvent = tempEvent + 1;
672 }
673 // if we are outside the visible area we stop right now
674 // This works because execution occurrences are ordered along the Y axis
df0b8ff4 675 if (exec.getY() > getY()) {
73005152 676 break;
df0b8ff4 677 }
73005152 678 }
df0b8ff4 679 }
73005152
BH
680 }
681 }
682 }
683 }
684
685 @Override
686 protected List<SDTimeEvent> buildTimeArray() {
3145ec83 687
cab6c8ff 688 if (!hasChildren()) {
507b1336 689 return new ArrayList<>();
3145ec83
BH
690 }
691
692 List<SDTimeEvent> timeArray = super.buildTimeArray();
693 fExecutionOccurrencesWithTime = null;
694 if (getLifelines() != null) {
cab6c8ff
BH
695 for (int i = 0; i < getNodeMap().get(Lifeline.LIFELINE_TAG).size(); i++) {
696 Lifeline lifeline = (Lifeline) getNodeMap().get(Lifeline.LIFELINE_TAG).get(i);
3145ec83
BH
697 if (lifeline.hasTimeInfo() && lifeline.getExecutions() != null) {
698 for (Iterator<GraphNode> j = lifeline.getExecutions().iterator(); j.hasNext();) {
699 GraphNode o = j.next();
700 if (o instanceof ExecutionOccurrence) {
701 ExecutionOccurrence eo = (ExecutionOccurrence) o;
702 if (eo.hasTimeInfo()) {
703 int event = eo.getStartOccurrence();
704 ITmfTimestamp time = eo.getStartTime();
705 SDTimeEvent f = new SDTimeEvent(time, event, eo);
706 timeArray.add(f);
707 if (fExecutionOccurrencesWithTime == null) {
507b1336 708 fExecutionOccurrencesWithTime = new ArrayList<>();
73005152 709 }
3145ec83
BH
710 fExecutionOccurrencesWithTime.add(f);
711 event = eo.getEndOccurrence();
712 time = eo.getEndTime();
713 f = new SDTimeEvent(time, event, eo);
714 timeArray.add(f);
715 fExecutionOccurrencesWithTime.add(f);
73005152
BH
716 }
717 }
718 }
719 }
df0b8ff4 720 }
3145ec83 721 }
73005152 722
3145ec83
BH
723 if (fExecutionOccurrencesWithTime != null) {
724 SDTimeEvent[] temp = fExecutionOccurrencesWithTime.toArray(new SDTimeEvent[fExecutionOccurrencesWithTime.size()]);
73005152 725 Arrays.sort(temp, new TimeEventComparator());
3145ec83 726 fExecutionOccurrencesWithTime = Arrays.asList(temp);
73005152 727 }
3145ec83
BH
728 SDTimeEvent[] temp = timeArray.toArray(new SDTimeEvent[timeArray.size()]);
729 Arrays.sort(temp, new TimeEventComparator());
730 timeArray = Arrays.asList(temp);
731 return timeArray;
73005152
BH
732 }
733
df0b8ff4
BH
734 /**
735 * Get the closer leaving message.
a55887ca 736 *
df0b8ff4
BH
737 * @param lifeline A lifeline reference
738 * @param message A message reference
739 * @param list A list of graph nodes
740 * @param smallerEvent A smaller event flag
741 * @return the closer leaving message.
742 */
73005152 743 protected GraphNode getCloserLeavingMessage(Lifeline lifeline, BaseMessage message, List<GraphNode> list, boolean smallerEvent) {
df0b8ff4 744 if (list == null) {
73005152 745 return null;
df0b8ff4
BH
746 }
747
3145ec83 748 if (!smallerEvent) {
73005152 749 int event = 0;
df0b8ff4 750 if (message != null) {
73005152 751 event = message.getEventOccurrence();
df0b8ff4 752 }
73005152 753 for (int i = 0; i < list.size(); i++) {
abbdd66a 754 GraphNode node = list.get(i);
73005152
BH
755 if (node instanceof SyncMessage) {
756 SyncMessage syncNode = (SyncMessage) node;
df0b8ff4 757 if ((syncNode.getEventOccurrence() > event) && (syncNode.getStartLifeline() == lifeline) && !syncNode.isSameAs(message)) {
73005152 758 return node;
df0b8ff4 759 }
73005152
BH
760 } else if (node instanceof AsyncMessage) {
761 AsyncMessage asyncNode = (AsyncMessage) node;
df0b8ff4 762 if ((asyncNode.getStartOccurrence() > event) && (asyncNode.getStartLifeline() == lifeline) && !asyncNode.isSameAs(message)) {
73005152 763 return node;
df0b8ff4 764 }
73005152
BH
765 }
766 }
767 } else {
768 int event = getMaxEventOccurrence();
df0b8ff4 769 if (message != null) {
73005152
BH
770 if (message instanceof AsyncMessage) {
771 event = ((AsyncMessage) message).getStartOccurrence();
df0b8ff4 772 } else {
73005152 773 event = message.getEventOccurrence();
df0b8ff4
BH
774 }
775 }
73005152 776 for (int i = list.size() - 1; i >= 0; i--) {
abbdd66a 777 GraphNode node = list.get(i);
73005152
BH
778 if (node instanceof SyncMessage) {
779 SyncMessage syncNode = (SyncMessage) node;
df0b8ff4 780 if ((syncNode.getEventOccurrence() < event) && (syncNode.getStartLifeline() == lifeline) && !syncNode.isSameAs(message)) {
73005152 781 return node;
df0b8ff4 782 }
73005152
BH
783 } else if (node instanceof AsyncMessage) {
784 AsyncMessage asyncNode = (AsyncMessage) node;
df0b8ff4 785 if ((asyncNode.getStartOccurrence() < event) && (asyncNode.getStartLifeline() == lifeline) && !asyncNode.isSameAs(message)) {
73005152 786 return node;
df0b8ff4 787 }
73005152
BH
788 }
789 }
790 }
791 return null;
792 }
793
a55887ca 794
df0b8ff4
BH
795 /**
796 * Get the closer entering message.
a55887ca 797 *
df0b8ff4
BH
798 * @param lifeline A lifeline reference
799 * @param message A message reference
800 * @param list A list of graph nodes
801 * @param smallerEvent A smaller event flag
802 * @return the closer entering message.
803 */
73005152 804 protected GraphNode getCloserEnteringMessage(Lifeline lifeline, BaseMessage message, List<GraphNode> list, boolean smallerEvent) {
df0b8ff4 805 if (list == null) {
73005152 806 return null;
df0b8ff4 807 }
eb63f5ff 808 if (!smallerEvent) {
73005152 809 int event = 0;
df0b8ff4 810 if (message != null) {
73005152 811 event = message.getEventOccurrence();
df0b8ff4 812 }
73005152 813 for (int i = 0; i < list.size(); i++) {
abbdd66a 814 GraphNode node = list.get(i);
73005152
BH
815 if (node instanceof SyncMessage) {
816 SyncMessage syncNode = (SyncMessage) node;
df0b8ff4 817 if ((syncNode.getEventOccurrence() > event) && (syncNode.getEndLifeline() == lifeline) && !syncNode.isSameAs(message)) {
73005152 818 return node;
df0b8ff4 819 }
73005152
BH
820 } else if (node instanceof AsyncMessage) {
821 AsyncMessage asyncNode = (AsyncMessage) node;
df0b8ff4 822 if ((asyncNode.getStartOccurrence() > event) && (asyncNode.getEndLifeline() == lifeline) && !asyncNode.isSameAs(message)) {
73005152 823 return node;
df0b8ff4 824 }
73005152
BH
825 }
826 }
827 } else {
828 int event = getMaxEventOccurrence();
a55887ca 829 if (message != null) {
73005152
BH
830 if (message instanceof AsyncMessage) {
831 event = ((AsyncMessage) message).getStartOccurrence();
df0b8ff4 832 } else {
73005152 833 event = message.getEventOccurrence();
df0b8ff4 834 }
a55887ca 835 }
73005152 836 for (int i = list.size() - 1; i >= 0; i--) {
abbdd66a 837 GraphNode node = list.get(i);
73005152
BH
838 if (node instanceof SyncMessage) {
839 SyncMessage syncNode = (SyncMessage) node;
df0b8ff4 840 if ((syncNode.getEventOccurrence() < event) && (syncNode.getEndLifeline() == lifeline) && !syncNode.isSameAs(message)) {
73005152 841 return node;
df0b8ff4 842 }
73005152
BH
843 } else if (node instanceof AsyncMessage) {
844 AsyncMessage asyncNode = (AsyncMessage) node;
df0b8ff4 845 if ((asyncNode.getStartOccurrence() < event) && (asyncNode.getEndLifeline() == lifeline) && !asyncNode.isSameAs(message)) {
73005152 846 return node;
df0b8ff4 847 }
73005152
BH
848 }
849 }
850 }
851 return null;
852 }
853
df0b8ff4
BH
854 /**
855 * Get distance of given event from given graph node.
a55887ca 856 *
df0b8ff4
BH
857 * @param node A graph node reference.
858 * @param event A event number to check.
859 * @return distance of event from graph node.
860 */
73005152
BH
861 protected int distanceFromEvent(GraphNode node, int event) {
862 int distance = 0;
df0b8ff4 863 if (node instanceof SyncMessage) {
73005152 864 distance = ((SyncMessage) node).getEventOccurrence() - event;
df0b8ff4 865 } else if (node instanceof AsyncMessage) {
73005152
BH
866 int start = ((AsyncMessage) node).getStartOccurrence();
867 int end = ((AsyncMessage) node).getEndOccurrence();
df0b8ff4 868 if ((start - event) < (end - event)) {
73005152 869 distance = start - event;
df0b8ff4 870 } else {
73005152 871 distance = end - event;
df0b8ff4 872 }
73005152
BH
873 }
874 return Math.abs(distance);
875 }
876
df0b8ff4
BH
877 /**
878 * Get node from 2 given nodes that is close to event.
a55887ca 879 *
df0b8ff4
BH
880 * @param node1 A first graph node
881 * @param node2 A second graph node
882 * @param event A event to check.
883 * @return graph node that is closer or <code>null</code>
884 */
73005152
BH
885 protected GraphNode getCloserToEvent(GraphNode node1, GraphNode node2, int event) {
886 if ((node1 != null) && (node2 != null)) {
df0b8ff4 887 if (distanceFromEvent(node1, event) < distanceFromEvent(node2, event)) {
73005152 888 return node1;
df0b8ff4 889 }
abbdd66a 890 return node2;
df0b8ff4 891 } else if (node1 != null) {
73005152 892 return node1;
df0b8ff4 893 } else if (node2 != null) {
73005152 894 return node2;
a55887ca 895 }
df0b8ff4 896 return null;
73005152
BH
897 }
898
df0b8ff4
BH
899 /**
900 * Get called message based on given start message.
a55887ca 901 *
df0b8ff4
BH
902 * @param startMessage A start message to check.
903 * @return called message (graph node) or <code>null</code>
904 */
905 public GraphNode getCalledMessage(BaseMessage startMessage) {
73005152
BH
906 int event = 0;
907 GraphNode result = null;
908 Lifeline lifeline = null;
df0b8ff4 909 if (startMessage != null) {
abbdd66a
AM
910 event = startMessage.getEventOccurrence();
911 lifeline = startMessage.getEndLifeline();
df0b8ff4 912 if (lifeline == null) {
abbdd66a 913 lifeline = startMessage.getStartLifeline();
df0b8ff4 914 }
73005152 915 }
df0b8ff4 916 if (lifeline == null) {
73005152 917 return null;
df0b8ff4
BH
918 }
919 GraphNode message = getCloserLeavingMessage(lifeline, startMessage, getSyncMessages(), false);
920 GraphNode messageReturn = getCloserLeavingMessage(lifeline, startMessage, getSyncMessagesReturn(), false);
73005152 921 result = getCloserToEvent(message, messageReturn, event);
df0b8ff4 922 message = getCloserLeavingMessage(lifeline, startMessage, getAsyncMessages(), false);
73005152 923 result = getCloserToEvent(result, message, event);
df0b8ff4 924 messageReturn = getCloserLeavingMessage(lifeline, startMessage, getAsyncMessagesReturn(), false);
73005152
BH
925 result = getCloserToEvent(result, messageReturn, event);
926 return result;
927 }
928
df0b8ff4
BH
929 /**
930 * Get caller message based on given start message.
a55887ca 931 *
df0b8ff4
BH
932 * @param startMessage A start message to check.
933 * @return called message (graph node) or <code>null</code>
934 */
935 public GraphNode getCallerMessage(BaseMessage startMessage) {
73005152
BH
936 int event = getMaxEventOccurrence();
937 GraphNode result = null;
938 Lifeline lifeline = null;
df0b8ff4 939 if (startMessage != null) {
abbdd66a
AM
940 event = startMessage.getEventOccurrence();
941 lifeline = startMessage.getStartLifeline();
df0b8ff4 942 if (lifeline == null) {
abbdd66a 943 lifeline = startMessage.getEndLifeline();
df0b8ff4 944 }
73005152 945 }
df0b8ff4 946 if (lifeline == null) {
73005152 947 return null;
df0b8ff4
BH
948 }
949 GraphNode message = getCloserEnteringMessage(lifeline, startMessage, getSyncMessages(), true);
950 GraphNode messageReturn = getCloserEnteringMessage(lifeline, startMessage, getSyncMessagesReturn(), true);
73005152 951 result = getCloserToEvent(message, messageReturn, event);
df0b8ff4 952 message = getCloserEnteringMessage(lifeline, startMessage, getAsyncMessages(), true);
73005152 953 result = getCloserToEvent(result, message, event);
df0b8ff4 954 messageReturn = getCloserEnteringMessage(lifeline, startMessage, getAsyncMessagesReturn(), true);
73005152
BH
955 result = getCloserToEvent(result, messageReturn, event);
956 return result;
957 }
958
df0b8ff4
BH
959 /**
960 * Get next lifeline based on given message.
a55887ca 961 *
df0b8ff4
BH
962 * @param lifeline A lifeline reference
963 * @param startMessage A start message to check
964 * @return next lifeline or <code>null</code>
965 */
966 public GraphNode getNextLifelineMessage(Lifeline lifeline, BaseMessage startMessage) {
73005152 967 int event = 0;
df0b8ff4 968 if (startMessage != null) {
abbdd66a 969 event = startMessage.getEventOccurrence();
df0b8ff4
BH
970 }
971 if (lifeline == null) {
73005152 972 return null;
df0b8ff4
BH
973 }
974 GraphNode message = getCloserLeavingMessage(lifeline, startMessage, getSyncMessages(), false);
975 GraphNode messageReturn = getCloserLeavingMessage(lifeline, startMessage, getSyncMessagesReturn(), false);
73005152 976 GraphNode result = getCloserToEvent(message, messageReturn, event);
df0b8ff4 977 message = getCloserLeavingMessage(lifeline, startMessage, getAsyncMessages(), false);
73005152 978 result = getCloserToEvent(result, message, event);
df0b8ff4 979 messageReturn = getCloserLeavingMessage(lifeline, startMessage, getAsyncMessagesReturn(), false);
73005152
BH
980 result = getCloserToEvent(result, messageReturn, event);
981 return result;
982 }
983
df0b8ff4
BH
984 /**
985 * Get previous lifeline based on given message.
a55887ca 986 *
df0b8ff4
BH
987 * @param lifeline A lifeline reference
988 * @param startMessage A start message to check.
989 * @return previous lifeline or <code>null</code>
990 */
991 public GraphNode getPrevLifelineMessage(Lifeline lifeline, BaseMessage startMessage) {
992 int event = getMaxEventOccurrence();
a55887ca 993 if (startMessage != null) {
df0b8ff4
BH
994 if (startMessage instanceof AsyncMessage) {
995 event = ((AsyncMessage) startMessage).getStartOccurrence();
996 } else {
997 event = startMessage.getEventOccurrence();
998 }
a55887ca 999 }
df0b8ff4
BH
1000 if (lifeline == null) {
1001 return null;
1002 }
1003 GraphNode message = getCloserLeavingMessage(lifeline, startMessage, getSyncMessages(), true);
1004 GraphNode messageReturn = getCloserLeavingMessage(lifeline, startMessage, getSyncMessagesReturn(), true);
1005 GraphNode result = getCloserToEvent(message, messageReturn, event);
1006 message = getCloserLeavingMessage(lifeline, startMessage, getAsyncMessages(), true);
1007 result = getCloserToEvent(result, message, event);
1008 messageReturn = getCloserLeavingMessage(lifeline, startMessage, getAsyncMessagesReturn(), true);
1009 result = getCloserToEvent(result, messageReturn, event);
1010 return result;
1011 }
a55887ca 1012
df0b8ff4
BH
1013 /**
1014 * Get the first execution occurrence.
a55887ca 1015 *
df0b8ff4
BH
1016 * @param lifeline A lifeline reference
1017 * @return the first execution occurrence of lifeline or <code>null</code>.
1018 */
73005152 1019 public BasicExecutionOccurrence getFirstExecution(Lifeline lifeline) {
df0b8ff4 1020 if (lifeline == null) {
73005152 1021 return null;
df0b8ff4 1022 }
73005152 1023 List<GraphNode> list = lifeline.getExecutions();
eb63f5ff
BH
1024
1025 if ((list == null) || (list.isEmpty())) {
73005152 1026 return null;
df0b8ff4 1027 }
eb63f5ff 1028
73005152
BH
1029 BasicExecutionOccurrence result = (BasicExecutionOccurrence) list.get(0);
1030 for (int i = 0; i < list.size(); i++) {
1031 BasicExecutionOccurrence e = (BasicExecutionOccurrence) list.get(i);
df0b8ff4 1032 if ((e.getStartOccurrence() < result.getEndOccurrence())) {
73005152 1033 result = e;
df0b8ff4 1034 }
73005152
BH
1035 }
1036 return result;
1037 }
a55887ca 1038
df0b8ff4
BH
1039 /**
1040 * Get the previous execution occurrence relative to a given execution occurrence.
a55887ca 1041 *
df0b8ff4
BH
1042 * @param exec A execution occurrence reference.
1043 * @return the previous execution occurrence of lifeline or <code>null</code>.
1044 */
73005152 1045 public BasicExecutionOccurrence getPrevExecOccurrence(BasicExecutionOccurrence exec) {
df0b8ff4 1046 if (exec == null) {
73005152 1047 return null;
df0b8ff4 1048 }
73005152 1049 Lifeline lifeline = exec.getLifeline();
df0b8ff4 1050 if (lifeline == null) {
73005152 1051 return null;
df0b8ff4 1052 }
73005152 1053 List<GraphNode> list = lifeline.getExecutions();
df0b8ff4 1054 if (list == null) {
73005152 1055 return null;
df0b8ff4 1056 }
73005152
BH
1057 BasicExecutionOccurrence result = null;
1058 for (int i = 0; i < list.size(); i++) {
1059 BasicExecutionOccurrence e = (BasicExecutionOccurrence) list.get(i);
cab6c8ff 1060 if ((e.getStartOccurrence() < exec.getStartOccurrence()) && (result == null)) {
73005152 1061 result = e;
df0b8ff4 1062 }
cab6c8ff 1063 if ((e.getStartOccurrence() < exec.getStartOccurrence()) && (result != null) && (e.getStartOccurrence() >= result.getEndOccurrence())) {
73005152 1064 result = e;
df0b8ff4 1065 }
73005152
BH
1066 }
1067 return result;
1068 }
1069
df0b8ff4
BH
1070 /**
1071 * Get the next execution occurrence relative to a given execution occurrence.
a55887ca 1072 *
df0b8ff4
BH
1073 * @param exec A execution occurrence reference.
1074 * @return the next execution occurrence of lifeline or <code>null</code>.
1075 */
73005152 1076 public BasicExecutionOccurrence getNextExecOccurrence(BasicExecutionOccurrence exec) {
df0b8ff4 1077 if (exec == null) {
73005152 1078 return null;
df0b8ff4 1079 }
73005152 1080 Lifeline lifeline = exec.getLifeline();
df0b8ff4 1081 if (lifeline == null) {
73005152 1082 return null;
df0b8ff4 1083 }
73005152 1084 List<GraphNode> list = lifeline.getExecutions();
df0b8ff4 1085 if (list == null) {
73005152 1086 return null;
df0b8ff4 1087 }
73005152
BH
1088 BasicExecutionOccurrence result = null;
1089 for (int i = 0; i < list.size(); i++) {
1090 BasicExecutionOccurrence e = (BasicExecutionOccurrence) list.get(i);
cab6c8ff 1091 if ((e.getStartOccurrence() > exec.getStartOccurrence()) && (result == null)) {
73005152 1092 result = e;
df0b8ff4 1093 }
cab6c8ff 1094 if ((e.getStartOccurrence() > exec.getStartOccurrence()) && (result != null) && (e.getStartOccurrence() <= result.getEndOccurrence())) {
73005152 1095 result = e;
df0b8ff4 1096 }
73005152
BH
1097 }
1098 return result;
1099 }
1100
df0b8ff4
BH
1101 /**
1102 * Get the last execution occurrence.
a55887ca 1103 *
df0b8ff4
BH
1104 * @param lifeline A lifeline reference.
1105 * @return the last execution occurrence of lifeline or <code>null</code>.
1106 */
73005152 1107 public BasicExecutionOccurrence getLastExecOccurrence(Lifeline lifeline) {
df0b8ff4 1108 if (lifeline == null) {
73005152 1109 return null;
df0b8ff4 1110 }
73005152 1111 List<GraphNode> list = lifeline.getExecutions();
df0b8ff4 1112 if (list == null) {
73005152 1113 return null;
df0b8ff4 1114 }
73005152
BH
1115 BasicExecutionOccurrence result = null;
1116 for (int i = 0; i < list.size(); i++) {
1117 BasicExecutionOccurrence e = (BasicExecutionOccurrence) list.get(i);
df0b8ff4 1118 if (result == null) {
73005152 1119 result = e;
df0b8ff4
BH
1120 }
1121 if (e.getStartOccurrence() > result.getEndOccurrence()) {
73005152 1122 result = e;
df0b8ff4 1123 }
73005152
BH
1124 }
1125 return result;
1126 }
cab6c8ff
BH
1127
1128 /**
1129 * @return highlighted life line if set else null.
cab6c8ff
BH
1130 */
1131 protected Lifeline getHighlightLifeline() {
1132 return fHighlightLifeline;
1133 }
1134
1135 /**
1136 * @return the start event value.
cab6c8ff
BH
1137 */
1138 protected int getStartEvent() {
1139 return fStartEvent;
1140 }
1141
1142 /**
1143 * Returns the number of events
1144 *
1145 * @return the number of events
cab6c8ff
BH
1146 */
1147 protected int getNumberOfEvents() {
1148 return fNbEvent;
1149 }
1150
1151 /**
1152 * Returns the highlight color.
ae09c4ad 1153 *
cab6c8ff 1154 * @return the highlight color
cab6c8ff
BH
1155 */
1156 protected IColor getHighlightColor() {
1157 return fHighlightColor;
1158 }
1159
1160 /**
1161 * Set the highlighted life line.
ae09c4ad 1162 *
cab6c8ff
BH
1163 * @param lifeline
1164 * The highlighted life line if set else null
cab6c8ff
BH
1165 */
1166 protected void setHighlightLifeline(Lifeline lifeline) {
1167 fHighlightLifeline = lifeline;
1168 }
1169
1170 /**
1171 * Sets the start event value
ae09c4ad 1172 *
cab6c8ff
BH
1173 * @param startEvent
1174 * the start event value.
cab6c8ff
BH
1175 */
1176 protected void setStartEvent(int startEvent) {
1177 fStartEvent = startEvent;
1178 }
1179
1180 /**
1181 * Sets the number of events
1182 *
1183 * @param nbEvents
1184 * The number of events
cab6c8ff
BH
1185 */
1186 protected void setNumberOfEvents(int nbEvents) {
1187 fNbEvent = nbEvents;
1188 }
1189
1190 /**
1191 * Sets the highlight color.
ae09c4ad 1192 *
cab6c8ff
BH
1193 * @param color
1194 * the highlight color
cab6c8ff
BH
1195 */
1196 protected void setHighlightColor(IColor color) {
1197 fHighlightColor = color;
1198 }
1199
1200 /**
1201 * sets the list of execution occurrences.
1202 *
1203 * @param occurences
1204 * the list of execution occurrences
cab6c8ff
BH
1205 */
1206 protected void setExecutionOccurrencesWithTime(List<SDTimeEvent> occurences) {
1207 fExecutionOccurrencesWithTime = occurences;
1208 }
1209}
This page took 0.149088 seconds and 5 git commands to generate.