1 /*******************************************************************************
2 * Copyright (c) 2010 Association for Decentralized Information Management in
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.databoard.binding.factory;
16 import org.simantics.databoard.Bindings;
17 import org.simantics.databoard.binding.Binding;
18 import org.simantics.databoard.binding.error.BindingConstructionException;
19 import org.simantics.databoard.binding.impl.ArrayListBinding;
20 import org.simantics.databoard.binding.impl.TreeMapBinding;
21 import org.simantics.databoard.binding.mutable.ContainerOptionalBinding;
22 import org.simantics.databoard.binding.mutable.MutableBooleanBinding;
23 import org.simantics.databoard.binding.mutable.MutableByteBinding;
24 import org.simantics.databoard.binding.mutable.MutableDoubleBinding;
25 import org.simantics.databoard.binding.mutable.MutableFloatBinding;
26 import org.simantics.databoard.binding.mutable.MutableIntegerBinding;
27 import org.simantics.databoard.binding.mutable.MutableLongBinding;
28 import org.simantics.databoard.binding.mutable.MutableStringBinding;
29 import org.simantics.databoard.binding.mutable.UnionTaggedObjectBinding;
30 import org.simantics.databoard.type.ArrayType;
31 import org.simantics.databoard.type.BooleanType;
32 import org.simantics.databoard.type.ByteType;
33 import org.simantics.databoard.type.Datatype;
34 import org.simantics.databoard.type.DoubleType;
35 import org.simantics.databoard.type.FloatType;
36 import org.simantics.databoard.type.IntegerType;
37 import org.simantics.databoard.type.LongType;
38 import org.simantics.databoard.type.MapType;
39 import org.simantics.databoard.type.OptionalType;
40 import org.simantics.databoard.type.RecordType;
41 import org.simantics.databoard.type.StringType;
42 import org.simantics.databoard.type.UnionType;
45 * MutableBindingScheme is a type to binding mapping that binds any DataType to an Object.
46 * All resulting bindings are completely mutable java classes.
48 * DataType | Class of the bound instance
49 * ===================|==================
50 * BooleanType | MutableBoolean.class
51 * ByteType | MutableByte.class
52 * FloatType | MutableFloat.class
53 * DoubleType | MutableDouble.class
54 * IntegerType | MutableInt.class
55 * LongType | MutableLong.class
56 * StringType | MutableString.class
57 * UnionType | TaggedObject.class
58 * OptionType | ValueContainer.class
59 * RecordType | Object[].class
60 * ArrayType | ArrayList.class
61 * MapType | TreeMap.class
62 * VariantType | MutableVariant.class
64 * @author Toni Kalajainen <toni.kalajainen@vtt.fi>
67 public class MutableBindingFactory extends TypeBindingFactory {
70 * Construct a binding factory.
72 public MutableBindingFactory() {
77 * Construct a scheme factory that appends constructed bindings to the user given
80 * @param repository repository where bindings are placed
82 public MutableBindingFactory(Map<Datatype, Binding> repository) {
87 protected Binding doConstruct(Datatype type)
88 throws BindingConstructionException {
90 // Exact, non-annotated types
91 if (type.equals( Bindings.BOOLEAN.type() )) return Bindings.MUTABLE_BOOLEAN;
92 if (type.equals( Bindings.BYTE.type() )) return Bindings.MUTABLE_BYTE;
93 if (type.equals( Bindings.INTEGER.type() )) return Bindings.MUTABLE_INTEGER;
94 if (type.equals( Bindings.LONG.type() )) return Bindings.MUTABLE_LONG;
95 if (type.equals( Bindings.FLOAT.type() )) return Bindings.MUTABLE_FLOAT;
96 if (type.equals( Bindings.DOUBLE.type() )) return Bindings.MUTABLE_DOUBLE;
97 if (type.equals( Bindings.STRING.type() )) return Bindings.MUTABLE_STRING;
98 if (type.equals( Bindings.VARIANT.type() )) return Bindings.MUTABLE_VARIANT;
101 if (type instanceof BooleanType) return new MutableBooleanBinding((BooleanType)type);
102 if (type instanceof DoubleType) return new MutableDoubleBinding((DoubleType)type);
103 if (type instanceof FloatType) return new MutableFloatBinding((FloatType)type);
104 if (type instanceof ByteType) return new MutableByteBinding((ByteType)type);
105 if (type instanceof IntegerType) return new MutableIntegerBinding((IntegerType)type);
106 if (type instanceof LongType) return new MutableLongBinding((LongType)type);
107 if (type instanceof StringType) return new MutableStringBinding((StringType)type);
110 if (type instanceof ArrayType) {
111 ArrayType arrayType = (ArrayType) type;
112 Datatype componentType = arrayType.componentType();
114 ArrayListBinding binding = new ArrayListBinding(arrayType, null);
115 inprogress.put(type, binding);
116 binding.componentBinding = construct( componentType );
117 inprogress.remove(type);
121 if (type instanceof OptionalType) {
122 OptionalType optionalType = (OptionalType) type;
123 Datatype componentType = optionalType.componentType;
124 ContainerOptionalBinding binding = new ContainerOptionalBinding( optionalType, null );
125 inprogress.put(type, binding);
126 binding.componentBinding = construct( componentType );
127 inprogress.remove(type);
131 if (type instanceof RecordType) {
132 RecordType recordType = (RecordType) type;
133 Binding componentBindings[] = new Binding[ recordType.getComponentCount() ];
134 RecordObjectArrayBinding binding = new RecordObjectArrayBinding(recordType, componentBindings);
135 inprogress.put(type, binding);
136 for (int i=0; i<componentBindings.length; i++) {
137 componentBindings[i] = construct( recordType.getComponentType(i) );
139 inprogress.remove(type);
143 if (type instanceof UnionType) {
144 UnionType unionType = (UnionType) type;
145 Binding componentBindings[] = new Binding[ unionType.components.length ];
146 UnionTaggedObjectBinding binding = new UnionTaggedObjectBinding(unionType, componentBindings);
147 inprogress.put(type, binding);
148 for (int i=0; i<componentBindings.length; i++) {
149 componentBindings[i] = construct( unionType.getComponent(i).type );
151 inprogress.remove(type);
155 if (type instanceof MapType) {
156 MapType mapType = (MapType) type;
157 TreeMapBinding binding = new TreeMapBinding(mapType, null, null);
158 inprogress.put(type, binding);
159 binding.setKeyBinding( construct(mapType.keyType) );
160 binding.setValueBinding( construct(mapType.valueType) );
161 inprogress.remove(type);
165 throw new BindingConstructionException("Unexpected, I don't know how to create binding for "+type);
169 public boolean supportsType(Datatype type) {
171 if (failures.containsKey(type)) return false;