Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 95a29c50b202d045b8cb4a897c126372b1de419a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
/*******************************************************************************
 * Copyright (c) 2009 Red Hat, Inc.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Red Hat - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.internal.callgraph;

import java.text.NumberFormat;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.TreeSet;
import java.util.Map.Entry;

import org.eclipse.cdt.core.model.ICProject;
import org.eclipse.core.runtime.Status;
import org.eclipse.draw2d.Animation;
import org.eclipse.draw2d.Label;
import org.eclipse.jface.viewers.IDoubleClickListener;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.jface.viewers.TreeViewer;
import org.eclipse.linuxtools.internal.callgraph.core.MP;
import org.eclipse.linuxtools.internal.callgraph.graphlisteners.Projectionist;
import org.eclipse.linuxtools.internal.callgraph.graphlisteners.StapGraphKeyListener;
import org.eclipse.linuxtools.internal.callgraph.graphlisteners.StapGraphMouseListener;
import org.eclipse.linuxtools.internal.callgraph.graphlisteners.StapGraphMouseWheelListener;
import org.eclipse.linuxtools.internal.callgraph.treeviewer.StapTreeContentProvider;
import org.eclipse.linuxtools.internal.callgraph.treeviewer.StapTreeDoubleClickListener;
import org.eclipse.linuxtools.internal.callgraph.treeviewer.StapTreeLabelProvider;
import org.eclipse.linuxtools.internal.callgraph.treeviewer.StapTreeListener;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Canvas;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.zest.core.widgets.Graph;
import org.eclipse.zest.core.widgets.GraphNode;
import org.eclipse.zest.layouts.LayoutStyles;


public class StapGraph extends Graph {

	public static final String CONSTANT_TOP_NODE_NAME = Messages.getString("StapGraph.StartNode"); //$NON-NLS-1$
	public static final int CONSTANT_HORIZONTAL_SPACING = 50; 
	public static final int CONSTANT_DRAWMODE_LEVEL = 0;
	public static final int CONSTANT_DRAWMODE_RADIAL = 1;
	public static final int CONSTANT_DRAWMODE_TREE = 2;
	public static final int CONSTANT_DRAWMODE_AGGREGATE = 3;
	public static final int CONSTANT_ANIMATION_SLOW = 1;
	public static final int CONSTANT_ANIMATION_FASTER = 2;
	public static final int CONSTANT_ANIMATION_FASTEST = 3;
	public static final int CONSTANT_MAX_NUMBER_OF_SIBLINGS = 3;
	public static final int CONSTANT_MAX_NUMBER_OF_RADIAL_SIBLINGS = 15;
	public static final int CONSTANT_VERTICAL_INCREMENT = 50;
	public static final int CONSTANT_HORIZONTAL_SPACING_FOR_LEVEL = 150;
	public static final Color CONSTANT_HAS_PARENT = new Color(Display.getCurrent(), 240, 200,
			200);
	public static final Color CONSTANT_HAS_CHILDREN = new Color(Display.getCurrent(), 200,
			250, 200);
	public static final Color CONSTANT_MARKED = new Color(Display.getCurrent(), 210, 112, 214);
	private int ANIMATION_TIME = 500;
	//Draw level management
	private int topLevelToDraw;
	private int bottomLevelToDraw;
	private int topLevelOnScreen;
	public int levelBuffer = 30;
	private int maxNodes = 150;
	private Projectionist proj;



	private int lowestLevelOfNodesAdded;
	public HashMap<Integer, List<Integer>> levels; 			//Level number, list of node ids
	

	//Node management
	private int idOfLastNode;	
	private int idOfLastCollapsedNode;
	public HashMap<Integer, StapNode> nodeMap; 				// HashMap of current nodes
	public HashMap<Integer, StapData> nodeDataMap; 			// HashMap of all data
	//The negative side of nodeDataMap is collapsed, the positive side is uncollapsed
	
	public List<GraphNode> aggregateNodes;
	public HashMap<String, Long> aggregateTime;
	public HashMap<String, Integer> aggregateCount;
	private HashMap <Integer, Integer> collapsedLevelSize;
	public List<Integer> markedNodes;
	public List<Integer> markedCollapsedNodes;
	
	//Modes
	private boolean collapse_mode;
	private int draw_mode;
	private int animation_mode;

	//Time
	private long totalTime;
	private long endTime;
	private long startTime;

	//The current center/top of the nodes list
	private int rootVisibleNodeNumber;
	
	//Special cases
	private boolean killInvalidFunctions;					//Toggle hiding of invalid functions					
	
	//Tree viewer
	private static TreeViewer treeViewer;
	private Composite treeComp;
	private static IDoubleClickListener treeDoubleListener;
	public HashMap<Integer, Integer> currentPositionInLevel;
	//(level, next horizontal position to place a node)
	
	//For cycling through marked nodes
	private int nextMarkedNode;

	//Zooming factor
	public double scale;
	

	
	private ArrayList<Integer> callOrderList;
	private int lastFunctionCalled;
	private int treeLevelFromRoot;
	private Canvas thumbCanvas;
	private ICProject project;
	private boolean threaded;
	private int counter; 		//All purpose counting variable
	
	
	
	public StapGraphMouseListener getMouseListener() {
		return mListener;
	}



	public StapGraphMouseWheelListener getMouseWheelListener() {
		return mwListener;
	}



	public StapGraphKeyListener getKeyListener() {
		return kListener;
	}



	private StapGraphMouseListener mListener;
	private StapGraphMouseWheelListener mwListener;
	private StapGraphKeyListener kListener;
	
	private CallgraphView callgraphView;
	
	public StapGraph(Composite parent, int style, Composite treeComp, Canvas tCanvas,
			CallgraphView callgraphView) {
		super(parent, style);

		//-------------Initialize variables
		thumbCanvas = tCanvas;
		nodeMap = new HashMap<Integer, StapNode>();
		levels = new HashMap<Integer, List<Integer>>();
		nodeDataMap = new HashMap<Integer, StapData>();
		aggregateTime = new HashMap<String, Long>();
		aggregateCount = new HashMap<String, Integer>();
		currentPositionInLevel = new HashMap<Integer, Integer>();
		collapsedLevelSize = new HashMap<Integer, Integer>();
		markedNodes = new ArrayList<Integer>();
		markedCollapsedNodes = new ArrayList<Integer>();
		animation_mode = 1;
		idOfLastNode = 0;
		rootVisibleNodeNumber=0;
		totalTime = 0;
		collapse_mode = false;
		killInvalidFunctions = true;
		nextMarkedNode = -1;
		scale = 1;
		treeLevelFromRoot = 0;
		idOfLastCollapsedNode = 0;
		this.callgraphView = callgraphView;
		
		this.treeComp = treeComp;
		if (treeViewer == null || treeViewer.getControl().isDisposed()) {
			//Only create once
			treeViewer = new TreeViewer(this.treeComp);
			StapTreeListener stl = new StapTreeListener(treeViewer.getTree().getHorizontalBar());
			treeViewer.addTreeListener(stl);
		}
		
				
		//-------------Add listeners
		mListener = new StapGraphMouseListener(this);
		kListener = new StapGraphKeyListener(this);
		mwListener = new StapGraphMouseWheelListener(this);
		this.addMouseListener(mListener);		
		this.addKeyListener(kListener);
		this.addMouseWheelListener(mwListener);
	
	}

	
	
	
	/**
	 * Initialize the treeviewer with data from the graph. If the treeviewer
	 * has already been initialized (i.e. if it already has a content provider
	 * set), we merely call treeViewer.refresh();
	 */
	public void initializeTree() {
		if (treeViewer.getContentProvider() == null) {
			StapTreeContentProvider scp = new StapTreeContentProvider();
			treeViewer.setContentProvider(scp);
		} else {
			((StapTreeContentProvider) treeViewer.getContentProvider())
					.setGraph(this);
			treeViewer.refresh();
			return;
		}
		
		((StapTreeContentProvider) treeViewer.getContentProvider()).setGraph(this);
		
		if (treeViewer.getLabelProvider() != null)
			treeViewer.getLabelProvider().dispose();
		StapTreeLabelProvider prov = new StapTreeLabelProvider();
		treeViewer.setLabelProvider(prov);

		if (treeDoubleListener != null) {
			treeViewer.removeDoubleClickListener(treeDoubleListener);
		}
		treeDoubleListener = new StapTreeDoubleClickListener(treeViewer, this);
		treeViewer.addDoubleClickListener(treeDoubleListener);
		
		treeViewer.setInput(getNodeData(getTopNode()));
		treeViewer.refresh();
	}
	
	
	

	/**
	 * Convenience method to loadData with a message preset.
	 * 
	 * @param style
	 * @param id
	 * @param txt
	 * @param time
	 * @param called
	 * @param caller
	 * @return
	 */
	public int loadData(int style, int id, String txt, long time, int called,
			int caller, boolean isMarked, String message) {
		//-------------Invalid function catching
		// Catches some random C/C++ directive functions
		if (id < 10 && killInvalidFunctions) {
			if (txt.contains(")")) { //$NON-NLS-1$
				return -1;
			} else if (txt.contains(".")) { //$NON-NLS-1$
				return -1;
			} else if (txt.contains("\"")) { //$NON-NLS-1$
				return -1;
			}
		} 
		
		//-------------Add node to appropriate map/list
		StapData n = new StapData(this, style, txt, time, called, 
				id, caller, isMarked);
		if (isMarked) {
			n.setMessage(message);
			markedNodes.add(id);
		}
		nodeDataMap.put(id, n);

		// Make no assumptions about the order that data is input
		if (id > idOfLastNode)
			idOfLastNode = id;
		return id;
	}
		
	public void insertMessage(int id, String message) {
		StapData temp = nodeDataMap.get(id);
		if (temp == null) return;
		temp.insertMessage(message);
		nodeDataMap.put(id, temp);
	}
	
	/*
	 * Fully functional draw functions
	 * 
	 * -Radial
	 * -Tree
	 */

	/**
	 * Draws a 2-node-layer circle
	 * Draws all nodes in  place.
	 * @param centerNode
	 */
	public void drawRadial(int centerNode) {
		int radius = Math.max(CONSTANT_VERTICAL_INCREMENT,
				Math.min(this.getBounds().width,
				this.getBounds().height)
				/ 2 - 2*CONSTANT_VERTICAL_INCREMENT);

		rootVisibleNodeNumber = centerNode;
		StapData nodeData = getNodeData(centerNode);
		int collapsed = nodeData.getPartOfCollapsedNode();
		if (!nodeData.isCollapsed && collapsed != StapData.NOT_PART_OF_COLLAPSED_NODE) {
			nodeData = getNodeData(collapsed);
		}
		treeViewer.expandToLevel(nodeData, 0);
		treeViewer.setSelection(new StructuredSelection(nodeData));
		
		if (nodeMap.get(centerNode) == null) {
			nodeMap.put(centerNode, getNodeData(centerNode).makeNode(this));
		}
		

		// Draw node in center
		StapNode n = nodeMap.get(centerNode);
		int x = this.getBounds().width / 2 - n.getSize().width/2;
		int y = this.getBounds().height / 2;
		n.setLocation(x, y);
		
		if (getNodeData(centerNode).isMarked())
			nodeMap.get(centerNode).setBackgroundColor(CONSTANT_MARKED);
		radialHelper(centerNode, x, y, radius, 0);
	}

	/**
	 * Helps animation of radial draw. Can be replaced by a draw and moveAll.
	 * 
	 * @param centerNode
	 */
	public void preDrawRadial(int centerNode) {
		rootVisibleNodeNumber = centerNode;
		
		if (nodeMap.get(centerNode) == null) {
			nodeMap.put(centerNode, getNodeData(centerNode).makeNode(this));
			StapNode n = nodeMap.get(centerNode);
			n.setLocation(this.getBounds().width / 2, this.getShell()
					.getSize().y / 2);
		}

		//Pass coordinates of the node to radialHelper
		StapNode n = nodeMap.get(centerNode);
		int x = n.getLocation().x;
		int y = n.getLocation().y;
		radialHelper(centerNode, x, y, 0, 0);
	}

	/**
	 * Completes radial-mode draws 
	 * 
	 * @param id
	 * @param x
	 * @param y
	 * @param radius
	 * @param startFromChild
	 */
	public void radialHelper(int id, int x, int y, int radius, int startFromChild) {		
		//-------------Draw parent node
		// Draw caller node right beside this one, in a different color
		int callerID = nodeDataMap.get(id).parent;
		if (callerID != -1) {
			if (getNode(callerID) == null) {
				nodeMap.put(callerID, getNodeData(callerID).makeNode(this));
			}
			getNode(callerID).setBackgroundColor(CONSTANT_HAS_PARENT);
			getNode(callerID).setLocation(x + radius / 5, y - radius / 5);
			if (getNode(id).connection == null) {
				getNode(id).makeConnection(SWT.NONE, getNode(callerID), getNodeData(id).timesCalled);
			}
			
			if (getNodeData(callerID).isMarked())
				nodeMap.get(callerID).setBackgroundColor(CONSTANT_MARKED);
		}
		

		//-------------Draw children nodes
		List<Integer> nodeList;
		if (!collapse_mode) {
			nodeList = nodeDataMap.get(id).children;
		}
		else {
			nodeList = nodeDataMap.get(id).collapsedChildren;
		}

		int numberOfNodes;
		
		if (nodeList.size() >= CONSTANT_MAX_NUMBER_OF_RADIAL_SIBLINGS ) {
			numberOfNodes = CONSTANT_MAX_NUMBER_OF_RADIAL_SIBLINGS;
		}
		else
			numberOfNodes = nodeList.size();
			
		
		double angle;
		if (numberOfNodes > 5)
			angle = 2 * Math.PI / numberOfNodes;
		else
			angle = 2 * Math.PI / CONSTANT_MAX_NUMBER_OF_RADIAL_SIBLINGS;
		
		int i = 0;

		for (i = 0; i < numberOfNodes; i++) {
			

			int subID = nodeList.get(i);
			int yOffset = 0;
			int xOffset = 0;
			if (nodeMap.get(subID) == null) {
				nodeMap.put(subID, getNodeData(subID).makeNode(this));
			}
			
			StapNode subN = nodeMap.get(subID);
			
			if (radius != 0) {
				yOffset = (int) (radius * Math.cos((float) angle * i));
				xOffset = (int) (radius * Math.sin((float) angle * i)) - subN.getSize().width/2 + getNode(id).getSize().width/2;
			}

			if (hasChildren(subID))
				subN.setBackgroundColor(CONSTANT_HAS_CHILDREN);
			subN.setLocation(x + xOffset, y + yOffset);
			if (subN.connection == null) {
				subN.makeConnection(SWT.NONE, nodeMap.get(id), nodeDataMap
						.get(subID).timesCalled);
			}
			
			StapData d = getNodeData(subID);
			if (d.isMarked())
				subN.setBackgroundColor(CONSTANT_MARKED);
		}
	}
	
	
	/**
	 * Draws nodes according to the name of the function (not accounting for call
	 * heirarchies). Uses colour to indicate the number of calls and size to indicate
	 * the percentage time spent.
	 */
	private void drawAggregateView(){
		
		if (aggregateNodes == null){
			aggregateNodes = new ArrayList<GraphNode>();
		}else{
			aggregateNodes.clear();
		}
		
		//-------------Format numbers
		float percentage_time;
		float percentage_count;
		int maxTimesCalled = 0;
		final int colorLevels = 15;
		final int colorLevelDifference = 12;
		int primary;
		int secondary;
		
		NumberFormat num = NumberFormat.getInstance(Locale.CANADA);
		num.setMinimumFractionDigits(2);
		num.setMaximumFractionDigits(2);

		//FIND THE MOST TIMES A FUNCTION IS CALLED
		for (int val : aggregateCount.values()){
			if ( val > maxTimesCalled){
				maxTimesCalled = val;
			}
		}
		
		
		//TEMPORARY STORAGE OF THE ENTRIES
		//IMPLEMENTS A COMPARATOR TO STORE BY ORDER OF THE VALUE
		TreeSet<Entry<String, Long>> sortedValues = new TreeSet<Entry<String, Long>>(StapGraph.VALUE_ORDER);
		HashMap<String, Long> tempMap = new HashMap<String, Long>();
		tempMap.putAll(aggregateTime);
		
		for (String key : tempMap.keySet()) {
			long time = aggregateTime.get(key);
			//This is a stupid way to get the times right, but it is almost always guaranteed to work.

			while (time < 0)
				time += endTime;
			tempMap.put(key, time);
		}
		
		sortedValues.addAll(tempMap.entrySet());
		
		//-------------Draw nodes
		for (Entry<String, Long> ent: sortedValues) {
			String key = ent.getKey();
				GraphNode n = new GraphNode(this.getGraphModel(),SWT.NONE);
				aggregateNodes.add(n);
				
				percentage_count = (float)aggregateCount.get(key) / (float)maxTimesCalled;
				percentage_time = ((float)  ent.getValue()/ this
						.getTotalTime() * 100);
				
				n.setText(key + "\n"  //$NON-NLS-1$
						+ num.format(percentage_time) + "%" + "\n" //$NON-NLS-1$ //$NON-NLS-2$
						+ aggregateCount.get(key) + "\n") ; //$NON-NLS-1$
				n.setData("AGGREGATE_NAME", key); //$NON-NLS-1$
				
				
				primary = (int)(percentage_count * colorLevels * colorLevelDifference);
				secondary = (colorLevels * colorLevelDifference) - (int)(percentage_count * colorLevels * colorLevelDifference);
				
				primary = Math.max(0, primary);
				secondary = Math.max(0, secondary);
				
				primary = Math.min(primary, 255);
				secondary = Math.min(secondary, 255);
				
				
				Color c = new Color(this.getDisplay(),primary,0,secondary);
				n.setBackgroundColor(c);
				n.setHighlightColor(c);
				n.setForegroundColor(new Color(this.getDisplay(),255,255,255));
				n.setTooltip(new Label(
						Messages.getString("StapGraph.Func")+ key + "\n" //$NON-NLS-1$ //$NON-NLS-2$
						+ Messages.getString("StapGraph.Time") + num.format(percentage_time) + "%" + "\n" //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
						+ Messages.getString("StapGraph.NumOfCalls") + aggregateCount.get(key)		 //$NON-NLS-1$
				));
				n.setBorderWidth(2);
		}

		
		//Set layout to gridlayout
		this.setLayoutAlgorithm(new AggregateLayoutAlgorithm(LayoutStyles.NONE, sortedValues, this.getTotalTime(), this.getBounds().width), true);
	}



	/**
	 * Draws a tree starting with node id, putting node id at location x,y
	 * @param id
	 * @param x
	 * @param y
	 */
	private void drawTree(int id, int x, int y) {
		
		//-------------Create node id
		// Create and set
		if (nodeMap.get(id) == null) {
			nodeMap.put(id, getNodeData(id).makeNode(this));
		}
		StapNode n = getNode(id);
		n.setLocation(x,y);
		n.setSize(n.getSize().width/scale, n.getSize().height/scale);

		//This is the lowest level of nodes to draw, and it still has kids
		if (getLevelOfNode(id) == bottomLevelToDraw &&
				getNodeData(id).children.size() > 0)
			n.setBackgroundColor(CONSTANT_HAS_CHILDREN);
		
		if (getNodeData(id).isMarked())
			n.setBackgroundColor(CONSTANT_MARKED);
		
		
		//-------------Get appropriate list of children
		List<Integer> callees = null;
		int usefulSize = 0;
		
		// Determine which list of callees to use
		if (!collapse_mode)
			callees = getNodeData(id).children;
		else
			callees = getNodeData(id).collapsedChildren;
		if (callees == null)
			return;
		
		int cLevel = getLevelOfNode(id) + 1;
		
		if (!collapse_mode) {
			if (levels.get(cLevel) != null) {
				usefulSize = levels.get(cLevel).size() - collapsedLevelSize.get(cLevel);
			}
		}
		else {
		if (collapsedLevelSize.get(cLevel) != null)
			usefulSize = collapsedLevelSize.get(cLevel);
		}
		//-------------Draw all children
		for (int i = 0; i < callees.size(); i++) {
			//Find the number of nodes on this level for spacing purposes
			int childID = callees.get(i);
			int childLevel = getLevelOfNode(childID);

			
			//Initialise the offset to roughly centre the nodes 
			if (currentPositionInLevel.get(getLevelOfNode(childID)) == null) {
				int tmp = (int) (CONSTANT_HORIZONTAL_SPACING*(usefulSize-1) * -1/scale);
				currentPositionInLevel.put(childLevel, getNode(rootVisibleNodeNumber)
						.getLocation().x + tmp);
			}
			
			//Recursive iteration
			if (childLevel <= bottomLevelToDraw && 
					childLevel <= lowestLevelOfNodesAdded) {
				drawTree(callees.get(i), currentPositionInLevel.get(childLevel), 
						y + (int)(CONSTANT_VERTICAL_INCREMENT/scale));
								
				//Do not scale newSize or nodes will no longer be adjacent
				int newSize = currentPositionInLevel.get(getLevelOfNode(childID)) 
								+ getNode(childID).getSize().width;
				
				//Leave a small blank space between nodes for aesthetic purposes
				if (i == callees.size() - 1)
					newSize += CONSTANT_HORIZONTAL_SPACING/3;
				currentPositionInLevel.put(getLevelOfNode(childID), newSize);
			}
			
		}
	}
	
	/**
	 * Extend the tree downwards
	 */
	public void extendTree() {
		if (bottomLevelToDraw >= lowestLevelOfNodesAdded) 
			return;
		
		
		StapData data = getNodeData(rootVisibleNodeNumber);
		if (data.children != null) {
			if (data.children.size() < 1) {
				return;
			}
		}
		
		List<Integer> list = data.children;
		if (isCollapseMode())
			list = data.collapsedChildren;
		
		if (list.size() == 1) {
			//Special case - only one child of the root node
			//Therefore change root node to this new root node
			int aMode = animation_mode;
			draw(CONSTANT_DRAWMODE_TREE, CONSTANT_ANIMATION_FASTEST, list.get(0));
			setAnimationMode(aMode);
			return;
		}
		
		
		List<Integer> bottomList = levels.get(bottomLevelToDraw);
		bottomLevelToDraw++;
		
		for (int i : bottomList) {
			if (getNode(i) != null) {
				getNode(i).setBackgroundColor(DEFAULT_NODE_COLOR);
				getParentNode(i).setBackgroundColor(DEFAULT_NODE_COLOR);
				drawTree(i, getNode(i).getLocation().x, getNode(i).getLocation().y);
			}
		}
		
		treeLevelFromRoot++;		
	}
	
	/**
	 * Removes nodes from the bottom of the tree
	 */
	public void shrinkTree() {
		if (treeLevelFromRoot < 1) 
			return;
		
		
		bottomLevelToDraw--;
		deleteAll(rootVisibleNodeNumber);
		
		int i = rootVisibleNodeNumber;
		currentPositionInLevel.clear();
		drawTree(i, getNode(i).getLocation().x, getNode(i).getLocation().y);
		
		treeLevelFromRoot--;		
	}
	

	/**
	 * Draws the next node, unless the next node does not exist.
	 */
	public void drawNextNode() {
		if (isCollapseMode()) {
			setCollapseMode(false);
		}
		int toDraw = getNextCalledNode(getRootVisibleNodeNumber());
		if (toDraw != -1)
			draw(toDraw);
		 else
			proj.pause();
	}

	
	/**
	 * Moves all nodes to the point x,y
	 * @param x
	 * @param y
	 */
	public void moveAllNodesTo(int x, int y) {
		for (int i: nodeMap.keySet()) {
			nodeMap.get(i).setLocation(x,y);
		}
	}


	/**
	 * Draws a tree roughly starting from node id
	 */
	public void drawBox(int id, int x, int y) {
		setLevelLimits(id);
		int MaxLevelPixelWidth = 1;
		int currPixelWidth = 1;
		
		// FIND THE LEVEL THAT WILL BE THE WIDEST
		// WILL BE A USEFUL VALUE LATER ON
		int count;
		
		
		for (int i = topLevelToDraw; i <= bottomLevelToDraw; i++) {
			count = 0;
			levels.get(i).add(0, count);
			int size = levels.get(i).size();
			for (int j = 1; j < size; j++){
				int val = levels.get(i).get(j);
				StapData data = nodeDataMap.get(val);
				if (!data.isOnlyChildWithThisName()) {
					if (collapse_mode && data.isPartOfCollapsedNode()) {
						continue;
					}
					if (!collapse_mode && data.isCollapsed)
						continue;
				}
				
				currPixelWidth += data.name.length() * 10 + StapGraph.CONSTANT_HORIZONTAL_SPACING_FOR_LEVEL;
				if (MaxLevelPixelWidth < currPixelWidth) {
					MaxLevelPixelWidth = currPixelWidth;
				}
				count++;
				levels.get(i).remove(0);
				levels.get(i).add(0, count);
			}
			currPixelWidth = 1;
		}

		MaxLevelPixelWidth = (int)(MaxLevelPixelWidth/scale);
		counter = 0;
		if (id == getFirstUsefulNode())
			nodeMap.get(id).setLocation(150 + (MaxLevelPixelWidth/2),y);
		
		drawFromBottomToTop(bottomLevelToDraw, y
				+ ((bottomLevelToDraw  - topLevelToDraw ) * 3 * (int)(CONSTANT_VERTICAL_INCREMENT/scale)),
				MaxLevelPixelWidth);
		
		if (id == getFirstUsefulNode())
			nodeMap.get(id).setLocation(150 + (MaxLevelPixelWidth/2),y);
	}
	
	
	public void drawFromBottomToTop(int level, int height,
			int MaxLevelPixelWidth) {
		
		// FINISHED DRAWING THE ROOT IN THE LAST RECURSIVE CALL
		if (level == 0 || level < topLevelToDraw ) {
			return;
		}
		
		// FIND ALL THE CHILDREN AT LEVEL 'level'
		int total = levels.get(level).remove(0);
		int count = 1;
		
		//CREATE THE NODES
		for (int i = 0; i < levels.get(level).size(); i ++) {
			int id = levels.get(level).get(i);
			
			StapData data = nodeDataMap.get(id);
			if (!data.isOnlyChildWithThisName()) {
				if (collapse_mode && data.isPartOfCollapsedNode() ) {
					continue;
				}
				if (!collapse_mode && nodeDataMap.get(id).isCollapsed)
					continue;
			}
			
			if (nodeMap.get(id) == null) {
				nodeMap.put(id, getNodeData(id).makeNode(this));
			}
			
			StapNode n = nodeMap.get(id);
			
			n.setVisible(true);
			n.setSize(n.getSize().width/scale, n.getSize().height/scale);
			//Placement algorithm
			if (getAnimationMode() == CONSTANT_ANIMATION_SLOW){	
				
				if (counter <= ANIMATION_TIME)
					Animation.markBegin();
				n.setLocation(150 + (nodeMap.get(getRootVisibleNodeNumber()).getLocation().x),nodeMap.get(getRootVisibleNodeNumber()).getLocation().y);
				n.setLocation(150 + (MaxLevelPixelWidth / (total + 1) * count),height);

				if (counter <= ANIMATION_TIME) {
					Animation.run(ANIMATION_TIME/nodeMap.size()/3);
					counter+=ANIMATION_TIME/nodeMap.size();
				}
					
			}else{
				n.setLocation(150 + (MaxLevelPixelWidth / (total + 1) * count),height);				
			}
			
			//IF WE CANNOT DISPLAY ALL NODES COLOUR NODES ON BOTTOM THAT STILL HAVE CHILDREN
			if (level == bottomLevelToDraw && nodeDataMap.get(id).children.size() != 0){
				n.setBackgroundColor(CONSTANT_HAS_CHILDREN);
			}
			
			
			
			if (getNodeData(n.id).isMarked())
				n.setBackgroundColor(CONSTANT_MARKED);
			
			
			// FIND ALL THE NODES THAT THIS NODE CALLS AND MAKE CONNECTIONS
			List<Integer> setOfCallees = null;
			if (collapse_mode)
				setOfCallees = nodeDataMap.get(id).collapsedChildren;
			else 
				setOfCallees = nodeDataMap.get(id).children;
			
			for (int val : setOfCallees) {
				if (nodeMap.get(val) != null)
					nodeMap.get(val).makeConnection(SWT.NONE, n, 
						nodeDataMap.get(val).timesCalled);
			}
			
			count++;
		}
		// DRAW THE NEXT LEVEL UP
		drawFromBottomToTop(level - 1, height - (3 * (int)(CONSTANT_VERTICAL_INCREMENT/scale)),
				MaxLevelPixelWidth);
	}

	
	
	/*
	 * Level/node management
	 */

	/**
	 * Delete all nodes except for the node with the specified nodeID
	 * 
	 * @param exception
	 *            - id of node NOT to delete (use -1 for 'no exceptions')
	 */
	public void deleteAll(int exception) {		
		//-------------Delete aggregate nodes
		if (aggregateNodes != null){			
			for (GraphNode n : aggregateNodes){
				n.dispose();
			}
			aggregateNodes.clear();
		}
		
		//-------------Save exception node's location
		int x = -1;
		int y = -1;
		if (exception != -1 && nodeMap.get(exception) != null) {
			x =	nodeMap.get(exception).getLocation().x;
			y = nodeMap.get(exception).getLocation().y;
		}

		//-------------Delete all nodes
		for (int i : nodeMap.keySet()) {
			StapNode node = nodeMap.get(i);
			if (node == null)
				continue;
			
			node.unhighlight();
			node.dispose();
		}
		nodeMap.clear();

		//-------------Recreate exception
		if (x != -1 && y != -1) {
			StapNode n =getNodeData(exception).makeNode(this);
			n.setLocation(x,y);
			n.highlight();
			nodeMap.put(exception, n);
		}
	}

	/**
	 * Delete a number of levels from the top of the graph
	 * 
	 * @param numberOfLevelsToDelete
	 */
	private void deleteLevelsFromTop(int numberOfLevelsToDelete) {

		if (numberOfLevelsToDelete <= 0)
			return;

		for (int i = 0; i < numberOfLevelsToDelete; i++) {
			List<Integer> level = levels.get(topLevelToDraw);
			for (int j = 0; j < level.size(); j++) {
				if (nodeMap.get(level.get(j)) != null)
					nodeMap.remove(level.get(j)).dispose();
			}
			topLevelToDraw++;
		}
	}

	/**
	 * Delete a number of levels from the bottom of the graph
	 * 
	 * @param numberOfLevelsToDelete
	 */
	private void deleteLevelsFromBottom(int numberOfLevelsToDelete) {

		if (numberOfLevelsToDelete <= 0)
			return;

		for (int i = 0; i < numberOfLevelsToDelete; i++) {
			List<Integer> level = levels.get(getBottomLevelToDraw());

			for (int j = 0; j < level.size(); j++) {
				if (nodeMap.get(level.get(j)) != null)
					nodeMap.remove(level.get(j)).dispose();
			}
			bottomLevelToDraw--;
		}
	}

	/**
	 * Sets top level limit to the level of id, bottom level limit to top level
	 * limit + CONSTANT_LEVEL_BUFFER.
	 * Deletes extraneous levels, changes topLevelToDraw, bottomLevelToDraw
	 * 
	 * Convenience method: Calls setLevelLimitsToLevel(levelOfNode(id))
	 * 
	 * @param id - node to recenter with
	 */
	public void setLevelLimits(int id) {
		setTopLevelTo(getLevelOfNode(id));
	}
	
	/**
	 * Sets top level limit to the given level, bottom level limit to top level
	 * limit + CONSTANT_LEVEL_BUFFER.
	 * Deletes extraneous levels, changes topLevelToDraw, bottomLevelToDraw
	 * 
	 * @param id - node to recenter with
	 */
	
	public void setTopLevelTo(int new_topLevelToDraw) {
		changeLevelLimits(new_topLevelToDraw);
		
		int new_bottomLevelToDraw = new_topLevelToDraw + levelBuffer;
		if (new_bottomLevelToDraw > lowestLevelOfNodesAdded)
			new_bottomLevelToDraw = lowestLevelOfNodesAdded;

		deleteLevelsFromTop(new_topLevelToDraw - topLevelToDraw);
		deleteLevelsFromBottom(getBottomLevelToDraw() - new_bottomLevelToDraw);

		topLevelToDraw = new_topLevelToDraw;
		bottomLevelToDraw = new_bottomLevelToDraw;
	}

	
	public boolean changeLevelLimits(int lvl) {
		int numberOfNodes = 0;
		List<Integer> list;
		
		int maxLevel = min(lvl + levelBuffer, lowestLevelOfNodesAdded);
		
		for (int level = lvl; level < maxLevel; level++) {
			for (int id : levels.get(level)) {
				if (isCollapseMode())
					list = getNodeData(id).collapsedChildren;
				else
					list = getNodeData(id).children;
				
				numberOfNodes += list.size();
				
				if (numberOfNodes > maxNodes) {
					levelBuffer = max(0,level-1);
					return true;
				}
			}
		}
		
		return false;

		
	}
	
	/**
	 * Convenience method to redraw everything.
	 */
	public void draw() {
		draw(getRootVisibleNodeNumber());
	}
	
	/**
	 * Convenience method to draw with current draw parameters. Equivalent to
	 * draw(graph.draw_mode, graph.animation_mode, id)
	 * @param id
	 */
	public void draw(int id) {
		draw(draw_mode, animation_mode, id);
	}
	
	/**
	 * Convenience method to draw with current draw parameters. Equivalent to
	 * draw(graph.draw_mode, animation, id)
	 * @param id
	 */
	public void draw(int animation, int id) {
		draw(draw_mode, animation, id);
	}
	

	/**
	 * Draws with the given modes.
	 * @param drawMode
	 * @param animationMode
	 * @param id
	 */
	public void draw(int drawMode, int animationMode, int id) {
		setDrawMode(drawMode);
		setAnimationMode(animationMode);
		if (nodeDataMap.get(id) == null)
			return;
		this.clearSelection();
		treeLevelFromRoot = 0;
		currentPositionInLevel.clear();
		
		
		
		this.setRedraw(false);
		if (draw_mode == CONSTANT_DRAWMODE_RADIAL) {
			//Remove thumbnail
			GridData gd = (GridData) thumbCanvas.getLayoutData();
			gd.exclude = true;
			thumbCanvas.setLayoutData(gd);
			thumbCanvas.setVisible(false);
			callgraphView.layout();
			
			
			//Add treeComp
			gd = (GridData) treeComp.getLayoutData();
			gd.exclude = false;
			treeComp.setLayoutData(gd);
			treeComp.setVisible(true);
			treeViewer.collapseToLevel(getNodeData(id), 1);
			treeViewer.expandToLevel(getNodeData(id), 1);
			
			
		} else if (draw_mode == CONSTANT_DRAWMODE_AGGREGATE){
			//Remove treeComp
			GridData gd = (GridData) treeComp.getLayoutData();
			gd.exclude = true;
			treeComp.setLayoutData(gd);
			treeComp.setVisible(false);
			
			callgraphView.layout();
			//Remove thumbnail
			gd = (GridData) thumbCanvas.getLayoutData();
			gd.exclude = true;
			thumbCanvas.setLayoutData(gd);
			thumbCanvas.setVisible(false);					
		}
		else{
			//Remove treeComp
			GridData gd = (GridData) treeComp.getLayoutData();
			gd.exclude = true;
			treeComp.setLayoutData(gd);
			treeComp.setVisible(false);

			callgraphView.layout();

			//Add thumbnail
			gd = (GridData) thumbCanvas.getLayoutData();
			gd.exclude = true;
			thumbCanvas.setLayoutData(gd);
			thumbCanvas.setVisible(true);
			thumbCanvas.setBackground(this.getBackground());
			
			
		}
		callgraphView.layout();
		this.setRedraw(true);

		
		//-------------Draw tree
		if (draw_mode == CONSTANT_DRAWMODE_TREE) {			
			if (animation_mode == CONSTANT_ANIMATION_SLOW) {
				if (nodeMap.get(id) == null)
					nodeMap.put(id, getNodeData(id).makeNode(this));
				int tempX = nodeMap.get(id).getLocation().x;
				int tempY = nodeMap.get(id).getLocation().y;
				Animation.markBegin();
				moveAllNodesTo(tempX, tempY);
				Animation.run(ANIMATION_TIME);
				
				deleteAll(id);
				setLevelLimits(id);
				rootVisibleNodeNumber = id;
				drawTree(id, this.getBounds().width / 2, 20);
				currentPositionInLevel.clear();

				this.update();
				Animation.markBegin();
				drawTree(id, this.getBounds().width / 2, 20);

				Animation.run(ANIMATION_TIME);
				getNode(id).unhighlight();
			} else {
				deleteAll(id);
				setLevelLimits(id);
				rootVisibleNodeNumber = id;
				drawTree(id, this.getBounds().width / 2, 20);
				getNode(id).unhighlight();
			}
		}
		
		
		//-------------Draw radial
		else if (draw_mode == CONSTANT_DRAWMODE_RADIAL) {
			
			if (animation_mode == CONSTANT_ANIMATION_SLOW) {
				rootVisibleNodeNumber = id;
				deleteAll(id);

				preDrawRadial(id);
				this.redraw();
				this.getLightweightSystem().getUpdateManager()
						.performUpdate();
	
				Animation.markBegin();
				nodeMap.get(id).setLocation(this.getBounds().width / 2,
						this.getBounds().height / 2);
				drawRadial(id); 
				Animation.run(ANIMATION_TIME);
				callgraphView.maximizeOrRefresh(false);
			}
	
			else {	
				deleteAll(id);
				drawRadial(id);
			}
		}
		
		//-------------Draw level
		else if (draw_mode == CONSTANT_DRAWMODE_LEVEL) {
			rootVisibleNodeNumber = id;
			if (animation_mode == CONSTANT_ANIMATION_SLOW) {
				if (nodeMap.get(id) == null)
					nodeMap.put(id, getNodeData(id).makeNode(this));
				
				Animation.markBegin();
				moveAllNodesTo(nodeMap.get(id).getLocation().x, nodeMap.get(id).getLocation().y);
				Animation.run(ANIMATION_TIME);
				
				deleteAll(id);
				
				drawBox(id, 0, 0);
				
			} else {
				if (nodeMap.get(id) == null)
					nodeMap.put(id, getNodeData(id).makeNode(this));
				deleteAll(id);
				drawBox(id, 0, 0);

			}
		}
		
		
		//-------------Draw aggregate
		else if (draw_mode == CONSTANT_DRAWMODE_AGGREGATE) {
			rootVisibleNodeNumber = getFirstUsefulNode();
			deleteAll(-1);
			drawAggregateView();
		}
		
		if (getNode(id) != null)
			getNode(id).unhighlight();
		clearSelection();
	
		//AFTER FIRST LOADING LET THE GRAPH EXPAND TO FILL THE VIEW
		this.setLayoutData(new GridData(SWT.FILL,SWT.FILL,true,true));
	}
	
	
	
	/**
	 * Unhighlights all selected nodes and sets selection to null
	 */
	public void clearSelection() {
		List<GraphNode> list = this.getSelection();
		
		for (GraphNode n : list) {
			if (n != null) n.unhighlight();
		}
		this.setSelection(null);
		
	}

	/*
	 * THE FOLLOWING METHODS ARE NOT WELL TESTED
	 * 
	 * Some are not thoroughly tested, and some just plain don't work. Use at your peril!
	 */

	/**
	 * Shift the given node to the given location, moving all children nodes
	 * accordingly
	 * 
	 * 
	 * @param id
	 * @param x
	 * @param y
	 */
	public void moveRecursive(int id, int xTarget, int yTarget) {
		if (nodeMap.get(id) != null) {
			int x = nodeMap.get(id).getLocation().x;
			int y = nodeMap.get(id).getLocation().y;
			nodeMap.get(id).setLocation(x + xTarget, y + yTarget);
		}
		//If a node is null, then its children must be null
		else
			return;

		List<Integer> list = null;
		
		if (collapse_mode)
			list = nodeDataMap.get(id).collapsedChildren;
		else
			list = nodeDataMap.get(id).children;
		for (int i = 0; i < list.size(); i++) {
			moveRecursive(list.get(i), xTarget, yTarget);
		}
	}
	
	
	/**
	 * Moves all nodes by the given amount. Adds xDiff, yDiff to the current x,y coordinates.
	 * 
	 * Currently unused.
	 */
	public void moveAllNodesBy(int xDiff, int yDiff) {
		for (int id : nodeMap.keySet()) {
			if (nodeMap.get(id) == null) continue;
			
			int x = nodeMap.get(id).getLocation().x;
			int y = nodeMap.get(id).getLocation().y;
			getNode(id).setLocation(x + xDiff, y + yDiff);
		}
	}
	


	/**
	 * Recursively collapses all children of node id, and puts them in the
	 * collapsedCallees list of id.
	 * 
	 * At the end of this run, each collapsed node will have a list of other
	 * collapsed nodes AND a list of non-collapsed nodes. So will node #id.
	 * 
	 * Uncollapsed nodes, however, will not have a list of collapsed nodes attached. 
	 * 
	 * @param ID of node to start from (use getFirstUsefulNode() to collapse everything
	 * @return True if successful
	 */
	public boolean recursivelyCollapseAllChildrenOfNode(int id) {
		//-------------Initialize
		//If all nodes have been collapsed, don't do anything
		setCollapseMode(true);

		if (nodeDataMap.get(id).children.size() == 0)
			return true;
		nodeDataMap.get(id).hasCollapsedChildren = true;

		
		
		// Name, id
		HashMap<String, Integer> newNodeMap = new HashMap<String, Integer>();
		
		for (int collapsedID : nodeDataMap.get(id).collapsedChildren) {
			newNodeMap.put(getNodeData(collapsedID).name, collapsedID);
		}
		// id of 'collapsed' node, id of its uncollapsed twin
		HashMap<Integer, Integer> collapsedNodesWithOnlyOneNodeInThem = new HashMap<Integer, Integer>();
		int size = nodeDataMap.get(id).children.size();
		
		
		
		//-------------Iterate
		for (int i = 0; i < size; i++) {

			int childID = nodeDataMap.get(id).children.get(i);
			if (getNodeData(childID).isPartOfCollapsedNode())
				continue;
			int childLevel = getLevelOfNode(childID);
			if (collapsedLevelSize.get(childLevel) == null)
				collapsedLevelSize.put(childLevel, 0);
			String nodeName = nodeDataMap.get(childID).name;

			/*
			 * Aggregate data for the given node
			 */
			if (newNodeMap.get(nodeName) != null) {
				int aggregateID = newNodeMap.get(nodeName);

				if (collapsedNodesWithOnlyOneNodeInThem.get(aggregateID) != null) {
					
					//-------------Aggregate nodes - second node to be found
					// We still think this is an only child, but now we know better.
					// Create a new data node and aggregate
					this.loadData(SWT.NONE, aggregateID, nodeName, nodeDataMap
							.get(childID).getTime(), nodeDataMap.get(childID).timesCalled,
							id, nodeDataMap.get(childID).isMarked(), ""); //$NON-NLS-1$
					
					if (getNodeData(aggregateID).isMarked()) {
						markedCollapsedNodes.add(aggregateID);
						markedNodes.remove((Integer) aggregateID);
					}
					
					nodeDataMap.get(id).children.remove((Integer) aggregateID);
					nodeDataMap.get(id).collapsedChildren.add(aggregateID);
					nodeDataMap.get(childID).setPartOfCollapsedNode(aggregateID);

					nodeDataMap.get(aggregateID).collapsedParent = id;

					// Aggregate the first node that we found, and set it
					// as the uncollapsed piece of the aggregate node
					int otherChildID = collapsedNodesWithOnlyOneNodeInThem
							.get(aggregateID);
					aggregateData(nodeDataMap.get(aggregateID), nodeDataMap
							.get(otherChildID));
					collapsedNodesWithOnlyOneNodeInThem.remove(aggregateID);
					nodeDataMap.get(aggregateID).children.addAll(nodeDataMap
							.get(otherChildID).children);
					nodeDataMap.get(aggregateID).setPartOfCollapsedNode(StapData.NOT_PART_OF_COLLAPSED_NODE);

					nodeDataMap.get(otherChildID).setPartOfCollapsedNode(aggregateID);
					nodeDataMap.get(aggregateID).uncollapsedPiece = otherChildID;

				} else 
					//-------------Aggregate - third and additional nodes
					aggregateData(nodeDataMap.get(aggregateID), nodeDataMap
							.get(childID));

				
				//-------------Complete aggregation
				nodeDataMap.get(aggregateID).children
						.addAll(nodeDataMap.get(childID).children);
				nodeDataMap.get(aggregateID).isCollapsed = true;

				if (nodeMap.get(childID) != null) {
					nodeMap.get(childID).setLocation(
							nodeMap.get(id).getLocation().x
									- nodeMap.get(id).getSize().width,
							nodeMap.get(id).getLocation().y);
				}

				nodeDataMap.get(childID).setPartOfCollapsedNode(aggregateID);
			} else {
				//-------------First child with this name
				
				idOfLastCollapsedNode--;
				newNodeMap.put(nodeName, idOfLastCollapsedNode);
				collapsedNodesWithOnlyOneNodeInThem.put(idOfLastCollapsedNode, childID);
				if (nodeMap.get(childID) != null) {
					nodeMap.get(childID).setLocation(
							nodeMap.get(id).getLocation().x,
							nodeMap.get(id).getLocation().y);
				}

				int tmp = collapsedLevelSize.get(childLevel) + 1;
				collapsedLevelSize.put(childLevel, tmp);
			}
		}

		//-------------Handle nodes that only appeared once
		for (int i : collapsedNodesWithOnlyOneNodeInThem.keySet()) {
			int childID =collapsedNodesWithOnlyOneNodeInThem.get(i); 
			nodeDataMap.get(childID).onlyChildWithThisName = true;
			nodeDataMap.get(id).collapsedChildren.add(childID);
			newNodeMap.remove(nodeDataMap.get(childID).name);
			nodeDataMap.get(childID).collapsedParent = id;
			//This node is technically a part of itself
			nodeDataMap.get(childID).setPartOfCollapsedNode(childID);
			
			if (getNodeData(childID).isMarked())
				markedCollapsedNodes.add(childID);
		}


		
		//-------------Finish iterations
		for (int i : nodeDataMap.get(id).collapsedChildren) {
			recursivelyCollapseAllChildrenOfNode(i);
		}

		collapsedNodesWithOnlyOneNodeInThem.clear();
		newNodeMap.clear();

		nodeDataMap.get(id).hasCollapsedChildren = true;
		return true;
	}

	/**
	 * Add time, called values for the two given nodes, storing them inside
	 * victim. Also adds marked collapsed nodes to markedCollapsedNodes list
	 * @param target
	 * @param victim
	 */
	public void aggregateData(StapData target, StapData victim) {
		target.setTime(target.getTime()+ victim.getTime());
		target.timesCalled += victim.timesCalled;
		if (victim.isMarked() || target.isMarked()) {
			target.setMarked();
			markedCollapsedNodes.add(target.id);
		}
	}

	/*
	 * Convenience methods
	 */

	/**
	 * Prints the name of every node on the given level
	 * @param level
	 */
	public void printContents(int level) {
		if (levels.get(level) != null)
			return;
		MP.println("Contents of level " + level + ":\n"); //$NON-NLS-1$ //$NON-NLS-2$
		for (int i = 0; i < levels.get(level).size(); i++) {
			MP.println(nodeDataMap.get(levels.get(level).get(i)).name);
		}
		MP.println("---------------------------"); //$NON-NLS-1$
	}

	/**
	 * 
	 * @param id of node
	 * @return StapNode
	 */
	public StapNode getNode(int id) {
		return nodeMap.get(id);
	}

	/**
	 * 
	 * @param id of node
	 * @return StapData 
	 */
	public StapData getNodeData(int id) {
		return nodeDataMap.get(id);
	}

	/**
	 * Recommend using getFirstUsefulNode instead.
	 * @return First node in level 0
	 */
	public int getTopNode() {
		return levels.get(topLevelToDraw).get(0);
	}
	
	/**
	 * Recommend use of this function instead of getTopNode()
	 * @return First node that is not the dummy first node
	 */
	public int getFirstUsefulNode() {
		if (threaded)
			return 0;
		int id = 0;
		
		if (nodeDataMap.get(id).name == CONSTANT_TOP_NODE_NAME) {
			id++;
		}

		// Get first node that is not TOP_NODE_NAME
		while (nodeDataMap.get(id) == null && id < idOfLastNode) {
			id++;
		}

		return id;
	}

	/**
	 * 
	 * @return Top level to draw - the level should be defined by draw algorithms 
	 */
	public int getTopLevel() {
		return topLevelToDraw;
	}

	/**
	 * Returns the level of recursion associated with the given node.
	 * @param nodeID 
	 * @return
	 */
	public int getLevelOfNode(int nodeID) {
		return nodeDataMap.get(nodeID).levelOfRecursion;
	}

	/**
	 * Returns true if the given node has any children.
	 * @param nodeID
	 * @return
	 */
	public boolean hasChildren(int nodeID) {
		if (nodeDataMap.get(nodeID).children.size() > 0)
			return true;
		return false;
	}

	/**
	 * Attempts to set dimensions (not used)
	 * @param width
	 * @param height
	 */
	public void setDimensions(int width, int height) {
		this.getBounds().width = width;
		this.getBounds().height = height;
	}
	
	/**
	 * Sets animation mode - all available modes are named 
	 * StapGraph.CONSTANT_ANIMATION_*
	 * @param mode
	 */
	public void setAnimationMode(int mode) {
		animation_mode = mode;
		if (mode == CONSTANT_ANIMATION_SLOW){
			callgraphView.getAnimation_slow().setChecked(true);
			callgraphView.getAnimation_fast().setChecked(false);
		}else if (mode == CONSTANT_ANIMATION_FASTEST){
			callgraphView.getAnimation_slow().setChecked(false);
			callgraphView.getAnimation_fast().setChecked(true);			
		}
	}
	
	public void setCollapseMode(boolean value) {
		if (collapse_mode == value || 
				draw_mode == StapGraph.CONSTANT_DRAWMODE_AGGREGATE)
			return;
		
		if (draw_mode != StapGraph.CONSTANT_DRAWMODE_LEVEL) {
			if (collapse_mode) {
				//Collapsed to noncollapsed
				if (!getRootData().isOnlyChildWithThisName()) {
					//A collapsed node that isn't an only child must have an
					//uncollapsed piece
					rootVisibleNodeNumber = getRootData().uncollapsedPiece;
				}
	
			} else {
				//Uncollapsed to collapsed -- set center node to collapsed node
				if (!getRootData().isOnlyChildWithThisName()) {
					int temp = getRootData().getPartOfCollapsedNode();
					if (temp != StapData.NOT_PART_OF_COLLAPSED_NODE) {
						rootVisibleNodeNumber = temp;
					}
				}
			}
		}
		collapse_mode = value;
		callgraphView.getMode_collapsednodes().setChecked(value);
		nextMarkedNode = -1;
	}

	/**
	 * 
	 * @return getNodeData(getRootVisibleNodeNumber())
	 */
	public StapData getRootData() {
		return getNodeData(getRootVisibleNodeNumber());
	}
	
	/**
	 * Gets id of root visible node
	 * @return rootVisibleNode - ID of centre node
	 */
	public int getRootVisibleNodeNumber() {
		return rootVisibleNodeNumber;
	}

	/**
	 * Sets id of root visible node
	 * @param id - ID of centre node
	 */
	public void setRootVisibleNodeNumber(int id) {
		this.rootVisibleNodeNumber = id;
	}

	/**
	 * Gets to the total time spent running tapped program
	 * @return Time in milliseconds
	 */
	public long getTotalTime() {
		if (totalTime == 0 || totalTime > 1200000000000000000l)
			return endTime - startTime;
		return totalTime;
	}

	/**
	 * Sets total time spent running tapped program
	 * @param totalTime - Time in milliseconds
	 */
	public void setTotalTime(long val) {
		this.totalTime = val;
	}

	/**
	 * 
	 * @return Number of the lowest level in which nodes exist
	 */
	public int getLowestLevelOfNodesAdded() {
		return lowestLevelOfNodesAdded;
	}

	/**
	 * Set lowest level to which nodes have been added
	 * 
	 * WARNING: Do not set this without adding nodes to that level first, or there
	 * may be null pointer exceptions.
	 * @param lowestLevelOfNodesAdded
	 */
	public void setLowestLevelOfNodesAdded(int lowestLevelOfNodesAdded) {
		this.lowestLevelOfNodesAdded = lowestLevelOfNodesAdded;
	}
	
	
	public int getDrawMode() {
		return draw_mode;
	}

	public void setDrawMode(int draw_mode) {
		this.draw_mode = draw_mode;
	}

	/**
	 * Resets the tree and graph to center on the first useful node.
	 * Does NOT change draw mode, animation mode or collapse mode.
	 */
	public void reset() {
		setSelection(null);
		
		draw(draw_mode, animation_mode, getFirstUsefulNode());
		if (! (draw_mode == StapGraph.CONSTANT_DRAWMODE_AGGREGATE)){
			getNode(getFirstUsefulNode()).unhighlight();			
		}
		if (treeViewer!=null) {
			treeViewer.collapseAll();
			treeViewer.expandToLevel(2);
		}
		scale = 1;
		nextMarkedNode = -1;
	}
	
	
	public boolean isCollapseMode() {
		return this.collapse_mode;
	}


	public void setBottomLevelToDraw(int bottomLevelToDraw) {
		this.bottomLevelToDraw = bottomLevelToDraw;
	}


	public int getBottomLevelToDraw() {
		return bottomLevelToDraw;
	}


	public void setTopLevelOnScreen(int topLevelOnScreen) {
		this.topLevelOnScreen = topLevelOnScreen;
	}


	public int getTopLevelOnScreen() {
		return topLevelOnScreen;
	}
	

	/**
	 * Returns a list of all nodes at the given level.
	 * 
	 * @param level
	 * @return List of ID's of all nodes at the given level.
	 */
	public List<Integer> getLevel(int level) {
		if (level < 0 || level > lowestLevelOfNodesAdded) {
			return null;
		}
		
		return levels.get(level); 
	}


	public TreeViewer getTreeViewer() {
		return treeViewer;
	}
	
	
	/**
	 * Returns the StapNode object for the parent of node id. May be null. 
	 * @param id
	 * @return
	 */
	public StapNode getParentNode(int id) {
		return nodeMap.get(nodeDataMap.get(id).parent);
	}
	
	
	/**
	 * Returns a StapData object for the parent of node id. May be null. 
	 * @param id
	 * @return
	 */
	public StapData getParentData(int id) {
		return nodeDataMap.get(nodeDataMap.get(id).parent);
	}
	
	/**
	 * Returns the id of the next node that was called. This is necessarily either a
	 * child of the current root node or of one of its ancestors' children.
	 * 
	 * @param id
	 * @return Id of next node that was called.
	 */
	public int getNextCalledNode(int id) {
		int returnID = -1;
		
		if (isCollapseMode()) {
			setCollapseMode(false);
			//Redraw the current graph in uncollapsed mode if currently collapsed
			draw();
		}
		
		for (int count = callOrderList.indexOf(id) + 1;
			count < callOrderList.size(); count++) {
			int next = callOrderList.get(count);
			if (getNodeData(id) == null)
				continue;
			if (!getNodeData(next).isCollapsed || getNodeData(next).isOnlyChildWithThisName()) {
				return next;
			}
		}
		
		
		return returnID;
	}
	
	/**
	 * Returns the id of the previous node that was called.
	 * 
	 * @param id
	 * @return Id of previous node that was called.
	 */
	public int getPreviousCalledNode(int id) {
		int returnID = -1;
		
		for (int count = callOrderList.indexOf(id) - 1;
			count > -1; count--) {
			if (getNodeData(id) == null)
				continue;
			if (!getNodeData(id).isCollapsed || getNodeData(id).isOnlyChildWithThisName()) {
				returnID = callOrderList.get(count);
				return returnID;
			}
		}
		
		
		return returnID;
	}
	
	

	/**
	 * Returns the id of the next marked node in current collapse mode. 
	 * Wraps back to the first marked node.
	 * 
	 * @return Node id of next marked node.
	 */
	public int getNextMarkedNode() {
		List<Integer> list = markedNodes;
		if (collapse_mode)
			list = markedCollapsedNodes;
		
		if (list.size() == 0)
			return -1;
		
		
		nextMarkedNode++;
		if (nextMarkedNode >= list.size())
			nextMarkedNode = 0;
		
		
		return list.get(nextMarkedNode);
	}
	
	
	/**
	 * Returns the id of the next marked node in current collapse mode. 
	 * Wraps back to the first marked node.
	 * 
	 * @return Node id of next marked node.
	 */
	public int getPreviousMarkedNode() {
		List<Integer> list = markedNodes;
		if (collapse_mode)
			list = markedCollapsedNodes;
		
		if (list.size() == 0)
			return -1;
		
		nextMarkedNode--;
		if (nextMarkedNode < 0)
			nextMarkedNode = list.size() - 1;
		
		
		return list.get(nextMarkedNode);
	}
	
	
	public void play() {
		if (proj == null || proj.getResult() == Status.OK_STATUS) {
			proj = new Projectionist("Projectionist", this, 2000);  //$NON-NLS-1$
			proj.schedule();
		} else {
			proj.pause();
		}
	}

	
	
	public static final Comparator<Entry<String, Long>> VALUE_ORDER = new Comparator<Entry<String, Long>>()
    {
        @Override
		public int compare(Entry<String, Long> a, Entry<String, Long> b){
        	return a.getValue().compareTo((b.getValue()));
        }
    };

	
    /**
     * Increments the scrollbars by x, y
     * 
     * @param x
     * @param y
     */
    public void scrollBy(int x, int y) {
    	this.scrollTo(this.getHorizontalBar().getSelection() + x, 
    			this.getVerticalBar().getSelection() + y);
    }
    
    
    /**
     * Smoothly increments the scrollbars by x, y
     * 
     * @param x
     * @param y
     */
    public void scrollSmoothBy(int x, int y) {
    	this.scrollSmoothTo(this.getHorizontalBar().getSelection() + x, 
    			this.getVerticalBar().getSelection() + y);
    }
    
    /**
     * Retruns the number of StapData objects placed in the nodeDataMap.
     * @return
     */
    public int getNodeDataMapSize() {
    	return nodeDataMap.size();
    }
    
	
	public int getAnimationMode() {
		return animation_mode;
	}


	public int getLevelBuffer() {
		return levelBuffer;
	}


	public void setLevelBuffer(int val) {
		levelBuffer = val;
	}
	
	public int min(int a, int b) {
		if (a < b) return a;
		return b;
	}

	public int max(int a, int b) {
		if (a > b) return a;
		return b;
	}

	public int getMaxNodes() {
		return maxNodes;
	}

	public void setMaxNodes(int val) {
		maxNodes = val;
	}

	public ArrayList<Integer> getCallOrderList() {
		return callOrderList;
	}

	public void setCallOrderList(ArrayList<Integer> callOrderList) {
		this.callOrderList = callOrderList;
	}

	public int getLastFunctionCalled() {
		return lastFunctionCalled;
	}

	public void setLastFunctionCalled(int lastFunctionCalled) {
		this.lastFunctionCalled = lastFunctionCalled;
	}

	public ICProject getProject() {
		return project;
	}

	public Projectionist getProjectionist() {
		return proj;
	}

	public void setProject(ICProject myProject) {
		this.project = myProject;
	}
	
	public CallgraphView getCallgraphView() {
		return callgraphView;
	}

	public void setEndTime(long val) {
		endTime = val;
	}
	
	public long getEndTime() {
		return endTime;
	}

	public void setStartTime(long val) {
		startTime = val;		
	}

	public void setThreaded() {
		threaded = true;		
	}
	
	public boolean getCollapseMode() {
		return collapse_mode;
	}



	public void addCalled(int idChild) {
		getNodeData(idChild).timesCalled++;
	}
}

Back to the top