Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2008-2016, 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.operation;
import com.hazelcast.cluster.memberselector.MemberSelectors;
import com.hazelcast.core.Member;
import com.hazelcast.nio.Address;
import com.hazelcast.nio.serialization.Data;
import com.hazelcast.spi.AbstractOperation;
import com.hazelcast.spi.OperationService;
import com.hazelcast.spi.impl.operationservice.impl.responses.NormalResponse;
import java.util.ArrayList;
import java.util.Collection;
import static com.hazelcast.replicatedmap.impl.ReplicatedMapService.INVOCATION_TRY_COUNT;
public abstract class AbstractReplicatedMapOperation extends AbstractOperation {
protected String name;
protected Data key;
protected Data value;
protected long ttl;
protected transient VersionResponsePair response;
protected void sendReplicationOperation(final boolean isRemove) {
final OperationService operationService = getNodeEngine().getOperationService();
Collection members = getMemberAddresses();
for (Address address : members) {
invoke(isRemove, operationService, address, name, key, value, ttl, response);
}
}
protected Collection getMemberAddresses() {
Address thisAddress = getNodeEngine().getThisAddress();
Collection members = getNodeEngine().getClusterService().getMembers(MemberSelectors.DATA_MEMBER_SELECTOR);
Collection addresses = new ArrayList();
for (Member member : members) {
Address address = member.getAddress();
if (address.equals(getCallerAddress()) || address.equals(thisAddress)) {
continue;
}
addresses.add(address);
}
return addresses;
}
private void invoke(boolean isRemove, OperationService operationService, Address address, String name, Data key,
Data value, long ttl, VersionResponsePair response) {
ReplicateUpdateOperation updateOperation = new ReplicateUpdateOperation(name, key, value, ttl, response,
isRemove, getCallerAddress());
updateOperation.setPartitionId(getPartitionId());
updateOperation.setValidateTarget(false);
operationService
.createInvocationBuilder(getServiceName(), updateOperation, address)
.setTryCount(INVOCATION_TRY_COUNT)
.invoke();
}
protected void sendUpdateCallerOperation(boolean isRemove) {
OperationService operationService = getNodeEngine().getOperationService();
ReplicateUpdateToCallerOperation updateCallerOperation = new ReplicateUpdateToCallerOperation(name, getCallId(),
key, value, response, ttl, isRemove);
updateCallerOperation.setPartitionId(getPartitionId());
updateCallerOperation.setValidateTarget(false);
updateCallerOperation.setServiceName(getServiceName());
operationService
.createInvocationBuilder(getServiceName(), updateCallerOperation, getCallerAddress())
.setTryCount(INVOCATION_TRY_COUNT)
.invoke();
}
@Override
public boolean returnsResponse() {
return true;
}
@Override
public Object getResponse() {
if (getNodeEngine().getThisAddress().equals(getCallerAddress())) {
return response;
} else {
NormalResponse resp = new NormalResponse(response, getCallId(), 1, isUrgent());
return resp;
}
}
@Override
protected void toString(StringBuilder sb) {
super.toString(sb);
sb.append(", name=").append(name);
}
}