blob: a6c3e5712d3e249f430dac6b4b9c3acdec8cf2c4 [file] [log] [blame]
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -07001/*
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -08002 * Copyright 2015-2016 Open Networking Laboratory
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -07003 *
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 */
16package org.onosproject.store.newresource.impl;
17
18import com.google.common.annotations.Beta;
Sho SHIMIZUe7db6142015-11-04 11:24:22 -080019import com.google.common.collect.ImmutableList;
Sho SHIMIZU83258ae2016-01-29 17:39:07 -080020import com.google.common.collect.ImmutableSet;
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -080021import com.google.common.collect.Maps;
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070022import org.apache.felix.scr.annotations.Activate;
23import org.apache.felix.scr.annotations.Component;
24import org.apache.felix.scr.annotations.Reference;
25import org.apache.felix.scr.annotations.ReferenceCardinality;
26import org.apache.felix.scr.annotations.Service;
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -080027import org.onlab.util.GuavaCollectors;
Thomas Vachuska762a2d82016-01-04 10:25:20 -080028import org.onlab.util.Tools;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080029import org.onosproject.net.newresource.ContinuousResource;
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -080030import org.onosproject.net.newresource.ContinuousResourceId;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080031import org.onosproject.net.newresource.DiscreteResource;
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -080032import org.onosproject.net.newresource.DiscreteResourceId;
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -080033import org.onosproject.net.newresource.ResourceAllocation;
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070034import org.onosproject.net.newresource.ResourceConsumer;
Sho SHIMIZUfa62b472015-11-02 17:35:46 -080035import org.onosproject.net.newresource.ResourceEvent;
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -080036import org.onosproject.net.newresource.ResourceId;
Sho SHIMIZU8fa670a2016-01-14 11:17:18 -080037import org.onosproject.net.newresource.Resource;
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070038import org.onosproject.net.newresource.ResourceStore;
Sho SHIMIZUfa62b472015-11-02 17:35:46 -080039import org.onosproject.net.newresource.ResourceStoreDelegate;
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -080040import org.onosproject.net.newresource.Resources;
Sho SHIMIZUfa62b472015-11-02 17:35:46 -080041import org.onosproject.store.AbstractStore;
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070042import org.onosproject.store.serializers.KryoNamespaces;
43import org.onosproject.store.service.ConsistentMap;
Thomas Vachuska762a2d82016-01-04 10:25:20 -080044import org.onosproject.store.service.ConsistentMapException;
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070045import org.onosproject.store.service.Serializer;
46import org.onosproject.store.service.StorageService;
47import org.onosproject.store.service.TransactionContext;
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070048import org.onosproject.store.service.TransactionalMap;
49import org.onosproject.store.service.Versioned;
50import org.slf4j.Logger;
51import org.slf4j.LoggerFactory;
52
Sho SHIMIZUba41fc12015-08-12 15:43:22 -070053import java.util.Arrays;
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070054import java.util.Collection;
Sho SHIMIZU69420fe2016-02-09 15:01:07 -080055import java.util.LinkedHashMap;
Sho SHIMIZUba41fc12015-08-12 15:43:22 -070056import java.util.LinkedHashSet;
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070057import java.util.List;
58import java.util.Map;
59import java.util.Optional;
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -080060import java.util.Set;
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070061import java.util.stream.Collectors;
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -080062import java.util.stream.Stream;
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070063
64import static com.google.common.base.Preconditions.checkArgument;
65import static com.google.common.base.Preconditions.checkNotNull;
Sho SHIMIZUfa62b472015-11-02 17:35:46 -080066import static org.onosproject.net.newresource.ResourceEvent.Type.*;
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070067
68/**
69 * Implementation of ResourceStore using TransactionalMap.
70 */
Sho SHIMIZU9a2b8292015-10-28 13:00:16 -070071@Component(immediate = true)
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070072@Service
73@Beta
Sho SHIMIZUfa62b472015-11-02 17:35:46 -080074public class ConsistentResourceStore extends AbstractStore<ResourceEvent, ResourceStoreDelegate>
75 implements ResourceStore {
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070076 private static final Logger log = LoggerFactory.getLogger(ConsistentResourceStore.class);
77
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -080078 private static final String DISCRETE_CONSUMER_MAP = "onos-discrete-consumers";
79 private static final String CONTINUOUS_CONSUMER_MAP = "onos-continuous-consumers";
Sho SHIMIZUba41fc12015-08-12 15:43:22 -070080 private static final String CHILD_MAP = "onos-resource-children";
81 private static final Serializer SERIALIZER = Serializer.using(
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -080082 Arrays.asList(KryoNamespaces.BASIC, KryoNamespaces.API),
83 ContinuousResourceAllocation.class);
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070084
Thomas Vachuska762a2d82016-01-04 10:25:20 -080085 // TODO: We should provide centralized values for this
86 private static final int MAX_RETRIES = 5;
87 private static final int RETRY_DELAY = 1_000; // millis
88
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070089 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
90 protected StorageService service;
91
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -080092 private ConsistentMap<DiscreteResourceId, ResourceConsumer> discreteConsumers;
93 private ConsistentMap<ContinuousResourceId, ContinuousResourceAllocation> continuousConsumers;
94 private ConsistentMap<DiscreteResourceId, Set<Resource>> childMap;
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -070095
96 @Activate
97 public void activate() {
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -080098 discreteConsumers = service.<DiscreteResourceId, ResourceConsumer>consistentMapBuilder()
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -080099 .withName(DISCRETE_CONSUMER_MAP)
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700100 .withSerializer(SERIALIZER)
101 .build();
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800102 continuousConsumers = service.<ContinuousResourceId, ContinuousResourceAllocation>consistentMapBuilder()
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800103 .withName(CONTINUOUS_CONSUMER_MAP)
104 .withSerializer(SERIALIZER)
105 .build();
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800106 childMap = service.<DiscreteResourceId, Set<Resource>>consistentMapBuilder()
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700107 .withName(CHILD_MAP)
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700108 .withSerializer(SERIALIZER)
109 .build();
Sho SHIMIZUe7db6142015-11-04 11:24:22 -0800110
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800111 Tools.retryable(() -> childMap.put(Resource.ROOT.id(), new LinkedHashSet<>()),
Thomas Vachuska762a2d82016-01-04 10:25:20 -0800112 ConsistentMapException.class, MAX_RETRIES, RETRY_DELAY);
Madan Jampanic7f49f92015-12-10 11:35:06 -0800113 log.info("Started");
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700114 }
115
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800116 // Computational complexity: O(1) if the resource is discrete type.
117 // O(n) if the resource is continuous type where n is the number of the existing allocations for the resource
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700118 @Override
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800119 public List<ResourceAllocation> getResourceAllocations(ResourceId id) {
120 checkNotNull(id);
121 checkArgument(id instanceof DiscreteResourceId || id instanceof ContinuousResourceId);
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700122
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800123 if (id instanceof DiscreteResourceId) {
124 return getResourceAllocations((DiscreteResourceId) id);
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800125 } else {
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800126 return getResourceAllocations((ContinuousResourceId) id);
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800127 }
128 }
129
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800130 // computational complexity: O(1)
131 private List<ResourceAllocation> getResourceAllocations(DiscreteResourceId resource) {
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800132 Versioned<ResourceConsumer> consumer = discreteConsumers.get(resource);
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700133 if (consumer == null) {
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800134 return ImmutableList.of();
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700135 }
136
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800137 return ImmutableList.of(new ResourceAllocation(Resources.discrete(resource).resource(), consumer.value()));
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800138 }
139
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800140 // computational complexity: O(n) where n is the number of the existing allocations for the resource
141 private List<ResourceAllocation> getResourceAllocations(ContinuousResourceId resource) {
142 Versioned<ContinuousResourceAllocation> allocations = continuousConsumers.get(resource);
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800143 if (allocations == null) {
144 return ImmutableList.of();
145 }
146
147 return allocations.value().allocations().stream()
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800148 .filter(x -> x.resource().id().equals(resource))
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800149 .collect(GuavaCollectors.toImmutableList());
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700150 }
151
152 @Override
Jonathan Hart56151262016-02-11 09:48:50 -0800153 public boolean register(List<Resource> resources) {
Sho SHIMIZU83e17a02015-08-20 14:07:05 -0700154 checkNotNull(resources);
HIGUCHI Yuta6f828c32016-01-20 18:11:05 -0800155 if (log.isTraceEnabled()) {
156 resources.forEach(r -> log.trace("registering {}", r));
157 }
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700158
159 TransactionContext tx = service.transactionContextBuilder().build();
160 tx.begin();
161
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800162 TransactionalMap<DiscreteResourceId, Set<Resource>> childTxMap =
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800163 tx.getTransactionalMap(CHILD_MAP, SERIALIZER);
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700164
Sho SHIMIZU69420fe2016-02-09 15:01:07 -0800165 // the order is preserved by LinkedHashMap
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800166 Map<DiscreteResource, List<Resource>> resourceMap = resources.stream()
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800167 .filter(x -> x.parent().isPresent())
Sho SHIMIZU69420fe2016-02-09 15:01:07 -0800168 .collect(Collectors.groupingBy(x -> x.parent().get(), LinkedHashMap::new, Collectors.toList()));
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700169
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800170 for (Map.Entry<DiscreteResource, List<Resource>> entry: resourceMap.entrySet()) {
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800171 if (!lookup(childTxMap, entry.getKey().id()).isPresent()) {
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800172 return abortTransaction(tx);
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700173 }
174
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800175 if (!appendValues(childTxMap, entry.getKey().id(), entry.getValue())) {
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800176 return abortTransaction(tx);
177 }
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700178 }
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800179
Sho SHIMIZUfa62b472015-11-02 17:35:46 -0800180 boolean success = tx.commit();
181 if (success) {
182 List<ResourceEvent> events = resources.stream()
183 .filter(x -> x.parent().isPresent())
184 .map(x -> new ResourceEvent(RESOURCE_ADDED, x))
185 .collect(Collectors.toList());
186 notifyDelegate(events);
187 }
188 return success;
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700189 }
190
191 @Override
Jonathan Hart56151262016-02-11 09:48:50 -0800192 public boolean unregister(List<ResourceId> ids) {
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800193 checkNotNull(ids);
Sho SHIMIZU2d8a13a2015-08-18 22:37:41 -0700194
195 TransactionContext tx = service.transactionContextBuilder().build();
196 tx.begin();
197
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800198 TransactionalMap<DiscreteResourceId, Set<Resource>> childTxMap =
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800199 tx.getTransactionalMap(CHILD_MAP, SERIALIZER);
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800200 TransactionalMap<DiscreteResourceId, ResourceConsumer> discreteConsumerTxMap =
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800201 tx.getTransactionalMap(DISCRETE_CONSUMER_MAP, SERIALIZER);
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800202 TransactionalMap<ContinuousResourceId, ContinuousResourceAllocation> continuousConsumerTxMap =
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800203 tx.getTransactionalMap(CONTINUOUS_CONSUMER_MAP, SERIALIZER);
Sho SHIMIZU2d8a13a2015-08-18 22:37:41 -0700204
Sho SHIMIZU7d54d9c2016-02-17 13:58:46 -0800205 // Look up resources by resource IDs
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800206 List<Resource> resources = ids.stream()
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800207 .filter(x -> x.parent().isPresent())
Sho SHIMIZU7d54d9c2016-02-17 13:58:46 -0800208 .map(x -> {
209 // avoid access to consistent map in the case of discrete resource
210 if (x instanceof DiscreteResourceId) {
211 return Optional.of(Resources.discrete((DiscreteResourceId) x).resource());
212 } else {
213 return lookup(childTxMap, x);
214 }
215 })
HIGUCHI Yuta315179a2016-02-18 14:01:22 -0800216 .filter(Optional::isPresent)
217 .map(Optional::get)
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800218 .collect(Collectors.toList());
Sho SHIMIZU69420fe2016-02-09 15:01:07 -0800219 // the order is preserved by LinkedHashMap
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800220 Map<DiscreteResourceId, List<Resource>> resourceMap = resources.stream()
Sho SHIMIZU69420fe2016-02-09 15:01:07 -0800221 .collect(Collectors.groupingBy(x -> x.parent().get().id(), LinkedHashMap::new, Collectors.toList()));
Sho SHIMIZU83e17a02015-08-20 14:07:05 -0700222
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800223 // even if one of the resources is allocated to a consumer,
224 // all unregistrations are regarded as failure
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800225 for (Map.Entry<DiscreteResourceId, List<Resource>> entry: resourceMap.entrySet()) {
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800226 boolean allocated = entry.getValue().stream().anyMatch(x -> {
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800227 if (x instanceof DiscreteResource) {
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800228 return discreteConsumerTxMap.get(((DiscreteResource) x).id()) != null;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800229 } else if (x instanceof ContinuousResource) {
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800230 ContinuousResourceAllocation allocations =
231 continuousConsumerTxMap.get(((ContinuousResource) x).id());
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800232 return allocations != null && !allocations.allocations().isEmpty();
233 } else {
234 return false;
235 }
236 });
237 if (allocated) {
HIGUCHI Yuta5b6dfba2016-01-27 14:43:41 -0800238 log.warn("Failed to unregister {}: allocation exists", entry.getKey());
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800239 return abortTransaction(tx);
Sho SHIMIZU2d8a13a2015-08-18 22:37:41 -0700240 }
241
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800242 if (!removeValues(childTxMap, entry.getKey(), entry.getValue())) {
HIGUCHI Yuta6acdfd02016-02-18 10:39:43 -0800243 log.warn("Failed to unregister {}: Failed to remove {} values.",
244 entry.getKey(), entry.getValue().size());
245 log.debug("Failed to unregister {}: Failed to remove values: {}",
HIGUCHI Yuta5b6dfba2016-01-27 14:43:41 -0800246 entry.getKey(), entry.getValue());
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800247 return abortTransaction(tx);
248 }
Sho SHIMIZU2d8a13a2015-08-18 22:37:41 -0700249 }
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800250
Sho SHIMIZUfa62b472015-11-02 17:35:46 -0800251 boolean success = tx.commit();
252 if (success) {
253 List<ResourceEvent> events = resources.stream()
254 .filter(x -> x.parent().isPresent())
255 .map(x -> new ResourceEvent(RESOURCE_REMOVED, x))
256 .collect(Collectors.toList());
257 notifyDelegate(events);
HIGUCHI Yuta5b6dfba2016-01-27 14:43:41 -0800258 } else {
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800259 log.warn("Failed to unregister {}: Commit failed.", ids);
Sho SHIMIZUfa62b472015-11-02 17:35:46 -0800260 }
261 return success;
Sho SHIMIZU2d8a13a2015-08-18 22:37:41 -0700262 }
263
264 @Override
Jonathan Hart56151262016-02-11 09:48:50 -0800265 public boolean allocate(List<Resource> resources, ResourceConsumer consumer) {
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700266 checkNotNull(resources);
267 checkNotNull(consumer);
268
269 TransactionContext tx = service.transactionContextBuilder().build();
270 tx.begin();
271
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800272 TransactionalMap<DiscreteResourceId, Set<Resource>> childTxMap =
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800273 tx.getTransactionalMap(CHILD_MAP, SERIALIZER);
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800274 TransactionalMap<DiscreteResourceId, ResourceConsumer> discreteConsumerTxMap =
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800275 tx.getTransactionalMap(DISCRETE_CONSUMER_MAP, SERIALIZER);
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800276 TransactionalMap<ContinuousResourceId, ContinuousResourceAllocation> continuousConsumerTxMap =
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800277 tx.getTransactionalMap(CONTINUOUS_CONSUMER_MAP, SERIALIZER);
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700278
Sho SHIMIZU8fa670a2016-01-14 11:17:18 -0800279 for (Resource resource: resources) {
Sho SHIMIZU171a9382016-02-15 13:56:34 -0800280 // if the resource is not registered, then abort
281 Optional<Resource> lookedUp = lookup(childTxMap, resource.id());
282 if (!lookedUp.isPresent()) {
283 return abortTransaction(tx);
284 }
Sho SHIMIZUd29847f2015-08-13 09:10:59 -0700285
Sho SHIMIZU171a9382016-02-15 13:56:34 -0800286 if (resource instanceof DiscreteResource) {
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800287 ResourceConsumer oldValue = discreteConsumerTxMap.put(((DiscreteResource) resource).id(), consumer);
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800288 if (oldValue != null) {
289 return abortTransaction(tx);
290 }
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800291 } else if (resource instanceof ContinuousResource) {
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800292 // Down cast: this must be safe as ContinuousResource is associated with ContinuousResourceId
293 ContinuousResource continuous = (ContinuousResource) lookedUp.get();
294 ContinuousResourceAllocation allocations = continuousConsumerTxMap.get(continuous.id());
295 if (!hasEnoughResource(continuous, (ContinuousResource) resource, allocations)) {
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800296 return abortTransaction(tx);
297 }
298
299 boolean success = appendValue(continuousConsumerTxMap,
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800300 continuous, new ResourceAllocation(continuous, consumer));
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800301 if (!success) {
302 return abortTransaction(tx);
303 }
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800304 }
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700305 }
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800306
307 return tx.commit();
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700308 }
309
310 @Override
Sho SHIMIZUfc64ffe2016-02-10 20:11:09 -0800311 public boolean release(List<ResourceAllocation> allocations) {
312 checkNotNull(allocations);
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700313
314 TransactionContext tx = service.transactionContextBuilder().build();
315 tx.begin();
316
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800317 TransactionalMap<DiscreteResourceId, ResourceConsumer> discreteConsumerTxMap =
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800318 tx.getTransactionalMap(DISCRETE_CONSUMER_MAP, SERIALIZER);
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800319 TransactionalMap<ContinuousResourceId, ContinuousResourceAllocation> continuousConsumerTxMap =
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800320 tx.getTransactionalMap(CONTINUOUS_CONSUMER_MAP, SERIALIZER);
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700321
Sho SHIMIZUfc64ffe2016-02-10 20:11:09 -0800322 for (ResourceAllocation allocation : allocations) {
323 Resource resource = allocation.resource();
324 ResourceConsumer consumer = allocation.consumer();
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700325
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800326 if (resource instanceof DiscreteResource) {
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800327 // if this single release fails (because the resource is allocated to another consumer,
328 // the whole release fails
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800329 if (!discreteConsumerTxMap.remove(((DiscreteResource) resource).id(), consumer)) {
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800330 return abortTransaction(tx);
331 }
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800332 } else if (resource instanceof ContinuousResource) {
333 ContinuousResource continuous = (ContinuousResource) resource;
Sho SHIMIZUfc64ffe2016-02-10 20:11:09 -0800334 ContinuousResourceAllocation continuousAllocation = continuousConsumerTxMap.get(continuous.id());
335 ImmutableList<ResourceAllocation> newAllocations = continuousAllocation.allocations().stream()
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800336 .filter(x -> !(x.consumer().equals(consumer) &&
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800337 ((ContinuousResource) x.resource()).value() == continuous.value()))
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800338 .collect(GuavaCollectors.toImmutableList());
339
Sho SHIMIZUfc64ffe2016-02-10 20:11:09 -0800340 if (!continuousConsumerTxMap.replace(continuous.id(), continuousAllocation,
341 new ContinuousResourceAllocation(continuousAllocation.original(), newAllocations))) {
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800342 return abortTransaction(tx);
343 }
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700344 }
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700345 }
Sho SHIMIZU1e0a34c2015-11-02 16:52:29 -0800346
347 return tx.commit();
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700348 }
349
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800350 // computational complexity: O(1) if the resource is discrete type.
351 // O(n) if the resource is continuous type where n is the number of the children of
352 // the specified resource's parent
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700353 @Override
Sho SHIMIZU8fa670a2016-01-14 11:17:18 -0800354 public boolean isAvailable(Resource resource) {
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800355 checkNotNull(resource);
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800356 checkArgument(resource instanceof DiscreteResource || resource instanceof ContinuousResource);
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800357
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800358 if (resource instanceof DiscreteResource) {
HIGUCHI Yuta6f828c32016-01-20 18:11:05 -0800359 // check if already consumed
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800360 return getResourceAllocations(resource.id()).isEmpty();
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800361 } else {
Sho SHIMIZUf17ae282016-02-10 23:44:30 -0800362 return isAvailable((ContinuousResource) resource);
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800363 }
364 }
365
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800366 // computational complexity: O(n) where n is the number of existing allocations for the resource
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800367 private boolean isAvailable(ContinuousResource resource) {
Sho SHIMIZUf17ae282016-02-10 23:44:30 -0800368 // check if it's registered or not.
369 Versioned<Set<Resource>> children = childMap.get(resource.parent().get().id());
370 if (children == null) {
371 return false;
372 }
373
374 ContinuousResource registered = children.value().stream()
375 .filter(c -> c.id().equals(resource.id()))
376 .findFirst()
377 .map(c -> (ContinuousResource) c)
378 .get();
379 if (registered.value() < resource.value()) {
380 // Capacity < requested, can never satisfy
381 return false;
382 }
383
384 // check if there's enough left
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800385 Versioned<ContinuousResourceAllocation> allocation = continuousConsumers.get(resource.id());
386 if (allocation == null) {
HIGUCHI Yuta6f828c32016-01-20 18:11:05 -0800387 // no allocation (=no consumer) full registered resources available
388 return true;
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800389 }
390
391 return hasEnoughResource(allocation.value().original(), resource, allocation.value());
392 }
393
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800394 // computational complexity: O(n + m) where n is the number of entries in discreteConsumers
395 // and m is the number of allocations for all continuous resources
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800396 @Override
Sho SHIMIZU8fa670a2016-01-14 11:17:18 -0800397 public Collection<Resource> getResources(ResourceConsumer consumer) {
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700398 checkNotNull(consumer);
399
400 // NOTE: getting all entries may become performance bottleneck
401 // TODO: revisit for better backend data structure
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800402 Stream<DiscreteResource> discreteStream = discreteConsumers.entrySet().stream()
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700403 .filter(x -> x.getValue().value().equals(consumer))
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800404 .map(Map.Entry::getKey)
405 .map(x -> Resources.discrete(x).resource());
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800406
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800407 Stream<ContinuousResource> continuousStream = continuousConsumers.values().stream()
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800408 .flatMap(x -> x.value().allocations().stream()
409 .map(y -> Maps.immutableEntry(x.value().original(), y)))
410 .filter(x -> x.getValue().consumer().equals(consumer))
411 .map(x -> x.getKey());
412
413 return Stream.concat(discreteStream, continuousStream).collect(Collectors.toList());
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700414 }
415
Sho SHIMIZU82bfe992016-02-10 09:55:32 -0800416 // computational complexity: O(1)
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700417 @Override
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800418 public Set<Resource> getChildResources(DiscreteResourceId parent) {
Sho SHIMIZUe7f4f3f2015-10-13 16:27:25 -0700419 checkNotNull(parent);
420
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800421 Versioned<Set<Resource>> children = childMap.get(parent);
Sho SHIMIZUe7f4f3f2015-10-13 16:27:25 -0700422 if (children == null) {
Sho SHIMIZU83258ae2016-01-29 17:39:07 -0800423 return ImmutableSet.of();
Sho SHIMIZUe7f4f3f2015-10-13 16:27:25 -0700424 }
425
426 return children.value();
427 }
428
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800429 // computational complexity: O(n) where n is the number of the children of the parent
Sho SHIMIZUe7f4f3f2015-10-13 16:27:25 -0700430 @Override
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800431 public <T> Collection<Resource> getAllocatedResources(DiscreteResourceId parent, Class<T> cls) {
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -0700432 checkNotNull(parent);
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700433 checkNotNull(cls);
434
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800435 Versioned<Set<Resource>> children = childMap.get(parent);
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700436 if (children == null) {
Sho SHIMIZU2c0ae122016-01-20 13:14:38 -0800437 return ImmutableList.of();
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700438 }
439
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800440 Stream<DiscreteResource> discrete = children.value().stream()
Sho SHIMIZU003ed322016-02-11 12:58:42 -0800441 .filter(x -> x.isTypeOf(cls))
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800442 .filter(x -> x instanceof DiscreteResource)
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800443 .map(x -> ((DiscreteResource) x))
444 .filter(x -> discreteConsumers.containsKey(x.id()));
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800445
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800446 Stream<ContinuousResource> continuous = children.value().stream()
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800447 .filter(x -> x.id().equals(parent.child(cls)))
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800448 .filter(x -> x instanceof ContinuousResource)
449 .map(x -> (ContinuousResource) x)
Sho SHIMIZU90039242016-02-11 09:45:32 -0800450 // we don't use cascading simple predicates like follows to reduce accesses to consistent map
451 // .filter(x -> continuousConsumers.containsKey(x.id()))
452 // .filter(x -> continuousConsumers.get(x.id()) != null)
453 // .filter(x -> !continuousConsumers.get(x.id()).value().allocations().isEmpty());
454 .filter(resource -> {
455 Versioned<ContinuousResourceAllocation> allocation = continuousConsumers.get(resource.id());
456 if (allocation == null) {
457 return false;
458 }
459 return !allocation.value().allocations().isEmpty();
460 });
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800461
462 return Stream.concat(discrete, continuous).collect(Collectors.toList());
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700463 }
Sho SHIMIZUd29847f2015-08-13 09:10:59 -0700464
465 /**
466 * Abort the transaction.
467 *
468 * @param tx transaction context
469 * @return always false
470 */
471 private boolean abortTransaction(TransactionContext tx) {
472 tx.abort();
473 return false;
474 }
475
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800476 // Appends the specified ResourceAllocation to the existing values stored in the map
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800477 // computational complexity: O(n) where n is the number of the elements in the associated allocation
478 private boolean appendValue(TransactionalMap<ContinuousResourceId, ContinuousResourceAllocation> map,
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800479 ContinuousResource original, ResourceAllocation value) {
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800480 ContinuousResourceAllocation oldValue = map.putIfAbsent(original.id(),
481 new ContinuousResourceAllocation(original, ImmutableList.of(value)));
482 if (oldValue == null) {
483 return true;
484 }
485
486 if (oldValue.allocations().contains(value)) {
487 // don't write to map because all values are already stored
488 return true;
489 }
490
491 ContinuousResourceAllocation newValue = new ContinuousResourceAllocation(original,
492 ImmutableList.<ResourceAllocation>builder()
493 .addAll(oldValue.allocations())
494 .add(value)
495 .build());
496 return map.replace(original.id(), oldValue, newValue);
497 }
Sho SHIMIZUd29847f2015-08-13 09:10:59 -0700498 /**
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700499 * Appends the values to the existing values associated with the specified key.
Sho SHIMIZU4568c412015-08-21 16:39:07 -0700500 * If the map already has all the given values, appending will not happen.
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700501 *
502 * @param map map holding multiple values for a key
503 * @param key key specifying values
504 * @param values values to be appended
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700505 * @return true if the operation succeeds, false otherwise.
506 */
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800507 // computational complexity: O(n) where n is the number of the specified value
508 private boolean appendValues(TransactionalMap<DiscreteResourceId, Set<Resource>> map,
509 DiscreteResourceId key, List<Resource> values) {
Sho SHIMIZU07b7bc92016-01-29 18:27:58 -0800510 Set<Resource> oldValues = map.putIfAbsent(key, new LinkedHashSet<>(values));
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700511 if (oldValues == null) {
Sho SHIMIZU93a74b32015-11-09 11:48:23 -0800512 return true;
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700513 }
514
Sho SHIMIZU1992daf2016-02-17 17:38:55 -0800515 Set<ResourceId> oldIds = oldValues.stream()
516 .map(Resource::id)
517 .collect(Collectors.toSet());
518 // values whose IDs don't match any IDs of oldValues
519 Set<Resource> addedValues = values.stream()
520 .filter(x -> !oldIds.contains(x.id()))
521 .collect(Collectors.toCollection(LinkedHashSet::new));
522 // no new ID, then no-op
523 if (addedValues.isEmpty()) {
Sho SHIMIZU4568c412015-08-21 16:39:07 -0700524 // don't write to map because all values are already stored
525 return true;
526 }
527
Sho SHIMIZU07b7bc92016-01-29 18:27:58 -0800528 LinkedHashSet<Resource> newValues = new LinkedHashSet<>(oldValues);
Sho SHIMIZU1992daf2016-02-17 17:38:55 -0800529 newValues.addAll(addedValues);
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800530 return map.replace(key, oldValues, newValues);
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700531 }
532
533 /**
Sho SHIMIZUba1f83b2015-10-14 08:11:20 -0700534 * Removes the values from the existing values associated with the specified key.
Sho SHIMIZU5618ee52015-08-21 17:19:44 -0700535 * If the map doesn't contain the given values, removal will not happen.
Sho SHIMIZU2d8a13a2015-08-18 22:37:41 -0700536 *
537 * @param map map holding multiple values for a key
538 * @param key key specifying values
539 * @param values values to be removed
Sho SHIMIZU2d8a13a2015-08-18 22:37:41 -0700540 * @return true if the operation succeeds, false otherwise
541 */
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800542 // computational complexity: O(n) where n is the number of the specified values
543 private boolean removeValues(TransactionalMap<DiscreteResourceId, Set<Resource>> map,
544 DiscreteResourceId key, List<Resource> values) {
Sho SHIMIZU07b7bc92016-01-29 18:27:58 -0800545 Set<Resource> oldValues = map.putIfAbsent(key, new LinkedHashSet<>());
Sho SHIMIZU2d8a13a2015-08-18 22:37:41 -0700546 if (oldValues == null) {
HIGUCHI Yutadc4394c2016-01-29 15:35:10 -0800547 log.trace("No-Op removing values. key {} did not exist", key);
Sho SHIMIZU93a74b32015-11-09 11:48:23 -0800548 return true;
Sho SHIMIZU2d8a13a2015-08-18 22:37:41 -0700549 }
550
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800551 if (values.stream().allMatch(x -> !oldValues.contains(x))) {
Sho SHIMIZU5618ee52015-08-21 17:19:44 -0700552 // don't write map because none of the values are stored
HIGUCHI Yutadc4394c2016-01-29 15:35:10 -0800553 log.trace("No-Op removing values. key {} did not contain {}", key, values);
Sho SHIMIZU5618ee52015-08-21 17:19:44 -0700554 return true;
555 }
556
Sho SHIMIZU07b7bc92016-01-29 18:27:58 -0800557 LinkedHashSet<Resource> newValues = new LinkedHashSet<>(oldValues);
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800558 newValues.removeAll(values);
559 return map.replace(key, oldValues, newValues);
Sho SHIMIZU2d8a13a2015-08-18 22:37:41 -0700560 }
561
562 /**
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800563 * Returns the resource which has the same key as the specified resource ID
564 * in the set as a value of the map.
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700565 *
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800566 * @param childTxMap map storing parent - child relationship of resources
567 * @param id ID of resource to be checked
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800568 * @return the resource which is regarded as the same as the specified resource
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700569 */
Sho SHIMIZUa6a6fd32016-02-10 18:36:44 -0800570 // Naive implementation, which traverses all elements in the set when continuous resource
571 // computational complexity: O(1) when discrete resource. O(n) when continuous resource
572 // where n is the number of elements in the associated set
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800573 private Optional<Resource> lookup(TransactionalMap<DiscreteResourceId, Set<Resource>> childTxMap, ResourceId id) {
574 if (!id.parent().isPresent()) {
575 return Optional.of(Resource.ROOT);
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700576 }
577
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800578 Set<Resource> values = childTxMap.get(id.parent().get());
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800579 if (values == null) {
580 return Optional.empty();
581 }
582
Sho SHIMIZUa6a6fd32016-02-10 18:36:44 -0800583 // short-circuit if discrete resource
584 // check the existence in the set: O(1) operation
585 if (id instanceof DiscreteResourceId) {
586 DiscreteResource discrete = Resources.discrete((DiscreteResourceId) id).resource();
587 if (values.contains(discrete)) {
588 return Optional.of(discrete);
589 } else {
590 return Optional.empty();
591 }
592 }
593
594 // continuous resource case
595 // iterate over the values in the set: O(n) operation
Sho SHIMIZU72f81b12016-02-09 09:26:17 -0800596 return values.stream()
597 .filter(x -> x.id().equals(id))
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800598 .findFirst();
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800599 }
600
601 /**
602 * Checks if there is enough resource volume to allocated the requested resource
603 * against the specified resource.
604 *
605 * @param original original resource
606 * @param request requested resource
607 * @param allocation current allocation of the resource
608 * @return true if there is enough resource volume. Otherwise, false.
609 */
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800610 // computational complexity: O(n) where n is the number of allocations
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800611 private boolean hasEnoughResource(ContinuousResource original,
612 ContinuousResource request,
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800613 ContinuousResourceAllocation allocation) {
614 if (allocation == null) {
615 return request.value() <= original.value();
616 }
617
618 double allocated = allocation.allocations().stream()
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800619 .filter(x -> x.resource() instanceof ContinuousResource)
620 .map(x -> (ContinuousResource) x.resource())
621 .mapToDouble(ContinuousResource::value)
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800622 .sum();
623 double left = original.value() - allocated;
624 return request.value() <= left;
625 }
626
627 // internal use only
628 private static final class ContinuousResourceAllocation {
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800629 private final ContinuousResource original;
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800630 private final ImmutableList<ResourceAllocation> allocations;
631
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800632 private ContinuousResourceAllocation(ContinuousResource original,
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800633 ImmutableList<ResourceAllocation> allocations) {
634 this.original = original;
635 this.allocations = allocations;
636 }
637
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800638 private ContinuousResource original() {
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800639 return original;
640 }
641
642 private ImmutableList<ResourceAllocation> allocations() {
643 return allocations;
644 }
Sho SHIMIZUba41fc12015-08-12 15:43:22 -0700645 }
Sho SHIMIZU78ee25c2015-07-16 15:54:14 -0700646}