]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.modeling/src/org/simantics/modeling/SCLTypeUtils.java
Replace System.err and System.out with SLF4J Logging
[simantics/platform.git] / bundles / org.simantics.modeling / src / org / simantics / modeling / SCLTypeUtils.java
1 package org.simantics.modeling;
2
3 import gnu.trove.map.hash.THashMap;
4
5 import org.simantics.databoard.type.ArrayType;
6 import org.simantics.databoard.type.BooleanType;
7 import org.simantics.databoard.type.ByteType;
8 import org.simantics.databoard.type.Datatype;
9 import org.simantics.databoard.type.DoubleType;
10 import org.simantics.databoard.type.FloatType;
11 import org.simantics.databoard.type.IntegerType;
12 import org.simantics.databoard.type.LongType;
13 import org.simantics.databoard.type.StringType;
14 import org.simantics.db.layer0.request.PropertyInfo;
15 import org.simantics.scl.compiler.types.TCon;
16 import org.simantics.scl.compiler.types.Type;
17 import org.simantics.scl.compiler.types.Types;
18 import org.simantics.scl.compiler.types.kinds.Kinds;
19 import org.slf4j.Logger;
20 import org.slf4j.LoggerFactory;
21
22 public class SCLTypeUtils {
23     private static final Logger LOGGER = LoggerFactory.getLogger(SCLTypeUtils.class);
24     private static final THashMap<String, Type> TYPE_MAP = new THashMap<String, Type>();
25     
26     private static void add(TCon type) {
27         TYPE_MAP.put(type.name, type);
28     }
29     
30     static {
31         add(Types.BOOLEAN);
32         add(Types.BYTE);
33         add(Types.CHARACTER);
34         add(Types.SHORT);
35         add(Types.INTEGER);
36         add(Types.LONG);
37         add(Types.FLOAT);
38         add(Types.DOUBLE);
39         add(Types.STRING);
40         
41         TYPE_MAP.put("[Boolean]", Types.list(Types.BOOLEAN));
42         TYPE_MAP.put("[Byte]", Types.list(Types.BYTE));
43         TYPE_MAP.put("[Character]", Types.list(Types.CHARACTER));
44         TYPE_MAP.put("[Short]", Types.list(Types.SHORT));
45         TYPE_MAP.put("[Integer]", Types.list(Types.INTEGER));
46         TYPE_MAP.put("[Long]", Types.list(Types.LONG));
47         TYPE_MAP.put("[Float]", Types.list(Types.FLOAT));
48         TYPE_MAP.put("[Double]", Types.list(Types.DOUBLE));
49         TYPE_MAP.put("[String]", Types.list(Types.STRING));
50         
51         TYPE_MAP.put("Vector Boolean", Types.vector(Types.BOOLEAN));
52         TYPE_MAP.put("Vector Byte", Types.vector(Types.BYTE));
53         TYPE_MAP.put("Vector Character", Types.vector(Types.CHARACTER));
54         TYPE_MAP.put("Vector Short", Types.vector(Types.SHORT));
55         TYPE_MAP.put("Vector Integer", Types.vector(Types.INTEGER));
56         TYPE_MAP.put("Vector Long", Types.vector(Types.LONG));
57         TYPE_MAP.put("Vector Float", Types.vector(Types.FLOAT));
58         TYPE_MAP.put("Vector Double", Types.vector(Types.DOUBLE));
59         TYPE_MAP.put("Vector String", Types.vector(Types.STRING));
60         
61         add(Types.BYTE_ARRAY);
62         add((TCon)Types.RESOURCE);
63         add(Types.con("Simantics/Variables", "VariableMap"));
64     }
65     
66     /**
67      * This is very rude method for converting SCL type text to SCL type.
68      * All uses of this method should be replaced in the future by use of SCL compiler
69      * and actual lookups to dependent SCL modules 
70      */
71     public static Type getType(String typeText) {
72         Type type = TYPE_MAP.get(typeText);
73         if(type == null) {
74             LOGGER.warn("SCLTypeUtils.getType cannot transform '" + typeText + "' to type. Returns a as default.");
75             return Types.var(Kinds.STAR);
76         }
77         return type;
78     }
79     
80     public static Type getType(Datatype dataType) {
81         if(dataType instanceof DoubleType)
82             return Types.DOUBLE;
83         else if(dataType instanceof IntegerType)
84             return Types.INTEGER;
85         else if(dataType instanceof StringType)
86             return Types.STRING;
87         else if(dataType instanceof BooleanType)
88             return Types.BOOLEAN;
89         else if(dataType instanceof FloatType)
90             return Types.FLOAT;
91         else if(dataType instanceof LongType)
92             return Types.LONG;
93         else if(dataType instanceof ByteType)
94             return Types.BYTE;
95         else if(dataType instanceof ArrayType)
96             return Types.list(getType(((ArrayType)dataType).componentType));
97         else {
98             LOGGER.warn("SCLTypeUtils.getType cannot transform data type '" + dataType + "' to type. Returns a as default.");
99             return Types.var(Kinds.STAR);
100         }
101     }
102     
103     public static Type getType(PropertyInfo propertyInfo) {
104         if(propertyInfo.requiredValueType != null)
105             return getType(propertyInfo.requiredValueType);
106         else if(propertyInfo.requiredDatatype != null)
107             return getType(propertyInfo.requiredDatatype);
108         else {
109             LOGGER.warn(propertyInfo.name + " doesn't have type information. Returns a as default.");
110             return Types.var(Kinds.STAR);
111         }
112     }
113 }