forked from fair-acc/chart-fx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HistoryDataSetRendererSample.java
200 lines (169 loc) · 7.77 KB
/
HistoryDataSetRendererSample.java
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
package de.gsi.chart.samples;
import java.util.Timer;
import java.util.TimerTask;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.collections.ObservableList;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.CheckBox;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import de.gsi.chart.XYChart;
import de.gsi.chart.axes.spi.DefaultNumericAxis;
import de.gsi.chart.plugins.EditAxis;
import de.gsi.chart.plugins.Zoomer;
import de.gsi.chart.renderer.Renderer;
import de.gsi.chart.renderer.spi.HistoryDataSetRenderer;
import de.gsi.chart.ui.geometry.Side;
import de.gsi.dataset.spi.DoubleDataSet;
import de.gsi.dataset.spi.DoubleErrorDataSet;
import de.gsi.dataset.testdata.spi.GaussFunction;
import de.gsi.dataset.utils.ProcessingProfiler;
/**
* @author rstein
*/
public class HistoryDataSetRendererSample extends Application {
private static final Logger LOGGER = LoggerFactory.getLogger(HistoryDataSetRendererSample.class);
private static final int N_SAMPLES = 10_000; // default: 10000
private static final int UPDATE_DELAY = 1000; // [ms]
private static final int UPDATE_PERIOD = 100; // [ms]
private Timer timer;
private double updateIteration;
private void generateData(final XYChart chart) {
final DoubleErrorDataSet dataSet = new DoubleErrorDataSet("TestData", HistoryDataSetRendererSample.N_SAMPLES);
final DoubleDataSet dataSetNoError = new DoubleDataSet("TestDataNoErrors",
HistoryDataSetRendererSample.N_SAMPLES);
long startTime = ProcessingProfiler.getTimeStamp();
dataSet.autoNotification().set(false);
dataSetNoError.autoNotification().set(false);
for (int n = 0; n < HistoryDataSetRendererSample.N_SAMPLES; n++) {
final double x = n;
final double phase = 2 * Math.PI * updateIteration / 40.0;
final double a1 = 1 + 0.5 * Math.sin(phase);
final double a2 = 1 + 0.5 * Math.cos(phase);
final double y1 = a1 * GaussFunction.gauss(x, HistoryDataSetRendererSample.N_SAMPLES * 1.0 / 3.0, HistoryDataSetRendererSample.N_SAMPLES / 20.0) * 1000;
final double y2 = a2 * GaussFunction.gauss(x, HistoryDataSetRendererSample.N_SAMPLES * 2.0 / 3.0, HistoryDataSetRendererSample.N_SAMPLES / 20.0) * 1000;
final double ey1 = 0.01 * y1;
// lin scale
dataSet.set(n, x, y1, ey1, ey1);
dataSetNoError.set(n, x, y2);
// log scale
// dataSet.set(n, x, Math.exp(1e-4*x), 1e-3, 1e-3);
// dataSetNoError.set(n, x, Math.exp(2e-4*x));
}
dataSetNoError.setStyle("dsIndex=1;");
// dataSet.setStyle("strokeColor=red;");
// dataSet.setStyle("dsIndex=2;");
updateIteration++;
dataSetNoError.autoNotification().set(true);
dataSet.autoNotification().set(true);
Platform.runLater(() -> {
dataSet.fireInvalidated(null);
dataSetNoError.fireInvalidated(null);
chart.requestLayout();
final ObservableList<Renderer> rendererList = chart.getRenderers();
for (final Renderer rend : rendererList) {
if (rend instanceof HistoryDataSetRenderer) {
final HistoryDataSetRenderer hr = (HistoryDataSetRenderer) rend;
hr.shiftHistory();
}
}
// preferred method (final ie. data set attached final to renderer
// rendererList.get(0).getDatasets().setAll(dataSet,
// dataSetNoError);
rendererList.get(0).getDatasets().setAll(dataSet);
rendererList.get(1).getDatasets().setAll(dataSetNoError);
// chart.getDatasets().setAll(dataSet, dataSetNoError);
// chart.getDatasets().setAll(dataSet, dataSetNoError);
});
startTime = ProcessingProfiler.getTimeDiff(startTime, "adding data into DataSet");
}
public TimerTask getTask(final XYChart chart) {
return new TimerTask() {
private int updateCount;
@Override
public void run() {
generateData(chart);
if (updateCount % 100 == 0) {
LOGGER.atInfo().log("update iteration #" + updateCount);
}
updateCount++;
}
};
}
@Override
public void start(final Stage primaryStage) {
// ProcessingProfiler.debugProperty().set(true);
final BorderPane root = new BorderPane();
final Scene scene = new Scene(root, 800, 600);
final DefaultNumericAxis xAxis = new DefaultNumericAxis("x axis");
xAxis.setAutoRanging(true);
final DefaultNumericAxis yAxis1 = new DefaultNumericAxis("y axis #1", 0.0, 1.3, 0.2);
yAxis1.setAutoRanging(true);
yAxis1.setAnimated(false);
final DefaultNumericAxis yAxis2 = new DefaultNumericAxis("y axis #2", 0.0, 1.3, 0.2);
yAxis2.setAutoRanging(true);
yAxis2.setAnimated(false);
yAxis2.setSide(Side.RIGHT);
final XYChart chart = new XYChart(xAxis, yAxis1);
chart.setLegendVisible(false);
// set them false to make the plot faster
chart.setAnimated(false);
// set history renderer
chart.getRenderers().set(0, new HistoryDataSetRenderer(10));
final HistoryDataSetRenderer historyRenderer2 = new HistoryDataSetRenderer(10);
historyRenderer2.getAxes().add(yAxis2);
chart.getRenderers().add(historyRenderer2);
historyRenderer2.setIntensityFading(0.8);
chart.getPlugins().add(new Zoomer());
chart.getPlugins().add(new EditAxis());
final Button newDataSet = new Button("new DataSet");
newDataSet.setOnAction(evt -> Platform.runLater(getTask(chart)));
final Button clearHistory = new Button("clear history");
clearHistory.setOnAction(evt -> {
for (final Renderer rend : chart.getRenderers()) {
if (rend instanceof HistoryDataSetRenderer) {
final HistoryDataSetRenderer hr = (HistoryDataSetRenderer) rend;
hr.clearHistory();
}
}
chart.requestLayout();
});
final Button startTimer = new Button("timer");
startTimer.setOnAction(evt -> {
if (timer == null) {
timer = new Timer("sample-update-timer", true);
timer.scheduleAtFixedRate(getTask(chart), HistoryDataSetRendererSample.UPDATE_DELAY,
HistoryDataSetRendererSample.UPDATE_PERIOD);
} else {
timer.cancel();
timer = null;
}
});
final CheckBox legendVisible = new CheckBox("Legend?:");
legendVisible.selectedProperty().bindBidirectional(chart.legendVisibleProperty());
root.setTop(new HBox(newDataSet, clearHistory, startTimer, legendVisible));
generateData(chart);
long startTime = ProcessingProfiler.getTimeStamp();
ProcessingProfiler.getTimeDiff(startTime, "adding data to chart");
startTime = ProcessingProfiler.getTimeStamp();
root.setCenter(chart);
ProcessingProfiler.getTimeDiff(startTime, "adding chart into StackPane");
startTime = ProcessingProfiler.getTimeStamp();
primaryStage.setTitle(this.getClass().getSimpleName());
primaryStage.setScene(scene);
primaryStage.setOnCloseRequest(evt -> Platform.exit());
primaryStage.show();
ProcessingProfiler.getTimeDiff(startTime, "for showing");
}
/**
* @param args the command line arguments
*/
public static void main(final String[] args) {
Application.launch(args);
}
}