com.hazelcast.map.PartitionContainer Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2013, Hazelcast, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hazelcast.map;
import com.hazelcast.concurrent.lock.LockService;
import com.hazelcast.spi.DefaultObjectNamespace;
import com.hazelcast.spi.NodeEngine;
import com.hazelcast.util.ConcurrencyUtil;
import com.hazelcast.util.ConstructorFunction;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
public class PartitionContainer {
private final MapService mapService;
private final int partitionId;
private final ConcurrentMap maps = new ConcurrentHashMap(1000);
public PartitionContainer(final MapService mapService, final int partitionId) {
this.mapService = mapService;
this.partitionId = partitionId;
}
private final ConstructorFunction recordStoreConstructor
= new ConstructorFunction() {
public RecordStore createNew(String name) {
return new DefaultRecordStore(name, mapService, partitionId);
}
};
public ConcurrentMap getMaps() {
return maps;
}
public int getPartitionId() {
return partitionId;
}
public MapService getMapService() {
return mapService;
}
public RecordStore getExistingRecordStore(String name){
return maps.get(name);
}
public RecordStore getRecordStore(String name) {
return ConcurrencyUtil.getOrPutIfAbsent(maps, name, recordStoreConstructor);
}
void destroyMap(String name) {
RecordStore recordStore = maps.remove(name);
if (recordStore != null) {
recordStore.clear();
} else {
// It can be that, map is used only for locking,
// because of that RecordStore is not created.
// We will try to remove/clear LockStore belonging to
// this IMap partition.
clearLockStore(name);
}
}
private void clearLockStore(String name) {
final NodeEngine nodeEngine = mapService.getNodeEngine();
final LockService lockService = nodeEngine.getSharedService(LockService.SERVICE_NAME);
if (lockService != null) {
final DefaultObjectNamespace namespace = new DefaultObjectNamespace(MapService.SERVICE_NAME, name);
lockService.clearLockStore(partitionId, namespace);
}
}
void clear() {
for (RecordStore recordStore : maps.values()) {
recordStore.clear();
}
maps.clear();
}
}