blob: 27dad14e3fdd8dc5eaddc92f83e6731e4a32dd4b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You 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 org.apache.geode.internal.cache;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
import java.util.HashSet;
import java.util.Set;
import org.apache.logging.log4j.Logger;
import org.apache.geode.CancelException;
import org.apache.geode.DataSerializer;
import org.apache.geode.SystemFailure;
import org.apache.geode.cache.CacheClosedException;
import org.apache.geode.cache.CacheException;
import org.apache.geode.cache.Region;
import org.apache.geode.cache.execute.Function;
import org.apache.geode.cache.execute.FunctionException;
import org.apache.geode.cache.execute.FunctionInvocationTargetException;
import org.apache.geode.cache.execute.FunctionService;
import org.apache.geode.cache.execute.ResultSender;
import org.apache.geode.cache.query.QueryException;
import org.apache.geode.distributed.internal.ClusterDistributionManager;
import org.apache.geode.distributed.internal.DistributionManager;
import org.apache.geode.distributed.internal.DistributionMessage;
import org.apache.geode.distributed.internal.InternalDistributedSystem;
import org.apache.geode.distributed.internal.MessageWithReply;
import org.apache.geode.distributed.internal.OperationExecutors;
import org.apache.geode.distributed.internal.ReplyException;
import org.apache.geode.distributed.internal.ReplyMessage;
import org.apache.geode.distributed.internal.ReplyProcessor21;
import org.apache.geode.distributed.internal.membership.InternalDistributedMember;
import org.apache.geode.internal.InternalDataSerializer;
import org.apache.geode.internal.cache.execute.FunctionContextImpl;
import org.apache.geode.internal.cache.execute.MemberFunctionResultSender;
import org.apache.geode.internal.cache.execute.MultiRegionFunctionContextImpl;
import org.apache.geode.internal.cache.execute.metrics.FunctionStats;
import org.apache.geode.internal.cache.execute.metrics.FunctionStatsManager;
import org.apache.geode.internal.serialization.DeserializationContext;
import org.apache.geode.internal.serialization.SerializationContext;
import org.apache.geode.logging.internal.log4j.api.LogService;
public class MemberFunctionStreamingMessage extends DistributionMessage
implements TransactionMessage, MessageWithReply {
private static final Logger logger = LogService.getLogger();
transient int replyMsgNum = 0;
transient boolean replyLastMsg;
private Function functionObject;
private String functionName;
Object args;
private int processorId;
private int txUniqId = TXManagerImpl.NOTX;
private InternalDistributedMember txMemberId = null;
private boolean isFnSerializationReqd;
private Set<String> regionPathSet;
private boolean isReExecute;
private static final short IS_REEXECUTE = UNRESERVED_FLAGS_START;
public MemberFunctionStreamingMessage() {}
public MemberFunctionStreamingMessage(Function function, int procId, Object ar,
boolean isFnSerializationReqd, boolean isReExecute) {
functionObject = function;
processorId = procId;
args = ar;
this.isFnSerializationReqd = isFnSerializationReqd;
this.isReExecute = isReExecute;
txUniqId = TXManagerImpl.getCurrentTXUniqueId();
TXStateProxy txState = TXManagerImpl.getCurrentTXState();
if (txState != null && txState.isMemberIdForwardingRequired()) {
txMemberId = txState.getOriginatingMember();
}
}
// For Multi region function execution
public MemberFunctionStreamingMessage(Function function, int procId, Object ar,
boolean isFnSerializationReqd, Set<String> regions, boolean isReExecute) {
functionObject = function;
processorId = procId;
args = ar;
this.isFnSerializationReqd = isFnSerializationReqd;
regionPathSet = regions;
this.isReExecute = isReExecute;
txUniqId = TXManagerImpl.getCurrentTXUniqueId();
TXStateProxy txState = TXManagerImpl.getCurrentTXState();
if (txState != null && txState.isMemberIdForwardingRequired()) {
txMemberId = txState.getOriginatingMember();
}
}
public MemberFunctionStreamingMessage(DataInput in) throws IOException, ClassNotFoundException {
fromData(in, InternalDataSerializer.createDeserializationContext(in));
}
private TXStateProxy prepForTransaction(ClusterDistributionManager dm)
throws InterruptedException {
if (txUniqId == TXManagerImpl.NOTX) {
return null;
} else {
InternalCache cache = dm.getCache();
if (cache == null) {
// ignore and return, we are shutting down!
return null;
}
TXManagerImpl mgr = cache.getTXMgr();
return mgr.masqueradeAs(this);
}
}
private void cleanupTransaction(TXStateProxy tx) {
if (txUniqId != TXManagerImpl.NOTX) {
InternalCache cache = GemFireCacheImpl.getInstance();
if (cache == null) {
// ignore and return, we are shutting down!
return;
}
TXManagerImpl mgr = cache.getTXMgr();
mgr.unmasquerade(tx);
}
}
@Override
protected void process(final ClusterDistributionManager dm) {
Throwable thr = null;
ReplyException rex = null;
if (functionObject == null) {
rex = new ReplyException(
new FunctionException(
String.format("Function named %s is not registered to FunctionService",
functionName)));
replyWithException(dm, rex);
return;
}
FunctionStats stats =
FunctionStatsManager.getFunctionStats(functionObject.getId(), dm.getSystem());
TXStateProxy tx = null;
InternalCache cache = dm.getCache();
long start = 0;
boolean startedFunctionExecution = false;
try {
tx = prepForTransaction(dm);
ResultSender resultSender = new MemberFunctionResultSender(dm, this, functionObject);
Set<Region> regions = new HashSet<>();
if (regionPathSet != null) {
for (String regionPath : regionPathSet) {
if (checkCacheClosing(dm) || checkDSClosing(dm)) {
if (dm.getCache() == null) {
thr = new CacheClosedException(
String.format("Remote cache is closed: %s",
dm.getId()));
} else {
dm.getCache().getCacheClosedException(
String.format("Remote cache is closed: %s",
dm.getId()));
}
return;
}
regions.add(cache.getRegion(regionPath));
}
}
FunctionContextImpl context = new MultiRegionFunctionContextImpl(cache,
functionObject.getId(), args, resultSender, regions, isReExecute);
start = stats.startFunctionExecution(functionObject.hasResult());
startedFunctionExecution = true;
if (logger.isDebugEnabled()) {
logger.debug("Executing Function: {} on remote member with context: {}",
functionObject.getId(), context.toString());
}
functionObject.execute(context);
if (!replyLastMsg && functionObject.hasResult()) {
throw new FunctionException(
String.format("The function, %s, did not send last result",
functionObject.getId()));
}
stats.endFunctionExecution(start, functionObject.hasResult());
} catch (FunctionException functionException) {
if (logger.isDebugEnabled()) {
logger.debug("FunctionException occurred on remote member while executing Function: {}",
functionObject.getId(), functionException);
}
if (startedFunctionExecution) {
stats.endFunctionExecutionWithException(start, functionObject.hasResult());
}
rex = new ReplyException(functionException);
replyWithException(dm, rex);
// thr = functionException.getCause();
} catch (CancelException exception) {
// bug 37026: this is too noisy...
// throw new CacheClosedException("remote system shutting down");
// thr = se; cache is closed, no point trying to send a reply
thr = new FunctionInvocationTargetException(exception);
if (startedFunctionExecution) {
stats.endFunctionExecutionWithException(start, functionObject.hasResult());
}
rex = new ReplyException(thr);
replyWithException(dm, rex);
} catch (Exception exception) {
if (logger.isDebugEnabled()) {
logger.debug("Exception occurred on remote member while executing Function: {}",
functionObject.getId(), exception);
}
if (startedFunctionExecution) {
stats.endFunctionExecutionWithException(start, functionObject.hasResult());
}
rex = new ReplyException(exception);
replyWithException(dm, rex);
// thr = e.getCause();
} catch (VirtualMachineError err) {
SystemFailure.initiateFailure(err);
// If this ever returns, rethrow the error. We're poisoned
// now, so don't let this thread continue.
throw err;
} catch (Throwable t) {
// Whenever you catch Error or Throwable, you must also
// catch VirtualMachineError (see above). However, there is
// _still_ a possibility that you are dealing with a cascading
// error condition, so you also need to check to see if the JVM
// is still usable:
SystemFailure.checkFailure();
thr = t;
} finally {
cleanupTransaction(tx);
if (thr != null) {
rex = new ReplyException(thr);
replyWithException(dm, rex);
}
}
}
private void replyWithException(ClusterDistributionManager dm, ReplyException rex) {
ReplyMessage.send(getSender(), processorId, rex, dm);
}
@Override
public int getProcessorId() {
return processorId;
}
@Override
public int getDSFID() {
return MEMBER_FUNCTION_STREAMING_MESSAGE;
}
@Override
public void fromData(DataInput in,
DeserializationContext context) throws IOException, ClassNotFoundException {
super.fromData(in, context);
short flags = in.readShort();
if ((flags & HAS_PROCESSOR_ID) != 0) {
processorId = in.readInt();
ReplyProcessor21.setMessageRPId(processorId);
}
if ((flags & HAS_TX_ID) != 0) {
txUniqId = in.readInt();
}
if ((flags & HAS_TX_MEMBERID) != 0) {
txMemberId = DataSerializer.readObject(in);
}
Object object = DataSerializer.readObject(in);
if (object instanceof String) {
isFnSerializationReqd = false;
functionObject = FunctionService.getFunction((String) object);
if (functionObject == null) {
functionName = (String) object;
}
} else {
functionObject = (Function) object;
isFnSerializationReqd = true;
}
args = DataSerializer.readObject(in);
regionPathSet = DataSerializer.readObject(in);
isReExecute = (flags & IS_REEXECUTE) != 0;
}
@Override
public void toData(DataOutput out,
SerializationContext context) throws IOException {
super.toData(out, context);
short flags = 0;
if (processorId != 0) {
flags |= HAS_PROCESSOR_ID;
}
if (txUniqId != TXManagerImpl.NOTX) {
flags |= HAS_TX_ID;
}
if (txMemberId != null) {
flags |= HAS_TX_MEMBERID;
}
if (isReExecute) {
flags |= IS_REEXECUTE;
}
out.writeShort(flags);
if (processorId != 0) {
out.writeInt(processorId);
}
if (txUniqId != TXManagerImpl.NOTX) {
out.writeInt(txUniqId);
}
if (txMemberId != null) {
DataSerializer.writeObject(txMemberId, out);
}
if (isFnSerializationReqd) {
DataSerializer.writeObject(functionObject, out);
} else {
DataSerializer.writeObject(functionObject.getId(), out);
}
DataSerializer.writeObject(args, out);
DataSerializer.writeObject(regionPathSet, out);
}
public synchronized boolean sendReplyForOneResult(DistributionManager dm, Object oneResult,
boolean lastResult, boolean sendResultsInOrder)
throws CacheException, QueryException, ForceReattemptException, InterruptedException {
if (replyLastMsg) {
return false;
}
if (Thread.interrupted()) {
throw new InterruptedException();
}
int msgNum = replyMsgNum;
replyLastMsg = lastResult;
sendReply(getSender(), processorId, dm, oneResult, msgNum, lastResult, sendResultsInOrder);
if (logger.isDebugEnabled()) {
logger.debug("Sending reply message count: {} to co-ordinating node", replyMsgNum);
}
replyMsgNum++;
return false;
}
protected void sendReply(InternalDistributedMember member, int procId, DistributionManager dm,
Object oneResult, int msgNum, boolean lastResult, boolean sendResultsInOrder) {
if (sendResultsInOrder) {
FunctionStreamingOrderedReplyMessage.send(member, procId, null, dm, oneResult, msgNum,
lastResult);
} else {
FunctionStreamingReplyMessage.send(member, procId, null, dm, oneResult, msgNum, lastResult);
}
}
@Override
public int getProcessorType() {
return OperationExecutors.REGION_FUNCTION_EXECUTION_EXECUTOR;
}
/**
* check to see if the cache is closing
*/
private boolean checkCacheClosing(ClusterDistributionManager dm) {
InternalCache cache = dm.getCache();
return (cache == null || cache.getCancelCriterion().isCancelInProgress());
}
/**
* check to see if the distributed system is closing
*
* @return true if the distributed system is closing
*/
private boolean checkDSClosing(ClusterDistributionManager dm) {
InternalDistributedSystem ds = dm.getSystem();
return (ds == null || ds.isDisconnecting());
}
@Override
public boolean canStartRemoteTransaction() {
return true;
}
@Override
public int getTXUniqId() {
return txUniqId;
}
@Override
public InternalDistributedMember getMemberToMasqueradeAs() {
if (txMemberId == null) {
return getSender();
} else {
return txMemberId;
}
}
@Override
public InternalDistributedMember getTXOriginatorClient() {
return null;
}
@Override
public boolean canParticipateInTransaction() {
return true;
}
@Override
public boolean isTransactionDistributed() {
return false;
}
}