use of org.csstudio.trends.databrowser3.editor.DataBrowserEditor in project org.csstudio.display.builder by kasemir.
the class OpenDataBrowserPopup method execute.
/**
* {@inheritDoc}
*/
@Override
public Object execute(final ExecutionEvent event) throws ExecutionException {
// Get selection first because the ApplicationContext might change.
ISelection selection = HandlerUtil.getActiveMenuSelection(event);
if (selection == null) {
// This works for double-clicks.
selection = HandlerUtil.getCurrentSelection(event);
}
// Create new editor
final DataBrowserEditor editor = DataBrowserEditor.createInstance();
if (editor == null)
return null;
// Add received items
final Model model = editor.getModel();
try {
if (selection instanceof IStructuredSelection && ((IStructuredSelection) selection).getFirstElement() instanceof ChannelInfo) {
// Received items are from search dialog
final Object[] channels = ((IStructuredSelection) selection).toArray();
for (Object channel : channels) {
final ChannelInfo info = (ChannelInfo) channel;
add(model, info.getProcessVariable(), info.getArchiveDataSource());
}
} else {
// Add received PVs with default archive data sources
final List<TimestampedPV> timestampedPVs = Arrays.asList(AdapterUtil.convert(selection, TimestampedPV.class));
if (!timestampedPVs.isEmpty()) {
// Add received items, tracking their start..end time
long start_ms = Long.MAX_VALUE, end_ms = 0;
for (TimestampedPV timestampedPV : timestampedPVs) {
final long time = timestampedPV.getTime();
if (time < start_ms)
start_ms = time;
if (time > end_ms)
end_ms = time;
final PVItem item = new PVItem(timestampedPV.getName().trim(), period);
item.setAxis(model.addAxis());
item.useDefaultArchiveDataSources();
model.addItem(item);
}
final Instant start = Instant.ofEpochMilli(start_ms).minus(Duration.ofMinutes(30));
final Instant end = Instant.ofEpochMilli(end_ms).plus(Duration.ofMinutes(30));
model.enableScrolling(false);
model.setTimerange(start, end);
} else {
final ProcessVariable[] pvs = AdapterUtil.convert(selection, ProcessVariable.class);
for (ProcessVariable pv : pvs) add(model, pv, null);
}
}
} catch (Exception ex) {
MessageDialog.openError(editor.getSite().getShell(), Messages.Error, NLS.bind(Messages.ErrorFmt, ex.getMessage()));
}
return null;
}
use of org.csstudio.trends.databrowser3.editor.DataBrowserEditor in project org.csstudio.display.builder by kasemir.
the class DataBrowserAwareView method updateEditor.
/**
* The editor has changed.
*/
private void updateEditor(DataBrowserEditor new_editor) {
final Model old_model = (editor == null) ? null : editor.getModel();
editor = new_editor;
final Model new_model = (editor == null) ? null : editor.getModel();
updateModel(old_model, new_model);
}
use of org.csstudio.trends.databrowser3.editor.DataBrowserEditor in project org.csstudio.display.builder by kasemir.
the class OpenDisplayFile method openDisplay.
/**
* {@inheritDoc}
*/
@Override
public void openDisplay(final String path, final String data) throws Exception {
final Model model = new Model();
// Read file
final ResourceHelper resources = SingleSourcePlugin.getResourceHelper();
final IPath ipath = resources.newPath(path);
try (final InputStream stream = resources.getInputStream(ipath)) {
new XMLPersistence().load(model, stream);
}
final IEditorInput input = new DataBrowserModelEditorInput(new PathEditorInput(ipath), model);
// Create new editor
final DataBrowserEditor editor = DataBrowserEditor.createInstance(input);
if (editor == null)
throw new Exception("Cannot create Data Browser");
}
Aggregations