blob: 97cd23b6d105929aaf4da1fd1fed941d5f60aff5 [file] [log] [blame]
Madan Jampani7c521002015-03-23 12:23:01 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Madan Jampanif4c88502016-01-21 12:35:36 -080017package org.onosproject.store.primitives.impl;
Madan Jampani7c521002015-03-23 12:23:01 -070018
Madan Jampanifa242182016-01-22 13:42:54 -080019import static com.google.common.base.Preconditions.checkNotNull;
20import static org.onosproject.store.primitives.impl.StateMachineUpdate.Target.MAP_UPDATE;
21import static org.onosproject.store.primitives.impl.StateMachineUpdate.Target.TX_COMMIT;
22import static org.slf4j.LoggerFactory.getLogger;
Madan Jampani7c521002015-03-23 12:23:01 -070023
Flavio Castro41b1f3a2015-07-31 13:51:32 -070024import java.util.Collection;
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -080025import java.util.Collections;
Flavio Castro41b1f3a2015-07-31 13:51:32 -070026import java.util.Map;
27import java.util.Map.Entry;
28import java.util.Objects;
29import java.util.Set;
30import java.util.concurrent.CompletableFuture;
31import java.util.concurrent.CopyOnWriteArraySet;
32import java.util.concurrent.atomic.AtomicReference;
33import java.util.function.BiFunction;
34import java.util.function.Function;
35import java.util.function.Predicate;
36import java.util.stream.Collectors;
37
Madan Jampanifa242182016-01-22 13:42:54 -080038import org.onlab.util.HexString;
39import org.onlab.util.Match;
40import org.onlab.util.SharedExecutors;
41import org.onlab.util.Tools;
42import org.onosproject.core.ApplicationId;
Madan Jampani74da78b2016-02-09 21:18:36 -080043import org.onosproject.store.primitives.TransactionId;
Madan Jampanifa242182016-01-22 13:42:54 -080044import org.onosproject.store.service.AsyncConsistentMap;
45import org.onosproject.store.service.ConsistentMapException;
46import org.onosproject.store.service.ConsistentMapException.ConcurrentModification;
47import org.onosproject.store.service.MapEvent;
48import org.onosproject.store.service.MapEventListener;
Madan Jampani74da78b2016-02-09 21:18:36 -080049import org.onosproject.store.service.MapTransaction;
Madan Jampanifa242182016-01-22 13:42:54 -080050import org.onosproject.store.service.Serializer;
51import org.onosproject.store.service.Versioned;
Aaron Kruglikov1110b2c2016-02-02 16:24:37 -080052import org.onosproject.utils.MeteringAgent;
Madan Jampanifa242182016-01-22 13:42:54 -080053import org.slf4j.Logger;
54
55import com.google.common.cache.CacheBuilder;
56import com.google.common.cache.CacheLoader;
57import com.google.common.cache.LoadingCache;
58import com.google.common.collect.Maps;
Madan Jampani7c521002015-03-23 12:23:01 -070059
60/**
61 * AsyncConsistentMap implementation that is backed by a Raft consensus
62 * based database.
63 *
64 * @param <K> type of key.
65 * @param <V> type of value.
66 */
Flavio Castro41b1f3a2015-07-31 13:51:32 -070067public class DefaultAsyncConsistentMap<K, V> implements AsyncConsistentMap<K, V> {
Madan Jampani7c521002015-03-23 12:23:01 -070068
69 private final String name;
Madan Jampanie8af1cc2015-06-23 14:23:31 -070070 private final ApplicationId applicationId;
Madan Jampanif1b8e172015-03-23 11:42:02 -070071 private final Database database;
Madan Jampani7c521002015-03-23 12:23:01 -070072 private final Serializer serializer;
Madan Jampani02b7fb82015-05-01 13:01:20 -070073 private final boolean readOnly;
Madan Jampanie8af1cc2015-06-23 14:23:31 -070074 private final boolean purgeOnUninstall;
Madan Jampani50589ac2015-06-08 11:38:46 -070075
Flavio Castro41b1f3a2015-07-31 13:51:32 -070076 private static final String PRIMITIVE_NAME = "consistentMap";
Flavio Castro5e1f1292015-07-23 17:14:09 -070077 private static final String SIZE = "size";
78 private static final String IS_EMPTY = "isEmpty";
79 private static final String CONTAINS_KEY = "containsKey";
80 private static final String CONTAINS_VALUE = "containsValue";
81 private static final String GET = "get";
82 private static final String COMPUTE_IF = "computeIf";
83 private static final String PUT = "put";
84 private static final String PUT_AND_GET = "putAndGet";
85 private static final String PUT_IF_ABSENT = "putIfAbsent";
86 private static final String REMOVE = "remove";
87 private static final String CLEAR = "clear";
88 private static final String KEY_SET = "keySet";
89 private static final String VALUES = "values";
90 private static final String ENTRY_SET = "entrySet";
91 private static final String REPLACE = "replace";
92 private static final String COMPUTE_IF_ABSENT = "computeIfAbsent";
93
Madan Jampani50589ac2015-06-08 11:38:46 -070094 private final Set<MapEventListener<K, V>> listeners = new CopyOnWriteArraySet<>();
95
96 private final Logger log = getLogger(getClass());
Flavio Castro41b1f3a2015-07-31 13:51:32 -070097 private final MeteringAgent monitor;
Madan Jampani7c521002015-03-23 12:23:01 -070098
99 private static final String ERROR_NULL_KEY = "Key cannot be null";
100 private static final String ERROR_NULL_VALUE = "Null values are not allowed";
101
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -0800102 // String representation of serialized byte[] -> original key Object
103 private final LoadingCache<String, K> keyCache = CacheBuilder.newBuilder()
Madan Jampani7c521002015-03-23 12:23:01 -0700104 .softValues()
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -0800105 .build(new CacheLoader<String, K>() {
Madan Jampani7c521002015-03-23 12:23:01 -0700106
107 @Override
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -0800108 public K load(String key) {
109 return serializer.decode(HexString.fromHexString(key));
Madan Jampani7c521002015-03-23 12:23:01 -0700110 }
111 });
112
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -0800113 protected String sK(K key) {
114 String s = HexString.toHexString(serializer.encode(key));
115 keyCache.put(s, key);
116 return s;
117 }
118
Madan Jampani7c521002015-03-23 12:23:01 -0700119 protected K dK(String key) {
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -0800120 return keyCache.getUnchecked(key);
Madan Jampani7c521002015-03-23 12:23:01 -0700121 }
122
123 public DefaultAsyncConsistentMap(String name,
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700124 ApplicationId applicationId,
125 Database database,
126 Serializer serializer,
127 boolean readOnly,
128 boolean purgeOnUninstall,
129 boolean meteringEnabled) {
Madan Jampani7c521002015-03-23 12:23:01 -0700130 this.name = checkNotNull(name, "map name cannot be null");
Madan Jampanie8af1cc2015-06-23 14:23:31 -0700131 this.applicationId = applicationId;
Madan Jampanif1b8e172015-03-23 11:42:02 -0700132 this.database = checkNotNull(database, "database cannot be null");
Madan Jampani7c521002015-03-23 12:23:01 -0700133 this.serializer = checkNotNull(serializer, "serializer cannot be null");
Madan Jampani02b7fb82015-05-01 13:01:20 -0700134 this.readOnly = readOnly;
Madan Jampanie8af1cc2015-06-23 14:23:31 -0700135 this.purgeOnUninstall = purgeOnUninstall;
Madan Jampani648451f2015-07-21 22:09:05 -0700136 this.database.registerConsumer(update -> {
137 SharedExecutors.getSingleThreadExecutor().execute(() -> {
Madan Jampani9eb55d12015-08-14 07:47:56 -0700138 if (listeners.isEmpty()) {
139 return;
140 }
141 try {
142 if (update.target() == MAP_UPDATE) {
143 Result<UpdateResult<String, byte[]>> result = update.output();
144 if (result.success() && result.value().mapName().equals(name)) {
145 MapEvent<K, V> mapEvent = result.value()
146 .<K, V>map(this::dK,
147 v -> serializer.decode(Tools.copyOf(v)))
148 .toMapEvent();
149 notifyListeners(mapEvent);
150 }
151 } else if (update.target() == TX_COMMIT) {
152 CommitResponse response = update.output();
153 if (response.success()) {
154 response.updates().forEach(u -> {
155 if (u.mapName().equals(name)) {
156 MapEvent<K, V> mapEvent =
157 u.<K, V>map(this::dK,
158 v -> serializer.decode(Tools.copyOf(v)))
159 .toMapEvent();
160 notifyListeners(mapEvent);
161 }
162 });
163 }
Madan Jampani648451f2015-07-21 22:09:05 -0700164 }
Madan Jampani9eb55d12015-08-14 07:47:56 -0700165 } catch (Exception e) {
166 log.warn("Error notifying listeners", e);
Madan Jampani648451f2015-07-21 22:09:05 -0700167 }
168 });
169 });
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700170 this.monitor = new MeteringAgent(PRIMITIVE_NAME, name, meteringEnabled);
Madan Jampani50589ac2015-06-08 11:38:46 -0700171 }
172
173 /**
174 * Returns this map name.
175 * @return map name
176 */
Madan Jampania090a112016-01-18 16:38:17 -0800177 @Override
Madan Jampani50589ac2015-06-08 11:38:46 -0700178 public String name() {
179 return name;
180 }
181
182 /**
183 * Returns the serializer for map entries.
184 * @return map entry serializer
185 */
186 public Serializer serializer() {
187 return serializer;
Madan Jampani7c521002015-03-23 12:23:01 -0700188 }
189
Madan Jampanie8af1cc2015-06-23 14:23:31 -0700190 /**
191 * Returns the applicationId owning this map.
192 * @return application Id
193 */
Madan Jampania090a112016-01-18 16:38:17 -0800194 @Override
Madan Jampanie8af1cc2015-06-23 14:23:31 -0700195 public ApplicationId applicationId() {
196 return applicationId;
197 }
198
199 /**
200 * Returns whether the map entries should be purged when the application
201 * owning it is uninstalled.
202 * @return true is map needs to cleared on app uninstall; false otherwise
203 */
204 public boolean purgeOnUninstall() {
205 return purgeOnUninstall;
206 }
207
Madan Jampani7c521002015-03-23 12:23:01 -0700208 @Override
209 public CompletableFuture<Integer> size() {
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700210 final MeteringAgent.Context timer = monitor.startTimer(SIZE);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700211 return database.mapSize(name)
Flavio Castro6e044612015-08-13 14:13:58 -0700212 .whenComplete((r, e) -> timer.stop(e));
Madan Jampani7c521002015-03-23 12:23:01 -0700213 }
214
215 @Override
216 public CompletableFuture<Boolean> isEmpty() {
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700217 final MeteringAgent.Context timer = monitor.startTimer(IS_EMPTY);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700218 return database.mapIsEmpty(name)
Flavio Castro6e044612015-08-13 14:13:58 -0700219 .whenComplete((r, e) -> timer.stop(e));
Madan Jampani7c521002015-03-23 12:23:01 -0700220 }
221
222 @Override
223 public CompletableFuture<Boolean> containsKey(K key) {
224 checkNotNull(key, ERROR_NULL_KEY);
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700225 final MeteringAgent.Context timer = monitor.startTimer(CONTAINS_KEY);
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -0800226 return database.mapContainsKey(name, sK(key))
Flavio Castro6e044612015-08-13 14:13:58 -0700227 .whenComplete((r, e) -> timer.stop(e));
Madan Jampani7c521002015-03-23 12:23:01 -0700228 }
229
230 @Override
231 public CompletableFuture<Boolean> containsValue(V value) {
232 checkNotNull(value, ERROR_NULL_VALUE);
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700233 final MeteringAgent.Context timer = monitor.startTimer(CONTAINS_VALUE);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700234 return database.mapContainsValue(name, serializer.encode(value))
Flavio Castro6e044612015-08-13 14:13:58 -0700235 .whenComplete((r, e) -> timer.stop(e));
Madan Jampani7c521002015-03-23 12:23:01 -0700236 }
237
238 @Override
239 public CompletableFuture<Versioned<V>> get(K key) {
240 checkNotNull(key, ERROR_NULL_KEY);
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700241 final MeteringAgent.Context timer = monitor.startTimer(GET);
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -0800242 return database.mapGet(name, sK(key))
Flavio Castro6e044612015-08-13 14:13:58 -0700243 .whenComplete((r, e) -> timer.stop(e))
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700244 .thenApply(v -> v != null ? v.map(serializer::decode) : null);
Madan Jampani7c521002015-03-23 12:23:01 -0700245 }
246
247 @Override
Madan Jampani346d4f52015-05-04 11:09:39 -0700248 public CompletableFuture<Versioned<V>> computeIfAbsent(K key,
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700249 Function<? super K, ? extends V> mappingFunction) {
Madan Jampani7804c992015-07-20 13:20:19 -0700250 checkNotNull(key, ERROR_NULL_KEY);
251 checkNotNull(mappingFunction, "Mapping function cannot be null");
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700252 final MeteringAgent.Context timer = monitor.startTimer(COMPUTE_IF_ABSENT);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700253 return updateAndGet(key, Match.ifNull(), Match.any(), mappingFunction.apply(key))
Flavio Castro6e044612015-08-13 14:13:58 -0700254 .whenComplete((r, e) -> timer.stop(e))
Flavio Castro5e1f1292015-07-23 17:14:09 -0700255 .thenApply(v -> v.newValue());
Madan Jampani346d4f52015-05-04 11:09:39 -0700256 }
257
258 @Override
259 public CompletableFuture<Versioned<V>> computeIfPresent(K key,
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700260 BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
Madan Jampani346d4f52015-05-04 11:09:39 -0700261 return computeIf(key, Objects::nonNull, remappingFunction);
262 }
263
264 @Override
265 public CompletableFuture<Versioned<V>> compute(K key,
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700266 BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
Madan Jampani346d4f52015-05-04 11:09:39 -0700267 return computeIf(key, v -> true, remappingFunction);
268 }
269
270 @Override
271 public CompletableFuture<Versioned<V>> computeIf(K key,
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700272 Predicate<? super V> condition,
273 BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
Madan Jampani346d4f52015-05-04 11:09:39 -0700274 checkNotNull(key, ERROR_NULL_KEY);
275 checkNotNull(condition, "predicate function cannot be null");
276 checkNotNull(remappingFunction, "Remapping function cannot be null");
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700277 final MeteringAgent.Context timer = monitor.startTimer(COMPUTE_IF);
Madan Jampani346d4f52015-05-04 11:09:39 -0700278 return get(key).thenCompose(r1 -> {
279 V existingValue = r1 == null ? null : r1.value();
280 // if the condition evaluates to false, return existing value.
281 if (!condition.test(existingValue)) {
282 return CompletableFuture.completedFuture(r1);
283 }
284
285 AtomicReference<V> computedValue = new AtomicReference<>();
286 // if remappingFunction throws an exception, return the exception.
287 try {
288 computedValue.set(remappingFunction.apply(key, existingValue));
289 } catch (Exception e) {
290 return Tools.exceptionalFuture(e);
291 }
Madan Jampani7804c992015-07-20 13:20:19 -0700292 if (computedValue.get() == null && r1 == null) {
293 return CompletableFuture.completedFuture(null);
Madan Jampani346d4f52015-05-04 11:09:39 -0700294 }
Madan Jampani7804c992015-07-20 13:20:19 -0700295 Match<V> valueMatcher = r1 == null ? Match.ifNull() : Match.any();
296 Match<Long> versionMatcher = r1 == null ? Match.any() : Match.ifValue(r1.version());
297 return updateAndGet(key, valueMatcher, versionMatcher, computedValue.get())
Flavio Castro6e044612015-08-13 14:13:58 -0700298 .whenComplete((r, e) -> timer.stop(e))
Madan Jampani7804c992015-07-20 13:20:19 -0700299 .thenApply(v -> {
300 if (v.updated()) {
301 return v.newValue();
302 } else {
Madan Jampanic7f49f92015-12-10 11:35:06 -0800303 throw new ConcurrentModification("Concurrent update to " + name + " detected");
Madan Jampani7804c992015-07-20 13:20:19 -0700304 }
305 });
306 });
Madan Jampani346d4f52015-05-04 11:09:39 -0700307 }
308
309 @Override
Madan Jampani7c521002015-03-23 12:23:01 -0700310 public CompletableFuture<Versioned<V>> put(K key, V value) {
311 checkNotNull(key, ERROR_NULL_KEY);
312 checkNotNull(value, ERROR_NULL_VALUE);
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700313 final MeteringAgent.Context timer = monitor.startTimer(PUT);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700314 return updateAndGet(key, Match.any(), Match.any(), value).thenApply(v -> v.oldValue())
Flavio Castro6e044612015-08-13 14:13:58 -0700315 .whenComplete((r, e) -> timer.stop(e));
Madan Jampani346d4f52015-05-04 11:09:39 -0700316 }
317
318 @Override
319 public CompletableFuture<Versioned<V>> putAndGet(K key, V value) {
320 checkNotNull(key, ERROR_NULL_KEY);
321 checkNotNull(value, ERROR_NULL_VALUE);
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700322 final MeteringAgent.Context timer = monitor.startTimer(PUT_AND_GET);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700323 return updateAndGet(key, Match.any(), Match.any(), value).thenApply(v -> v.newValue())
Flavio Castro6e044612015-08-13 14:13:58 -0700324 .whenComplete((r, e) -> timer.stop(e));
Madan Jampani7c521002015-03-23 12:23:01 -0700325 }
326
327 @Override
328 public CompletableFuture<Versioned<V>> remove(K key) {
329 checkNotNull(key, ERROR_NULL_KEY);
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700330 final MeteringAgent.Context timer = monitor.startTimer(REMOVE);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700331 return updateAndGet(key, Match.any(), Match.any(), null).thenApply(v -> v.oldValue())
Flavio Castro6e044612015-08-13 14:13:58 -0700332 .whenComplete((r, e) -> timer.stop(e));
Madan Jampani7c521002015-03-23 12:23:01 -0700333 }
334
335 @Override
336 public CompletableFuture<Void> clear() {
Madan Jampani02b7fb82015-05-01 13:01:20 -0700337 checkIfUnmodifiable();
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700338 final MeteringAgent.Context timer = monitor.startTimer(CLEAR);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700339 return database.mapClear(name).thenApply(this::unwrapResult)
Flavio Castro6e044612015-08-13 14:13:58 -0700340 .whenComplete((r, e) -> timer.stop(e));
Madan Jampani7c521002015-03-23 12:23:01 -0700341 }
342
343 @Override
344 public CompletableFuture<Set<K>> keySet() {
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700345 final MeteringAgent.Context timer = monitor.startTimer(KEY_SET);
Madan Jampani7804c992015-07-20 13:20:19 -0700346 return database.mapKeySet(name)
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -0800347 .thenApply(s -> newMappingKeySet(s))
Flavio Castro6e044612015-08-13 14:13:58 -0700348 .whenComplete((r, e) -> timer.stop(e));
Madan Jampani7c521002015-03-23 12:23:01 -0700349 }
350
351 @Override
352 public CompletableFuture<Collection<Versioned<V>>> values() {
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700353 final MeteringAgent.Context timer = monitor.startTimer(VALUES);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700354 return database.mapValues(name)
Flavio Castro6e044612015-08-13 14:13:58 -0700355 .whenComplete((r, e) -> timer.stop(e))
Flavio Castro5e1f1292015-07-23 17:14:09 -0700356 .thenApply(c -> c
357 .stream()
358 .map(v -> v.<V>map(serializer::decode))
359 .collect(Collectors.toList()));
Madan Jampani7c521002015-03-23 12:23:01 -0700360 }
361
362 @Override
363 public CompletableFuture<Set<Entry<K, Versioned<V>>>> entrySet() {
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700364 final MeteringAgent.Context timer = monitor.startTimer(ENTRY_SET);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700365 return database.mapEntrySet(name)
Flavio Castro6e044612015-08-13 14:13:58 -0700366 .whenComplete((r, e) -> timer.stop(e))
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -0800367 .thenApply(s -> newMappingEntrySet(s));
Madan Jampani7c521002015-03-23 12:23:01 -0700368 }
369
370 @Override
371 public CompletableFuture<Versioned<V>> putIfAbsent(K key, V value) {
372 checkNotNull(key, ERROR_NULL_KEY);
373 checkNotNull(value, ERROR_NULL_VALUE);
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700374 final MeteringAgent.Context timer = monitor.startTimer(PUT_IF_ABSENT);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700375 return updateAndGet(key, Match.ifNull(), Match.any(), value)
Flavio Castro6e044612015-08-13 14:13:58 -0700376 .whenComplete((r, e) -> timer.stop(e))
Flavio Castro5e1f1292015-07-23 17:14:09 -0700377 .thenApply(v -> v.oldValue());
Madan Jampani7c521002015-03-23 12:23:01 -0700378 }
379
380 @Override
381 public CompletableFuture<Boolean> remove(K key, V value) {
382 checkNotNull(key, ERROR_NULL_KEY);
383 checkNotNull(value, ERROR_NULL_VALUE);
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700384 final MeteringAgent.Context timer = monitor.startTimer(REMOVE);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700385 return updateAndGet(key, Match.ifValue(value), Match.any(), null)
Flavio Castro6e044612015-08-13 14:13:58 -0700386 .whenComplete((r, e) -> timer.stop(e))
Flavio Castro5e1f1292015-07-23 17:14:09 -0700387 .thenApply(v -> v.updated());
Madan Jampani7c521002015-03-23 12:23:01 -0700388 }
389
390 @Override
391 public CompletableFuture<Boolean> remove(K key, long version) {
392 checkNotNull(key, ERROR_NULL_KEY);
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700393 final MeteringAgent.Context timer = monitor.startTimer(REMOVE);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700394 return updateAndGet(key, Match.any(), Match.ifValue(version), null)
Flavio Castro6e044612015-08-13 14:13:58 -0700395 .whenComplete((r, e) -> timer.stop(e))
Flavio Castro5e1f1292015-07-23 17:14:09 -0700396 .thenApply(v -> v.updated());
Madan Jampani7c521002015-03-23 12:23:01 -0700397 }
398
399 @Override
Jihwan Kim9887ad92015-12-12 00:23:57 +0900400 public CompletableFuture<Versioned<V>> replace(K key, V value) {
401 checkNotNull(key, ERROR_NULL_KEY);
402 checkNotNull(value, ERROR_NULL_VALUE);
403 final MeteringAgent.Context timer = monitor.startTimer(REPLACE);
404 return updateAndGet(key, Match.ifNotNull(), Match.any(), value)
405 .whenComplete((r, e) -> timer.stop(e))
406 .thenApply(v -> v.oldValue());
407 }
408
409 @Override
Madan Jampani7c521002015-03-23 12:23:01 -0700410 public CompletableFuture<Boolean> replace(K key, V oldValue, V newValue) {
411 checkNotNull(key, ERROR_NULL_KEY);
Madan Jampani7804c992015-07-20 13:20:19 -0700412 checkNotNull(oldValue, ERROR_NULL_VALUE);
Madan Jampani7c521002015-03-23 12:23:01 -0700413 checkNotNull(newValue, ERROR_NULL_VALUE);
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700414 final MeteringAgent.Context timer = monitor.startTimer(REPLACE);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700415 return updateAndGet(key, Match.ifValue(oldValue), Match.any(), newValue)
Flavio Castro6e044612015-08-13 14:13:58 -0700416 .whenComplete((r, e) -> timer.stop(e))
Flavio Castro5e1f1292015-07-23 17:14:09 -0700417 .thenApply(v -> v.updated());
Madan Jampani7c521002015-03-23 12:23:01 -0700418 }
419
420 @Override
421 public CompletableFuture<Boolean> replace(K key, long oldVersion, V newValue) {
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700422 final MeteringAgent.Context timer = monitor.startTimer(REPLACE);
Flavio Castro5e1f1292015-07-23 17:14:09 -0700423 return updateAndGet(key, Match.any(), Match.ifValue(oldVersion), newValue)
Flavio Castro6e044612015-08-13 14:13:58 -0700424 .whenComplete((r, e) -> timer.stop(e))
Flavio Castro5e1f1292015-07-23 17:14:09 -0700425 .thenApply(v -> v.updated());
Madan Jampani346d4f52015-05-04 11:09:39 -0700426 }
427
Madan Jampani14a38da2015-11-16 11:29:00 -0800428 /**
429 * Pre-update hook for performing required checks/actions before going forward with an update operation.
430 * @param key map key.
431 */
432 protected void beforeUpdate(K key) {
433 checkIfUnmodifiable();
434 }
435
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -0800436 private Set<K> newMappingKeySet(Set<String> s) {
437 return new MappingSet<>(s, Collections::unmodifiableSet,
438 this::sK, this::dK);
439 }
440
441 private Set<Entry<K, Versioned<V>>> newMappingEntrySet(Set<Entry<String, Versioned<byte[]>>> s) {
442 return new MappingSet<>(s, Collections::unmodifiableSet,
443 this::reverseMapRawEntry, this::mapRawEntry);
444 }
445
Madan Jampani7804c992015-07-20 13:20:19 -0700446 private Map.Entry<K, Versioned<V>> mapRawEntry(Map.Entry<String, Versioned<byte[]>> e) {
447 return Maps.immutableEntry(dK(e.getKey()), e.getValue().<V>map(serializer::decode));
448 }
449
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -0800450 private Map.Entry<String, Versioned<byte[]>> reverseMapRawEntry(Map.Entry<K, Versioned<V>> e) {
451 return Maps.immutableEntry(sK(e.getKey()), e.getValue().map(serializer::encode));
452 }
453
Madan Jampani7804c992015-07-20 13:20:19 -0700454 private CompletableFuture<UpdateResult<K, V>> updateAndGet(K key,
Flavio Castro41b1f3a2015-07-31 13:51:32 -0700455 Match<V> oldValueMatch,
456 Match<Long> oldVersionMatch,
457 V value) {
Madan Jampani14a38da2015-11-16 11:29:00 -0800458 beforeUpdate(key);
Madan Jampani7804c992015-07-20 13:20:19 -0700459 return database.mapUpdate(name,
HIGUCHI Yuta14e865d2015-11-25 20:42:32 -0800460 sK(key),
Flavio Castro5e1f1292015-07-23 17:14:09 -0700461 oldValueMatch.map(serializer::encode),
462 oldVersionMatch,
463 value == null ? null : serializer.encode(value))
Madan Jampani7804c992015-07-20 13:20:19 -0700464 .thenApply(this::unwrapResult)
Madan Jampani85668632015-08-10 10:46:40 -0700465 .thenApply(r -> r.<K, V>map(this::dK, serializer::decode));
Madan Jampani7c521002015-03-23 12:23:01 -0700466 }
Madan Jampanibff6d8f2015-03-31 16:53:47 -0700467
468 private <T> T unwrapResult(Result<T> result) {
469 if (result.status() == Result.Status.LOCKED) {
470 throw new ConsistentMapException.ConcurrentModification();
471 } else if (result.success()) {
472 return result.value();
473 } else {
474 throw new IllegalStateException("Must not be here");
475 }
476 }
Madan Jampani02b7fb82015-05-01 13:01:20 -0700477
478 private void checkIfUnmodifiable() {
479 if (readOnly) {
480 throw new UnsupportedOperationException();
481 }
482 }
Madan Jampani50589ac2015-06-08 11:38:46 -0700483
484 @Override
Madan Jampanidfde6ba2016-01-13 21:36:09 -0800485 public CompletableFuture<Void> addListener(MapEventListener<K, V> listener) {
Madan Jampani50589ac2015-06-08 11:38:46 -0700486 listeners.add(listener);
Madan Jampanidfde6ba2016-01-13 21:36:09 -0800487 return CompletableFuture.completedFuture(null);
Madan Jampani50589ac2015-06-08 11:38:46 -0700488 }
489
490 @Override
Madan Jampanidfde6ba2016-01-13 21:36:09 -0800491 public CompletableFuture<Void> removeListener(MapEventListener<K, V> listener) {
Madan Jampani50589ac2015-06-08 11:38:46 -0700492 listeners.remove(listener);
Madan Jampanidfde6ba2016-01-13 21:36:09 -0800493 return CompletableFuture.completedFuture(null);
Madan Jampani50589ac2015-06-08 11:38:46 -0700494 }
495
Madan Jampani74da78b2016-02-09 21:18:36 -0800496 @Override
497 public CompletableFuture<Boolean> prepare(MapTransaction<K, V> transaction) {
498 return Tools.exceptionalFuture(new UnsupportedOperationException());
499 }
500
501 @Override
502 public CompletableFuture<Void> commit(TransactionId transactionId) {
503 return Tools.exceptionalFuture(new UnsupportedOperationException());
504 }
505
506 @Override
507 public CompletableFuture<Void> rollback(TransactionId transactionId) {
508 return Tools.exceptionalFuture(new UnsupportedOperationException());
509 }
510
Madan Jampani50589ac2015-06-08 11:38:46 -0700511 protected void notifyListeners(MapEvent<K, V> event) {
Madan Jampani85668632015-08-10 10:46:40 -0700512 if (event == null) {
513 return;
514 }
515 listeners.forEach(listener -> {
516 try {
517 listener.event(event);
518 } catch (Exception e) {
519 log.warn("Failure notifying listener about {}", event, e);
Madan Jampani50589ac2015-06-08 11:38:46 -0700520 }
Madan Jampani85668632015-08-10 10:46:40 -0700521 });
Madan Jampani50589ac2015-06-08 11:38:46 -0700522 }
Madan Jampanibab51a42015-08-10 13:53:35 -0700523}