tmf: Bug 500542: Missing zoomed events in time graph entry
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / widgets / timegraph / model / TimeGraphEntry.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 2016 Ericsson, École Polytechnique de Montréal
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Patrick Tasse - Initial API and implementation
11 * Geneviève Bastien - Move code to provide base classes for time graph view
12 *******************************************************************************/
13
14 package org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model;
15
16 import java.util.ArrayList;
17 import java.util.Arrays;
18 import java.util.Comparator;
19 import java.util.Iterator;
20 import java.util.List;
21 import java.util.concurrent.CopyOnWriteArrayList;
22 import java.util.regex.Pattern;
23
24 import org.eclipse.jdt.annotation.NonNull;
25 import org.eclipse.swt.SWT;
26
27 /**
28 * An entry for use in the time graph views
29 */
30 public class TimeGraphEntry implements ITimeGraphEntry {
31
32 /** Entry's parent */
33 private TimeGraphEntry fParent = null;
34
35 /** List of child entries */
36 private final List<@NonNull TimeGraphEntry> fChildren = new CopyOnWriteArrayList<>();
37
38 /** Name of this entry (text to show) */
39 private String fName;
40 private long fStartTime = SWT.DEFAULT;
41 private long fEndTime = SWT.DEFAULT;
42 private @NonNull List<ITimeEvent> fEventList = new ArrayList<>();
43 private @NonNull List<ITimeEvent> fZoomedEventList = new ArrayList<>();
44 private Comparator<ITimeGraphEntry> fComparator;
45
46 /**
47 * Constructor
48 *
49 * @param name
50 * The name of this entry
51 * @param startTime
52 * The start time of this entry
53 * @param endTime
54 * The end time of this entry
55 */
56 public TimeGraphEntry(String name, long startTime, long endTime) {
57 fName = name;
58 fStartTime = startTime;
59 fEndTime = endTime;
60 }
61
62 // ---------------------------------------------
63 // Getters and setters
64 // ---------------------------------------------
65
66 /**
67 * @since 2.0
68 */
69 @Override
70 public TimeGraphEntry getParent() {
71 return fParent;
72 }
73
74 /**
75 * Sets the entry's parent
76 *
77 * @param entry The new parent entry
78 * @since 2.0
79 */
80 public void setParent(TimeGraphEntry entry) {
81 fParent = entry;
82 }
83
84 @Override
85 public synchronized boolean hasChildren() {
86 return fChildren.size() > 0;
87 }
88
89 @Override
90 public synchronized List<@NonNull TimeGraphEntry> getChildren() {
91 return fChildren;
92 }
93
94 /**
95 * Clear the children of the entry
96 *
97 * @since 2.0
98 */
99 public synchronized void clearChildren() {
100 fChildren.clear();
101 }
102
103 @Override
104 public String getName() {
105 return fName;
106 }
107
108 /**
109 * Update the entry name
110 *
111 * @param name
112 * the updated entry name
113 */
114 public void setName(String name) {
115 fName = name;
116 }
117
118 @Override
119 public long getStartTime() {
120 return fStartTime;
121 }
122
123 @Override
124 public long getEndTime() {
125 return fEndTime;
126 }
127
128 /**
129 * Updates the end time
130 *
131 * @param endTime
132 * the end time
133 */
134 public void updateEndTime(long endTime) {
135 fEndTime = Math.max(endTime, fEndTime);
136 }
137
138 @Override
139 public boolean hasTimeEvents() {
140 return true;
141 }
142
143 @Override
144 public Iterator<@NonNull ITimeEvent> getTimeEventsIterator() {
145 if (hasTimeEvents()) {
146 return new EventIterator(fEventList, fZoomedEventList);
147 }
148 return null;
149 }
150
151 @Override
152 public Iterator<@NonNull ITimeEvent> getTimeEventsIterator(long startTime, long stopTime, long visibleDuration) {
153 if (!hasTimeEvents()) {
154 return null;
155 }
156 return new EventIterator(fEventList, fZoomedEventList, startTime, stopTime);
157 }
158
159 /**
160 * Add an event to this entry's event list. If necessary, update the start
161 * and end time of the entry. If the event list's last event starts at the
162 * same time as the event to add, it is replaced by the new event.
163 *
164 * @param event
165 * The time event to add
166 */
167 public void addEvent(ITimeEvent event) {
168 long start = event.getTime();
169 long end = start + event.getDuration();
170 int lastIndex = fEventList.size() - 1;
171 if (lastIndex >= 0 && fEventList.get(lastIndex).getTime() == event.getTime()) {
172 fEventList.set(lastIndex, event);
173 } else {
174 fEventList.add(event);
175 }
176 if (event instanceof NullTimeEvent) {
177 /* A NullTimeEvent should not affect the entry bounds */
178 return;
179 }
180 if (fStartTime == SWT.DEFAULT || start < fStartTime) {
181 fStartTime = start;
182 }
183 if (fEndTime == SWT.DEFAULT || end > fEndTime) {
184 fEndTime = end;
185 }
186 }
187
188 /**
189 * Set the general event list of this entry. The list should be modifiable
190 * but will only increase in size over time.
191 *
192 * @param eventList
193 * The modifiable list of time events, or null to clear the list
194 */
195 public void setEventList(List<ITimeEvent> eventList) {
196 if (eventList != null) {
197 fEventList = eventList;
198 } else {
199 fEventList = new ArrayList<>();
200 }
201 }
202
203 /**
204 * Set the zoomed event list of this entry. The list should be modifiable
205 * but will only increase in size over time.
206 *
207 * @param eventList
208 * The modifiable list of time events, or null to clear the list
209 */
210 public void setZoomedEventList(List<ITimeEvent> eventList) {
211 if (eventList != null) {
212 fZoomedEventList = eventList;
213 } else {
214 fZoomedEventList = new ArrayList<>();
215 }
216 }
217
218 /**
219 * Add an event to this entry's zoomed event list. If necessary, update the
220 * start and end time of the entry. If the zoomed event list's last event
221 * starts at the same time as the event to add, it is replaced by the new
222 * event. If the new event starts before the zoomed event list's last event,
223 * the new event is ignored and is assumed to be already part of the list.
224 * If the new event starts before the zoomed event list's first event, the
225 * list is assumed to be incomplete and is cleared, and the event is added.
226 *
227 * @param event
228 * The time event to add
229 * @since 1.1
230 */
231 public void addZoomedEvent(ITimeEvent event) {
232 long start = event.getTime();
233 long end = start + event.getDuration();
234 int lastIndex = fZoomedEventList.size() - 1;
235 long lastStart = lastIndex >= 0 ? fZoomedEventList.get(lastIndex).getTime() : Long.MIN_VALUE;
236 if (start > lastStart) {
237 fZoomedEventList.add(event);
238 } else if (start == lastStart) {
239 fZoomedEventList.set(lastIndex, event);
240 } else if (start < fZoomedEventList.get(0).getTime()) {
241 fZoomedEventList.clear();
242 fZoomedEventList.add(event);
243 }
244 if (event instanceof NullTimeEvent) {
245 /* A NullTimeEvent should not affect the entry bounds */
246 return;
247 }
248 if (fStartTime == SWT.DEFAULT || start < fStartTime) {
249 fStartTime = start;
250 }
251 if (fEndTime == SWT.DEFAULT || end > fEndTime) {
252 fEndTime = end;
253 }
254 }
255
256 /**
257 * Add a child entry to this one. If a comparator was previously set with
258 * {@link #sortChildren(Comparator)}, the entry will be inserted in its
259 * sort-order position. Otherwise it will be added to the end of the list.
260 *
261 * @param child
262 * The child entry
263 */
264 public synchronized void addChild(@NonNull TimeGraphEntry child) {
265 child.setParent(this);
266 if (fComparator == null) {
267 fChildren.add(child);
268 } else {
269 int i;
270 for (i = 0; i < fChildren.size(); i++) {
271 ITimeGraphEntry entry = fChildren.get(i);
272 if (fComparator.compare(child, entry) < 0) {
273 break;
274 }
275 }
276 fChildren.add(i, child);
277 }
278 }
279
280 /**
281 * Add a child entry to this one at the specified position
282 *
283 * @param index
284 * Index at which the specified entry is to be inserted
285 * @param child
286 * The child entry
287 * @since 2.0
288 */
289 public synchronized void addChild(int index, @NonNull TimeGraphEntry child) {
290 child.setParent(this);
291 fChildren.add(index, child);
292 }
293
294 /**
295 * Remove a child entry from this one.
296 *
297 * @param child
298 * The child entry
299 * @since 2.0
300 */
301 public synchronized void removeChild(@NonNull TimeGraphEntry child) {
302 child.setParent(null);
303 fChildren.remove(child);
304 }
305
306 /**
307 * Sort the children of this entry using the provided comparator. Subsequent
308 * calls to {@link #addChild(TimeGraphEntry)} will use this comparator to
309 * maintain the sort order.
310 *
311 * @param comparator
312 * The entry comparator
313 */
314 public synchronized void sortChildren(Comparator<ITimeGraphEntry> comparator) {
315 fComparator = comparator;
316 if (comparator == null) {
317 return;
318 }
319 @NonNull TimeGraphEntry[] array = fChildren.toArray(new @NonNull TimeGraphEntry[0]);
320 Arrays.sort(array, comparator);
321 fChildren.clear();
322 fChildren.addAll(Arrays.asList(array));
323 }
324
325 @Override
326 public String toString() {
327 return getClass().getSimpleName() + '(' + fName + ')';
328 }
329
330 /**
331 * @since 2.0
332 */
333 @Override
334 public boolean matches(@NonNull Pattern pattern) {
335 // Default implementation
336 return pattern.matcher(fName).find();
337 }
338
339 }
This page took 0.037168 seconds and 5 git commands to generate.