org.graalvm.visualvm.charts.SimpleXYChartSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org-graalvm-visualvm-charts Show documentation
Show all versions of org-graalvm-visualvm-charts Show documentation
VisualVM is a visual tool integrating commandline JDK tools and lightweight profiling capabilities.
/*
* Copyright (c) 2007, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package org.graalvm.visualvm.charts;
import org.graalvm.visualvm.charts.xy.SimpleXYChartUtils;
import org.graalvm.visualvm.charts.xy.XYPaintersModel;
import org.graalvm.visualvm.charts.xy.XYStorage;
import java.awt.Color;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.text.NumberFormat;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JComponent;
import javax.swing.SwingUtilities;
import org.graalvm.visualvm.lib.charts.xy.synchronous.SynchronousXYItemsModel;
/**
* Handle to access a simple XY chart. The chart supports adding new data and
* updating the details area.
*
* @author Jiri Sedlacek
*/
public final class SimpleXYChartSupport {
private final static Logger LOGGER = Logger.getLogger(SimpleXYChartSupport.class.getName());
// --- Public chart boundary constants -------------------------------------
public static final long MIN_UNDEFINED = Long.MAX_VALUE;
public static final long MAX_UNDEFINED = Long.MIN_VALUE;
// --- Instance variables --------------------------------------------------
private final String chartTitle;
private final String xAxisDescription;
private final String yAxisDescription;
private final int chartType;
private final boolean hideItems;
private final Color[] itemColors;
private final long initialYMargin;
private final String[] detailsItems;
private final double chartFactor;
private final NumberFormat customFormat;
private final long limitYValue;
private final XYStorage storage;
private final SynchronousXYItemsModel itemsModel;
private final XYPaintersModel paintersModel;
private JComponent chartUI;
private SimpleXYChartUtils.DetailsHandle detailsHandle;
private boolean legendVisible;
private boolean zoomingEnabled;
// --- Public interface ----------------------------------------------------
/**
* Returns a JComponent containing the chart.
*
Note: This method must be called in the Event Dispatch Thread.
*
* @return JComponent containing the chart;
*/
public JComponent getChart() {
if (chartUI == null) {
chartUI = SimpleXYChartUtils.createChartUI(chartTitle, xAxisDescription,
yAxisDescription, chartType,
itemColors, initialYMargin,
hideItems, legendVisible,
zoomingEnabled, chartFactor,
customFormat, storage,
itemsModel, paintersModel,
limitYValue);
if (detailsItems != null)
detailsHandle = SimpleXYChartUtils.createDetailsArea(detailsItems,
chartUI);
}
return chartUI;
}
/**
* Saves chart values into the provided OutputStream. This method should not
* be called in the Event Dispatch Thread.
*
* @param os OuptutStream into which to save the chart values
* @throws IOException if an I/O error occurs
*/
public void saveValues(OutputStream os) throws IOException {
storage.saveValues(os);
}
/**
* Loads chart values from the provided InputStream. This method should not
* be called in the Event Dispatch Thread.
*
* @param is InputStram from which to load the chart values
* @throws IOException if an I/O error occurs
*/
public void loadValues(InputStream is) throws IOException {
storage.loadValues(is);
SwingUtilities.invokeLater(new Runnable() {
public void run() {
itemsModel.valuesAdded();
// Do not catch ProfilerXYItemsModel: new timestamp T1 not greater than previous T0, skipping the values.
// Should be synchronized since the originally saved model had to be synchronized
}
});
}
/**
* Adds a packet of values.
*
Note: This method can be called from any thread.
*
* @param timestamp timestamp of the data packet
* @param values data packet
*/
public void addValues(final long timestamp, final long[] values) {
Runnable valuesUpdater = new Runnable() {
public void run() {
storage.addValues(timestamp, values);
try {
itemsModel.valuesAdded();
} catch (IllegalArgumentException e) {
// ProfilerXYItemsModel: new timestamp T1 not greater than previous T0, skipping the values.
LOGGER.log(Level.INFO, "Results not synchronized", e); // NOI18N
}
}
};
if (SwingUtilities.isEventDispatchThread()) valuesUpdater.run();
else SwingUtilities.invokeLater(valuesUpdater);
}
/**
* Updates the details area of the chart.
*
Note: This method can be called from any thread.
*
* @param details details packet
*/
public void updateDetails(final String[] details) {
Runnable detailsUpdater = new Runnable() {
public void run() { detailsHandle.updateDetails(details); }
};
if (SwingUtilities.isEventDispatchThread()) detailsUpdater.run();
else SwingUtilities.invokeLater(detailsUpdater);
}
/**
* Shows or hides legend section of the chart.
*
Note: This method can be called from any thread.
*
* @param visible new visibility of the legend section of the chart
*/
public void setLegendVisible(final boolean visible) {
Runnable visibilityUpdater = new Runnable() {
public void run() {
if (legendVisible == visible) return;
legendVisible = visible;
if (chartUI != null)
SimpleXYChartUtils.setLegendVisible(chartUI, legendVisible);
}
};
if (SwingUtilities.isEventDispatchThread()) visibilityUpdater.run();
else SwingUtilities.invokeLater(visibilityUpdater);
}
/**
* Returns true if legend section of the chart is visible, false otherwise.
*
Note: This method must be called in the Event Dispatch Thread.
*
* @return true if legend section of the chart is visible, false otherwise
*/
public boolean isLegendVisible() {
return legendVisible;
}
/**
* Enables or disables zooming the chart data.
*
Note: This method can be called from any thread.
*
Warning: Displaying live data by a zoomed chart may result
* in incorrect appearance once the data buffer starts dropping oldest values.
*
* @param zooming true if zooming is enabled, false otherwise
*/
public void setZoomingEnabled(final boolean zooming) {
Runnable visibilityUpdater = new Runnable() {
public void run() {
if (zoomingEnabled == zooming) return;
zoomingEnabled = zooming;
if (chartUI != null)
SimpleXYChartUtils.setZoomingEnabled(chartUI, zoomingEnabled);
}
};
if (SwingUtilities.isEventDispatchThread()) visibilityUpdater.run();
else SwingUtilities.invokeLater(visibilityUpdater);
}
/**
* Returns true if charts zooming is enabled, false otherwise.
*
Note: This method must be called in the Event Dispatch Thread.
*
* @return true if charts zooming is enabled, false otherwise
*/
public boolean isZoomingEnabled() {
return zoomingEnabled;
}
/**
* Formats a decimal value to String. Use this method to make sure the value
* appears in the same format as used in the chart (tooltip). Useful for
* updating details area.
*
Note: This method must be called in the Event Dispatch Thread.
*
* @param value value to be formatted
* @return formatted value in the same format as used in the chart
*/
public String formatDecimal(long value) {
return SimpleXYChartUtils.formatDecimal(value * chartFactor, customFormat);
}
/**
* Formats a bytes value to String. Use this method to make sure the value
* appears in the same format as used in the chart (tooltip). Useful for
* updating details area.
*
Note: This method must be called in the Event Dispatch Thread.
*
* @param value value to be formatted
* @return formatted value in the same format as used in the chart
*/
public String formatBytes(long value) {
return SimpleXYChartUtils.formatBytes((long)(value * chartFactor));
}
/**
* Formats a percent value to String. Use this method to make sure the value
* appears in the same format as used in the chart (tooltip). Useful for
* updating details area.
*
Note: This method must be called in the Event Dispatch Thread.
*
* @param value value to be formatted
* @return formatted value in the same format as used in the chart
*/
public String formatPercent(long value) {
return SimpleXYChartUtils.formatPercent(value * chartFactor);
}
/**
* Formats a time value to String. Use this method to make sure the value
* appears in the same format as used in the chart (tooltip). Useful for
* updating details area.
*
Note: This method must be called in the Event Dispatch Thread.
*
* @param value value to be formatted
* @return formatted value in the same format as used in the chart
*/
public String formatTime(long value) {
int timestamps = storage.getTimestampsCount();
if (timestamps == 0) return SimpleXYChartUtils.formatTime(value, value, value);
else return SimpleXYChartUtils.formatTime(value, storage.getTimestamp(0),
storage.getTimestamp(timestamps - 1));
}
// --- Internal constructors -----------------------------------------------
SimpleXYChartSupport(String chartTitle, String xAxisDescription, String yAxisDescription,
int chartType, long initialYMargin, String[] itemNames, Color[] itemColors,
float[] lineWidths, Color[] lineColors, Color[] fillColors1, Color[] fillColors2,
long minValue, long maxValue, double chartFactor, NumberFormat customFormat,
boolean hideItems, int valuesBuffer, String[] detailsItems, long limit) {
this.chartTitle = chartTitle;
this.xAxisDescription = xAxisDescription;
this.yAxisDescription = yAxisDescription;
this.chartType = chartType;
this.hideItems = hideItems;
this.itemColors = itemColors;
this.initialYMargin = initialYMargin;
this.detailsItems = detailsItems;
this.chartFactor = chartFactor;
this.customFormat = customFormat;
this.limitYValue = limit;
storage = SimpleXYChartUtils.createStorage(valuesBuffer);
itemsModel = SimpleXYChartUtils.createItemsModel(storage, itemNames, minValue, maxValue);
paintersModel = SimpleXYChartUtils.createPaintersModel(lineWidths, lineColors,
fillColors1, fillColors2, itemsModel);
legendVisible = true;
zoomingEnabled = false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy