Bug 378401: Implementation of time graph widget.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / widgets / timegraph / widgets / Utils.java
1 /*****************************************************************************
2 * Copyright (c) 2007, 2008 Intel Corporation, 2009, 2012 Ericsson.
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
7 *
8 * Contributors:
9 * Intel Corporation - Initial API and implementation
10 * Ruslan A. Scherbakov, Intel - Initial API and implementation
11 * Alvaro Sanchez-Leon - Udpated for TMF
12 * Patrick Tasse - Refactoring
13 *
14 *****************************************************************************/
15
16 package org.eclipse.linuxtools.tmf.ui.widgets.timegraph.widgets;
17
18 import java.text.SimpleDateFormat;
19 import java.util.Date;
20 import java.util.Iterator;
21
22 import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.ITimeEvent;
23 import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.ITimeGraphEntry;
24 import org.eclipse.swt.graphics.Color;
25 import org.eclipse.swt.graphics.Device;
26 import org.eclipse.swt.graphics.GC;
27 import org.eclipse.swt.graphics.Point;
28 import org.eclipse.swt.graphics.Rectangle;
29 import org.eclipse.swt.widgets.Display;
30
31 public class Utils {
32
33 public enum TimeFormat {
34 RELATIVE, ABSOLUTE
35 };
36
37 static public final int IMG_THREAD_RUNNING = 0;
38 static public final int IMG_THREAD_SUSPENDED = 1;
39 static public final int IMG_THREAD_STOPPED = 2;
40 static public final int IMG_METHOD_RUNNING = 3;
41 static public final int IMG_METHOD = 4;
42 static public final int IMG_NUM = 5;
43
44 static public final Object[] _empty = new Object[0];
45
46 public static enum Resolution {
47 SECONDS, MILLISEC, MICROSEC, NANOSEC
48 };
49
50 static private final SimpleDateFormat stimeformat = new SimpleDateFormat("HH:mm:ss"); //$NON-NLS-1$
51 static private final SimpleDateFormat sdateformat = new SimpleDateFormat("yyyy-MM-dd"); //$NON-NLS-1$
52
53 static Rectangle clone(Rectangle source) {
54 return new Rectangle(source.x, source.y, source.width, source.height);
55 }
56
57 static public void init(Rectangle rect) {
58 rect.x = 0;
59 rect.y = 0;
60 rect.width = 0;
61 rect.height = 0;
62 }
63
64 static public void init(Rectangle rect, int x, int y, int width, int height) {
65 rect.x = x;
66 rect.y = y;
67 rect.width = width;
68 rect.height = height;
69 }
70
71 static public void init(Rectangle rect, Rectangle source) {
72 rect.x = source.x;
73 rect.y = source.y;
74 rect.width = source.width;
75 rect.height = source.height;
76 }
77
78 static public void deflate(Rectangle rect, int x, int y) {
79 rect.x += x;
80 rect.y += y;
81 rect.width -= x + x;
82 rect.height -= y + y;
83 }
84
85 static public void inflate(Rectangle rect, int x, int y) {
86 rect.x -= x;
87 rect.y -= y;
88 rect.width += x + x;
89 rect.height += y + y;
90 }
91
92 static void dispose(Color col) {
93 if (null != col)
94 col.dispose();
95 }
96
97 static public Color mixColors(Device display, Color c1, Color c2, int w1,
98 int w2) {
99 return new Color(display, (w1 * c1.getRed() + w2 * c2.getRed())
100 / (w1 + w2), (w1 * c1.getGreen() + w2 * c2.getGreen())
101 / (w1 + w2), (w1 * c1.getBlue() + w2 * c2.getBlue())
102 / (w1 + w2));
103 }
104
105 static public Color getSysColor(int id) {
106 Color col = Display.getCurrent().getSystemColor(id);
107 return new Color(col.getDevice(), col.getRGB());
108 }
109
110 static public Color mixColors(Color col1, Color col2, int w1, int w2) {
111 return mixColors(Display.getCurrent(), col1, col2, w1, w2);
112 }
113
114 static public int drawText(GC gc, String text, Rectangle rect, boolean transp) {
115 Point size = gc.stringExtent(text);
116 gc.drawText(text, rect.x, rect.y, transp);
117 return size.x;
118 }
119
120 static public int drawText(GC gc, String text, int x, int y, boolean transp) {
121 Point size = gc.stringExtent(text);
122 gc.drawText(text, x, y, transp);
123 return size.x;
124 }
125
126 /**
127 * Formats time in format: MM:SS:NNN
128 *
129 * @param time time
130 * @param format 0: MMMM:ss:nnnnnnnnn, 1: HH:MM:ss MMM.mmmm.nnn
131 * @param resolution the resolution
132 * @return the formatted time
133 */
134 static public String formatTime(long time, TimeFormat format, Resolution resolution) {
135 // if format is absolute (Calendar)
136 if (format == TimeFormat.ABSOLUTE) {
137 return formatTimeAbs(time, resolution);
138 }
139
140 StringBuffer str = new StringBuffer();
141 boolean neg = time < 0;
142 if (neg) {
143 time = -time;
144 str.append('-');
145 }
146
147 long sec = (long) (time * 1E-9);
148 // TODO: Expand to make it possible to select the minute, second, nanosecond format
149 //printing minutes is suppressed just sec and ns
150 // if (sec / 60 < 10)
151 // str.append('0');
152 // str.append(sec / 60);
153 // str.append(':');
154 // sec %= 60;
155 // if (sec < 10)
156 // str.append('0');
157 str.append(sec);
158 String ns = formatNs(time, resolution);
159 if (!ns.equals("")) { //$NON-NLS-1$
160 str.append('.');
161 str.append(ns);
162 }
163
164 return str.toString();
165 }
166
167 /**
168 * From input time in nanoseconds, convert to Date format YYYY-MM-dd
169 *
170 * @param absTime
171 * @return the formatted date
172 */
173 public static String formatDate(long absTime) {
174 String sdate = sdateformat.format(new Date((long) (absTime * 1E-6)));
175 return sdate;
176 }
177
178 /**
179 * Formats time in ns to Calendar format: HH:MM:SS MMM.mmm.nnn
180 *
181 * @param time
182 * @return the formatted time
183 */
184 static public String formatTimeAbs(long time, Resolution res) {
185 StringBuffer str = new StringBuffer();
186
187 // format time from nanoseconds to calendar time HH:MM:SS
188 String stime = stimeformat.format(new Date((long) (time * 1E-6)));
189 str.append(stime);
190 str.append('.');
191 // append the Milliseconds, MicroSeconds and NanoSeconds as specified in
192 // the Resolution
193 str.append(formatNs(time, res));
194 return str.toString();
195 }
196
197 /**
198 * Obtains the remainder fraction on unit Seconds of the entered value in
199 * nanoseconds. e.g. input: 1241207054171080214 ns The number of fraction
200 * seconds can be obtained by removing the last 9 digits: 1241207054 the
201 * fractional portion of seconds, expressed in ns is: 171080214
202 *
203 * @param time
204 * @param res
205 * @return the formatted nanosec
206 */
207 public static String formatNs(long time, Resolution res) {
208 StringBuffer str = new StringBuffer();
209 boolean neg = time < 0;
210 if (neg) {
211 time = -time;
212 }
213
214 // The following approach could be used although performance
215 // decreases in half.
216 // String strVal = String.format("%09d", time);
217 // String tmp = strVal.substring(strVal.length() - 9);
218
219 long ns = time;
220 ns %= 1000000000;
221 if (ns < 10) {
222 str.append("00000000"); //$NON-NLS-1$
223 } else if (ns < 100) {
224 str.append("0000000"); //$NON-NLS-1$
225 } else if (ns < 1000) {
226 str.append("000000"); //$NON-NLS-1$
227 } else if (ns < 10000) {
228 str.append("00000"); //$NON-NLS-1$
229 } else if (ns < 100000) {
230 str.append("0000"); //$NON-NLS-1$
231 } else if (ns < 1000000) {
232 str.append("000"); //$NON-NLS-1$
233 } else if (ns < 10000000) {
234 str.append("00"); //$NON-NLS-1$
235 } else if (ns < 100000000) {
236 str.append("0"); //$NON-NLS-1$
237 }
238 str.append(ns);
239
240 if (res == Resolution.MILLISEC) {
241 return str.substring(0, 3);
242 } else if (res == Resolution.MICROSEC) {
243 return str.substring(0, 6);
244 } else if (res == Resolution.NANOSEC) {
245 return str.substring(0, 9);
246 }
247 return ""; //$NON-NLS-1$
248 }
249
250 static public int loadIntOption(String opt, int def, int min, int max) {
251 // int val =
252 // TraceUIPlugin.getDefault().getPreferenceStore().getInt(opt);
253 // if (0 == val)
254 // val = def;
255 // if (val < min)
256 // val = min;
257 // if (val > max)
258 // val = max;
259 return def;
260 }
261
262 static public void saveIntOption(String opt, int val) {
263 // TraceUIPlugin.getDefault().getPreferenceStore().setValue(opt, val);
264 }
265
266 static ITimeEvent getFirstEvent(ITimeGraphEntry entry) {
267 if (null == entry || ! entry.hasTimeEvents()) {
268 return null;
269 }
270 Iterator<ITimeEvent> iterator = entry.getTimeEventsIterator();
271 if (iterator != null && iterator.hasNext()) {
272 return iterator.next();
273 } else {
274 return null;
275 }
276 }
277
278 /**
279 * N means: <list> <li>-1: Previous Event</li> <li>0: Current Event</li> <li>
280 * 1: Next Event</li> <li>2: Previous Event when located in a non Event Area
281 * </list>
282 *
283 * @param entry
284 * @param time
285 * @param n
286 * @return
287 */
288 static ITimeEvent findEvent(ITimeGraphEntry entry, long time, int n) {
289 if (null == entry || ! entry.hasTimeEvents()) {
290 return null;
291 }
292 Iterator<ITimeEvent> iterator = entry.getTimeEventsIterator();
293 if (iterator == null) {
294 return null;
295 }
296 ITimeEvent nextEvent = null;
297 ITimeEvent currEvent = null;
298 ITimeEvent prevEvent = null;
299
300 while (iterator.hasNext()) {
301 nextEvent = (ITimeEvent) iterator.next();
302 long nextStartTime = nextEvent.getTime();
303
304 if (nextStartTime > time) {
305 break;
306 }
307
308 if (currEvent == null || currEvent.getTime() != nextStartTime) {
309 prevEvent = currEvent;
310 currEvent = nextEvent;
311 }
312 }
313
314 if (n == -1) { //previous
315 if (currEvent != null && currEvent.getTime() + currEvent.getDuration() >= time) {
316 return prevEvent;
317 } else {
318 return currEvent;
319 }
320 } else if (n == 0) { //current
321 if (currEvent != null && currEvent.getTime() + currEvent.getDuration() >= time) {
322 return currEvent;
323 } else {
324 return null;
325 }
326 } else if (n == 1) { //next
327 return nextEvent;
328 } else if (n == 2) { //current or previous when in empty space
329 return currEvent;
330 }
331
332 return null;
333 }
334
335 static public String fixMethodSignature(String sig) {
336 int pos = sig.indexOf('(');
337 if (pos >= 0) {
338 String ret = sig.substring(0, pos);
339 sig = sig.substring(pos);
340 sig = sig + " " + ret; //$NON-NLS-1$
341 }
342 return sig;
343 }
344
345 static public String restoreMethodSignature(String sig) {
346 String ret = ""; //$NON-NLS-1$
347 int pos = sig.indexOf('(');
348 if (pos >= 0) {
349 ret = sig.substring(0, pos);
350 sig = sig.substring(pos + 1);
351 }
352 pos = sig.indexOf(')');
353 if (pos >= 0) {
354 sig = sig.substring(0, pos);
355 }
356 String args[] = sig.split(","); //$NON-NLS-1$
357 StringBuffer result = new StringBuffer("("); //$NON-NLS-1$
358 for (int i = 0; i < args.length; i++) {
359 String arg = args[i].trim();
360 if (arg.length() == 0 && args.length == 1)
361 break;
362 result.append(getTypeSignature(arg));
363 }
364 result.append(")").append(getTypeSignature(ret)); //$NON-NLS-1$
365 return result.toString();
366 }
367
368 static public String getTypeSignature(String type) {
369 int dim = 0;
370 for (int j = 0; j < type.length(); j++) {
371 if (type.charAt(j) == '[')
372 dim++;
373 }
374 int pos = type.indexOf('[');
375 if (pos >= 0)
376 type = type.substring(0, pos);
377 StringBuffer sig = new StringBuffer(""); //$NON-NLS-1$
378 for (int j = 0; j < dim; j++)
379 sig.append("["); //$NON-NLS-1$
380 if (type.equals("boolean")) //$NON-NLS-1$
381 sig.append("Z"); //$NON-NLS-1$
382 else if (type.equals("byte")) //$NON-NLS-1$
383 sig.append("B"); //$NON-NLS-1$
384 else if (type.equals("char")) //$NON-NLS-1$
385 sig.append("C"); //$NON-NLS-1$
386 else if (type.equals("short")) //$NON-NLS-1$
387 sig.append("S"); //$NON-NLS-1$
388 else if (type.equals("int")) //$NON-NLS-1$
389 sig.append("I"); //$NON-NLS-1$
390 else if (type.equals("long")) //$NON-NLS-1$
391 sig.append("J"); //$NON-NLS-1$
392 else if (type.equals("float")) //$NON-NLS-1$
393 sig.append("F"); //$NON-NLS-1$
394 else if (type.equals("double")) //$NON-NLS-1$
395 sig.append("D"); //$NON-NLS-1$
396 else if (type.equals("void")) //$NON-NLS-1$
397 sig.append("V"); //$NON-NLS-1$
398 else
399 sig.append("L").append(type.replace('.', '/')).append(";"); //$NON-NLS-1$ //$NON-NLS-2$
400 return sig.toString();
401 }
402
403 static public int compare(double d1, double d2) {
404 if (d1 > d2)
405 return 1;
406 if (d1 < d2)
407 return 1;
408 return 0;
409 }
410
411 static public int compare(String s1, String s2) {
412 if (s1 != null && s2 != null)
413 return s1.compareToIgnoreCase(s2);
414 if (s1 != null)
415 return 1;
416 if (s2 != null)
417 return -1;
418 return 0;
419 }
420 }
This page took 0.040768 seconds and 6 git commands to generate.