com.hazelcast.spi.impl.ResponseHandlerFactory Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2015, 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.spi.impl;
import com.hazelcast.core.HazelcastException;
import com.hazelcast.logging.ILogger;
import com.hazelcast.nio.Connection;
import com.hazelcast.spi.NodeEngine;
import com.hazelcast.spi.Operation;
import com.hazelcast.spi.ResponseHandler;
import com.hazelcast.spi.exception.ResponseAlreadySentException;
import com.hazelcast.spi.impl.operationservice.InternalOperationService;
import com.hazelcast.spi.impl.operationservice.impl.responses.ErrorResponse;
import com.hazelcast.spi.impl.operationservice.impl.responses.NormalResponse;
import com.hazelcast.spi.impl.operationservice.impl.responses.Response;
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
public final class ResponseHandlerFactory {
private static final NoResponseHandler NO_RESPONSE_HANDLER = new NoResponseHandler();
private ResponseHandlerFactory() {
}
public static void setRemoteResponseHandler(NodeEngine nodeEngine, Operation operation) {
ResponseHandler responseHandler = createRemoteResponseHandler(nodeEngine, operation);
operation.setResponseHandler(responseHandler);
}
public static ResponseHandler createRemoteResponseHandler(NodeEngine nodeEngine, Operation operation) {
if (operation.getCallId() == 0 || operation.getCallId() == Operation.CALL_ID_LOCAL_SKIPPED) {
if (operation.returnsResponse()) {
throw new HazelcastException(
"Op: " + operation + " can not return response without call-id!");
}
return NO_RESPONSE_HANDLER;
}
return new RemoteInvocationResponseHandler(nodeEngine, operation);
}
public static ResponseHandler createEmptyResponseHandler() {
return NO_RESPONSE_HANDLER;
}
private static class NoResponseHandler
implements ResponseHandler {
@Override
public void sendResponse(final Object obj) {
}
@Override
public boolean isLocal() {
return false;
}
}
public static ResponseHandler createErrorLoggingResponseHandler(ILogger logger) {
return new ErrorLoggingResponseHandler(logger);
}
private static final class ErrorLoggingResponseHandler implements ResponseHandler {
private final ILogger logger;
private ErrorLoggingResponseHandler(ILogger logger) {
this.logger = logger;
}
@Override
public void sendResponse(final Object obj) {
if (obj instanceof Throwable) {
Throwable t = (Throwable) obj;
logger.severe(t);
}
}
@Override
public boolean isLocal() {
return true;
}
}
private static final class RemoteInvocationResponseHandler implements ResponseHandler {
private static final AtomicIntegerFieldUpdater SENT
= AtomicIntegerFieldUpdater.newUpdater(RemoteInvocationResponseHandler.class, "sent");
private final NodeEngine nodeEngine;
private final Operation operation;
private volatile int sent;
private RemoteInvocationResponseHandler(NodeEngine nodeEngine, Operation operation) {
this.nodeEngine = nodeEngine;
this.operation = operation;
}
@Override
public void sendResponse(Object obj) {
long callId = operation.getCallId();
Connection conn = operation.getConnection();
if (!SENT.compareAndSet(this, 0, 1) && !(obj instanceof Throwable)) {
throw new ResponseAlreadySentException("NormalResponse already sent for call: " + callId
+ " to " + conn.getEndPoint() + ", current-response: " + obj);
}
Response response;
if (obj instanceof Throwable) {
response = new ErrorResponse((Throwable) obj, operation.getCallId(), operation.isUrgent());
} else if (!(obj instanceof Response)) {
response = new NormalResponse(obj, operation.getCallId(), 0, operation.isUrgent());
} else {
response = (Response) obj;
}
InternalOperationService operationService = (InternalOperationService) nodeEngine.getOperationService();
if (!operationService.send(response, operation.getCallerAddress())) {
throw new HazelcastException("Cannot send response: " + obj + " to " + conn.getEndPoint());
}
}
@Override
public boolean isLocal() {
return false;
}
}
}