1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
|
/*
* Copyright 2000-2014 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.vaadin.ui.declarative;
import java.io.Serializable;
import java.math.BigDecimal;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.text.NumberFormat;
import java.util.Collections;
import java.util.Date;
import java.util.Locale;
import java.util.Map;
import java.util.Set;
import java.util.TimeZone;
import java.util.concurrent.ConcurrentHashMap;
import org.jsoup.parser.Parser;
import com.vaadin.data.util.converter.Converter;
import com.vaadin.data.util.converter.StringToBigDecimalConverter;
import com.vaadin.data.util.converter.StringToDoubleConverter;
import com.vaadin.data.util.converter.StringToFloatConverter;
import com.vaadin.event.ShortcutAction;
import com.vaadin.server.Resource;
import com.vaadin.ui.AbstractSelect;
import com.vaadin.ui.declarative.converters.DesignDateConverter;
import com.vaadin.ui.declarative.converters.DesignEnumConverter;
import com.vaadin.ui.declarative.converters.DesignObjectConverter;
import com.vaadin.ui.declarative.converters.DesignResourceConverter;
import com.vaadin.ui.declarative.converters.DesignShortcutActionConverter;
import com.vaadin.ui.declarative.converters.DesignTimeZoneConverter;
import com.vaadin.ui.declarative.converters.DesignToStringConverter;
/**
* Class focused on flexible and consistent formatting and parsing of different
* values throughout reading and writing {@link Design}. An instance of this
* class is used by {@link DesignAttributeHandler}.
*
* @since 7.4
* @author Vaadin Ltd
*/
public class DesignFormatter implements Serializable {
private final Map<Class<?>, Converter<String, ?>> converterMap = new ConcurrentHashMap<Class<?>, Converter<String, ?>>();
private final Converter<String, Enum> stringEnumConverter = new DesignEnumConverter();
private final Converter<String, Object> stringObjectConverter = new DesignObjectConverter();
/**
* Creates the formatter with default types already mapped.
*/
public DesignFormatter() {
mapDefaultTypes();
}
/**
* Maps default types to their converters.
*
*/
protected void mapDefaultTypes() {
// numbers use standard toString/valueOf approach
for (Class<?> c : new Class<?>[] { Byte.class, Short.class,
Integer.class, Long.class }) {
DesignToStringConverter<?> conv = new DesignToStringConverter(c);
converterMap.put(c, conv);
try {
converterMap.put((Class<?>) c.getField("TYPE").get(null), conv);
} catch (Exception e) {
; // this will never happen
}
}
// booleans use a bit different converter than the standard one
// "false" is boolean false, everything else is boolean true
Converter<String, Boolean> booleanConverter = new Converter<String, Boolean>() {
@Override
public Boolean convertToModel(String value,
Class<? extends Boolean> targetType, Locale locale)
throws Converter.ConversionException {
return !value.equalsIgnoreCase("false");
}
@Override
public String convertToPresentation(Boolean value,
Class<? extends String> targetType, Locale locale)
throws Converter.ConversionException {
if (value.booleanValue()) {
return "";
} else {
return "false";
}
}
@Override
public Class<Boolean> getModelType() {
return Boolean.class;
}
@Override
public Class<String> getPresentationType() {
return String.class;
}
};
converterMap.put(Boolean.class, booleanConverter);
converterMap.put(boolean.class, booleanConverter);
// floats and doubles use formatters
final DecimalFormatSymbols symbols = new DecimalFormatSymbols(
new Locale("en_US"));
final DecimalFormat fmt = new DecimalFormat("0.###", symbols);
fmt.setGroupingUsed(false);
Converter<String, ?> floatConverter = new StringToFloatConverter() {
@Override
protected NumberFormat getFormat(Locale locale) {
return fmt;
};
};
converterMap.put(Float.class, floatConverter);
converterMap.put(float.class, floatConverter);
Converter<String, ?> doubleConverter = new StringToDoubleConverter() {
@Override
protected NumberFormat getFormat(Locale locale) {
return fmt;
};
};
converterMap.put(Double.class, doubleConverter);
converterMap.put(double.class, doubleConverter);
final DecimalFormat bigDecimalFmt = new DecimalFormat("0.###", symbols);
bigDecimalFmt.setGroupingUsed(false);
bigDecimalFmt.setParseBigDecimal(true);
converterMap.put(BigDecimal.class, new StringToBigDecimalConverter() {
@Override
protected NumberFormat getFormat(Locale locale) {
return bigDecimalFmt;
};
});
// strings do nothing
converterMap.put(String.class, new Converter<String, String>() {
@Override
public String convertToModel(String value,
Class<? extends String> targetType, Locale locale)
throws Converter.ConversionException {
return value;
}
@Override
public String convertToPresentation(String value,
Class<? extends String> targetType, Locale locale)
throws Converter.ConversionException {
return value;
}
@Override
public Class<String> getModelType() {
return String.class;
}
@Override
public Class<String> getPresentationType() {
return String.class;
}
});
// char takes the first character from the string
Converter<String, Character> charConverter = new DesignToStringConverter<Character>(
Character.class) {
@Override
public Character convertToModel(String value,
Class<? extends Character> targetType, Locale locale)
throws Converter.ConversionException {
return value.charAt(0);
}
};
converterMap.put(Character.class, charConverter);
converterMap.put(char.class, charConverter);
converterMap.put(Date.class, new DesignDateConverter());
converterMap.put(ShortcutAction.class,
new DesignShortcutActionConverter());
converterMap.put(Resource.class, new DesignResourceConverter());
converterMap.put(TimeZone.class, new DesignTimeZoneConverter());
}
/**
* Adds a converter for a new type.
*
* @param converter
* Converter to add.
*/
protected <T> void addConverter(Converter<String, T> converter) {
converterMap.put(converter.getModelType(), converter);
}
/**
* Adds a converter for a given type.
*
* @param type
* Type to convert to/from.
* @param converter
* Converter.
*/
protected <T> void addConverter(Class<?> type,
Converter<String, ?> converter) {
converterMap.put(type, converter);
}
/**
* Removes the converter for given type, if it was present.
*
* @param type
* Type to remove converter for.
*/
protected void removeConverter(Class<?> type) {
converterMap.remove(type);
}
/**
* Returns a set of classes that have a converter registered. This is <b>not
* the same</b> as the list of supported classes - subclasses of classes in
* this set are also supported.
*
* @return An unmodifiable set of classes that have a converter registered.
*/
protected Set<Class<?>> getRegisteredClasses() {
return Collections.unmodifiableSet(converterMap.keySet());
}
/**
* Parses a given string as a value of given type
*
* @param value
* String value to convert.
* @param type
* Expected result type.
* @return String converted to the expected result type using a registered
* converter for that type.
*/
public <T> T parse(String value, Class<? extends T> type) {
Converter<String, T> converter = findConverterFor(type);
if (converter != null) {
return converter.convertToModel(value, type, null);
} else {
return null;
}
}
/**
* Finds a formatter for a given object and attempts to format it.
*
* @param object
* Object to format.
* @return String representation of the object, as returned by the
* registered converter.
*/
public String format(Object object) {
return format(object, object == null ? Object.class : object.getClass());
}
/**
* Formats an object according to a converter suitable for a given type.
*
* @param object
* Object to format.
* @param type
* Type of the object.
* @return String representation of the object, as returned by the
* registered converter.
*/
public <T> String format(T object, Class<? extends T> type) {
if (object == null) {
return null;
} else {
return findConverterFor(object.getClass()).convertToPresentation(
object, String.class, null);
}
}
/**
* Checks whether or not a value of a given type can be converted. If a
* converter for a superclass is found, this will return true.
*
* @param type
* Type to check.
* @return <b>true</b> when either a given type or its supertype has a
* converter, <b>false</b> otherwise.
*/
public boolean canConvert(Class<?> type) {
return findConverterFor(type) != null;
}
/**
* Finds a converter for a given type. May return a converter for a
* superclass instead, if one is found and {@code strict} is false.
*
* @param sourceType
* Type to find a converter for.
* @param strict
* Whether or not search should be strict. When this is
* <b>false</b>, a converter for a superclass of given type may
* be returned.
* @return A valid converter for a given type or its supertype, <b>null</b>
* if it was not found.
*/
@SuppressWarnings("unchecked")
protected <T> Converter<String, T> findConverterFor(
Class<? extends T> sourceType, boolean strict) {
if (sourceType == Object.class) {
// Use for propertyIds, itemIds and such. Only string type objects
// are really supported if no special logic is implemented in the
// component.
return (Converter<String, T>) stringObjectConverter;
}
if (converterMap.containsKey(sourceType)) {
return ((Converter<String, T>) converterMap.get(sourceType));
} else if (!strict) {
for (Class<?> supported : converterMap.keySet()) {
if (supported.isAssignableFrom(sourceType)) {
return ((Converter<String, T>) converterMap.get(supported));
}
}
}
if (sourceType.isEnum()) {
return (Converter<String, T>) stringEnumConverter;
}
return null;
}
/**
* Finds a converter for a given type. May return a converter for a
* superclass instead, if one is found.
*
* @param sourceType
* Type to find a converter for.
* @return A valid converter for a given type or its subtype, <b>null</b> if
* it was not found.
*/
protected <T> Converter<String, T> findConverterFor(
Class<? extends T> sourceType) {
return findConverterFor(sourceType, false);
}
/**
* <p>
* Encodes <em>some</em> special characters in a given input String to make
* it ready to be written as contents of a text node. WARNING: this will
* e.g. encode "<someTag>" to "&lt;someTag&gt;" as this method
* doesn't do any parsing and assumes that there are no intended HTML
* elements in the input. Only some entities are actually encoded:
* &,<, > It's assumed that other entities are taken care of by
* Jsoup.
* </p>
* <p>
* Typically, this method will be used by components to encode data (like
* option items in {@link AbstractSelect}) when dumping to HTML format
* </p>
*
* @since 7.5.7
* @param input
* String to be encoded
* @return String with &,< and > replaced with their HTML entities
*/
public static String encodeForTextNode(String input) {
if (input == null) {
return null;
}
return input.replace("&", "&").replace(">", ">")
.replace("<", "<");
}
/**
* <p>
* Decodes HTML entities in a text from text node and replaces them with
* actual characters.
* </p>
*
* <p>
* Typically this method will be used by components to read back data (like
* option items in {@link AbstractSelect}) from HTML. Note that this method
* unencodes more characters than {@link #encodeForTextNode(String)} encodes
* </p>
*
* @since
* @param input
* @return
*/
public static String decodeFromTextNode(String input) {
return Parser.unescapeEntities(input, false);
}
}
|