ctf: Don't include all test traces in jar
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / internal / tmf / core / statesystem / backends / historytree / HistoryTreeBackend.java
CommitLineData
a52fde77 1/*******************************************************************************
60ae41e1 2 * Copyright (c) 2012, 2014 Ericsson
a52fde77
AM
3 * Copyright (c) 2010, 2011 École Polytechnique de Montréal
4 * Copyright (c) 2010, 2011 Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
5df842b3 5 *
a52fde77
AM
6 * All rights reserved. This program and the accompanying materials are
7 * made available under the terms of the Eclipse Public License v1.0 which
8 * accompanies this distribution, and is available at
9 * http://www.eclipse.org/legal/epl-v10.html
5df842b3 10 *
a52fde77
AM
11 *******************************************************************************/
12
f9a76cac 13package org.eclipse.linuxtools.internal.tmf.core.statesystem.backends.historytree;
a52fde77
AM
14
15import java.io.File;
16import java.io.FileInputStream;
17import java.io.IOException;
18import java.io.PrintWriter;
3b7f5abe 19import java.nio.channels.ClosedChannelException;
a52fde77
AM
20import java.util.List;
21
f9a76cac 22import org.eclipse.linuxtools.internal.tmf.core.statesystem.backends.IStateHistoryBackend;
3b7f5abe 23import org.eclipse.linuxtools.tmf.core.exceptions.StateSystemDisposedException;
6d08acca 24import org.eclipse.linuxtools.tmf.core.exceptions.TimeRangeException;
a52fde77 25import org.eclipse.linuxtools.tmf.core.interval.ITmfStateInterval;
a52fde77
AM
26import org.eclipse.linuxtools.tmf.core.statevalue.ITmfStateValue;
27import org.eclipse.linuxtools.tmf.core.statevalue.TmfStateValue;
28
29/**
30 * History Tree backend for storing a state history. This is the basic version
31 * that runs in the same thread as the class creating it.
5df842b3 32 *
360f899e 33 * @author Alexandre Montplaisir
5df842b3 34 *
a52fde77
AM
35 */
36public class HistoryTreeBackend implements IStateHistoryBackend {
37
6f4e8ec0 38 /** The history tree that sits underneath */
a52fde77 39 protected final HistoryTree sht;
6f4e8ec0 40
1a4205d9
AM
41 /** Indicates if the history tree construction is done */
42 protected boolean isFinishedBuilding = false;
43
a52fde77 44 /**
7453b40e 45 * Constructor for new history files. Use this when creating a new history
a52fde77 46 * from scratch.
5df842b3 47 *
a52fde77
AM
48 * @param newStateFile
49 * The filename/location where to store the state history (Should
50 * end in .ht)
51 * @param blockSize
52 * The size of the blocks in the history file. This should be a
53 * multiple of 4096.
54 * @param maxChildren
55 * The maximum number of children each core node can have
a96cc6be
AM
56 * @param providerVersion
57 * Version of of the state provider. We will only try to reopen
58 * existing files if this version matches the one in the
59 * framework.
a52fde77
AM
60 * @param startTime
61 * The earliest time stamp that will be stored in the history
62 * @throws IOException
63 * Thrown if we can't create the file for some reason
64 */
65 public HistoryTreeBackend(File newStateFile, int blockSize,
a96cc6be
AM
66 int maxChildren, int providerVersion, long startTime) throws IOException {
67 final HTConfig conf = new HTConfig(newStateFile, blockSize, maxChildren,
68 providerVersion, startTime);
7453b40e 69 sht = new HistoryTree(conf);
a52fde77
AM
70 }
71
72 /**
7453b40e 73 * Constructor for new history files. Use this when creating a new history
a52fde77
AM
74 * from scratch. This version supplies sane defaults for the configuration
75 * parameters.
5df842b3 76 *
a52fde77
AM
77 * @param newStateFile
78 * The filename/location where to store the state history (Should
79 * end in .ht)
a96cc6be
AM
80 * @param providerVersion
81 * Version of of the state provider. We will only try to reopen
82 * existing files if this version matches the one in the
83 * framework.
a52fde77
AM
84 * @param startTime
85 * The earliest time stamp that will be stored in the history
86 * @throws IOException
87 * Thrown if we can't create the file for some reason
88 */
a96cc6be 89 public HistoryTreeBackend(File newStateFile, int providerVersion, long startTime)
a52fde77 90 throws IOException {
a96cc6be 91 this(newStateFile, 64 * 1024, 50, providerVersion, startTime);
a52fde77
AM
92 }
93
94 /**
95 * Existing history constructor. Use this to open an existing state-file.
5df842b3 96 *
0d9a6d76 97 * @param existingStateFile
b255ae4b 98 * Filename/location of the history we want to load
a96cc6be
AM
99 * @param providerVersion
100 * Expected version of of the state provider plugin.
b255ae4b 101 * @throws IOException
a96cc6be
AM
102 * If we can't read the file, if it doesn't exist, is not
103 * recognized, or if the version of the file does not match the
104 * expected providerVersion.
a52fde77 105 */
a96cc6be
AM
106 public HistoryTreeBackend(File existingStateFile, int providerVersion)
107 throws IOException {
108 sht = new HistoryTree(existingStateFile, providerVersion);
1a4205d9 109 isFinishedBuilding = true;
a52fde77
AM
110 }
111
112 @Override
113 public long getStartTime() {
114 return sht.getTreeStart();
115 }
116
117 @Override
118 public long getEndTime() {
119 return sht.getTreeEnd();
120 }
121
122 @Override
123 public void insertPastState(long stateStartTime, long stateEndTime,
124 int quark, ITmfStateValue value) throws TimeRangeException {
125 HTInterval interval = new HTInterval(stateStartTime, stateEndTime,
126 quark, (TmfStateValue) value);
127
128 /* Start insertions at the "latest leaf" */
129 sht.insertInterval(interval);
130 }
131
132 @Override
b33c7369 133 public void finishedBuilding(long endTime) {
6a1074ce 134 sht.closeTree(endTime);
1a4205d9 135 isFinishedBuilding = true;
a52fde77
AM
136 }
137
138 @Override
139 public FileInputStream supplyAttributeTreeReader() {
360f899e 140 return sht.supplyATReader();
a52fde77
AM
141 }
142
143 @Override
144 public File supplyAttributeTreeWriterFile() {
360f899e 145 return sht.supplyATWriterFile();
a52fde77
AM
146 }
147
148 @Override
149 public long supplyAttributeTreeWriterFilePosition() {
360f899e 150 return sht.supplyATWriterFilePos();
a52fde77
AM
151 }
152
36bf82a2
AM
153 @Override
154 public void removeFiles() {
360f899e 155 sht.deleteFile();
36bf82a2
AM
156 }
157
1a4205d9
AM
158 @Override
159 public void dispose() {
160 if (isFinishedBuilding) {
360f899e 161 sht.closeFile();
1a4205d9
AM
162 } else {
163 /*
164 * The build is being interrupted, delete the file we partially
165 * built since it won't be complete, so shouldn't be re-used in the
166 * future (.deleteFile() will close the file first)
167 */
360f899e 168 sht.deleteFile();
1a4205d9
AM
169 }
170 }
171
a52fde77
AM
172 @Override
173 public void doQuery(List<ITmfStateInterval> stateInfo, long t)
3b7f5abe 174 throws TimeRangeException, StateSystemDisposedException {
a52fde77
AM
175 if (!checkValidTime(t)) {
176 /* We can't possibly have information about this query */
177 throw new TimeRangeException();
178 }
179
180 /* We start by reading the information in the root node */
bb7f92ce 181 HTNode currentNode = sht.getRootNode();
a52fde77
AM
182 currentNode.writeInfoFromNode(stateInfo, t);
183
184 /* Then we follow the branch down in the relevant children */
3b7f5abe 185 try {
bb7f92ce
FW
186 while (currentNode.getNodeType() == HTNode.NodeType.CORE) {
187 currentNode = sht.selectNextChild((CoreNode) currentNode, t);
3b7f5abe
AM
188 currentNode.writeInfoFromNode(stateInfo, t);
189 }
190 } catch (ClosedChannelException e) {
cb42195c 191 throw new StateSystemDisposedException(e);
a52fde77
AM
192 }
193
194 /*
195 * The stateInfo should now be filled with everything needed, we pass
196 * the control back to the State System.
197 */
198 return;
199 }
200
201 @Override
202 public ITmfStateInterval doSingularQuery(long t, int attributeQuark)
3b7f5abe 203 throws TimeRangeException, StateSystemDisposedException {
a52fde77
AM
204 return getRelevantInterval(t, attributeQuark);
205 }
206
b255ae4b
AM
207 @Override
208 public boolean checkValidTime(long t) {
a52fde77
AM
209 return (t >= sht.getTreeStart() && t <= sht.getTreeEnd());
210 }
211
212 /**
213 * Inner method to find the interval in the tree containing the requested
214 * key/timestamp pair, wherever in which node it is.
5df842b3 215 *
a52fde77
AM
216 * @param t
217 * @param key
218 * @return The node containing the information we want
219 */
220 private HTInterval getRelevantInterval(long t, int key)
3b7f5abe 221 throws TimeRangeException, StateSystemDisposedException {
a52fde77
AM
222 if (!checkValidTime(t)) {
223 throw new TimeRangeException();
224 }
225
bb7f92ce 226 HTNode currentNode = sht.getRootNode();
a52fde77
AM
227 HTInterval interval = currentNode.getRelevantInterval(key, t);
228
3b7f5abe 229 try {
bb7f92ce
FW
230 while (interval == null && currentNode.getNodeType() == HTNode.NodeType.CORE) {
231 currentNode = sht.selectNextChild((CoreNode)currentNode, t);
3b7f5abe
AM
232 interval = currentNode.getRelevantInterval(key, t);
233 }
234 } catch (ClosedChannelException e) {
cb42195c 235 throw new StateSystemDisposedException(e);
a52fde77
AM
236 }
237 /*
238 * Since we should now have intervals at every attribute/timestamp
239 * combination, it should NOT be null here.
240 */
241 assert (interval != null);
242 return interval;
243 }
244
245 /**
246 * Return the size of the tree history file
5df842b3 247 *
a52fde77
AM
248 * @return The current size of the history file in bytes
249 */
250 public long getFileSize() {
251 return sht.getFileSize();
252 }
253
a52fde77
AM
254 /**
255 * Return the average node usage as a percentage (between 0 and 100)
5df842b3 256 *
a52fde77
AM
257 * @return Average node usage %
258 */
259 public int getAverageNodeUsage() {
260 HTNode node;
261 long total = 0;
262 long ret;
263
3b7f5abe
AM
264 try {
265 for (int seq = 0; seq < sht.getNodeCount(); seq++) {
360f899e 266 node = sht.readNode(seq);
8d47cc34 267 total += node.getNodeUsagePercent();
3b7f5abe
AM
268 }
269 } catch (ClosedChannelException e) {
270 e.printStackTrace();
a52fde77
AM
271 }
272
273 ret = total / sht.getNodeCount();
274 assert (ret >= 0 && ret <= 100);
275 return (int) ret;
276 }
277
278 @Override
279 public void debugPrint(PrintWriter writer) {
280 /* By default don't print out all the intervals */
281 this.debugPrint(writer, false);
282 }
283
284 /**
b255ae4b
AM
285 * The basic debugPrint method will print the tree structure, but not their
286 * contents.
5df842b3 287 *
a52fde77 288 * This method here print the contents (the intervals) as well.
5df842b3 289 *
a52fde77 290 * @param writer
5df842b3 291 * The PrintWriter to which the debug info will be written
a52fde77 292 * @param printIntervals
5df842b3 293 * Should we also print every contained interval individually?
a52fde77
AM
294 */
295 public void debugPrint(PrintWriter writer, boolean printIntervals) {
296 /* Only used for debugging, shouldn't be externalized */
297 writer.println("------------------------------"); //$NON-NLS-1$
298 writer.println("State History Tree:\n"); //$NON-NLS-1$
299 writer.println(sht.toString());
300 writer.println("Average node utilization: " //$NON-NLS-1$
301 + this.getAverageNodeUsage());
302 writer.println(""); //$NON-NLS-1$
303
304 sht.debugPrintFullTree(writer, printIntervals);
305 }
306}
This page took 0.058953 seconds and 5 git commands to generate.