SCViewer/com.minres.scviewer.ui/src/com/minres/scviewer/ui/TxEditorPart.java

253 lines
7.9 KiB
Java
Raw Normal View History

2012-06-17 20:34:50 +02:00
/*******************************************************************************
* Copyright (c) 2012 IT Just working.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IT Just working - initial API and implementation
*******************************************************************************/
package com.minres.scviewer.ui;
2012-06-17 19:53:05 +02:00
import java.io.File;
2015-01-01 23:17:32 +01:00
import java.util.List;
2012-06-17 19:53:05 +02:00
import org.eclipse.core.runtime.IPath;
2012-06-17 19:53:05 +02:00
import org.eclipse.core.runtime.IProgressMonitor;
2015-01-01 23:17:32 +01:00
import org.eclipse.jface.dialogs.MessageDialog;
2012-06-17 19:53:05 +02:00
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IEditorSite;
import org.eclipse.ui.IFileEditorInput;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.PlatformUI;
2015-01-01 23:17:32 +01:00
import org.eclipse.ui.ide.FileStoreEditorInput;
2012-06-17 19:53:05 +02:00
import org.eclipse.ui.part.EditorPart;
import org.eclipse.ui.views.contentoutline.IContentOutlinePage;
import org.eclipse.ui.views.properties.IPropertySheetPage;
import org.eclipse.ui.views.properties.tabbed.ITabbedPropertySheetPageContributor;
import org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetPage;
2015-01-01 23:17:32 +01:00
import org.osgi.framework.BundleContext;
import org.osgi.framework.FrameworkUtil;
import org.osgi.framework.ServiceReference;
2012-06-17 19:53:05 +02:00
2015-01-06 17:14:16 +01:00
import com.minres.scviewer.database.IWaveformDb;
import com.minres.scviewer.database.ITxStream;
import com.minres.scviewer.database.IWaveformDbFactory;
import com.minres.scviewer.database.IWaveform;
import com.minres.scviewer.ui.swt.TxDisplay;
import com.minres.scviewer.ui.views.TxOutlinePage;
2012-06-17 19:53:05 +02:00
public class TxEditorPart extends EditorPart implements ITabbedPropertySheetPageContributor {
public static final String ID = "com.minres.scviewer.ui.TxEditorPart"; //$NON-NLS-1$
2012-06-17 19:53:05 +02:00
public static final String WAVE_ACTION_ID = "com.minres.scviewer.ui.action.AddToWave";
2012-06-17 19:53:05 +02:00
2015-01-01 23:17:32 +01:00
private TxDisplay txDisplay;
2012-06-17 19:53:05 +02:00
/** This is the root of the editor's model. */
2015-01-06 17:14:16 +01:00
private IWaveformDb database;
2012-06-17 19:53:05 +02:00
2015-01-01 23:17:32 +01:00
private Composite myParent;
2012-06-17 19:53:05 +02:00
public TxEditorPart() {
}
/**
* Create contents of the editor part.
* @param parent
*/
@Override
public void createPartControl(Composite parent) {
2015-01-01 23:17:32 +01:00
myParent=parent;
2012-06-17 19:53:05 +02:00
/** Add handlers for global actions (delete, etc) */
// IActionBars actionBars = getEditorSite().getActionBars();
// actionBars.setGlobalActionHandler(WAVE_ACTION_ID, new Action() {
// @Override
// public void runWithEvent(Event event) {
// System.out.println("AddToWave with event");
// }
//
// @Override
// public void run() {
// System.out.println("AddToWave");
// }
// });
2012-06-17 19:53:05 +02:00
2015-01-01 23:17:32 +01:00
txDisplay = new TxDisplay(parent);
if(database!=null) database.addPropertyChangeListener(txDisplay);
2012-06-17 19:53:05 +02:00
getSite().setSelectionProvider(txDisplay);
if(getEditorInput()!=null && ((TxEditorInput) getEditorInput()).getStreamNames().size()>0 && database!=null){
2015-01-01 23:17:32 +01:00
if(MessageDialog.openConfirm(parent.getShell(), "Confirm", "Do you want the restore last state of the wave form?"))
for(String streamName:((TxEditorInput) getEditorInput()).getStreamNames()){
2015-01-06 17:14:16 +01:00
IWaveform stream = database.getStreamByName(streamName);
2015-01-01 23:17:32 +01:00
if(stream!=null)
txDisplay.addStream(stream);
}
}
2012-06-17 19:53:05 +02:00
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.part.EditorPart#setInput(org.eclipse.ui.IEditorInput)
*/
protected void setInput(IEditorInput input) {
super.setInput(input);
2015-01-01 23:17:32 +01:00
if(input instanceof IFileEditorInput){
if(!(input instanceof TxEditorInput))
super.setInput(new TxEditorInput(((IFileEditorInput)input).getFile()));
try {
IPath location = ((IFileEditorInput) input).getFile().getLocation();
if (location != null)
getTrDatabase(location.toFile());
2015-01-01 23:17:32 +01:00
setPartName(((IFileEditorInput) input).getFile().getName());
} catch (Exception e) {
handleLoadException(e);
}
} else if(input instanceof FileStoreEditorInput){
try {
//database.load(((FileStoreEditorInput) input).getURI().toURL().openStream());
File file=new File(((FileStoreEditorInput) input).getURI().getPath());
getTrDatabase(file);
2015-01-01 23:17:32 +01:00
setPartName(((FileStoreEditorInput) input).getName());
} catch (Exception e) {
handleLoadException(e);
}
2012-06-17 19:53:05 +02:00
}
}
protected void getTrDatabase(File file) {
try {
BundleContext context = FrameworkUtil.getBundle(this.getClass()).getBundleContext();
2015-01-06 17:14:16 +01:00
ServiceReference<?>[] serviceReferences = context.getServiceReferences(IWaveformDbFactory.class.getName(), null);
if(serviceReferences!=null){
for(ServiceReference<?> serviceReference:serviceReferences){
2015-01-06 17:14:16 +01:00
database = ((IWaveformDbFactory) context.getService(serviceReference)).createDatabase(file);
if(database!=null){
if(txDisplay !=null) database.addPropertyChangeListener(txDisplay);
return;
}
}
}
2015-01-03 17:25:09 +01:00
} catch (Exception e) {
}
MessageDialog.openError(PlatformUI.getWorkbench().getDisplay().getActiveShell(),
2015-01-03 17:25:09 +01:00
"Error loading database", "Could not find an usable and applicable database loader implementation");
database=null;
// if(TxEditorPlugin.getDefault().getTransactionDbFactory()!=null){
// database = TxEditorPlugin.getDefault().getTransactionDbFactory().createDatabase();
// if(txDisplay !=null) database.addPropertyChangeListener(txDisplay);
// } else {
// MessageDialog.openError(PlatformUI.getWorkbench().getDisplay().getActiveShell(),
// "Error loading database", "Could not find database loader implementation");
// database=null;
// }
2015-01-01 23:17:32 +01:00
}
2012-06-17 19:53:05 +02:00
private void handleLoadException(Exception e) {
MessageDialog.openError(PlatformUI.getWorkbench().getDisplay().getActiveShell(),
"Error loading database", e.getMessage());
2012-06-17 19:53:05 +02:00
database = null;
}
@Override
public void setFocus() {
2015-01-01 23:17:32 +01:00
myParent.setFocus();
2012-06-17 19:53:05 +02:00
}
@Override
public void doSave(IProgressMonitor monitor) {
}
@Override
public void doSaveAs() {
}
@SuppressWarnings("rawtypes")
@Override
public Object getAdapter(Class type) {
if (type == IContentOutlinePage.class) // outline page
return new TxOutlinePage(this);
else if (type == IPropertySheetPage.class) // use tabbed property sheet instead of standard one
return new TabbedPropertySheetPage(this);
return super.getAdapter(type);
}
2015-01-06 17:14:16 +01:00
public IWaveformDb getModel() {
2012-06-17 19:53:05 +02:00
return database;
}
@Override
public void init(IEditorSite site, IEditorInput input)
throws PartInitException {
// Initialize the editor part
setSite(site);
setInput(input);
}
@Override
public boolean isDirty() {
return false;
}
@Override
public boolean isSaveAsAllowed() {
return false;
}
2015-01-06 17:14:16 +01:00
public IWaveformDb getDatabase() {
2012-06-17 19:53:05 +02:00
return database;
}
2015-01-06 17:14:16 +01:00
public void addStreamToList(IWaveform obj){
if(getEditorInput() instanceof TxEditorInput && !((TxEditorInput) getEditorInput()).getStreamNames().contains(obj.getFullName())){
((TxEditorInput) getEditorInput()).getStreamNames().add(obj.getFullName());
txDisplay.addStream(obj);
2015-01-01 23:17:32 +01:00
} else
2015-01-06 17:14:16 +01:00
txDisplay.addStream(obj);
2015-01-01 23:17:32 +01:00
2012-06-17 19:53:05 +02:00
}
2015-01-06 17:14:16 +01:00
public void addStreamsToList(IWaveform[] iWaveforms){
for(IWaveform stream:iWaveforms)
2015-01-01 23:17:32 +01:00
addStreamToList(stream);
2012-06-17 19:53:05 +02:00
}
2015-01-06 17:14:16 +01:00
public void removeStreamFromList(IWaveform obj){
if(getEditorInput() instanceof TxEditorInput && ((TxEditorInput) getEditorInput()).getStreamNames().contains(obj.getFullName())){
((TxEditorInput) getEditorInput()).getStreamNames().remove(obj.getFullName());
txDisplay.removeStream(obj);
2015-01-01 23:17:32 +01:00
} else
2015-01-06 17:14:16 +01:00
txDisplay.removeStream(obj);
2012-06-17 19:53:05 +02:00
}
2015-01-06 17:14:16 +01:00
public void removeStreamsFromList(IWaveform[] iWaveforms){
for(IWaveform stream:iWaveforms)
2015-01-01 23:17:32 +01:00
removeStreamFromList(stream);
2012-06-17 19:53:05 +02:00
}
2015-01-06 17:14:16 +01:00
public List<IWaveform> getStreamList(){
2015-01-01 23:17:32 +01:00
return txDisplay.getStreamList();
}
public void setSelection(final ISelection selection){
myParent.getDisplay().asyncExec(new Runnable() {
@Override
public void run() {
txDisplay.setSelection(selection);
}
});
2012-06-17 19:53:05 +02:00
}
@Override
public String getContributorId() {
return getSite().getId();
}
}