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
|
|
|
|
*******************************************************************************/
|
2015-01-01 23:17:32 +01:00
|
|
|
package com.itjw.txviewer.ui.views.sections;
|
2012-06-17 19:53:05 +02:00
|
|
|
|
|
|
|
import java.util.HashMap;
|
2015-01-01 23:17:32 +01:00
|
|
|
import java.util.LinkedList;
|
2012-06-17 19:53:05 +02:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.TreeMap;
|
|
|
|
|
|
|
|
import org.eclipse.core.runtime.Assert;
|
|
|
|
import org.eclipse.core.runtime.ListenerList;
|
|
|
|
import org.eclipse.jface.action.IMenuListener;
|
|
|
|
import org.eclipse.jface.action.IMenuManager;
|
|
|
|
import org.eclipse.jface.action.MenuManager;
|
|
|
|
import org.eclipse.jface.viewers.ILabelProviderListener;
|
|
|
|
import org.eclipse.jface.viewers.ISelection;
|
|
|
|
import org.eclipse.jface.viewers.ISelectionChangedListener;
|
|
|
|
import org.eclipse.jface.viewers.ISelectionProvider;
|
|
|
|
import org.eclipse.jface.viewers.IStructuredSelection;
|
|
|
|
import org.eclipse.jface.viewers.ITableLabelProvider;
|
|
|
|
import org.eclipse.jface.viewers.ITreeContentProvider;
|
|
|
|
import org.eclipse.jface.viewers.SelectionChangedEvent;
|
|
|
|
import org.eclipse.jface.viewers.TreeViewer;
|
|
|
|
import org.eclipse.jface.viewers.Viewer;
|
|
|
|
import org.eclipse.swt.SWT;
|
|
|
|
import org.eclipse.swt.graphics.Image;
|
|
|
|
import org.eclipse.swt.layout.FormAttachment;
|
|
|
|
import org.eclipse.swt.layout.FormData;
|
|
|
|
import org.eclipse.swt.layout.GridData;
|
|
|
|
import org.eclipse.swt.widgets.Composite;
|
|
|
|
import org.eclipse.swt.widgets.Menu;
|
|
|
|
import org.eclipse.swt.widgets.Tree;
|
|
|
|
import org.eclipse.swt.widgets.TreeColumn;
|
|
|
|
import org.eclipse.ui.IWorkbenchPart;
|
|
|
|
import org.eclipse.ui.views.properties.tabbed.AbstractPropertySection;
|
|
|
|
import org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetPage;
|
|
|
|
|
2015-01-01 23:17:32 +01:00
|
|
|
import com.itjw.txviewer.database.ITrAttrType;
|
2012-06-17 19:53:05 +02:00
|
|
|
import com.itjw.txviewer.database.ITrAttribute;
|
2015-01-01 23:17:32 +01:00
|
|
|
import com.itjw.txviewer.database.ITransaction;
|
2012-06-17 19:53:05 +02:00
|
|
|
|
|
|
|
public class AttributeProperty extends AbstractPropertySection implements ISelectionProvider {
|
|
|
|
|
|
|
|
private final String[] titles = { "Location", "Name", "Type", "Value" };
|
|
|
|
|
|
|
|
private ListenerList listeners = new ListenerList();
|
|
|
|
|
2015-01-01 23:17:32 +01:00
|
|
|
private ITransaction iTr;
|
2012-06-17 19:53:05 +02:00
|
|
|
|
|
|
|
private ISelection currentSelection;
|
|
|
|
|
|
|
|
private TreeViewer treeViewer;
|
|
|
|
|
|
|
|
public AttributeProperty() {
|
|
|
|
}
|
|
|
|
|
|
|
|
public void createControls(Composite parent, TabbedPropertySheetPage aTabbedPropertySheetPage) {
|
|
|
|
super.createControls(parent, aTabbedPropertySheetPage);
|
|
|
|
Composite composite = getWidgetFactory().createFlatFormComposite(parent);
|
|
|
|
Tree tree = new Tree(composite, SWT.BORDER | SWT.FULL_SELECTION);
|
|
|
|
tree.setHeaderVisible(true);
|
|
|
|
treeViewer = new TreeViewer(tree);
|
|
|
|
|
|
|
|
TreeColumn column1 = new TreeColumn(tree, SWT.LEFT);
|
|
|
|
tree.setLinesVisible(true);
|
|
|
|
column1.setAlignment(SWT.LEFT);
|
|
|
|
column1.setText(titles[0]);
|
|
|
|
column1.setWidth(75);
|
|
|
|
TreeColumn column2 = new TreeColumn(tree, SWT.RIGHT);
|
|
|
|
column2.setAlignment(SWT.LEFT);
|
|
|
|
column2.setText(titles[1]);
|
|
|
|
column2.setWidth(150);
|
|
|
|
TreeColumn column3 = new TreeColumn(tree, SWT.LEFT);
|
|
|
|
tree.setLinesVisible(true);
|
|
|
|
column3.setAlignment(SWT.LEFT);
|
|
|
|
column3.setText(titles[2]);
|
|
|
|
column3.setWidth(100);
|
|
|
|
TreeColumn column4 = new TreeColumn(tree, SWT.RIGHT);
|
|
|
|
column4.setAlignment(SWT.LEFT);
|
|
|
|
column4.setText(titles[3]);
|
|
|
|
column4.setWidth(150);
|
|
|
|
|
|
|
|
Object layoutData = parent.getLayoutData();
|
|
|
|
if (layoutData instanceof GridData) {
|
|
|
|
GridData gridData = (GridData) layoutData;
|
|
|
|
gridData.grabExcessVerticalSpace = true;
|
|
|
|
gridData.verticalAlignment = SWT.FILL;
|
|
|
|
}
|
|
|
|
|
|
|
|
FormData formData = new FormData();
|
|
|
|
formData.left = new FormAttachment(0);
|
|
|
|
formData.top = new FormAttachment(0);
|
|
|
|
formData.right = new FormAttachment(100);
|
|
|
|
formData.bottom = new FormAttachment(100);
|
|
|
|
tree.setLayoutData(formData);
|
|
|
|
|
|
|
|
treeViewer.setAutoExpandLevel(2);
|
|
|
|
treeViewer.setContentProvider(new ITreeContentProvider() {
|
|
|
|
TreeMap<String, List<ITrAttribute>> hier = new TreeMap<String, List<ITrAttribute>>();
|
|
|
|
HashMap<ITrAttribute, String> parents = new HashMap<ITrAttribute, String>();
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
|
2015-01-01 23:17:32 +01:00
|
|
|
if (newInput instanceof ITransaction) {
|
|
|
|
List<ITrAttribute> attributes = ((ITransaction)newInput).getAttributes();
|
2012-06-17 19:53:05 +02:00
|
|
|
hier.clear();
|
|
|
|
parents.clear();
|
2015-01-01 23:17:32 +01:00
|
|
|
|
2012-06-17 19:53:05 +02:00
|
|
|
String location="Begin";
|
2015-01-01 23:17:32 +01:00
|
|
|
List<ITrAttribute> childs=new LinkedList<ITrAttribute>();
|
|
|
|
for (ITrAttribute attr : attributes)
|
|
|
|
if (attr != null && attr.getType()==ITrAttrType.AttributeType.BEGIN){
|
|
|
|
childs.add(attr);
|
|
|
|
parents.put(attr, location);
|
|
|
|
}
|
|
|
|
if(childs.size()>0) hier.put(location, childs);
|
|
|
|
|
|
|
|
location="Transaction";
|
|
|
|
childs=new LinkedList<ITrAttribute>();
|
|
|
|
for (ITrAttribute attr : attributes)
|
|
|
|
if (attr != null && attr.getType()==ITrAttrType.AttributeType.UNSPECIFIED){
|
|
|
|
childs.add(attr);
|
|
|
|
parents.put(attr, location);
|
|
|
|
}
|
|
|
|
if(childs.size()>0) hier.put(location, childs);
|
|
|
|
|
2012-06-17 19:53:05 +02:00
|
|
|
location="End";
|
2015-01-01 23:17:32 +01:00
|
|
|
childs=new LinkedList<ITrAttribute>();
|
|
|
|
for (ITrAttribute attr : attributes)
|
|
|
|
if (attr != null && attr.getType()==ITrAttrType.AttributeType.END){
|
|
|
|
childs.add(attr);
|
|
|
|
parents.put(attr, location);
|
|
|
|
}
|
|
|
|
if(childs.size()>0) hier.put(location, childs);
|
2012-06-17 19:53:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void dispose() { }
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasChildren(Object element) {
|
|
|
|
Object[] childs = getChildren(element);
|
|
|
|
return childs != null && childs.length > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object getParent(Object element) {
|
|
|
|
if (element instanceof ITrAttribute)
|
|
|
|
return parents.get(element);
|
|
|
|
else
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object[] getElements(Object inputElement) {
|
|
|
|
return hier.keySet().toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object[] getChildren(Object parentElement) {
|
|
|
|
if (parentElement instanceof String)
|
|
|
|
return hier.get((String) parentElement).toArray();
|
|
|
|
else
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
treeViewer.setLabelProvider(new ITableLabelProvider() {
|
|
|
|
@Override
|
|
|
|
public void removeListener(ILabelProviderListener listener) { }
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isLabelProperty(Object element, String property) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void dispose() { }
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void addListener(ILabelProviderListener listener) { }
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getColumnText(Object element, int columnIndex) {
|
|
|
|
if (columnIndex == 0 && element instanceof String)
|
|
|
|
return element.toString();
|
|
|
|
else if(element instanceof ITrAttribute){
|
|
|
|
ITrAttribute attr = (ITrAttribute)element;
|
|
|
|
if (columnIndex == 1 )
|
|
|
|
return attr.getName();
|
|
|
|
else if (columnIndex == 2 )
|
2015-01-01 23:17:32 +01:00
|
|
|
return attr.getDataType();
|
2012-06-17 19:53:05 +02:00
|
|
|
else if (columnIndex == 3){
|
2015-01-01 23:17:32 +01:00
|
|
|
if("UNSIGNED".equals(attr.getType()) && (attr.getName().contains("addr")||attr.getName().contains("data")))
|
|
|
|
try {
|
|
|
|
return "0x"+Long.toHexString(Long.parseLong(attr.getValue().toString()));
|
|
|
|
} catch(NumberFormatException e) {
|
|
|
|
}
|
2012-06-17 19:53:05 +02:00
|
|
|
return attr.getValue().toString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public Image getColumnImage(Object element, int columnIndex) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
MenuManager menuMgr = new MenuManager("#PopUp"); //$NON-NLS-1$
|
|
|
|
menuMgr.setRemoveAllWhenShown(true);
|
|
|
|
menuMgr.addMenuListener(new IMenuListener() {
|
|
|
|
public void menuAboutToShow(IMenuManager mgr) {
|
|
|
|
ISelection selection = treeViewer.getSelection();
|
|
|
|
if (selection instanceof IStructuredSelection) {
|
|
|
|
System.out.println(((IStructuredSelection)selection).getFirstElement().toString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
Menu menu = menuMgr.createContextMenu(treeViewer.getControl());
|
|
|
|
treeViewer.getControl().setMenu(menu);
|
|
|
|
aTabbedPropertySheetPage.getSite().setSelectionProvider(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setInput(IWorkbenchPart part, ISelection selection) {
|
|
|
|
super.setInput(part, selection);
|
|
|
|
currentSelection = null;
|
|
|
|
Assert.isTrue(selection instanceof IStructuredSelection);
|
|
|
|
Object input = ((IStructuredSelection) selection).getFirstElement();
|
2015-01-01 23:17:32 +01:00
|
|
|
Assert.isTrue(input instanceof ITransaction);
|
|
|
|
iTr = (ITransaction) input;
|
2012-06-17 19:53:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void refresh() {
|
2015-01-01 23:17:32 +01:00
|
|
|
treeViewer.setInput(iTr);
|
2012-06-17 19:53:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void addSelectionChangedListener(ISelectionChangedListener listener) {
|
|
|
|
listeners.add(listener);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void removeSelectionChangedListener(ISelectionChangedListener listener) {
|
|
|
|
listeners.remove(listener);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ISelection getSelection() {
|
|
|
|
return currentSelection != null ? currentSelection : super.getSelection();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setSelection(ISelection selection) {
|
|
|
|
currentSelection = selection;
|
|
|
|
Object[] list = listeners.getListeners();
|
|
|
|
for (int i = 0; i < list.length; i++) {
|
|
|
|
((ISelectionChangedListener) list[i]).selectionChanged(new SelectionChangedEvent(this, selection));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|