tmf: Add some unit tests to the ITmfStatistics
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / internal / tmf / core / statesystem / IStateHistoryBackend.java
CommitLineData
a52fde77
AM
1/*******************************************************************************
2 * Copyright (c) 2012 Ericsson
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
2ab9afbc 13package org.eclipse.linuxtools.internal.tmf.core.statesystem;
a52fde77
AM
14
15import java.io.File;
16import java.io.FileInputStream;
17import java.io.PrintWriter;
18import java.util.List;
19
6d08acca
AM
20import org.eclipse.linuxtools.tmf.core.exceptions.AttributeNotFoundException;
21import org.eclipse.linuxtools.tmf.core.exceptions.TimeRangeException;
a52fde77 22import org.eclipse.linuxtools.tmf.core.interval.ITmfStateInterval;
a52fde77
AM
23import org.eclipse.linuxtools.tmf.core.statevalue.ITmfStateValue;
24
25/**
26 * The main difference between StateSystem and StateHistorySystem is that SHS
27 * allows 'seeking' back in time to reload a Current State at a previous time.
28 * "How to go back in time" is defined by the implementation of the
29 * HistoryBackend.
5df842b3 30 *
a52fde77
AM
31 * A StateHistorySystem contains one and only one HistoryBackend. If you want to
32 * use a paradigm with more than one provider (eg. more or less precision
33 * depending on what's asked by the user), implement one wrapper HistoryBackend
34 * which can then contain your 2-3 other backends underneath.
5df842b3 35 *
a52fde77 36 * @author alexmont
5df842b3 37 *
a52fde77
AM
38 */
39public interface IStateHistoryBackend {
40
41 /**
42 * Get the start time of this state history. This is usually the same as the
43 * start time of the originating trace.
5df842b3 44 *
a52fde77
AM
45 * @return The start time
46 */
47 public long getStartTime();
48
49 /**
50 * Get the current end time of the state history. It will change as the
51 * history is being built.
5df842b3 52 *
a52fde77
AM
53 * @return The end time
54 */
55 public long getEndTime();
56
57 /**
58 * Main method to insert state intervals into the history.
5df842b3 59 *
a52fde77
AM
60 * @param stateStartTime
61 * The start time of the interval
62 * @param stateEndTime
63 * The end time of the interval
64 * @param quark
65 * The quark of the attribute this interval refers to
66 * @param value
67 * The StateValue represented by this interval
68 * @throws TimeRangeException
69 * If the start or end time are invalid
70 */
71 // FIXME change to IStateInterval?
72 public void insertPastState(long stateStartTime, long stateEndTime,
73 int quark, ITmfStateValue value) throws TimeRangeException;
74
75 /**
76 * Indicate to the provider that we are done building the history (so it can
77 * close off, stop threads, etc.)
5df842b3 78 *
a52fde77
AM
79 * @param endTime
80 * The end time to assign to this state history. It could be
81 * farther in time than the last state inserted, for example.
82 * @throws TimeRangeException
83 * If the requested time makes no sense.
84 */
85 public void finishedBuilding(long endTime) throws TimeRangeException;
86
87 /**
88 * It is the responsibility of the backend to define where to save the
89 * Attribute Tree (since it's only useful to "reopen" an Attribute Tree if
90 * we have the matching History).
5df842b3 91 *
a52fde77
AM
92 * This method defines where to read for the attribute tree when opening an
93 * already-existing history. Refer to the file format documentation.
5df842b3 94 *
a52fde77
AM
95 * @return A FileInputStream object pointing to the correct file/location in
96 * the file where to read the attribute tree information.
97 */
98 public FileInputStream supplyAttributeTreeReader();
99
100 // FIXME change to FOS too?
5df842b3
AM
101 /**
102 * Supply the File object to which we will write the attribute tree. The
103 * position in this file is supplied by -TreeWriterFilePosition.
104 *
105 * @return The target File
106 */
a52fde77
AM
107 public File supplyAttributeTreeWriterFile();
108
5df842b3
AM
109 /**
110 * Supply the position in the file where we should write the attribute tree
111 * when asked to.
112 *
113 * @return The file position (we will seek() to it)
114 */
a52fde77
AM
115 public long supplyAttributeTreeWriterFilePosition();
116
36bf82a2
AM
117 /**
118 * Delete any generated files or anything that might have been created by
119 * the history backend (either temporary or save files). By calling this, we
120 * return to the state as it was before ever building the history.
5df842b3 121 *
36bf82a2
AM
122 * You might not want to call automatically if, for example, you want an
123 * index file to persist on disk. This could be limited to actions
124 * originating from the user.
125 */
126 public void removeFiles();
127
a52fde77
AM
128 /**
129 * @name Query methods
130 */
131
132 /**
133 * Complete "give me the state at a given time" method 'currentStateInfo' is
134 * an "out" parameter, that is, write to it the needed information and
135 * return. DO NOT 'new' currentStateInfo, it will be lost and nothing will
136 * be returned!
5df842b3 137 *
a52fde77
AM
138 * @param currentStateInfo
139 * List of StateValues (index == quark) to fill up
140 * @param t
141 * Target timestamp of the query
5df842b3
AM
142 * @throws TimeRangeException
143 * If the timestamp is outside of the history/trace
a52fde77
AM
144 */
145 public void doQuery(List<ITmfStateInterval> currentStateInfo, long t)
146 throws TimeRangeException;
147
148 /**
149 * Some providers might want to specify a different way to obtain just a
150 * single StateValue instead of updating the whole list. If the method to
151 * use is the same, then feel free to just implement this as a wrapper using
152 * doQuery().
5df842b3 153 *
a52fde77
AM
154 * @param t
155 * The target timestamp of the query.
156 * @param attributeQuark
157 * The single attribute for which you want the state interval
158 * @return The state interval matching this timestamp/attribute pair
159 * @throws TimeRangeException
160 * If the timestamp was invalid
161 * @throws AttributeNotFoundException
162 * If the quark was invalid
163 */
164 public ITmfStateInterval doSingularQuery(long t, int attributeQuark)
165 throws TimeRangeException, AttributeNotFoundException;
5df842b3 166
b255ae4b
AM
167 /**
168 * Simple check to make sure the requested timestamps are within the borders
5df842b3
AM
169 * of this state history. This is used internally, but could also be used by
170 * the request sender (to check before sending in a lot of requests for
b255ae4b 171 * example).
5df842b3 172 *
b255ae4b
AM
173 * @param t
174 * The queried timestamp
175 * @return True if the timestamp is within range, false if not.
176 */
177 public boolean checkValidTime(long t);
a52fde77
AM
178
179 /**
180 * Debug method to print the contents of the history backend.
5df842b3 181 *
a52fde77
AM
182 * @param writer
183 * The PrintWriter where to write the output
184 */
185 public void debugPrint(PrintWriter writer);
186}
This page took 0.038818 seconds and 5 git commands to generate.