All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hazelcast.cache.impl.CacheService Maven / Gradle / Ivy

There is a newer version: 62
Show newest version
/*
 * Copyright (c) 2008-2019, 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.cache.impl;

import com.hazelcast.cache.impl.event.CacheWanEventPublisher;
import com.hazelcast.cache.impl.operation.CacheReplicationOperation;
import com.hazelcast.config.InMemoryFormat;
import com.hazelcast.internal.nearcache.impl.invalidation.MetaDataGenerator;
import com.hazelcast.spi.DistributedObjectNamespace;
import com.hazelcast.spi.ObjectNamespace;
import com.hazelcast.spi.Operation;
import com.hazelcast.spi.PartitionMigrationEvent;
import com.hazelcast.spi.PartitionReplicationEvent;
import com.hazelcast.spi.ServiceNamespace;

import java.util.Collection;

import static com.hazelcast.spi.partition.MigrationEndpoint.DESTINATION;
import static com.hazelcast.spi.partition.MigrationEndpoint.SOURCE;

/**
 * Cache Service is the main access point of JCache implementation.
 * 

* This service is responsible for: *

    *
  • Creating and/or accessing the named {@link com.hazelcast.cache.impl.CacheRecordStore}.
  • *
  • Creating/Deleting the cache configuration of the named {@link com.hazelcast.cache.ICache}.
  • *
  • Registering/Deregistering of cache listeners.
  • *
  • Publish/dispatch cache events.
  • *
  • Enabling/Disabling statistic and management.
  • *
  • Data migration commit/rollback through {@link com.hazelcast.spi.MigrationAwareService}.
  • *
*

*

WARNING:This service is an optionally registered service which is enabled when JCache * is located on the classpath, as determined by {@link JCacheDetector#isJCacheAvailable(ClassLoader)}.

*

* If registered, it will provide all the above cache operations for all partitions of the node which it * is registered on. *

*

Distributed Cache Name is used for providing a unique name to a cache object to overcome cache manager * scoping which depends on URI and class loader parameters. It's a simple concatenation of CacheNamePrefix and * cache name where CacheNamePrefix is calculated by each cache manager * using {@link AbstractHazelcastCacheManager#getCacheNamePrefix()}. *

*/ public class CacheService extends AbstractCacheService { @Override protected CachePartitionSegment newPartitionSegment(int partitionId) { return new CachePartitionSegment(this, partitionId); } @Override protected ICacheRecordStore createNewRecordStore(String cacheNameWithPrefix, int partitionId) { CacheRecordStore recordStore = new CacheRecordStore(cacheNameWithPrefix, partitionId, nodeEngine, this); recordStore.instrument(nodeEngine); return recordStore; } @Override protected CacheOperationProvider createOperationProvider(String nameWithPrefix, InMemoryFormat inMemoryFormat) { return new DefaultOperationProvider(nameWithPrefix); } @Override public Collection getAllServiceNamespaces(PartitionReplicationEvent event) { CachePartitionSegment segment = segments[event.getPartitionId()]; return segment.getAllNamespaces(event.getReplicaIndex()); } @Override public boolean isKnownServiceNamespace(ServiceNamespace namespace) { return namespace instanceof ObjectNamespace && SERVICE_NAME.equals(namespace.getServiceName()); } @Override public Operation prepareReplicationOperation(PartitionReplicationEvent event) { CachePartitionSegment segment = segments[event.getPartitionId()]; return prepareReplicationOperation(event, segment.getAllNamespaces(event.getReplicaIndex())); } @Override public Operation prepareReplicationOperation(PartitionReplicationEvent event, Collection namespaces) { assert assertAllKnownNamespaces(namespaces); CachePartitionSegment segment = segments[event.getPartitionId()]; CacheReplicationOperation op = newCacheReplicationOperation(); op.setPartitionId(event.getPartitionId()); op.prepare(segment, namespaces, event.getReplicaIndex()); return op.isEmpty() ? null : op; } private boolean assertAllKnownNamespaces(Collection namespaces) { for (ServiceNamespace namespace : namespaces) { assert isKnownServiceNamespace(namespace) : namespace + " is not a CacheService namespace!"; } return true; } protected CacheReplicationOperation newCacheReplicationOperation() { return new CacheReplicationOperation(); } @Override public void commitMigration(PartitionMigrationEvent event) { super.commitMigration(event); if (SOURCE == event.getMigrationEndpoint()) { getMetaDataGenerator().removeUuidAndSequence(event.getPartitionId()); } else if (DESTINATION == event.getMigrationEndpoint()) { if (event.getNewReplicaIndex() != 0) { getMetaDataGenerator().regenerateUuid(event.getPartitionId()); } } } @Override public void rollbackMigration(PartitionMigrationEvent event) { super.rollbackMigration(event); if (DESTINATION == event.getMigrationEndpoint()) { getMetaDataGenerator().removeUuidAndSequence(event.getPartitionId()); } } private MetaDataGenerator getMetaDataGenerator() { return cacheEventHandler.getMetaDataGenerator(); } @Override public String toString() { return "CacheService[" + SERVICE_NAME + ']'; } @Override public boolean isWanReplicationEnabled(String cacheNameWithPrefix) { return false; } @Override public CacheWanEventPublisher getCacheWanEventPublisher() { throw new UnsupportedOperationException("WAN replication is not supported"); } public static ObjectNamespace getObjectNamespace(String cacheName) { return new DistributedObjectNamespace(SERVICE_NAME, cacheName); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy