source: java2python/geniuswebtranslator/geniuswebsrc/geniusweb/profile/DefaultPartialOrdering.java@ 818

Last change on this file since 818 was 818, checked in by wouter, 6 months ago

#278 all code seems annotated @NonNull

File size: 5.7 KB
Line 
1package geniusweb.profile;
2
3import java.io.IOException;
4import java.util.ArrayList;
5import java.util.Arrays;
6import java.util.HashMap;
7import java.util.HashSet;
8import java.util.LinkedList;
9import java.util.List;
10import java.util.Map;
11import java.util.Set;
12
13import org.eclipse.jdt.annotation.NonNull;
14
15import com.fasterxml.jackson.annotation.JsonAutoDetect;
16import com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility;
17import com.fasterxml.jackson.annotation.JsonCreator;
18import com.fasterxml.jackson.annotation.JsonProperty;
19import com.fasterxml.jackson.core.JsonGenerator;
20import com.fasterxml.jackson.databind.DeserializationContext;
21import com.fasterxml.jackson.databind.JsonSerializer;
22import com.fasterxml.jackson.databind.KeyDeserializer;
23import com.fasterxml.jackson.databind.ObjectMapper;
24import com.fasterxml.jackson.databind.SerializerProvider;
25import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
26import com.fasterxml.jackson.databind.annotation.JsonSerialize;
27
28import geniusweb.issuevalue.Bid;
29import geniusweb.issuevalue.Domain;
30
31/**
32 * Strange that we need to do this. Bid is completely standard. The complication
33 * that this solves is that the keys are places as STRING in the json code
34 * because json allows only strings as key.
35 */
36@SuppressWarnings("serial")
37//#PY # key deserializer not needed in python
38class BidDeserializer extends KeyDeserializer {
39 private ObjectMapper jackson = new ObjectMapper();
40
41 @Override
42 public Bid deserializeKey(String key, DeserializationContext ctxt)
43 throws IOException {
44 return jackson.readValue(key, Bid.class);
45 }
46
47}
48
49/**
50 * Serializes a Bid to string. Unfortunately by default jackson uses
51 * key.toString() for serializing (rather than
52 * {@link ObjectMapper#writeValueAsString(Object)}).
53 *
54 */
55//#PY # Key serializer not needed in python
56class BidSerializer extends JsonSerializer<Bid> {
57 private ObjectMapper jackson = new ObjectMapper();
58
59 @Override
60 public void serialize(Bid bid, JsonGenerator gen,
61 SerializerProvider serializers) throws IOException {
62 gen.writeFieldName(jackson.writeValueAsString(bid));
63 }
64
65}
66
67/**
68 * Default implementation of partial ordering that stores all is-better
69 * relations explicitly in a map.
70 *
71 * NOTICE this can handle profiles of max size Integer. This is because various
72 * functions used here rely on basic java functions that can handle only int.
73 * Besides, the size of partial maps grows very rapidly so this approach is
74 * limited anyway.
75 */
76@JsonAutoDetect(fieldVisibility = Visibility.ANY, getterVisibility = Visibility.NONE, setterVisibility = Visibility.NONE, isGetterVisibility = Visibility.NONE)
77public class DefaultPartialOrdering extends DefaultProfile
78 implements PartialOrdering {
79
80 /**
81 * Set is sparsely filled. If a Bid is not a key, it is not better than any
82 * other bid.
83 */
84 //#PY # not needed in pyson, has fallback for key (de)serialization
85 @JsonDeserialize(keyUsing = BidDeserializer.class)
86 //#PY # not needed in pyson, has fallback for key (de)serialization
87 @JsonSerialize(keyUsing = BidSerializer.class)
88 private final @NonNull Map<@NonNull Bid, @NonNull Set<@NonNull Bid>> better = new HashMap<>();
89
90 /**
91 * @param name the name for the profile
92 * @param domain the {@link Domain} description
93 * @param reservationBid the reservation {@link Bid} possibly null
94 * @param better a map with keys = a better bid and value=a less
95 * good bid.
96 */
97 @JsonCreator
98 public DefaultPartialOrdering(
99 final @NonNull @JsonProperty("name") String name,
100 final @NonNull @JsonProperty("domain") Domain domain,
101 final @JsonProperty("reservationBid") Bid reservationBid,
102 final @NonNull @JsonProperty("better") Map<@NonNull Bid, @NonNull Set<@NonNull Bid>> better) {
103 super(name, domain, reservationBid);
104 this.better.putAll(better);
105 }
106
107 @Override
108 public boolean isPreferredOrEqual(final @NonNull Bid bid1,
109 final @NonNull Bid bid2) {
110 if (!better.containsKey(bid1))
111 return false;
112 return better.get(bid1).contains(bid2);
113 }
114
115 /**
116 *
117 * @return a list with all the bids that are referred to, either as better
118 * or as worse than another bid
119 */
120 public @NonNull List<@NonNull Bid> getBids() {
121 // FIXME the iteration order may not be guaranteed!
122 final @NonNull Set<@NonNull Bid> bids = new HashSet<>();
123 for (@NonNull
124 Bid bid : better.keySet()) {
125 bids.add(bid);
126 bids.addAll(better.get(bid));
127 }
128 return new ArrayList<Bid>(bids);
129 }
130
131 /**
132 *
133 * @return a list of tuples [bid1index, bid2index]. It indicates that
134 * bids[bid1index] isbetterthan bids[bid2index].
135 */
136 public @NonNull List<@NonNull List<@NonNull Integer>> getBetter() {
137 final @NonNull List<@NonNull List<@NonNull Integer>> betterlist = new LinkedList<>();
138 final @NonNull List<@NonNull Bid> bidslist = getBids();
139
140 for (final @NonNull Bid bid : bidslist) {
141 if (better.containsKey(bid)) {
142 for (final @NonNull Bid worsebid : better.get(bid)) {
143 betterlist.add(Arrays.asList(bidslist.indexOf(bid),
144 bidslist.indexOf(worsebid)));
145 }
146 }
147 }
148
149 return betterlist;
150 }
151
152 @Override
153 public @NonNull String toString() {
154 return "DefaultPartialOrdering[" + getValuesString() + "," + better
155 + "]";
156 }
157
158 @Override
159 public int hashCode() {
160 final int prime = 31;
161 int result = super.hashCode();
162 result = prime * result + ((better == null) ? 0 : better.hashCode());
163 return result;
164 }
165
166 @Override
167 public boolean equals(Object obj) {
168 if (this == obj)
169 return true;
170 if (!super.equals(obj))
171 return false;
172 if (getClass() != obj.getClass())
173 return false;
174 DefaultPartialOrdering other = (DefaultPartialOrdering) obj;
175 if (better == null) {
176 if (other.better != null)
177 return false;
178 } else if (!better.equals(other.better))
179 return false;
180 return true;
181 }
182
183}
Note: See TracBrowser for help on using the repository browser.