com.hazelcast.collection.list.ListService 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.collection.list;
import com.hazelcast.collection.CollectionContainer;
import com.hazelcast.collection.CollectionService;
import com.hazelcast.collection.txn.TransactionalListProxy;
import com.hazelcast.core.DistributedObject;
import com.hazelcast.spi.NodeEngine;
import com.hazelcast.spi.Operation;
import com.hazelcast.spi.PartitionReplicationEvent;
import com.hazelcast.transaction.impl.TransactionSupport;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
public class ListService extends CollectionService {
public static final String SERVICE_NAME = "hz:impl:listService";
private final ConcurrentMap containerMap = new ConcurrentHashMap();
public ListService(NodeEngine nodeEngine) {
super(nodeEngine);
}
@Override
public ListContainer getOrCreateContainer(String name, boolean backup) {
ListContainer container = containerMap.get(name);
if (container == null) {
container = new ListContainer(name, nodeEngine);
final ListContainer current = containerMap.putIfAbsent(name, container);
if (current != null) {
container = current;
}
}
return container;
}
@Override
public Map getContainerMap() {
return containerMap;
}
@Override
public String getServiceName() {
return SERVICE_NAME;
}
@Override
public DistributedObject createDistributedObject(String objectId) {
return new ListProxyImpl(objectId, nodeEngine, this);
}
@Override
public TransactionalListProxy createTransactionalObject(String name, TransactionSupport transaction) {
return new TransactionalListProxy(name, transaction, nodeEngine, this);
}
@Override
public Operation prepareReplicationOperation(PartitionReplicationEvent event) {
final Map migrationData = getMigrationData(event);
return migrationData.isEmpty()
? null
: new ListReplicationOperation(migrationData, event.getPartitionId(), event.getReplicaIndex());
}
}