/* * Copyright (c) 2008-2017, 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.replicatedmap.impl.record; import com.hazelcast.config.ReplicatedMapConfig; import com.hazelcast.monitor.impl.LocalReplicatedMapStatsImpl; import com.hazelcast.replicatedmap.impl.ReplicatedMapEvictionProcessor; import com.hazelcast.replicatedmap.impl.ReplicatedMapService; import com.hazelcast.spi.EventService; import com.hazelcast.spi.NodeEngine; import com.hazelcast.spi.partition.IPartitionService; import com.hazelcast.spi.serialization.SerializationService; import com.hazelcast.util.scheduler.EntryTaskScheduler; import com.hazelcast.util.scheduler.EntryTaskSchedulerFactory; import com.hazelcast.util.scheduler.ScheduleType; import com.hazelcast.util.scheduler.ScheduledEntry; import java.util.HashSet; import java.util.Set; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicReference; /** * Internal base class to encapsulate the internals from the interface methods of ReplicatedRecordStore * * @param <K> key type * @param <V> value type */ public abstract class AbstractBaseReplicatedRecordStore<K, V> implements ReplicatedRecordStore { protected final AtomicReference<InternalReplicatedMapStorage<K, V>> storageRef; protected final ReplicatedMapService replicatedMapService; protected final ReplicatedMapConfig replicatedMapConfig; protected final NodeEngine nodeEngine; protected final SerializationService serializationService; protected final IPartitionService partitionService; protected final AtomicBoolean isLoaded = new AtomicBoolean(false); protected final EntryTaskScheduler<Object, Object> ttlEvictionScheduler; protected final EventService eventService; protected final String name; protected int partitionId; protected AbstractBaseReplicatedRecordStore(String name, ReplicatedMapService replicatedMapService, int partitionId) { this.name = name; this.partitionId = partitionId; this.nodeEngine = replicatedMapService.getNodeEngine(); this.serializationService = nodeEngine.getSerializationService(); this.partitionService = nodeEngine.getPartitionService(); this.eventService = nodeEngine.getEventService(); this.replicatedMapService = replicatedMapService; this.replicatedMapConfig = replicatedMapService.getReplicatedMapConfig(name); this.storageRef = new AtomicReference<InternalReplicatedMapStorage<K, V>>(); this.storageRef.set(new InternalReplicatedMapStorage<K, V>()); this.ttlEvictionScheduler = EntryTaskSchedulerFactory .newScheduler(nodeEngine.getExecutionService().getGlobalTaskScheduler(), new ReplicatedMapEvictionProcessor(this, nodeEngine, partitionId), ScheduleType.POSTPONE); } public InternalReplicatedMapStorage<K, V> getStorage() { return storageRef.get(); } public AtomicReference<InternalReplicatedMapStorage<K, V>> getStorageRef() { return storageRef; } @Override public String getName() { return name; } public LocalReplicatedMapStatsImpl getStats() { return replicatedMapService.getLocalMapStatsImpl(name); } @Override public void destroy() { InternalReplicatedMapStorage storage = storageRef.getAndSet(new InternalReplicatedMapStorage<K, V>()); if (storage != null) { storage.clear(); } } @Override public long getVersion() { return storageRef.get().getVersion(); } @Override public boolean isStale(long version) { return storageRef.get().isStale(version); } public Set<ReplicatedRecord> getRecords() { return new HashSet<ReplicatedRecord>(storageRef.get().values()); } @Override public ScheduledEntry<Object, Object> cancelTtlEntry(Object key) { return ttlEvictionScheduler.cancel(key); } @Override public boolean scheduleTtlEntry(long delayMillis, Object key, Object value) { return ttlEvictionScheduler.schedule(delayMillis, key, value); } @Override public boolean isLoaded() { return isLoaded.get(); } @Override public void setLoaded(boolean loaded) { isLoaded.set(loaded); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AbstractBaseReplicatedRecordStore that = (AbstractBaseReplicatedRecordStore) o; if (name != null ? !name.equals(that.name) : that.name != null) { return false; } if (!storageRef.get().equals(that.storageRef.get())) { return false; } return true; } @Override public int hashCode() { int result = storageRef.get().hashCode(); result = 31 * result + (name != null ? name.hashCode() : 0); return result; } }