1 /*******************************************************************************
\r
2 * Copyright (c) 2010 Association for Decentralized Information Management in
\r
4 * All rights reserved. This program and the accompanying materials
\r
5 * are made available under the terms of the Eclipse Public License v1.0
\r
6 * which accompanies this distribution, and is available at
\r
7 * http://www.eclipse.org/legal/epl-v10.html
\r
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.sysdyn.ui.properties.widgets.expressions;
\r
14 import java.awt.BasicStroke;
\r
15 import java.awt.Frame;
\r
16 import java.awt.event.ActionEvent;
\r
17 import java.awt.event.ActionListener;
\r
18 import java.awt.geom.Point2D;
\r
19 import java.io.StringReader;
\r
20 import java.util.ArrayList;
\r
21 import java.util.Arrays;
\r
22 import java.util.List;
\r
23 import java.util.Map;
\r
25 import javax.swing.Timer;
\r
27 import org.eclipse.jface.layout.GridDataFactory;
\r
28 import org.eclipse.jface.layout.GridLayoutFactory;
\r
29 import org.eclipse.jface.text.BadLocationException;
\r
30 import org.eclipse.jface.text.IDocument;
\r
31 import org.eclipse.swt.SWT;
\r
32 import org.eclipse.swt.awt.SWT_AWT;
\r
33 import org.eclipse.swt.custom.VerifyKeyListener;
\r
34 import org.eclipse.swt.events.FocusAdapter;
\r
35 import org.eclipse.swt.events.FocusEvent;
\r
36 import org.eclipse.swt.events.FocusListener;
\r
37 import org.eclipse.swt.events.KeyListener;
\r
38 import org.eclipse.swt.events.ModifyEvent;
\r
39 import org.eclipse.swt.events.ModifyListener;
\r
40 import org.eclipse.swt.graphics.Point;
\r
41 import org.eclipse.swt.widgets.Composite;
\r
42 import org.eclipse.swt.widgets.Label;
\r
43 import org.eclipse.swt.widgets.Table;
\r
44 import org.jfree.chart.ChartFactory;
\r
45 import org.jfree.chart.ChartPanel;
\r
46 import org.jfree.chart.JFreeChart;
\r
47 import org.jfree.chart.plot.PlotOrientation;
\r
48 import org.jfree.data.xy.XYDataset;
\r
49 import org.jfree.data.xy.XYSeries;
\r
50 import org.jfree.data.xy.XYSeriesCollection;
\r
51 import org.simantics.databoard.Bindings;
\r
52 import org.simantics.db.ReadGraph;
\r
53 import org.simantics.db.Resource;
\r
54 import org.simantics.db.VirtualGraph;
\r
55 import org.simantics.db.WriteGraph;
\r
56 import org.simantics.db.common.request.WriteRequest;
\r
57 import org.simantics.db.common.utils.ListUtils;
\r
58 import org.simantics.db.exception.DatabaseException;
\r
59 import org.simantics.db.procedure.Listener;
\r
60 import org.simantics.db.request.Read;
\r
61 import org.simantics.layer0.Layer0;
\r
62 import org.simantics.layer0.utils.direct.GraphUtils;
\r
63 import org.simantics.sysdyn.SysdynResource;
\r
64 import org.simantics.sysdyn.tableParser.ParseException;
\r
65 import org.simantics.sysdyn.tableParser.TableParser;
\r
66 import org.simantics.sysdyn.tableParser.Token;
\r
67 import org.simantics.sysdyn.ui.utils.SyntaxError;
\r
68 import org.simantics.ui.SimanticsUI;
\r
70 public class WithLookupExpression implements IExpression {
\r
72 private ExpressionField expression;
\r
73 private ExpressionField lookup;
\r
74 private ExpressionField lastSelectedText = expression;
\r
75 private Timer updateChartTimer;
\r
77 private ChartPanel smallPanel;
\r
78 private Frame smallFrame;
\r
80 private Resource expr;
\r
82 public WithLookupExpression(Resource expression) {
\r
83 this.expr = expression;
\r
87 public void createExpressionFields(Composite parent, final Map<String, Object> data, Table allowedVariables) {
\r
88 GridLayoutFactory.fillDefaults().numColumns(3).applyTo(parent);
\r
90 updateChartTimer = new Timer(1000, new ActionListener() {
\r
93 public void actionPerformed(ActionEvent e) {
\r
97 updateChartTimer.setRepeats(false);
\r
99 String equation = data.get("equation") != null ? (String)data.get("equation") : "";
\r
100 String lookupTable = data.get("lookup") != null ? (String)data.get("lookup") : "";
\r
102 Label l = new Label(parent, SWT.NONE);
\r
103 l.setText("With\nLookup");
\r
105 expression = new ExpressionField(parent, SWT.BORDER, allowedVariables, true);
\r
106 expression.setExpression(equation);
\r
107 GridDataFactory.fillDefaults().grab(true, true).applyTo(expression);
\r
109 expression.getSourceViewer().getTextWidget().addFocusListener(new FocusAdapter() {
\r
112 public void focusLost(FocusEvent e) {
\r
113 lastSelectedText = expression;
\r
117 Composite chartContainer = new Composite(parent, SWT.NONE);
\r
118 createChart(chartContainer, data);
\r
121 l = new Label(parent, SWT.NONE);
\r
122 l.setText("Lookup\ntable");
\r
124 lookup = new ExpressionField(parent, SWT.BORDER, null, false);
\r
125 lookup.setExpression(lookupTable);
\r
126 GridDataFactory.fillDefaults().grab(true, true).applyTo(lookup);
\r
128 lookup.getSourceViewer().getTextWidget().addFocusListener(new FocusAdapter() {
\r
131 public void focusLost(FocusEvent e) {
\r
132 lastSelectedText = lookup;
\r
137 lookup.getSourceViewer().getTextWidget().addModifyListener(new ModifyListener() {
\r
140 public void modifyText(ModifyEvent e) {
\r
141 if(!updateChartTimer.isRunning())
\r
142 updateChartTimer.start();
\r
144 updateChartTimer.restart();
\r
149 SimanticsUI.getSession().asyncRequest(new Read<String>() {
\r
152 public String perform(ReadGraph graph) throws DatabaseException {
\r
153 SysdynResource sr = SysdynResource.getInstance(graph);
\r
154 String result = "";
\r
155 if (expr != null && graph.isInstanceOf(expr, sr.WithLookupExpression)) {
\r
156 result = graph.getPossibleRelatedValue(expr, sr.WithLookupExpression_lookup);
\r
160 }, new Listener<String>() {
\r
163 public void exception(Throwable t) {
\r
164 t.printStackTrace();
\r
168 public void execute(final String result) {
\r
170 lookup.getDisplay().asyncExec(new Runnable() {
\r
173 public void run() {
\r
174 lookup.setExpression(result);
\r
181 public boolean isDisposed() {
\r
182 if(lookup != null && !lookup.isDisposed()) {
\r
193 public void focus() {
\r
194 if(this.lastSelectedText != null) this.lastSelectedText.focus();
\r
198 public List<ExpressionField> getExpressionFields() {
\r
199 return Arrays.asList(this.expression, this.lookup);
\r
203 public void readData(final Resource expression, Map<String, Object> data) {
\r
206 String equation, lookup;
\r
209 Auxiliary results = null;
\r
211 if (data.get("equation") == null) {
\r
213 results = SimanticsUI.getSession().syncRequest(new Read<Auxiliary>() {
\r
216 public Auxiliary perform(ReadGraph graph) throws DatabaseException {
\r
217 Auxiliary results = new Auxiliary();
\r
218 SysdynResource sr = SysdynResource.getInstance(graph);
\r
219 if (expression != null && graph.isInstanceOf(expression, sr.WithLookupExpression)) {
\r
220 results.equation = graph.getPossibleRelatedValue(expression, sr.WithLookupExpression_expression);
\r
221 results.lookup = graph.getPossibleRelatedValue(expression, sr.WithLookupExpression_lookup);
\r
223 results.equation = "";
\r
224 results.lookup = "";
\r
229 } catch (DatabaseException e1) {
\r
230 e1.printStackTrace();
\r
232 data.put("equation", results.equation == null ? "" : results.equation);
\r
233 data.put("lookup", results.lookup == null ? "" : results.lookup);
\r
239 public void replaceSelection(String var) {
\r
240 if(lastSelectedText != null) {
\r
241 IDocument doc = lastSelectedText.getDocument();
\r
243 Point selection = lastSelectedText.getSelection();
\r
244 doc.replace(selection.x, selection.y, var);
\r
245 lastSelectedText.setSelection(selection.x + var.length());
\r
246 } catch (BadLocationException e) {
\r
247 e.printStackTrace();
\r
253 public void save(final Resource expression, Map<String, Object> data) {
\r
254 final String currentExpression = this.expression.getExpression();
\r
255 final String currentLookupTable = lookup.getExpression();
\r
256 String oldExpression = (String)data.get("equation");
\r
257 String oldLookupTable = (String)data.get("lookup");
\r
259 if(oldExpression == null || oldLookupTable == null ||
\r
260 (currentExpression != null && currentLookupTable != null
\r
261 && (!currentExpression.equals(oldExpression) ||
\r
262 !currentLookupTable.equals(oldLookupTable)))) {
\r
264 data.put("equation", currentExpression);
\r
265 data.put("lookup", currentLookupTable);
\r
266 SimanticsUI.getSession().asyncRequest(new WriteRequest() {
\r
268 public void perform(WriteGraph g)
\r
269 throws DatabaseException {
\r
270 SysdynResource sr = SysdynResource.getInstance(g);
\r
271 Layer0 l0 = Layer0.getInstance(g);
\r
273 if(!g.isInstanceOf(expr, sr.WithLookupExpression)) {
\r
276 final Resource newExpression = GraphUtils.create2(g, sr.WithLookupExpression,
\r
277 sr.WithLookupExpression_minX, 0.0,
\r
278 sr.WithLookupExpression_maxX, 10.0,
\r
279 sr.WithLookupExpression_minY, 0.0,
\r
280 sr.WithLookupExpression_maxY, 10.0);
\r
281 String arrayRange = g.getPossibleRelatedValue(expression, sr.Expression_arrayRange, Bindings.STRING);
\r
282 if(arrayRange != null)
\r
283 g.claimLiteral(newExpression, sr.Expression_arrayRange, arrayRange);
\r
285 final Resource variable = g.getSingleObject(expression, l0.PartOf);
\r
286 Resource expressions = g.getPossibleObject(variable, sr.Variable_expressionList);
\r
287 Resource node = ListUtils.getNode(g, expressions, expression);
\r
288 g.deny(node, l0.List_Element);
\r
289 g.claim(node, l0.List_Element, newExpression);
\r
291 g.deny(expression, l0.PartOf);
\r
292 g.claim(newExpression, l0.PartOf, variable);
\r
294 VirtualGraph runtime = g.getService(VirtualGraph.class);
\r
295 g.syncRequest(new WriteRequest(runtime) {
\r
297 public void perform(WriteGraph graph) throws DatabaseException {
\r
298 SysdynResource sr = SysdynResource.getInstance(graph);
\r
299 if(graph.hasStatement(variable, sr.IndependentVariable_activeExpression))
\r
300 graph.deny(variable, sr.IndependentVariable_activeExpression);
\r
301 graph.claim(variable, sr.IndependentVariable_activeExpression, newExpression);
\r
305 expr = newExpression;
\r
308 g.claimLiteral(expr, sr.WithLookupExpression_expression, currentExpression);
\r
309 g.claimLiteral(expr, sr.WithLookupExpression_lookup, currentLookupTable);
\r
317 public void updateData(Map<String, Object> data) {
\r
318 if(this.expression != null && this.expression.getExpression() != null)
\r
319 data.put("equation", this.expression.getExpression());
\r
320 if(this.lookup != null && this.lookup.getExpression() != null)
\r
321 data.put("lookup", this.lookup.getExpression());
\r
325 public void addKeyListener(KeyListener listener) {
\r
326 this.expression.getSourceViewer().getTextWidget().addKeyListener(listener);
\r
327 this.lookup.getSourceViewer().getTextWidget().addKeyListener(listener);
\r
331 public void addVerifyKeyListener(VerifyKeyListener listener) {
\r
332 this.expression.getSourceViewer().getTextWidget().addVerifyKeyListener(listener);
\r
333 this.lookup.getSourceViewer().getTextWidget().addVerifyKeyListener(listener);
\r
337 public void addModifyListener(ModifyListener listener) {
\r
338 this.expression.getSourceViewer().getTextWidget().addModifyListener(listener);
\r
339 this.lookup.getSourceViewer().getTextWidget().addModifyListener(listener);
\r
343 public void addFocusListener(FocusListener listener) {
\r
344 this.expression.getSourceViewer().getTextWidget().addFocusListener(listener);
\r
345 this.lookup.getSourceViewer().getTextWidget().addFocusListener(listener);
\r
348 private void createChart(Composite composite, final Map<String, Object> data) {
\r
349 GridLayoutFactory.fillDefaults().applyTo(composite);
\r
350 GridDataFactory.fillDefaults().span(1, 2).hint(150, SWT.DEFAULT).applyTo(composite);
\r
351 final Composite chartComposite = new Composite(composite,
\r
352 SWT.NO_BACKGROUND | SWT.EMBEDDED);
\r
353 GridDataFactory.fillDefaults().grab(true, true).applyTo(chartComposite);
\r
354 smallFrame = SWT_AWT.new_Frame(chartComposite);
\r
356 XYDataset dataset = new XYSeriesCollection(new XYSeries("Lookup Table"));
\r
357 JFreeChart chart = createChart(dataset);
\r
358 smallPanel = new ChartPanel(chart);
\r
359 smallFrame.add(smallPanel);
\r
363 private static JFreeChart createChart(XYDataset dataset) {
\r
364 JFreeChart chart = ChartFactory.createXYLineChart(
\r
369 PlotOrientation.VERTICAL,
\r
374 chart.removeLegend();
\r
375 chart.getXYPlot().getDomainAxis().setTickLabelsVisible(true);
\r
376 chart.getXYPlot().getDomainAxis().setAxisLineVisible(false);
\r
377 chart.getXYPlot().getDomainAxis().setTickMarksVisible(true);
\r
378 chart.getXYPlot().getRangeAxis().setTickLabelsVisible(true);
\r
379 chart.getXYPlot().getRangeAxis().setAxisLineVisible(false);
\r
380 chart.getXYPlot().getRangeAxis().setTickMarksVisible(true);
\r
381 chart.getXYPlot().getRenderer().setSeriesStroke(0, new BasicStroke(3.0f));
\r
385 private void updateChart() {
\r
386 ArrayList<Point2D> dataPoints = new ArrayList<Point2D>();
\r
387 TableParser parser = new TableParser(new StringReader(""));
\r
388 parser.ReInit(new StringReader(lookup.getExpression()));
\r
391 ArrayList<Token> xTokens = parser.getXTokens();
\r
392 ArrayList<Token> yTokens = parser.getYTokens();
\r
393 for(int i = 0; i < xTokens.size(); i++) {
\r
394 dataPoints.add(new Point2D.Double(
\r
395 Double.parseDouble(xTokens.get(i).image),
\r
396 Double.parseDouble(yTokens.get(i).image)));
\r
398 } catch (ParseException e1) {
\r
399 this.lookup.setSyntaxError(new SyntaxError(e1.currentToken, "Syntax Error"));
\r
400 System.out.println("MESSAGE: " + e1.getMessage());
\r
404 XYSeries series = new XYSeries("Lookup Table");
\r
405 for(Point2D point : dataPoints) {
\r
406 series.add(point.getX(), point.getY());
\r
408 XYSeriesCollection dataset = new XYSeriesCollection(series);
\r
409 smallPanel.getChart().getXYPlot().setDataset(dataset);
\r