blob: 6f3549bf17019aff9d448ea2b1e16b95e7af5afd [file] [log] [blame]
alshabib10580802015-02-18 18:30:33 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
alshabib10580802015-02-18 18:30:33 -08003 *
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.group.impl;
17
Jonathan Hart6ec029a2015-03-24 17:12:35 -070018import com.google.common.collect.FluentIterable;
Charles Chanf4838a72015-12-07 18:13:45 -080019import com.google.common.collect.ImmutableSet;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070020import com.google.common.collect.Iterables;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070021import com.google.common.collect.Sets;
alshabib10580802015-02-18 18:30:33 -080022import org.apache.felix.scr.annotations.Activate;
23import org.apache.felix.scr.annotations.Component;
24import org.apache.felix.scr.annotations.Deactivate;
alshabibb0285992016-03-28 23:30:37 -070025import org.apache.felix.scr.annotations.Modified;
26import org.apache.felix.scr.annotations.Property;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070027import org.apache.felix.scr.annotations.Reference;
28import org.apache.felix.scr.annotations.ReferenceCardinality;
alshabib10580802015-02-18 18:30:33 -080029import org.apache.felix.scr.annotations.Service;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070030import org.onlab.util.KryoNamespace;
alshabibb0285992016-03-28 23:30:37 -070031import org.onosproject.cfg.ComponentConfigService;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070032import org.onosproject.cluster.ClusterService;
Charles Chanf4838a72015-12-07 18:13:45 -080033import org.onosproject.cluster.NodeId;
alshabib10580802015-02-18 18:30:33 -080034import org.onosproject.core.GroupId;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070035import org.onosproject.mastership.MastershipService;
alshabib10580802015-02-18 18:30:33 -080036import org.onosproject.net.DeviceId;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070037import org.onosproject.net.MastershipRole;
alshabib10580802015-02-18 18:30:33 -080038import org.onosproject.net.group.DefaultGroup;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070039import org.onosproject.net.group.DefaultGroupBucket;
alshabib10580802015-02-18 18:30:33 -080040import org.onosproject.net.group.DefaultGroupDescription;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070041import org.onosproject.net.group.DefaultGroupKey;
alshabib10580802015-02-18 18:30:33 -080042import org.onosproject.net.group.Group;
43import org.onosproject.net.group.Group.GroupState;
44import org.onosproject.net.group.GroupBucket;
45import org.onosproject.net.group.GroupBuckets;
46import org.onosproject.net.group.GroupDescription;
47import org.onosproject.net.group.GroupEvent;
48import org.onosproject.net.group.GroupEvent.Type;
49import org.onosproject.net.group.GroupKey;
50import org.onosproject.net.group.GroupOperation;
51import org.onosproject.net.group.GroupStore;
52import org.onosproject.net.group.GroupStoreDelegate;
Srikanth Vavilapalli10e75cd2015-04-13 16:21:24 -070053import org.onosproject.net.group.StoredGroupBucketEntry;
alshabib10580802015-02-18 18:30:33 -080054import org.onosproject.net.group.StoredGroupEntry;
55import org.onosproject.store.AbstractStore;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070056import org.onosproject.store.cluster.messaging.ClusterCommunicationService;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070057import org.onosproject.store.serializers.KryoNamespaces;
Madan Jampani0b847532016-03-03 13:44:15 -080058import org.onosproject.store.service.ConsistentMap;
59import org.onosproject.store.service.MapEvent;
60import org.onosproject.store.service.MapEventListener;
alshabibb0285992016-03-28 23:30:37 -070061import org.onosproject.store.service.MultiValuedTimestamp;
Madan Jampani0b847532016-03-03 13:44:15 -080062import org.onosproject.store.service.Serializer;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070063import org.onosproject.store.service.StorageService;
helenyrwua1c41152016-08-18 16:16:14 -070064import org.onosproject.store.service.Topic;
Madan Jampani0b847532016-03-03 13:44:15 -080065import org.onosproject.store.service.Versioned;
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +053066import org.onosproject.store.service.DistributedPrimitive.Status;
alshabibb0285992016-03-28 23:30:37 -070067import org.osgi.service.component.ComponentContext;
alshabib10580802015-02-18 18:30:33 -080068import org.slf4j.Logger;
69
Jonathan Hart6ec029a2015-03-24 17:12:35 -070070import java.util.ArrayList;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070071import java.util.Collection;
Charles Chanf4838a72015-12-07 18:13:45 -080072import java.util.Collections;
alshabibb0285992016-03-28 23:30:37 -070073import java.util.Dictionary;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070074import java.util.HashMap;
Charles Chan0c7c43b2016-01-14 17:39:20 -080075import java.util.HashSet;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070076import java.util.Iterator;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070077import java.util.List;
Madan Jampani0b847532016-03-03 13:44:15 -080078import java.util.Map;
Charles Chan0c7c43b2016-01-14 17:39:20 -080079import java.util.Map.Entry;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070080import java.util.Objects;
Sho SHIMIZU30d639b2015-05-05 09:30:35 -070081import java.util.Optional;
alshabibb0285992016-03-28 23:30:37 -070082import java.util.Properties;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070083import java.util.Set;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070084import java.util.concurrent.ConcurrentHashMap;
85import java.util.concurrent.ConcurrentMap;
86import java.util.concurrent.ExecutorService;
87import java.util.concurrent.Executors;
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +053088import java.util.concurrent.ScheduledExecutorService;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070089import java.util.concurrent.atomic.AtomicInteger;
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +053090import java.util.function.Consumer;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070091import java.util.stream.Collectors;
92
alshabibb0285992016-03-28 23:30:37 -070093import static com.google.common.base.Strings.isNullOrEmpty;
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +053094import static java.util.concurrent.Executors.newSingleThreadScheduledExecutor;
alshabibb0285992016-03-28 23:30:37 -070095import static org.onlab.util.Tools.get;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070096import static org.onlab.util.Tools.groupedThreads;
97import static org.slf4j.LoggerFactory.getLogger;
alshabib10580802015-02-18 18:30:33 -080098
99/**
Saurav Das0fd79d92016-03-07 10:58:36 -0800100 * Manages inventory of group entries using distributed group stores from the
101 * storage service.
alshabib10580802015-02-18 18:30:33 -0800102 */
103@Component(immediate = true)
104@Service
105public class DistributedGroupStore
106 extends AbstractStore<GroupEvent, GroupStoreDelegate>
107 implements GroupStore {
108
109 private final Logger log = getLogger(getClass());
110
alshabibb0285992016-03-28 23:30:37 -0700111 private static final boolean GARBAGE_COLLECT = false;
112 private static final int GC_THRESH = 6;
Kavitha Alagesanc56cded2017-01-13 10:48:18 +0530113 private static final boolean ALLOW_EXTRANEOUS_GROUPS = true;
alshabibb0285992016-03-28 23:30:37 -0700114
alshabib10580802015-02-18 18:30:33 -0800115 private final int dummyId = 0xffffffff;
Yi Tsengfa394de2017-02-01 11:26:40 -0800116 private final GroupId dummyGroupId = new GroupId(dummyId);
alshabib10580802015-02-18 18:30:33 -0800117
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700118 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
119 protected ClusterCommunicationService clusterCommunicator;
120
121 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
122 protected ClusterService clusterService;
123
124 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Jonathan Hart6ec029a2015-03-24 17:12:35 -0700125 protected StorageService storageService;
126
127 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700128 protected MastershipService mastershipService;
129
alshabibb0285992016-03-28 23:30:37 -0700130 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
131 protected ComponentConfigService cfgService;
132
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +0530133 private ScheduledExecutorService executor;
134 private Consumer<Status> statusChangeListener;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700135 // Per device group table with (device id + app cookie) as key
Madan Jampani0b847532016-03-03 13:44:15 -0800136 private ConsistentMap<GroupStoreKeyMapKey,
alshabibb0285992016-03-28 23:30:37 -0700137 StoredGroupEntry> groupStoreEntriesByKey = null;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700138 // Per device group table with (device id + group id) as key
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700139 private final ConcurrentMap<DeviceId, ConcurrentMap<GroupId, StoredGroupEntry>>
alshabibb0285992016-03-28 23:30:37 -0700140 groupEntriesById = new ConcurrentHashMap<>();
Madan Jampani0b847532016-03-03 13:44:15 -0800141 private ConsistentMap<GroupStoreKeyMapKey,
alshabibb0285992016-03-28 23:30:37 -0700142 StoredGroupEntry> auditPendingReqQueue = null;
Frank Wange0eb5ce2016-07-01 18:21:25 +0800143 private MapEventListener<GroupStoreKeyMapKey, StoredGroupEntry>
144 mapListener = new GroupStoreKeyMapListener();
alshabib10580802015-02-18 18:30:33 -0800145 private final ConcurrentMap<DeviceId, ConcurrentMap<GroupId, Group>>
146 extraneousGroupEntriesById = new ConcurrentHashMap<>();
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700147 private ExecutorService messageHandlingExecutor;
148 private static final int MESSAGE_HANDLER_THREAD_POOL_SIZE = 1;
Sho SHIMIZU7a4087b2015-09-10 09:23:16 -0700149 private final HashMap<DeviceId, Boolean> deviceAuditStatus = new HashMap<>();
alshabib10580802015-02-18 18:30:33 -0800150
151 private final AtomicInteger groupIdGen = new AtomicInteger();
152
HIGUCHI Yuta180d70f2015-10-01 16:13:56 -0700153 private KryoNamespace clusterMsgSerializer;
154
helenyrwua1c41152016-08-18 16:16:14 -0700155 private static Topic<GroupStoreMessage> groupTopic;
156
alshabibb0285992016-03-28 23:30:37 -0700157 @Property(name = "garbageCollect", boolValue = GARBAGE_COLLECT,
158 label = "Enable group garbage collection")
159 private boolean garbageCollect = GARBAGE_COLLECT;
160
161 @Property(name = "gcThresh", intValue = GC_THRESH,
162 label = "Number of rounds for group garbage collection")
163 private int gcThresh = GC_THRESH;
164
Kavitha Alagesanc56cded2017-01-13 10:48:18 +0530165 @Property(name = "allowExtraneousGroups", boolValue = ALLOW_EXTRANEOUS_GROUPS,
166 label = "Allow groups in switches not installed by ONOS")
167 private boolean allowExtraneousGroups = ALLOW_EXTRANEOUS_GROUPS;
alshabibb0285992016-03-28 23:30:37 -0700168
alshabib10580802015-02-18 18:30:33 -0800169 @Activate
170 public void activate() {
alshabibb0285992016-03-28 23:30:37 -0700171 cfgService.registerProperties(getClass());
HIGUCHI Yuta3a84b322016-05-18 13:38:07 -0700172 KryoNamespace.Builder kryoBuilder = new KryoNamespace.Builder()
alshabibb0285992016-03-28 23:30:37 -0700173 .register(KryoNamespaces.API)
HIGUCHI Yuta3a84b322016-05-18 13:38:07 -0700174 .nextId(KryoNamespaces.BEGIN_USER_CUSTOM_ID)
alshabibb0285992016-03-28 23:30:37 -0700175 .register(DefaultGroup.class,
176 DefaultGroupBucket.class,
177 DefaultGroupDescription.class,
178 DefaultGroupKey.class,
179 GroupDescription.Type.class,
180 Group.GroupState.class,
181 GroupBuckets.class,
alshabibb0285992016-03-28 23:30:37 -0700182 GroupStoreMessage.class,
183 GroupStoreMessage.Type.class,
184 UpdateType.class,
185 GroupStoreMessageSubjects.class,
186 MultiValuedTimestamp.class,
187 GroupStoreKeyMapKey.class,
188 GroupStoreIdMapKey.class,
189 GroupStoreMapKey.class
190 );
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700191
HIGUCHI Yuta3a84b322016-05-18 13:38:07 -0700192 clusterMsgSerializer = kryoBuilder.build("GroupStore");
193 Serializer serializer = Serializer.using(clusterMsgSerializer);
HIGUCHI Yuta180d70f2015-10-01 16:13:56 -0700194
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700195 messageHandlingExecutor = Executors.
196 newFixedThreadPool(MESSAGE_HANDLER_THREAD_POOL_SIZE,
197 groupedThreads("onos/store/group",
HIGUCHI Yutad9e01052016-04-14 09:31:42 -0700198 "message-handlers",
199 log));
Madan Jampani01e05fb2015-08-13 13:29:36 -0700200
201 clusterCommunicator.addSubscriber(GroupStoreMessageSubjects.REMOTE_GROUP_OP_REQUEST,
alshabibb0285992016-03-28 23:30:37 -0700202 clusterMsgSerializer::deserialize,
203 this::process,
204 messageHandlingExecutor);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700205
Madan Jampani0b847532016-03-03 13:44:15 -0800206 log.debug("Creating Consistent map onos-group-store-keymap");
Jonathan Hart6ec029a2015-03-24 17:12:35 -0700207
Madan Jampani0b847532016-03-03 13:44:15 -0800208 groupStoreEntriesByKey = storageService.<GroupStoreKeyMapKey, StoredGroupEntry>consistentMapBuilder()
209 .withName("onos-group-store-keymap")
HIGUCHI Yuta3a84b322016-05-18 13:38:07 -0700210 .withSerializer(serializer)
Jonathan Hart6ec029a2015-03-24 17:12:35 -0700211 .build();
Frank Wange0eb5ce2016-07-01 18:21:25 +0800212 groupStoreEntriesByKey.addListener(mapListener);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700213 log.debug("Current size of groupstorekeymap:{}",
214 groupStoreEntriesByKey.size());
Thiago Santosfb73c502016-08-18 18:15:13 -0300215 synchronizeGroupStoreEntries();
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700216
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +0530217 log.debug("Creating GroupStoreId Map From GroupStoreKey Map");
218 matchGroupEntries();
219 executor = newSingleThreadScheduledExecutor(groupedThreads("onos/group", "store", log));
220 statusChangeListener = status -> {
221 if (status == Status.ACTIVE) {
222 executor.execute(this::matchGroupEntries);
223 }
224 };
225 groupStoreEntriesByKey.addStatusChangeListener(statusChangeListener);
226
Madan Jampani0b847532016-03-03 13:44:15 -0800227 log.debug("Creating Consistent map pendinggroupkeymap");
Jonathan Hart6ec029a2015-03-24 17:12:35 -0700228
Madan Jampani0b847532016-03-03 13:44:15 -0800229 auditPendingReqQueue = storageService.<GroupStoreKeyMapKey, StoredGroupEntry>consistentMapBuilder()
230 .withName("onos-pending-group-keymap")
HIGUCHI Yuta3a84b322016-05-18 13:38:07 -0700231 .withSerializer(serializer)
Jonathan Hart6ec029a2015-03-24 17:12:35 -0700232 .build();
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700233 log.debug("Current size of pendinggroupkeymap:{}",
234 auditPendingReqQueue.size());
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700235
helenyrwua1c41152016-08-18 16:16:14 -0700236 groupTopic = getOrCreateGroupTopic(serializer);
237 groupTopic.subscribe(this::processGroupMessage);
238
alshabib10580802015-02-18 18:30:33 -0800239 log.info("Started");
240 }
241
242 @Deactivate
243 public void deactivate() {
Frank Wange0eb5ce2016-07-01 18:21:25 +0800244 groupStoreEntriesByKey.removeListener(mapListener);
alshabibb0285992016-03-28 23:30:37 -0700245 cfgService.unregisterProperties(getClass(), false);
HIGUCHI Yuta180d70f2015-10-01 16:13:56 -0700246 clusterCommunicator.removeSubscriber(GroupStoreMessageSubjects.REMOTE_GROUP_OP_REQUEST);
alshabib10580802015-02-18 18:30:33 -0800247 log.info("Stopped");
248 }
249
alshabibb0285992016-03-28 23:30:37 -0700250 @Modified
251 public void modified(ComponentContext context) {
252 Dictionary<?, ?> properties = context != null ? context.getProperties() : new Properties();
253
254 try {
255 String s = get(properties, "garbageCollect");
256 garbageCollect = isNullOrEmpty(s) ? GARBAGE_COLLECT : Boolean.parseBoolean(s.trim());
257
258 s = get(properties, "gcThresh");
259 gcThresh = isNullOrEmpty(s) ? GC_THRESH : Integer.parseInt(s.trim());
Kavitha Alagesanc56cded2017-01-13 10:48:18 +0530260
261 s = get(properties, "allowExtraneousGroups");
262 allowExtraneousGroups = isNullOrEmpty(s) ? ALLOW_EXTRANEOUS_GROUPS : Boolean.parseBoolean(s.trim());
alshabibb0285992016-03-28 23:30:37 -0700263 } catch (Exception e) {
264 gcThresh = GC_THRESH;
265 garbageCollect = GARBAGE_COLLECT;
Kavitha Alagesanc56cded2017-01-13 10:48:18 +0530266 allowExtraneousGroups = ALLOW_EXTRANEOUS_GROUPS;
alshabibb0285992016-03-28 23:30:37 -0700267 }
268 }
269
helenyrwua1c41152016-08-18 16:16:14 -0700270 private Topic<GroupStoreMessage> getOrCreateGroupTopic(Serializer serializer) {
271 if (groupTopic == null) {
272 return storageService.getTopic("group-failover-notif", serializer);
273 } else {
274 return groupTopic;
275 }
Sho SHIMIZUa6285542017-01-12 15:08:24 -0800276 }
helenyrwua1c41152016-08-18 16:16:14 -0700277
alshabib10580802015-02-18 18:30:33 -0800278 /**
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +0530279 * Updating values of groupEntriesById.
280 */
281 private void matchGroupEntries() {
282 for (Entry<GroupStoreKeyMapKey, StoredGroupEntry> entry : groupStoreEntriesByKey.asJavaMap().entrySet()) {
283 StoredGroupEntry group = entry.getValue();
284 getGroupIdTable(entry.getKey().deviceId()).put(group.id(), group);
285 }
286 }
287
Thiago Santosfb73c502016-08-18 18:15:13 -0300288
289 private void synchronizeGroupStoreEntries() {
290 Map<GroupStoreKeyMapKey, StoredGroupEntry> groupEntryMap = groupStoreEntriesByKey.asJavaMap();
291 for (Entry<GroupStoreKeyMapKey, StoredGroupEntry> entry : groupEntryMap.entrySet()) {
292 GroupStoreKeyMapKey key = entry.getKey();
293 StoredGroupEntry value = entry.getValue();
294
295 ConcurrentMap<GroupId, StoredGroupEntry> groupIdTable = getGroupIdTable(value.deviceId());
296 groupIdTable.put(value.id(), value);
297 }
298 }
299
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +0530300 /**
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700301 * Returns the group store eventual consistent key map.
alshabib10580802015-02-18 18:30:33 -0800302 *
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700303 * @return Map representing group key table.
alshabib10580802015-02-18 18:30:33 -0800304 */
Madan Jampani0b847532016-03-03 13:44:15 -0800305 private Map<GroupStoreKeyMapKey, StoredGroupEntry>
alshabibb0285992016-03-28 23:30:37 -0700306 getGroupStoreKeyMap() {
Madan Jampani0b847532016-03-03 13:44:15 -0800307 return groupStoreEntriesByKey.asJavaMap();
alshabib10580802015-02-18 18:30:33 -0800308 }
309
310 /**
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700311 * Returns the group id table for specified device.
alshabib10580802015-02-18 18:30:33 -0800312 *
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700313 * @param deviceId identifier of the device
314 * @return Map representing group key table of given device.
alshabib10580802015-02-18 18:30:33 -0800315 */
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700316 private ConcurrentMap<GroupId, StoredGroupEntry> getGroupIdTable(DeviceId deviceId) {
Yuta HIGUCHIc2e68152016-08-16 13:47:36 -0700317 return groupEntriesById.computeIfAbsent(deviceId, k -> new ConcurrentHashMap<>());
alshabib10580802015-02-18 18:30:33 -0800318 }
319
320 /**
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700321 * Returns the pending group request table.
alshabib10580802015-02-18 18:30:33 -0800322 *
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700323 * @return Map representing group key table.
alshabib10580802015-02-18 18:30:33 -0800324 */
Madan Jampani0b847532016-03-03 13:44:15 -0800325 private Map<GroupStoreKeyMapKey, StoredGroupEntry>
alshabibb0285992016-03-28 23:30:37 -0700326 getPendingGroupKeyTable() {
Madan Jampani0b847532016-03-03 13:44:15 -0800327 return auditPendingReqQueue.asJavaMap();
alshabib10580802015-02-18 18:30:33 -0800328 }
329
330 /**
331 * Returns the extraneous group id table for specified device.
332 *
333 * @param deviceId identifier of the device
334 * @return Map representing group key table of given device.
335 */
336 private ConcurrentMap<GroupId, Group>
337 getExtraneousGroupIdTable(DeviceId deviceId) {
Yuta HIGUCHIc2e68152016-08-16 13:47:36 -0700338 return extraneousGroupEntriesById.computeIfAbsent(deviceId, k -> new ConcurrentHashMap<>());
alshabib10580802015-02-18 18:30:33 -0800339 }
340
341 /**
342 * Returns the number of groups for the specified device in the store.
343 *
344 * @return number of groups for the specified device
345 */
346 @Override
347 public int getGroupCount(DeviceId deviceId) {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700348 return (getGroups(deviceId) != null) ?
alshabibb0285992016-03-28 23:30:37 -0700349 Iterables.size(getGroups(deviceId)) : 0;
alshabib10580802015-02-18 18:30:33 -0800350 }
351
352 /**
353 * Returns the groups associated with a device.
354 *
355 * @param deviceId the device ID
alshabib10580802015-02-18 18:30:33 -0800356 * @return the group entries
357 */
358 @Override
359 public Iterable<Group> getGroups(DeviceId deviceId) {
Charles Chanf4838a72015-12-07 18:13:45 -0800360 // Let ImmutableSet.copyOf do the type conversion
361 return ImmutableSet.copyOf(getStoredGroups(deviceId));
alshabib10580802015-02-18 18:30:33 -0800362 }
363
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700364 private Iterable<StoredGroupEntry> getStoredGroups(DeviceId deviceId) {
Charles Chanf4838a72015-12-07 18:13:45 -0800365 NodeId master = mastershipService.getMasterFor(deviceId);
366 if (master == null) {
367 log.debug("Failed to getGroups: No master for {}", deviceId);
368 return Collections.emptySet();
369 }
370
371 Set<StoredGroupEntry> storedGroups = getGroupStoreKeyMap().values()
372 .stream()
373 .filter(input -> input.deviceId().equals(deviceId))
374 .collect(Collectors.toSet());
375 return ImmutableSet.copyOf(storedGroups);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700376 }
377
alshabib10580802015-02-18 18:30:33 -0800378 /**
379 * Returns the stored group entry.
380 *
alshabibb0285992016-03-28 23:30:37 -0700381 * @param deviceId the device ID
alshabib10580802015-02-18 18:30:33 -0800382 * @param appCookie the group key
alshabib10580802015-02-18 18:30:33 -0800383 * @return a group associated with the key
384 */
385 @Override
386 public Group getGroup(DeviceId deviceId, GroupKey appCookie) {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700387 return getStoredGroupEntry(deviceId, appCookie);
388 }
389
390 private StoredGroupEntry getStoredGroupEntry(DeviceId deviceId,
391 GroupKey appCookie) {
392 return getGroupStoreKeyMap().get(new GroupStoreKeyMapKey(deviceId,
393 appCookie));
394 }
395
396 @Override
397 public Group getGroup(DeviceId deviceId, GroupId groupId) {
398 return getStoredGroupEntry(deviceId, groupId);
399 }
400
401 private StoredGroupEntry getStoredGroupEntry(DeviceId deviceId,
402 GroupId groupId) {
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700403 return getGroupIdTable(deviceId).get(groupId);
alshabib10580802015-02-18 18:30:33 -0800404 }
405
406 private int getFreeGroupIdValue(DeviceId deviceId) {
407 int freeId = groupIdGen.incrementAndGet();
408
409 while (true) {
Yi Tsengfa394de2017-02-01 11:26:40 -0800410 Group existing = getGroup(deviceId, new GroupId(freeId));
alshabib10580802015-02-18 18:30:33 -0800411 if (existing == null) {
412 existing = (
413 extraneousGroupEntriesById.get(deviceId) != null) ?
414 extraneousGroupEntriesById.get(deviceId).
Yi Tsengfa394de2017-02-01 11:26:40 -0800415 get(new GroupId(freeId)) :
alshabib10580802015-02-18 18:30:33 -0800416 null;
417 }
418 if (existing != null) {
419 freeId = groupIdGen.incrementAndGet();
420 } else {
421 break;
422 }
423 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700424 log.debug("getFreeGroupIdValue: Next Free ID is {}", freeId);
alshabib10580802015-02-18 18:30:33 -0800425 return freeId;
426 }
427
428 /**
429 * Stores a new group entry using the information from group description.
430 *
431 * @param groupDesc group description to be used to create group entry
432 */
433 @Override
434 public void storeGroupDescription(GroupDescription groupDesc) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700435 log.debug("In storeGroupDescription");
alshabib10580802015-02-18 18:30:33 -0800436 // Check if a group is existing with the same key
Saurav Das8a0732e2015-11-20 15:27:53 -0800437 Group existingGroup = getGroup(groupDesc.deviceId(), groupDesc.appCookie());
438 if (existingGroup != null) {
Charles Chan216e3c82016-04-23 14:48:16 -0700439 log.info("Group already exists with the same key {} in dev:{} with id:0x{}",
Saurav Das8a0732e2015-11-20 15:27:53 -0800440 groupDesc.appCookie(), groupDesc.deviceId(),
441 Integer.toHexString(existingGroup.id().id()));
alshabib10580802015-02-18 18:30:33 -0800442 return;
443 }
444
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700445 // Check if group to be created by a remote instance
Madan Jampani175e8fd2015-05-20 14:10:45 -0700446 if (mastershipService.getLocalRole(groupDesc.deviceId()) != MastershipRole.MASTER) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700447 log.debug("storeGroupDescription: Device {} local role is not MASTER",
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700448 groupDesc.deviceId());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700449 if (mastershipService.getMasterFor(groupDesc.deviceId()) == null) {
450 log.error("No Master for device {}..."
alshabibb0285992016-03-28 23:30:37 -0700451 + "Can not perform add group operation",
452 groupDesc.deviceId());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700453 //TODO: Send Group operation failure event
454 return;
455 }
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700456 GroupStoreMessage groupOp = GroupStoreMessage.
457 createGroupAddRequestMsg(groupDesc.deviceId(),
458 groupDesc);
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700459
Madan Jampani175e8fd2015-05-20 14:10:45 -0700460 clusterCommunicator.unicast(groupOp,
alshabibb0285992016-03-28 23:30:37 -0700461 GroupStoreMessageSubjects.REMOTE_GROUP_OP_REQUEST,
462 clusterMsgSerializer::serialize,
463 mastershipService.getMasterFor(groupDesc.deviceId()))
464 .whenComplete((result, error) -> {
Madan Jampani175e8fd2015-05-20 14:10:45 -0700465 if (error != null) {
466 log.warn("Failed to send request to master: {} to {}",
alshabibb0285992016-03-28 23:30:37 -0700467 groupOp,
468 mastershipService.getMasterFor(groupDesc.deviceId()));
Madan Jampani175e8fd2015-05-20 14:10:45 -0700469 //TODO: Send Group operation failure event
470 } else {
471 log.debug("Sent Group operation request for device {} "
alshabibb0285992016-03-28 23:30:37 -0700472 + "to remote MASTER {}",
473 groupDesc.deviceId(),
474 mastershipService.getMasterFor(groupDesc.deviceId()));
Madan Jampani175e8fd2015-05-20 14:10:45 -0700475 }
476 });
alshabib10580802015-02-18 18:30:33 -0800477 return;
478 }
479
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700480 log.debug("Store group for device {} is getting handled locally",
481 groupDesc.deviceId());
alshabib10580802015-02-18 18:30:33 -0800482 storeGroupDescriptionInternal(groupDesc);
483 }
484
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700485 private Group getMatchingExtraneousGroupbyId(DeviceId deviceId, Integer groupId) {
486 ConcurrentMap<GroupId, Group> extraneousMap =
487 extraneousGroupEntriesById.get(deviceId);
488 if (extraneousMap == null) {
489 return null;
490 }
Yi Tsengfa394de2017-02-01 11:26:40 -0800491 return extraneousMap.get(new GroupId(groupId));
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700492 }
493
494 private Group getMatchingExtraneousGroupbyBuckets(DeviceId deviceId,
495 GroupBuckets buckets) {
496 ConcurrentMap<GroupId, Group> extraneousMap =
497 extraneousGroupEntriesById.get(deviceId);
498 if (extraneousMap == null) {
499 return null;
500 }
501
alshabibb0285992016-03-28 23:30:37 -0700502 for (Group extraneousGroup : extraneousMap.values()) {
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700503 if (extraneousGroup.buckets().equals(buckets)) {
504 return extraneousGroup;
505 }
506 }
507 return null;
508 }
509
alshabib10580802015-02-18 18:30:33 -0800510 private void storeGroupDescriptionInternal(GroupDescription groupDesc) {
511 // Check if a group is existing with the same key
512 if (getGroup(groupDesc.deviceId(), groupDesc.appCookie()) != null) {
513 return;
514 }
515
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700516 if (deviceAuditStatus.get(groupDesc.deviceId()) == null) {
517 // Device group audit has not completed yet
518 // Add this group description to pending group key table
519 // Create a group entry object with Dummy Group ID
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700520 log.debug("storeGroupDescriptionInternal: Device {} AUDIT pending...Queuing Group ADD request",
alshabibb0285992016-03-28 23:30:37 -0700521 groupDesc.deviceId());
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700522 StoredGroupEntry group = new DefaultGroup(dummyGroupId, groupDesc);
523 group.setState(GroupState.WAITING_AUDIT_COMPLETE);
Madan Jampani0b847532016-03-03 13:44:15 -0800524 Map<GroupStoreKeyMapKey, StoredGroupEntry> pendingKeyTable =
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700525 getPendingGroupKeyTable();
526 pendingKeyTable.put(new GroupStoreKeyMapKey(groupDesc.deviceId(),
527 groupDesc.appCookie()),
528 group);
529 return;
530 }
531
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700532 Group matchingExtraneousGroup = null;
533 if (groupDesc.givenGroupId() != null) {
534 //Check if there is a extraneous group existing with the same Id
535 matchingExtraneousGroup = getMatchingExtraneousGroupbyId(
alshabibb0285992016-03-28 23:30:37 -0700536 groupDesc.deviceId(), groupDesc.givenGroupId());
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700537 if (matchingExtraneousGroup != null) {
Saurav Das0fd79d92016-03-07 10:58:36 -0800538 log.debug("storeGroupDescriptionInternal: Matching extraneous group "
alshabibb0285992016-03-28 23:30:37 -0700539 + "found in Device {} for group id 0x{}",
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700540 groupDesc.deviceId(),
Saurav Das0fd79d92016-03-07 10:58:36 -0800541 Integer.toHexString(groupDesc.givenGroupId()));
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700542 //Check if the group buckets matches with user provided buckets
543 if (matchingExtraneousGroup.buckets().equals(groupDesc.buckets())) {
544 //Group is already existing with the same buckets and Id
545 // Create a group entry object
Saurav Das0fd79d92016-03-07 10:58:36 -0800546 log.debug("storeGroupDescriptionInternal: Buckets also matching "
alshabibb0285992016-03-28 23:30:37 -0700547 + "in Device {} for group id 0x{}",
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700548 groupDesc.deviceId(),
Saurav Das0fd79d92016-03-07 10:58:36 -0800549 Integer.toHexString(groupDesc.givenGroupId()));
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700550 StoredGroupEntry group = new DefaultGroup(
alshabibb0285992016-03-28 23:30:37 -0700551 matchingExtraneousGroup.id(), groupDesc);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700552 // Insert the newly created group entry into key and id maps
553 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700554 put(new GroupStoreKeyMapKey(groupDesc.deviceId(),
555 groupDesc.appCookie()), group);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700556 // Ensure it also inserted into group id based table to
557 // avoid any chances of duplication in group id generation
558 getGroupIdTable(groupDesc.deviceId()).
alshabibb0285992016-03-28 23:30:37 -0700559 put(matchingExtraneousGroup.id(), group);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700560 addOrUpdateGroupEntry(matchingExtraneousGroup);
561 removeExtraneousGroupEntry(matchingExtraneousGroup);
562 return;
563 } else {
564 //Group buckets are not matching. Update group
565 //with user provided buckets.
Saurav Das0fd79d92016-03-07 10:58:36 -0800566 log.debug("storeGroupDescriptionInternal: Buckets are not "
alshabibb0285992016-03-28 23:30:37 -0700567 + "matching in Device {} for group id 0x{}",
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700568 groupDesc.deviceId(),
Saurav Das0fd79d92016-03-07 10:58:36 -0800569 Integer.toHexString(groupDesc.givenGroupId()));
570 StoredGroupEntry modifiedGroup = new DefaultGroup(
alshabibb0285992016-03-28 23:30:37 -0700571 matchingExtraneousGroup.id(), groupDesc);
Saurav Das0fd79d92016-03-07 10:58:36 -0800572 modifiedGroup.setState(GroupState.PENDING_UPDATE);
573 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700574 put(new GroupStoreKeyMapKey(groupDesc.deviceId(),
575 groupDesc.appCookie()), modifiedGroup);
Saurav Das0fd79d92016-03-07 10:58:36 -0800576 // Ensure it also inserted into group id based table to
577 // avoid any chances of duplication in group id generation
578 getGroupIdTable(groupDesc.deviceId()).
alshabibb0285992016-03-28 23:30:37 -0700579 put(matchingExtraneousGroup.id(), modifiedGroup);
Saurav Das0fd79d92016-03-07 10:58:36 -0800580 removeExtraneousGroupEntry(matchingExtraneousGroup);
581 log.debug("storeGroupDescriptionInternal: Triggering Group "
alshabibb0285992016-03-28 23:30:37 -0700582 + "UPDATE request for {} in device {}",
Saurav Das0fd79d92016-03-07 10:58:36 -0800583 matchingExtraneousGroup.id(),
584 groupDesc.deviceId());
585 notifyDelegate(new GroupEvent(Type.GROUP_UPDATE_REQUESTED, modifiedGroup));
586 return;
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700587 }
588 }
589 } else {
590 //Check if there is an extraneous group with user provided buckets
591 matchingExtraneousGroup = getMatchingExtraneousGroupbyBuckets(
alshabibb0285992016-03-28 23:30:37 -0700592 groupDesc.deviceId(), groupDesc.buckets());
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700593 if (matchingExtraneousGroup != null) {
594 //Group is already existing with the same buckets.
595 //So reuse this group.
596 log.debug("storeGroupDescriptionInternal: Matching extraneous group found in Device {}",
597 groupDesc.deviceId());
598 //Create a group entry object
599 StoredGroupEntry group = new DefaultGroup(
alshabibb0285992016-03-28 23:30:37 -0700600 matchingExtraneousGroup.id(), groupDesc);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700601 // Insert the newly created group entry into key and id maps
602 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700603 put(new GroupStoreKeyMapKey(groupDesc.deviceId(),
604 groupDesc.appCookie()), group);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700605 // Ensure it also inserted into group id based table to
606 // avoid any chances of duplication in group id generation
607 getGroupIdTable(groupDesc.deviceId()).
alshabibb0285992016-03-28 23:30:37 -0700608 put(matchingExtraneousGroup.id(), group);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700609 addOrUpdateGroupEntry(matchingExtraneousGroup);
610 removeExtraneousGroupEntry(matchingExtraneousGroup);
611 return;
612 } else {
613 //TODO: Check if there are any empty groups that can be used here
614 log.debug("storeGroupDescriptionInternal: No matching extraneous groups found in Device {}",
615 groupDesc.deviceId());
616 }
617 }
618
Saurav Das100e3b82015-04-30 11:12:10 -0700619 GroupId id = null;
620 if (groupDesc.givenGroupId() == null) {
621 // Get a new group identifier
Yi Tsengfa394de2017-02-01 11:26:40 -0800622 id = new GroupId(getFreeGroupIdValue(groupDesc.deviceId()));
Saurav Das100e3b82015-04-30 11:12:10 -0700623 } else {
Saurav Das8be4e3a2016-03-11 17:19:07 -0800624 // we need to use the identifier passed in by caller, but check if
625 // already used
626 Group existing = getGroup(groupDesc.deviceId(),
Yi Tsengfa394de2017-02-01 11:26:40 -0800627 new GroupId(groupDesc.givenGroupId()));
Saurav Das8be4e3a2016-03-11 17:19:07 -0800628 if (existing != null) {
629 log.warn("Group already exists with the same id: 0x{} in dev:{} "
alshabibb0285992016-03-28 23:30:37 -0700630 + "but with different key: {} (request gkey: {})",
631 Integer.toHexString(groupDesc.givenGroupId()),
632 groupDesc.deviceId(),
633 existing.appCookie(),
634 groupDesc.appCookie());
Saurav Das8be4e3a2016-03-11 17:19:07 -0800635 return;
636 }
Yi Tsengfa394de2017-02-01 11:26:40 -0800637 id = new GroupId(groupDesc.givenGroupId());
Saurav Das100e3b82015-04-30 11:12:10 -0700638 }
alshabib10580802015-02-18 18:30:33 -0800639 // Create a group entry object
640 StoredGroupEntry group = new DefaultGroup(id, groupDesc);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700641 // Insert the newly created group entry into key and id maps
642 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700643 put(new GroupStoreKeyMapKey(groupDesc.deviceId(),
644 groupDesc.appCookie()), group);
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700645 // Ensure it also inserted into group id based table to
646 // avoid any chances of duplication in group id generation
647 getGroupIdTable(groupDesc.deviceId()).
alshabibb0285992016-03-28 23:30:37 -0700648 put(id, group);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700649 log.debug("storeGroupDescriptionInternal: Processing Group ADD request for Id {} in device {}",
alshabibb0285992016-03-28 23:30:37 -0700650 id,
651 groupDesc.deviceId());
alshabib10580802015-02-18 18:30:33 -0800652 notifyDelegate(new GroupEvent(GroupEvent.Type.GROUP_ADD_REQUESTED,
653 group));
654 }
655
656 /**
657 * Updates the existing group entry with the information
658 * from group description.
659 *
alshabibb0285992016-03-28 23:30:37 -0700660 * @param deviceId the device ID
alshabib10580802015-02-18 18:30:33 -0800661 * @param oldAppCookie the current group key
alshabibb0285992016-03-28 23:30:37 -0700662 * @param type update type
663 * @param newBuckets group buckets for updates
alshabib10580802015-02-18 18:30:33 -0800664 * @param newAppCookie optional new group key
665 */
666 @Override
667 public void updateGroupDescription(DeviceId deviceId,
668 GroupKey oldAppCookie,
669 UpdateType type,
670 GroupBuckets newBuckets,
671 GroupKey newAppCookie) {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700672 // Check if group update to be done by a remote instance
sangho52abe3a2015-05-05 14:13:34 -0700673 if (mastershipService.getMasterFor(deviceId) != null &&
674 mastershipService.getLocalRole(deviceId) != MastershipRole.MASTER) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700675 log.debug("updateGroupDescription: Device {} local role is not MASTER",
676 deviceId);
677 if (mastershipService.getMasterFor(deviceId) == null) {
678 log.error("No Master for device {}..."
alshabibb0285992016-03-28 23:30:37 -0700679 + "Can not perform update group operation",
680 deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700681 //TODO: Send Group operation failure event
682 return;
683 }
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700684 GroupStoreMessage groupOp = GroupStoreMessage.
685 createGroupUpdateRequestMsg(deviceId,
686 oldAppCookie,
687 type,
688 newBuckets,
689 newAppCookie);
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700690
Madan Jampani175e8fd2015-05-20 14:10:45 -0700691 clusterCommunicator.unicast(groupOp,
alshabibb0285992016-03-28 23:30:37 -0700692 GroupStoreMessageSubjects.REMOTE_GROUP_OP_REQUEST,
693 clusterMsgSerializer::serialize,
694 mastershipService.getMasterFor(deviceId)).whenComplete((result, error) -> {
695 if (error != null) {
696 log.warn("Failed to send request to master: {} to {}",
697 groupOp,
698 mastershipService.getMasterFor(deviceId), error);
699 }
700 //TODO: Send Group operation failure event
701 });
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700702 return;
703 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700704 log.debug("updateGroupDescription for device {} is getting handled locally",
705 deviceId);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700706 updateGroupDescriptionInternal(deviceId,
707 oldAppCookie,
708 type,
709 newBuckets,
710 newAppCookie);
711 }
712
713 private void updateGroupDescriptionInternal(DeviceId deviceId,
alshabibb0285992016-03-28 23:30:37 -0700714 GroupKey oldAppCookie,
715 UpdateType type,
716 GroupBuckets newBuckets,
717 GroupKey newAppCookie) {
alshabib10580802015-02-18 18:30:33 -0800718 // Check if a group is existing with the provided key
719 Group oldGroup = getGroup(deviceId, oldAppCookie);
720 if (oldGroup == null) {
Saurav Das8be4e3a2016-03-11 17:19:07 -0800721 log.warn("updateGroupDescriptionInternal: Group not found...strange. "
alshabibb0285992016-03-28 23:30:37 -0700722 + "GroupKey:{} DeviceId:{}", oldAppCookie, deviceId);
alshabib10580802015-02-18 18:30:33 -0800723 return;
724 }
725
726 List<GroupBucket> newBucketList = getUpdatedBucketList(oldGroup,
727 type,
728 newBuckets);
729 if (newBucketList != null) {
730 // Create a new group object from the old group
731 GroupBuckets updatedBuckets = new GroupBuckets(newBucketList);
732 GroupKey newCookie = (newAppCookie != null) ? newAppCookie : oldAppCookie;
733 GroupDescription updatedGroupDesc = new DefaultGroupDescription(
734 oldGroup.deviceId(),
735 oldGroup.type(),
736 updatedBuckets,
737 newCookie,
Saurav Das100e3b82015-04-30 11:12:10 -0700738 oldGroup.givenGroupId(),
alshabib10580802015-02-18 18:30:33 -0800739 oldGroup.appId());
740 StoredGroupEntry newGroup = new DefaultGroup(oldGroup.id(),
741 updatedGroupDesc);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700742 log.debug("updateGroupDescriptionInternal: group entry {} in device {} moving from {} to PENDING_UPDATE",
alshabibb0285992016-03-28 23:30:37 -0700743 oldGroup.id(),
744 oldGroup.deviceId(),
745 oldGroup.state());
alshabib10580802015-02-18 18:30:33 -0800746 newGroup.setState(GroupState.PENDING_UPDATE);
747 newGroup.setLife(oldGroup.life());
748 newGroup.setPackets(oldGroup.packets());
749 newGroup.setBytes(oldGroup.bytes());
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700750 //Update the group entry in groupkey based map.
751 //Update to groupid based map will happen in the
752 //groupkey based map update listener
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700753 log.debug("updateGroupDescriptionInternal with type {}: Group updated with buckets",
754 type);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700755 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700756 put(new GroupStoreKeyMapKey(newGroup.deviceId(),
757 newGroup.appCookie()), newGroup);
alshabib10580802015-02-18 18:30:33 -0800758 notifyDelegate(new GroupEvent(Type.GROUP_UPDATE_REQUESTED, newGroup));
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700759 } else {
760 log.warn("updateGroupDescriptionInternal with type {}: No "
alshabibb0285992016-03-28 23:30:37 -0700761 + "change in the buckets in update", type);
alshabib10580802015-02-18 18:30:33 -0800762 }
763 }
764
765 private List<GroupBucket> getUpdatedBucketList(Group oldGroup,
766 UpdateType type,
767 GroupBuckets buckets) {
Victor Silva0282ab82016-11-15 16:30:27 -0300768 if (type == UpdateType.SET) {
769 return buckets.buckets();
770 }
771
Victor Silvadf1eeae2016-08-12 15:28:57 -0300772 List<GroupBucket> oldBuckets = oldGroup.buckets().buckets();
773 List<GroupBucket> updatedBucketList = new ArrayList<>();
alshabib10580802015-02-18 18:30:33 -0800774 boolean groupDescUpdated = false;
775
776 if (type == UpdateType.ADD) {
Victor Silvadf1eeae2016-08-12 15:28:57 -0300777 List<GroupBucket> newBuckets = buckets.buckets();
778
779 // Add old buckets that will not be updated and check if any will be updated.
780 for (GroupBucket oldBucket : oldBuckets) {
781 int newBucketIndex = newBuckets.indexOf(oldBucket);
782
783 if (newBucketIndex != -1) {
784 GroupBucket newBucket = newBuckets.get(newBucketIndex);
785 if (!newBucket.hasSameParameters(oldBucket)) {
786 // Bucket will be updated
787 groupDescUpdated = true;
788 }
789 } else {
790 // Old bucket will remain the same - add it.
791 updatedBucketList.add(oldBucket);
alshabib10580802015-02-18 18:30:33 -0800792 }
793 }
Victor Silvadf1eeae2016-08-12 15:28:57 -0300794
795 // Add all new buckets
796 updatedBucketList.addAll(newBuckets);
797 if (!oldBuckets.containsAll(newBuckets)) {
798 groupDescUpdated = true;
799 }
800
alshabib10580802015-02-18 18:30:33 -0800801 } else if (type == UpdateType.REMOVE) {
Victor Silvadf1eeae2016-08-12 15:28:57 -0300802 List<GroupBucket> bucketsToRemove = buckets.buckets();
803
804 // Check which old buckets should remain
805 for (GroupBucket oldBucket : oldBuckets) {
806 if (!bucketsToRemove.contains(oldBucket)) {
807 updatedBucketList.add(oldBucket);
808 } else {
alshabib10580802015-02-18 18:30:33 -0800809 groupDescUpdated = true;
810 }
811 }
812 }
813
814 if (groupDescUpdated) {
Victor Silvadf1eeae2016-08-12 15:28:57 -0300815 return updatedBucketList;
alshabib10580802015-02-18 18:30:33 -0800816 } else {
817 return null;
818 }
819 }
820
821 /**
822 * Triggers deleting the existing group entry.
823 *
alshabibb0285992016-03-28 23:30:37 -0700824 * @param deviceId the device ID
alshabib10580802015-02-18 18:30:33 -0800825 * @param appCookie the group key
826 */
827 @Override
828 public void deleteGroupDescription(DeviceId deviceId,
829 GroupKey appCookie) {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700830 // Check if group to be deleted by a remote instance
831 if (mastershipService.
832 getLocalRole(deviceId) != MastershipRole.MASTER) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700833 log.debug("deleteGroupDescription: Device {} local role is not MASTER",
834 deviceId);
835 if (mastershipService.getMasterFor(deviceId) == null) {
836 log.error("No Master for device {}..."
alshabibb0285992016-03-28 23:30:37 -0700837 + "Can not perform delete group operation",
838 deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700839 //TODO: Send Group operation failure event
840 return;
841 }
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700842 GroupStoreMessage groupOp = GroupStoreMessage.
843 createGroupDeleteRequestMsg(deviceId,
844 appCookie);
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700845
Madan Jampani175e8fd2015-05-20 14:10:45 -0700846 clusterCommunicator.unicast(groupOp,
alshabibb0285992016-03-28 23:30:37 -0700847 GroupStoreMessageSubjects.REMOTE_GROUP_OP_REQUEST,
848 clusterMsgSerializer::serialize,
849 mastershipService.getMasterFor(deviceId)).whenComplete((result, error) -> {
850 if (error != null) {
851 log.warn("Failed to send request to master: {} to {}",
852 groupOp,
853 mastershipService.getMasterFor(deviceId), error);
854 }
855 //TODO: Send Group operation failure event
856 });
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700857 return;
858 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700859 log.debug("deleteGroupDescription in device {} is getting handled locally",
860 deviceId);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700861 deleteGroupDescriptionInternal(deviceId, appCookie);
862 }
863
864 private void deleteGroupDescriptionInternal(DeviceId deviceId,
865 GroupKey appCookie) {
alshabib10580802015-02-18 18:30:33 -0800866 // Check if a group is existing with the provided key
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700867 StoredGroupEntry existing = getStoredGroupEntry(deviceId, appCookie);
alshabib10580802015-02-18 18:30:33 -0800868 if (existing == null) {
869 return;
870 }
871
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700872 log.debug("deleteGroupDescriptionInternal: group entry {} in device {} moving from {} to PENDING_DELETE",
alshabibb0285992016-03-28 23:30:37 -0700873 existing.id(),
874 existing.deviceId(),
875 existing.state());
alshabib10580802015-02-18 18:30:33 -0800876 synchronized (existing) {
877 existing.setState(GroupState.PENDING_DELETE);
Saurav Das80980c72016-03-23 11:22:49 -0700878 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700879 put(new GroupStoreKeyMapKey(existing.deviceId(), existing.appCookie()),
880 existing);
alshabib10580802015-02-18 18:30:33 -0800881 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700882 log.debug("deleteGroupDescriptionInternal: in device {} issuing GROUP_REMOVE_REQUESTED",
883 deviceId);
alshabib10580802015-02-18 18:30:33 -0800884 notifyDelegate(new GroupEvent(Type.GROUP_REMOVE_REQUESTED, existing));
885 }
886
887 /**
888 * Stores a new group entry, or updates an existing entry.
889 *
890 * @param group group entry
891 */
892 @Override
893 public void addOrUpdateGroupEntry(Group group) {
894 // check if this new entry is an update to an existing entry
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700895 StoredGroupEntry existing = getStoredGroupEntry(group.deviceId(),
896 group.id());
alshabib10580802015-02-18 18:30:33 -0800897 GroupEvent event = null;
898
899 if (existing != null) {
Saurav Das0fd79d92016-03-07 10:58:36 -0800900 log.trace("addOrUpdateGroupEntry: updating group entry {} in device {}",
alshabibb0285992016-03-28 23:30:37 -0700901 group.id(),
902 group.deviceId());
alshabib10580802015-02-18 18:30:33 -0800903 synchronized (existing) {
alshabibb0285992016-03-28 23:30:37 -0700904 for (GroupBucket bucket : group.buckets().buckets()) {
Sho SHIMIZU30d639b2015-05-05 09:30:35 -0700905 Optional<GroupBucket> matchingBucket =
Srikanth Vavilapalli10e75cd2015-04-13 16:21:24 -0700906 existing.buckets().buckets()
alshabibb0285992016-03-28 23:30:37 -0700907 .stream()
908 .filter((existingBucket) -> (existingBucket.equals(bucket)))
909 .findFirst();
Srikanth Vavilapalli10e75cd2015-04-13 16:21:24 -0700910 if (matchingBucket.isPresent()) {
911 ((StoredGroupBucketEntry) matchingBucket.
912 get()).setPackets(bucket.packets());
913 ((StoredGroupBucketEntry) matchingBucket.
914 get()).setBytes(bucket.bytes());
915 } else {
916 log.warn("addOrUpdateGroupEntry: No matching "
alshabibb0285992016-03-28 23:30:37 -0700917 + "buckets to update stats");
Srikanth Vavilapalli10e75cd2015-04-13 16:21:24 -0700918 }
919 }
alshabib10580802015-02-18 18:30:33 -0800920 existing.setLife(group.life());
921 existing.setPackets(group.packets());
922 existing.setBytes(group.bytes());
alshabibb0285992016-03-28 23:30:37 -0700923 existing.setReferenceCount(group.referenceCount());
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700924 if ((existing.state() == GroupState.PENDING_ADD) ||
alshabibb0285992016-03-28 23:30:37 -0700925 (existing.state() == GroupState.PENDING_ADD_RETRY)) {
Saurav Das0fd79d92016-03-07 10:58:36 -0800926 log.trace("addOrUpdateGroupEntry: group entry {} in device {} moving from {} to ADDED",
alshabibb0285992016-03-28 23:30:37 -0700927 existing.id(),
928 existing.deviceId(),
929 existing.state());
alshabib10580802015-02-18 18:30:33 -0800930 existing.setState(GroupState.ADDED);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700931 existing.setIsGroupStateAddedFirstTime(true);
alshabib10580802015-02-18 18:30:33 -0800932 event = new GroupEvent(Type.GROUP_ADDED, existing);
933 } else {
Saurav Das0fd79d92016-03-07 10:58:36 -0800934 log.trace("addOrUpdateGroupEntry: group entry {} in device {} moving from {} to ADDED",
alshabibb0285992016-03-28 23:30:37 -0700935 existing.id(),
936 existing.deviceId(),
937 GroupState.PENDING_UPDATE);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700938 existing.setState(GroupState.ADDED);
939 existing.setIsGroupStateAddedFirstTime(false);
alshabib10580802015-02-18 18:30:33 -0800940 event = new GroupEvent(Type.GROUP_UPDATED, existing);
941 }
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700942 //Re-PUT map entries to trigger map update events
943 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700944 put(new GroupStoreKeyMapKey(existing.deviceId(),
945 existing.appCookie()), existing);
alshabib10580802015-02-18 18:30:33 -0800946 }
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700947 } else {
948 log.warn("addOrUpdateGroupEntry: Group update "
alshabibb0285992016-03-28 23:30:37 -0700949 + "happening for a non-existing entry in the map");
alshabib10580802015-02-18 18:30:33 -0800950 }
951
952 if (event != null) {
953 notifyDelegate(event);
954 }
955 }
956
957 /**
958 * Removes the group entry from store.
959 *
960 * @param group group entry
961 */
962 @Override
963 public void removeGroupEntry(Group group) {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700964 StoredGroupEntry existing = getStoredGroupEntry(group.deviceId(),
965 group.id());
alshabib10580802015-02-18 18:30:33 -0800966
967 if (existing != null) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700968 log.debug("removeGroupEntry: removing group entry {} in device {}",
alshabibb0285992016-03-28 23:30:37 -0700969 group.id(),
970 group.deviceId());
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700971 //Removal from groupid based map will happen in the
972 //map update listener
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700973 getGroupStoreKeyMap().remove(new GroupStoreKeyMapKey(existing.deviceId(),
974 existing.appCookie()));
alshabib10580802015-02-18 18:30:33 -0800975 notifyDelegate(new GroupEvent(Type.GROUP_REMOVED, existing));
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700976 } else {
977 log.warn("removeGroupEntry for {} in device{} is "
alshabibb0285992016-03-28 23:30:37 -0700978 + "not existing in our maps",
979 group.id(),
980 group.deviceId());
alshabib10580802015-02-18 18:30:33 -0800981 }
982 }
983
Victor Silva4e8b7832016-08-17 17:11:19 -0300984 private void purgeGroupEntries(Set<Entry<GroupStoreKeyMapKey, StoredGroupEntry>> entries) {
985 entries.forEach(entry -> {
986 groupStoreEntriesByKey.remove(entry.getKey());
987 });
988 }
989
alshabib10580802015-02-18 18:30:33 -0800990 @Override
Charles Chan0c7c43b2016-01-14 17:39:20 -0800991 public void purgeGroupEntry(DeviceId deviceId) {
Victor Silva4e8b7832016-08-17 17:11:19 -0300992 Set<Entry<GroupStoreKeyMapKey, StoredGroupEntry>> entriesPendingRemove =
Charles Chan0c7c43b2016-01-14 17:39:20 -0800993 new HashSet<>();
994
Madan Jampani0b847532016-03-03 13:44:15 -0800995 getGroupStoreKeyMap().entrySet().stream()
Charles Chan0c7c43b2016-01-14 17:39:20 -0800996 .filter(entry -> entry.getKey().deviceId().equals(deviceId))
Victor Silva4e8b7832016-08-17 17:11:19 -0300997 .forEach(entriesPendingRemove::add);
Charles Chan0c7c43b2016-01-14 17:39:20 -0800998
Victor Silva4e8b7832016-08-17 17:11:19 -0300999 purgeGroupEntries(entriesPendingRemove);
1000 }
1001
1002 @Override
1003 public void purgeGroupEntries() {
1004 purgeGroupEntries(getGroupStoreKeyMap().entrySet());
Charles Chan0c7c43b2016-01-14 17:39:20 -08001005 }
1006
1007 @Override
alshabib10580802015-02-18 18:30:33 -08001008 public void deviceInitialAuditCompleted(DeviceId deviceId,
1009 boolean completed) {
1010 synchronized (deviceAuditStatus) {
1011 if (completed) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001012 log.debug("AUDIT completed for device {}",
1013 deviceId);
alshabib10580802015-02-18 18:30:33 -08001014 deviceAuditStatus.put(deviceId, true);
1015 // Execute all pending group requests
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001016 List<StoredGroupEntry> pendingGroupRequests =
1017 getPendingGroupKeyTable().values()
alshabibb0285992016-03-28 23:30:37 -07001018 .stream()
1019 .filter(g -> g.deviceId().equals(deviceId))
1020 .collect(Collectors.toList());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001021 log.debug("processing pending group add requests for device {} and number of pending requests {}",
alshabibb0285992016-03-28 23:30:37 -07001022 deviceId,
1023 pendingGroupRequests.size());
1024 for (Group group : pendingGroupRequests) {
alshabib10580802015-02-18 18:30:33 -08001025 GroupDescription tmp = new DefaultGroupDescription(
1026 group.deviceId(),
1027 group.type(),
1028 group.buckets(),
1029 group.appCookie(),
Saurav Das100e3b82015-04-30 11:12:10 -07001030 group.givenGroupId(),
alshabib10580802015-02-18 18:30:33 -08001031 group.appId());
1032 storeGroupDescriptionInternal(tmp);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001033 getPendingGroupKeyTable().
alshabibb0285992016-03-28 23:30:37 -07001034 remove(new GroupStoreKeyMapKey(deviceId, group.appCookie()));
alshabib10580802015-02-18 18:30:33 -08001035 }
alshabib10580802015-02-18 18:30:33 -08001036 } else {
Thomas Vachuskac40d4632015-04-09 16:55:03 -07001037 Boolean audited = deviceAuditStatus.get(deviceId);
1038 if (audited != null && audited) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001039 log.debug("Clearing AUDIT status for device {}", deviceId);
alshabib10580802015-02-18 18:30:33 -08001040 deviceAuditStatus.put(deviceId, false);
1041 }
1042 }
1043 }
1044 }
1045
1046 @Override
1047 public boolean deviceInitialAuditStatus(DeviceId deviceId) {
1048 synchronized (deviceAuditStatus) {
Thomas Vachuskac40d4632015-04-09 16:55:03 -07001049 Boolean audited = deviceAuditStatus.get(deviceId);
1050 return audited != null && audited;
alshabib10580802015-02-18 18:30:33 -08001051 }
1052 }
1053
1054 @Override
1055 public void groupOperationFailed(DeviceId deviceId, GroupOperation operation) {
1056
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001057 StoredGroupEntry existing = getStoredGroupEntry(deviceId,
1058 operation.groupId());
alshabib10580802015-02-18 18:30:33 -08001059
1060 if (existing == null) {
1061 log.warn("No group entry with ID {} found ", operation.groupId());
1062 return;
1063 }
1064
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001065 log.warn("groupOperationFailed: group operation {} failed"
alshabibb0285992016-03-28 23:30:37 -07001066 + "for group {} in device {} with code {}",
1067 operation.opType(),
1068 existing.id(),
1069 existing.deviceId(),
1070 operation.failureCode());
Saurav Das0fd79d92016-03-07 10:58:36 -08001071 if (operation.failureCode() == GroupOperation.GroupMsgErrorCode.GROUP_EXISTS) {
1072 log.warn("Current extraneous groups in device:{} are: {}",
1073 deviceId,
1074 getExtraneousGroups(deviceId));
Saurav Das8be4e3a2016-03-11 17:19:07 -08001075 if (operation.buckets().equals(existing.buckets())) {
1076 if (existing.state() == GroupState.PENDING_ADD) {
1077 log.info("GROUP_EXISTS: GroupID and Buckets match for group in pending "
alshabibb0285992016-03-28 23:30:37 -07001078 + "add state - moving to ADDED for group {} in device {}",
1079 existing.id(), deviceId);
Saurav Das8be4e3a2016-03-11 17:19:07 -08001080 addOrUpdateGroupEntry(existing);
1081 return;
1082 } else {
1083 log.warn("GROUP EXISTS: Group ID matched but buckets did not. "
alshabibb0285992016-03-28 23:30:37 -07001084 + "Operation: {} Existing: {}", operation.buckets(),
1085 existing.buckets());
Saurav Das8be4e3a2016-03-11 17:19:07 -08001086 }
1087 }
Saurav Das0fd79d92016-03-07 10:58:36 -08001088 }
alshabib10580802015-02-18 18:30:33 -08001089 switch (operation.opType()) {
1090 case ADD:
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001091 if (existing.state() == GroupState.PENDING_ADD) {
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001092 notifyDelegate(new GroupEvent(Type.GROUP_ADD_FAILED, existing));
1093 log.warn("groupOperationFailed: cleaningup "
alshabibb0285992016-03-28 23:30:37 -07001094 + "group {} from store in device {}....",
1095 existing.id(),
1096 existing.deviceId());
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001097 //Removal from groupid based map will happen in the
1098 //map update listener
1099 getGroupStoreKeyMap().remove(new GroupStoreKeyMapKey(existing.deviceId(),
1100 existing.appCookie()));
1101 }
alshabib10580802015-02-18 18:30:33 -08001102 break;
1103 case MODIFY:
1104 notifyDelegate(new GroupEvent(Type.GROUP_UPDATE_FAILED, existing));
1105 break;
1106 case DELETE:
1107 notifyDelegate(new GroupEvent(Type.GROUP_REMOVE_FAILED, existing));
1108 break;
1109 default:
1110 log.warn("Unknown group operation type {}", operation.opType());
1111 }
alshabib10580802015-02-18 18:30:33 -08001112 }
1113
1114 @Override
1115 public void addOrUpdateExtraneousGroupEntry(Group group) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001116 log.debug("add/update extraneous group entry {} in device {}",
alshabibb0285992016-03-28 23:30:37 -07001117 group.id(),
1118 group.deviceId());
alshabib10580802015-02-18 18:30:33 -08001119 ConcurrentMap<GroupId, Group> extraneousIdTable =
1120 getExtraneousGroupIdTable(group.deviceId());
1121 extraneousIdTable.put(group.id(), group);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -07001122 // Don't remove the extraneous groups, instead re-use it when
1123 // a group request comes with the same set of buckets
alshabib10580802015-02-18 18:30:33 -08001124 }
1125
1126 @Override
1127 public void removeExtraneousGroupEntry(Group group) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001128 log.debug("remove extraneous group entry {} of device {} from store",
alshabibb0285992016-03-28 23:30:37 -07001129 group.id(),
1130 group.deviceId());
alshabib10580802015-02-18 18:30:33 -08001131 ConcurrentMap<GroupId, Group> extraneousIdTable =
1132 getExtraneousGroupIdTable(group.deviceId());
1133 extraneousIdTable.remove(group.id());
1134 }
1135
1136 @Override
1137 public Iterable<Group> getExtraneousGroups(DeviceId deviceId) {
1138 // flatten and make iterator unmodifiable
1139 return FluentIterable.from(
1140 getExtraneousGroupIdTable(deviceId).values());
1141 }
1142
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001143 /**
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -07001144 * Map handler to receive any events when the group key map is updated.
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001145 */
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -07001146 private class GroupStoreKeyMapListener implements
Madan Jampani0b847532016-03-03 13:44:15 -08001147 MapEventListener<GroupStoreKeyMapKey, StoredGroupEntry> {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001148
1149 @Override
Madan Jampani0b847532016-03-03 13:44:15 -08001150 public void event(MapEvent<GroupStoreKeyMapKey, StoredGroupEntry> mapEvent) {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001151 GroupEvent groupEvent = null;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001152 GroupStoreKeyMapKey key = mapEvent.key();
Madan Jampani0b847532016-03-03 13:44:15 -08001153 StoredGroupEntry group = Versioned.valueOrNull(mapEvent.newValue());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001154 if ((key == null) && (group == null)) {
1155 log.error("GroupStoreKeyMapListener: Received "
alshabibb0285992016-03-28 23:30:37 -07001156 + "event {} with null entry", mapEvent.type());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001157 return;
1158 } else if (group == null) {
1159 group = getGroupIdTable(key.deviceId()).values()
1160 .stream()
1161 .filter((storedGroup) -> (storedGroup.appCookie().equals(key.appCookie)))
Yuta HIGUCHI6e5f4702016-11-21 11:42:11 -08001162 .findFirst().orElse(null);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001163 if (group == null) {
1164 log.error("GroupStoreKeyMapListener: Received "
alshabibb0285992016-03-28 23:30:37 -07001165 + "event {} with null entry... can not process", mapEvent.type());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001166 return;
1167 }
1168 }
1169 log.trace("received groupid map event {} for id {} in device {}",
1170 mapEvent.type(),
1171 group.id(),
jaegonkim68e080c2016-12-01 22:31:01 +09001172 (key != null ? key.deviceId() : null));
Madan Jampani0b847532016-03-03 13:44:15 -08001173 if (mapEvent.type() == MapEvent.Type.INSERT || mapEvent.type() == MapEvent.Type.UPDATE) {
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -07001174 // Update the group ID table
1175 getGroupIdTable(group.deviceId()).put(group.id(), group);
Madan Jampani0b847532016-03-03 13:44:15 -08001176 StoredGroupEntry value = Versioned.valueOrNull(mapEvent.newValue());
1177 if (value.state() == Group.GroupState.ADDED) {
1178 if (value.isGroupStateAddedFirstTime()) {
1179 groupEvent = new GroupEvent(Type.GROUP_ADDED, value);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001180 log.trace("Received first time GROUP_ADDED state update for id {} in device {}",
alshabibb0285992016-03-28 23:30:37 -07001181 group.id(),
1182 group.deviceId());
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001183 } else {
Madan Jampani0b847532016-03-03 13:44:15 -08001184 groupEvent = new GroupEvent(Type.GROUP_UPDATED, value);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001185 log.trace("Received following GROUP_ADDED state update for id {} in device {}",
alshabibb0285992016-03-28 23:30:37 -07001186 group.id(),
1187 group.deviceId());
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001188 }
1189 }
Madan Jampani0b847532016-03-03 13:44:15 -08001190 } else if (mapEvent.type() == MapEvent.Type.REMOVE) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001191 groupEvent = new GroupEvent(Type.GROUP_REMOVED, group);
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -07001192 // Remove the entry from the group ID table
1193 getGroupIdTable(group.deviceId()).remove(group.id(), group);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001194 }
1195
1196 if (groupEvent != null) {
1197 notifyDelegate(groupEvent);
1198 }
1199 }
1200 }
Madan Jampani01e05fb2015-08-13 13:29:36 -07001201
helenyrwua1c41152016-08-18 16:16:14 -07001202 private void processGroupMessage(GroupStoreMessage message) {
1203 if (message.type() == GroupStoreMessage.Type.FAILOVER) {
1204 // FIXME: groupStoreEntriesByKey inaccessible here
1205 getGroupIdTable(message.deviceId()).values()
1206 .stream()
1207 .filter((storedGroup) -> (storedGroup.appCookie().equals(message.appCookie())))
1208 .findFirst().ifPresent(group -> notifyDelegate(new GroupEvent(Type.GROUP_BUCKET_FAILOVER, group)));
1209 }
1210 }
1211
Madan Jampani01e05fb2015-08-13 13:29:36 -07001212 private void process(GroupStoreMessage groupOp) {
1213 log.debug("Received remote group operation {} request for device {}",
alshabibb0285992016-03-28 23:30:37 -07001214 groupOp.type(),
1215 groupOp.deviceId());
1216 if (!mastershipService.isLocalMaster(groupOp.deviceId())) {
1217 log.warn("This node is not MASTER for device {}", groupOp.deviceId());
1218 return;
1219 }
1220 if (groupOp.type() == GroupStoreMessage.Type.ADD) {
1221 storeGroupDescriptionInternal(groupOp.groupDesc());
1222 } else if (groupOp.type() == GroupStoreMessage.Type.UPDATE) {
1223 updateGroupDescriptionInternal(groupOp.deviceId(),
1224 groupOp.appCookie(),
1225 groupOp.updateType(),
1226 groupOp.updateBuckets(),
1227 groupOp.newAppCookie());
1228 } else if (groupOp.type() == GroupStoreMessage.Type.DELETE) {
1229 deleteGroupDescriptionInternal(groupOp.deviceId(),
1230 groupOp.appCookie());
1231 }
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001232 }
1233
1234 /**
1235 * Flattened map key to be used to store group entries.
1236 */
Ray Milkeyb3c5ce22015-08-10 09:07:36 -07001237 protected static class GroupStoreMapKey {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001238 private final DeviceId deviceId;
1239
1240 public GroupStoreMapKey(DeviceId deviceId) {
1241 this.deviceId = deviceId;
1242 }
1243
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001244 public DeviceId deviceId() {
1245 return deviceId;
1246 }
1247
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001248 @Override
1249 public boolean equals(Object o) {
1250 if (this == o) {
1251 return true;
1252 }
1253 if (!(o instanceof GroupStoreMapKey)) {
1254 return false;
1255 }
1256 GroupStoreMapKey that = (GroupStoreMapKey) o;
1257 return this.deviceId.equals(that.deviceId);
1258 }
1259
1260 @Override
1261 public int hashCode() {
1262 int result = 17;
1263
1264 result = 31 * result + Objects.hash(this.deviceId);
1265
1266 return result;
1267 }
1268 }
1269
Ray Milkeyb3c5ce22015-08-10 09:07:36 -07001270 protected static class GroupStoreKeyMapKey extends GroupStoreMapKey {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001271 private final GroupKey appCookie;
alshabibb0285992016-03-28 23:30:37 -07001272
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001273 public GroupStoreKeyMapKey(DeviceId deviceId,
1274 GroupKey appCookie) {
1275 super(deviceId);
1276 this.appCookie = appCookie;
1277 }
1278
1279 @Override
1280 public boolean equals(Object o) {
1281 if (this == o) {
1282 return true;
1283 }
1284 if (!(o instanceof GroupStoreKeyMapKey)) {
1285 return false;
1286 }
1287 GroupStoreKeyMapKey that = (GroupStoreKeyMapKey) o;
1288 return (super.equals(that) &&
1289 this.appCookie.equals(that.appCookie));
1290 }
1291
1292 @Override
1293 public int hashCode() {
1294 int result = 17;
1295
1296 result = 31 * result + super.hashCode() + Objects.hash(this.appCookie);
1297
1298 return result;
1299 }
1300 }
1301
Ray Milkeyb3c5ce22015-08-10 09:07:36 -07001302 protected static class GroupStoreIdMapKey extends GroupStoreMapKey {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001303 private final GroupId groupId;
alshabibb0285992016-03-28 23:30:37 -07001304
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001305 public GroupStoreIdMapKey(DeviceId deviceId,
1306 GroupId groupId) {
1307 super(deviceId);
1308 this.groupId = groupId;
1309 }
1310
1311 @Override
1312 public boolean equals(Object o) {
1313 if (this == o) {
1314 return true;
1315 }
1316 if (!(o instanceof GroupStoreIdMapKey)) {
1317 return false;
1318 }
1319 GroupStoreIdMapKey that = (GroupStoreIdMapKey) o;
1320 return (super.equals(that) &&
1321 this.groupId.equals(that.groupId));
1322 }
1323
1324 @Override
1325 public int hashCode() {
1326 int result = 17;
1327
1328 result = 31 * result + super.hashCode() + Objects.hash(this.groupId);
1329
1330 return result;
1331 }
1332 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001333
1334 @Override
1335 public void pushGroupMetrics(DeviceId deviceId,
1336 Collection<Group> groupEntries) {
1337 boolean deviceInitialAuditStatus =
1338 deviceInitialAuditStatus(deviceId);
1339 Set<Group> southboundGroupEntries =
1340 Sets.newHashSet(groupEntries);
1341 Set<StoredGroupEntry> storedGroupEntries =
1342 Sets.newHashSet(getStoredGroups(deviceId));
1343 Set<Group> extraneousStoredEntries =
1344 Sets.newHashSet(getExtraneousGroups(deviceId));
1345
Sho SHIMIZU695bac62016-08-15 12:41:59 -07001346 if (log.isTraceEnabled()) {
1347 log.trace("pushGroupMetrics: Displaying all ({}) southboundGroupEntries for device {}",
1348 southboundGroupEntries.size(),
1349 deviceId);
1350 for (Group group : southboundGroupEntries) {
1351 log.trace("Group {} in device {}", group, deviceId);
1352 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001353
Sho SHIMIZU695bac62016-08-15 12:41:59 -07001354 log.trace("Displaying all ({}) stored group entries for device {}",
1355 storedGroupEntries.size(),
1356 deviceId);
1357 for (StoredGroupEntry group : storedGroupEntries) {
1358 log.trace("Stored Group {} for device {}", group, deviceId);
1359 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001360 }
1361
alshabibb0285992016-03-28 23:30:37 -07001362 garbageCollect(deviceId, southboundGroupEntries, storedGroupEntries);
1363
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001364 for (Iterator<Group> it2 = southboundGroupEntries.iterator(); it2.hasNext();) {
1365 Group group = it2.next();
1366 if (storedGroupEntries.remove(group)) {
1367 // we both have the group, let's update some info then.
1368 log.trace("Group AUDIT: group {} exists in both planes for device {}",
alshabibb0285992016-03-28 23:30:37 -07001369 group.id(), deviceId);
1370
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001371 groupAdded(group);
1372 it2.remove();
1373 }
1374 }
1375 for (Group group : southboundGroupEntries) {
1376 if (getGroup(group.deviceId(), group.id()) != null) {
1377 // There is a group existing with the same id
1378 // It is possible that group update is
1379 // in progress while we got a stale info from switch
1380 if (!storedGroupEntries.remove(getGroup(
alshabibb0285992016-03-28 23:30:37 -07001381 group.deviceId(), group.id()))) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001382 log.warn("Group AUDIT: Inconsistent state:"
alshabibb0285992016-03-28 23:30:37 -07001383 + "Group exists in ID based table while "
1384 + "not present in key based table");
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001385 }
1386 } else {
1387 // there are groups in the switch that aren't in the store
1388 log.debug("Group AUDIT: extraneous group {} exists in data plane for device {}",
alshabibb0285992016-03-28 23:30:37 -07001389 group.id(), deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001390 extraneousStoredEntries.remove(group);
Kavitha Alagesanc56cded2017-01-13 10:48:18 +05301391 if (allowExtraneousGroups) {
1392 extraneousGroup(group);
1393 } else {
1394 notifyDelegate(new GroupEvent(Type.GROUP_REMOVE_REQUESTED, group));
1395 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001396 }
1397 }
1398 for (Group group : storedGroupEntries) {
1399 // there are groups in the store that aren't in the switch
1400 log.debug("Group AUDIT: group {} missing in data plane for device {}",
alshabibb0285992016-03-28 23:30:37 -07001401 group.id(), deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001402 groupMissing(group);
1403 }
1404 for (Group group : extraneousStoredEntries) {
1405 // there are groups in the extraneous store that
1406 // aren't in the switch
Saurav Das0fd79d92016-03-07 10:58:36 -08001407 log.debug("Group AUDIT: clearing extraneous group {} from store for device {}",
alshabibb0285992016-03-28 23:30:37 -07001408 group.id(), deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001409 removeExtraneousGroupEntry(group);
1410 }
1411
1412 if (!deviceInitialAuditStatus) {
Saurav Das0fd79d92016-03-07 10:58:36 -08001413 log.info("Group AUDIT: Setting device {} initial AUDIT completed",
alshabibb0285992016-03-28 23:30:37 -07001414 deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001415 deviceInitialAuditCompleted(deviceId, true);
1416 }
1417 }
1418
helenyrwu89470f12016-08-12 13:18:10 -07001419 @Override
1420 public void notifyOfFailovers(Collection<Group> failoverGroups) {
helenyrwu89470f12016-08-12 13:18:10 -07001421 failoverGroups.forEach(group -> {
1422 if (group.type() == Group.Type.FAILOVER) {
helenyrwua1c41152016-08-18 16:16:14 -07001423 groupTopic.publish(GroupStoreMessage.createGroupFailoverMsg(
1424 group.deviceId(), group));
helenyrwu89470f12016-08-12 13:18:10 -07001425 }
1426 });
helenyrwu89470f12016-08-12 13:18:10 -07001427 }
1428
alshabibb0285992016-03-28 23:30:37 -07001429 private void garbageCollect(DeviceId deviceId,
1430 Set<Group> southboundGroupEntries,
1431 Set<StoredGroupEntry> storedGroupEntries) {
1432 if (!garbageCollect) {
1433 return;
1434 }
1435
1436 Iterator<StoredGroupEntry> it = storedGroupEntries.iterator();
1437 while (it.hasNext()) {
1438 StoredGroupEntry group = it.next();
1439 if (group.state() != GroupState.PENDING_DELETE && checkGroupRefCount(group)) {
1440 log.debug("Garbage collecting group {} on {}", group, deviceId);
1441 deleteGroupDescription(deviceId, group.appCookie());
1442 southboundGroupEntries.remove(group);
1443 it.remove();
1444 }
1445 }
1446 }
1447
1448 private boolean checkGroupRefCount(Group group) {
1449 return (group.referenceCount() == 0 && group.age() >= gcThresh);
1450 }
1451
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001452 private void groupMissing(Group group) {
1453 switch (group.state()) {
1454 case PENDING_DELETE:
1455 log.debug("Group {} delete confirmation from device {}",
1456 group, group.deviceId());
1457 removeGroupEntry(group);
1458 break;
1459 case ADDED:
1460 case PENDING_ADD:
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001461 case PENDING_ADD_RETRY:
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001462 case PENDING_UPDATE:
1463 log.debug("Group {} is in store but not on device {}",
1464 group, group.deviceId());
1465 StoredGroupEntry existing =
1466 getStoredGroupEntry(group.deviceId(), group.id());
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001467 log.debug("groupMissing: group entry {} in device {} moving from {} to PENDING_ADD_RETRY",
alshabibb0285992016-03-28 23:30:37 -07001468 existing.id(),
1469 existing.deviceId(),
1470 existing.state());
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001471 existing.setState(Group.GroupState.PENDING_ADD_RETRY);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001472 //Re-PUT map entries to trigger map update events
1473 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -07001474 put(new GroupStoreKeyMapKey(existing.deviceId(),
1475 existing.appCookie()), existing);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001476 notifyDelegate(new GroupEvent(GroupEvent.Type.GROUP_ADD_REQUESTED,
1477 group));
1478 break;
1479 default:
1480 log.debug("Group {} has not been installed.", group);
1481 break;
1482 }
1483 }
1484
1485 private void extraneousGroup(Group group) {
Saurav Das0fd79d92016-03-07 10:58:36 -08001486 log.trace("Group {} is on device {} but not in store.",
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001487 group, group.deviceId());
1488 addOrUpdateExtraneousGroupEntry(group);
1489 }
1490
1491 private void groupAdded(Group group) {
1492 log.trace("Group {} Added or Updated in device {}",
1493 group, group.deviceId());
1494 addOrUpdateGroupEntry(group);
1495 }
alshabib10580802015-02-18 18:30:33 -08001496}