source: java2python/geniuswebtranslator/geniuswebsrc/geniusweb/issuevalue/ValueSet.java@ 769

Last change on this file since 769 was 769, checked in by wouter, 10 months ago

#263 fix custom code in deserializer

File size: 3.2 KB
Line 
1package geniusweb.issuevalue;
2
3import java.io.IOException;
4
5import com.fasterxml.jackson.core.JsonParser;
6import com.fasterxml.jackson.core.JsonProcessingException;
7import com.fasterxml.jackson.core.ObjectCodec;
8import com.fasterxml.jackson.databind.DeserializationContext;
9import com.fasterxml.jackson.databind.JsonNode;
10import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
11import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
12
13import tudelft.utilities.immutablelist.ImmutableList;
14
15/**
16 * Deserializes a ValueSet by checking the name of the (one and only) property
17 * in there.}. This property is coming from the concrete implementations that we
18 * have: {@link NumberValueSet} and {@link DiscreteValueSet}. This way we can
19 * avoid putting (redundant) type info in each and every valueset. <br>
20 * Python compatibility: define helper class first.
21 */
22@SuppressWarnings("serial")
23/*#PY
24 * from pyson.Deserializer import Deserializer
25 * from pyson.ObjectMapper import ObjectMapper
26 * from decimal import Decimal
27 * from tudelft.utilities.immutablelist.Range import Range
28 *
29 * class ValueSetDeserializer (Deserializer):
30 * jackson=ObjectMapper()
31 *
32 * def deserialize(self, data:object, clas: object) -> ValueSet:
33 * if not isinstance(data,dict):
34 * raise ValueError("Expected dict but found " + str(data)
35 * + " of type " + str(type(data)))
36 * if 'range' in data.keys():
37 * from geniusweb.issuevalue.NumberValueSet import NumberValueSet
38 * return NumberValueSet(self.jackson.parse(data['range'], Range))
39 * if 'values' in data.keys():
40 * from geniusweb.issuevalue.DiscreteValueSet import DiscreteValueSet
41 * return DiscreteValueSet(self.jackson.parse(data['issuevalues'], List))
42 * raise ValueError("Expected 'range' or 'values' property for ValueSet contents");
43 */
44class ValueSetDeserializer extends StdDeserializer<ValueSet> {
45
46 public ValueSetDeserializer() {
47 this(null);
48 }
49
50 public ValueSetDeserializer(Class<?> vc) {
51 super(vc);
52 }
53
54 @Override
55 public ValueSet deserialize(JsonParser jp, DeserializationContext ctxt)
56 throws IOException, JsonProcessingException {
57 ObjectCodec codec = jp.getCodec();
58 JsonNode node = codec.readTree(jp);
59 if (node.get("range") != null) {
60 return codec.treeToValue(node, NumberValueSet.class);
61 } else if (node.get("values") != null) {
62 return codec.treeToValue(node, DiscreteValueSet.class);
63 }
64 throw new IllegalArgumentException(
65 "Expected 'range' or 'values' property for ValueSet contents");
66 }
67
68}
69
70/**
71 *
72 * A set of possible {@link Value}s (usually, of an Issue (which is represented
73 * by a String)).
74 *
75 * Value is the type of objects in this value set. We do not implement ValueSet
76 * right away because types are lost at runtime. Implementing separate classes
77 * for implementing the ValueSet ensures we can get back the type at runtime.
78 * immutable. Thread safe.
79 */
80@JsonDeserialize(using = ValueSetDeserializer.class)
81public interface ValueSet extends ImmutableList<Value> {
82
83 /**
84 *
85 * @param value the value to check
86 * @return true iff this set contains given value
87 */
88 Boolean contains(Value value);
89
90}
Note: See TracBrowser for help on using the repository browser.