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.representation.expressions;
\r
14 import java.util.ArrayList;
\r
15 import java.util.Iterator;
\r
17 import org.simantics.objmap.annotations.GraphType;
\r
18 import org.simantics.objmap.annotations.RelatedValue;
\r
19 import org.simantics.sysdyn.SysdynResource;
\r
20 import org.simantics.sysdyn.representation.ArrayIndexes;
\r
21 import org.simantics.sysdyn.representation.Enumeration;
\r
22 import org.simantics.sysdyn.representation.IndependentVariable;
\r
23 import org.simantics.sysdyn.representation.utils.IndexUtils;
\r
25 @GraphType(SysdynResource.URIs.ParameterExpression)
\r
26 public class ParameterExpression extends Expression {
\r
28 @RelatedValue(SysdynResource.URIs.Expression_equation)
\r
29 private String equation;
\r
32 public String getDeclaration(IndependentVariable variable) {
\r
33 // FIXME: Still needs to manually confirm that really is parameter
\r
34 ArrayIndexes ai = variable.getArrayIndexes();
\r
35 ArrayList<Enumeration> enumerations = null;
\r
37 enumerations = ai.getEnumerations();
\r
39 boolean parameter = true;
\r
41 if(enumerations != null && enumerations.size() > 0) {
\r
43 StringBuilder sb = new StringBuilder();
\r
45 Iterator<Enumeration> iterator = enumerations.iterator();
\r
46 while(iterator.hasNext()) {
\r
47 sb.append(iterator.next().getName() + ".size");
\r
48 if(iterator.hasNext()) {
\r
53 range = sb.toString();
\r
56 StringBuilder sb = new StringBuilder();
\r
57 sb.append(" " + (parameter ? "parameter " : "") + variable.getType() + " " + variable.getName() + range);
\r
59 sb.append(" = " + getValue() + " /* Actual value read from init file */");
\r
61 return sb.toString();
\r
66 * Used when the expression is a part of an array variable. Then it is like a normal auxiliary.
\r
69 public String getEquation(IndependentVariable variable) {
\r
70 String range = IndexUtils.rangeToIndexes(variable, this.getArrayRange());
\r
71 return " " + variable.getName() + (range.equals("[:]") ? "" : range) + " = " + equation + ";\n";
\r
74 public Double getValue() {
\r
76 return Double.parseDouble(equation);
\r
77 } catch(NumberFormatException e) {
\r