Please wait. This can take some minutes ...
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.
org.jacpfx.vertx.rest.eventbus.basic.EventbusExecution Maven / Gradle / Ivy
/*
* Copyright [2017] [Andy Moncsek]
*
* 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 org.jacpfx.vertx.rest.eventbus.basic;
import io.vertx.core.AsyncResult;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import io.vertx.core.Vertx;
import io.vertx.core.eventbus.DeliveryOptions;
import io.vertx.core.eventbus.Message;
import io.vertx.core.shareddata.Counter;
import io.vertx.core.shareddata.Lock;
import io.vertx.ext.web.RoutingContext;
import java.util.Map;
import java.util.Optional;
import java.util.function.Consumer;
import org.jacpfx.common.VxmsShared;
import org.jacpfx.common.concurrent.LocalData;
import org.jacpfx.common.encoder.Encoder;
import org.jacpfx.common.throwable.ThrowableErrorConsumer;
import org.jacpfx.common.throwable.ThrowableFutureBiConsumer;
import org.jacpfx.common.throwable.ThrowableFutureConsumer;
import org.jacpfx.vertx.rest.interfaces.basic.RecursiveExecutor;
import org.jacpfx.vertx.rest.interfaces.basic.RetryExecutor;
import org.jacpfx.vertx.rest.response.basic.ResponseExecution;
/**
* Created by Andy Moncsek on 05.04.16.
* Handles event-bus call and non-blocking execution of the message to create a rest response
*/
public class EventbusExecution {
public static final long LOCK_VALUE = -1l;
public static final int DEFAULT_LOCK_TIMEOUT = 2000;
public static final long DEFAULT_VALUE = 0l;
/**
* Send event-bus message and process the result in the passed function for the execution chain
*
* @param methodId the method identifier
* @param targetId the event-bus target id
* @param message the message to send
* @param function the function to process the result message
* @param deliveryOptions the event-bus delivery options
* @param vxmsShared the vxmsShared instance, containing the Vertx instance and other shared
* objects per instance
* @param failure the failure thrown while task execution
* @param errorMethodHandler the error-method handler
* @param context the vertx routing context
* @param headers the headers to pass to the response
* @param encoder the encoder to encode your objects
* @param errorHandler the error handler
* @param onFailureRespond the consumer that takes a Future with the alternate response value in
* case of failure
* @param httpStatusCode the http status code to set for response
* @param httpErrorCode the http error code to set in case of failure handling
* @param retryCount the amount of retries before failure execution is triggered
* @param timeout the amount of time before the execution will be aborted
* @param circuitBreakerTimeout the amount of time before the circuit breaker closed again
* @param executor the typed executor to process the chain
* @param retryExecutor the typed retryExecutor executor of the chain
* @param the type of response
*/
public static void sendMessageAndSupplyHandler(String methodId,
String targetId,
Object message,
ThrowableFutureBiConsumer>, T> function,
DeliveryOptions deliveryOptions,
VxmsShared vxmsShared,
Throwable failure,
Consumer errorMethodHandler,
RoutingContext context,
Map headers,
Encoder encoder,
Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout,
RecursiveExecutor executor, RetryExecutor retryExecutor) {
if (circuitBreakerTimeout == DEFAULT_VALUE) {
executeDefaultState(methodId,
targetId, message,
function,
deliveryOptions,
vxmsShared, failure,
errorMethodHandler,
context, headers,
encoder, errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount, timeout,
circuitBreakerTimeout,
executor, retryExecutor, null);
} else {
executeStateful(methodId,
targetId, message,
function,
deliveryOptions,
vxmsShared, failure,
errorMethodHandler,
context,
headers,
encoder,
errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount,
timeout,
circuitBreakerTimeout,
executor, retryExecutor);
}
}
private static void executeStateful(String methodId,
String id, Object message,
ThrowableFutureBiConsumer>, T> function,
DeliveryOptions deliveryOptions,
VxmsShared vxmsShared, Throwable t,
Consumer errorMethodHandler,
RoutingContext context,
Map headers,
Encoder encoder,
Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout,
RecursiveExecutor executor,
RetryExecutor retry) {
executeLocked(((lock, counter) ->
counter.get(counterHandler -> {
long currentVal = counterHandler.result();
if (currentVal == DEFAULT_VALUE) {
executeInitialState(methodId,
id, message,
function,
deliveryOptions,
vxmsShared, t,
errorMethodHandler,
context, headers,
encoder, errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount,
timeout,
circuitBreakerTimeout,
executor, retry, lock, counter);
} else if (currentVal > 0) {
executeDefaultState(methodId,
id, message,
function,
deliveryOptions,
vxmsShared, t,
errorMethodHandler,
context, headers,
encoder, errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount,
timeout,
circuitBreakerTimeout,
executor, retry, lock);
} else {
executeErrorState(methodId,
vxmsShared,
errorMethodHandler,
context,
headers,
encoder,
errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount,
timeout,
circuitBreakerTimeout,
executor, lock);
}
})), methodId, vxmsShared, errorHandler, onFailureRespond, errorMethodHandler, context,
headers, encoder, httpStatusCode, httpErrorCode, retryCount, timeout, circuitBreakerTimeout,
executor);
}
private static void executeInitialState(String methodId,
String id,
Object message,
ThrowableFutureBiConsumer>, T> stringFunction,
DeliveryOptions deliveryOptions,
VxmsShared vxmsShared, Throwable t,
Consumer errorMethodHandler,
RoutingContext context,
Map headers,
Encoder encoder,
Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout,
RecursiveExecutor executor,
RetryExecutor retry,
Lock lock, Counter counter) {
counter.addAndGet(Integer.valueOf(retryCount + 1).longValue(), rHandler ->
executeDefaultState(methodId,
id, message,
stringFunction,
deliveryOptions,
vxmsShared, t,
errorMethodHandler,
context,
headers,
encoder,
errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount, timeout,
circuitBreakerTimeout,
executor, retry, lock));
}
private static void executeDefaultState(String methodId,
String id, Object message,
ThrowableFutureBiConsumer>, T> stringFunction,
DeliveryOptions deliveryOptions,
VxmsShared vxmsShared, Throwable t,
Consumer errorMethodHandler,
RoutingContext context,
Map headers,
Encoder encoder,
Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout,
RecursiveExecutor executor,
RetryExecutor retry,
Lock lock) {
Optional.ofNullable(lock).ifPresent(Lock::release);
final Vertx vertx = vxmsShared.getVertx();
vertx.
eventBus().
send(id, message, deliveryOptions,
event ->
createStringSupplierAndExecute(methodId,
id, message,
stringFunction,
deliveryOptions,
vxmsShared, t,
errorMethodHandler,
context,
headers,
encoder,
errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount, timeout,
circuitBreakerTimeout,
executor, retry, event));
}
private static void executeErrorState(String methodId,
VxmsShared vxmsShared,
Consumer errorMethodHandler,
RoutingContext context,
Map headers,
Encoder encoder,
Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout,
RecursiveExecutor executor,
Lock lock) {
final Throwable cause = Future.failedFuture("circuit open").cause();
handleError(methodId,
vxmsShared,
errorMethodHandler,
context,
headers,
encoder,
errorHandler, onFailureRespond, httpStatusCode, httpErrorCode, retryCount,
timeout,
circuitBreakerTimeout,
executor,
lock, cause);
}
private static void createStringSupplierAndExecute(String methodId,
String id, Object message,
ThrowableFutureBiConsumer>, T> stringFunction,
DeliveryOptions deliveryOptions,
VxmsShared vxmsShared, Throwable t,
Consumer errorMethodHandler,
RoutingContext context,
Map headers,
Encoder encoder,
Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout,
RecursiveExecutor executor,
RetryExecutor retry,
AsyncResult> event) {
final ThrowableFutureConsumer stringSupplier = createSupplier(stringFunction, event);
if (circuitBreakerTimeout == DEFAULT_VALUE) {
statelessExecution(methodId,
id,
message,
stringFunction,
deliveryOptions,
vxmsShared, t,
errorMethodHandler,
context, headers,
encoder, errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount, timeout,
circuitBreakerTimeout,
executor, retry,
event, stringSupplier);
} else {
statefulExecution(methodId,
id, message,
stringFunction,
deliveryOptions,
vxmsShared, t,
errorMethodHandler,
context, headers,
encoder, errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount, timeout,
circuitBreakerTimeout,
executor, retry,
event, stringSupplier);
}
}
private static void statelessExecution(String methodId,
String id, Object message,
ThrowableFutureBiConsumer>, T> stringFunction,
DeliveryOptions options,
VxmsShared vxmsShared, Throwable t,
Consumer errorMethodHandler,
RoutingContext context, Map headers,
Encoder encoder, Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout, RecursiveExecutor executor,
RetryExecutor retry,
AsyncResult> event, ThrowableFutureConsumer stringSupplier) {
if (event.succeeded() || (event.failed() && retryCount <= 0)) {
executor.execute(methodId,
vxmsShared, t,
errorMethodHandler,
context, headers,
stringSupplier,
null,
encoder, errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount,
timeout, circuitBreakerTimeout);
} else if (event.failed() && retryCount > 0) {
// retry operation
final Throwable cause = event.cause();
retryOperation(methodId,
id, message,
stringFunction,
options, vxmsShared,
cause,
errorMethodHandler,
context, headers,
encoder, errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount,
timeout,
circuitBreakerTimeout, retry);
}
}
private static void statefulExecution(String methodId,
String id, Object message,
ThrowableFutureBiConsumer>, T> stringFunction,
DeliveryOptions deliveryOptions,
VxmsShared vxmsShared, Throwable t,
Consumer errorMethodHandler,
RoutingContext context,
Map headers,
Encoder encoder,
Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout, RecursiveExecutor executor,
RetryExecutor retry,
AsyncResult> event,
ThrowableFutureConsumer stringSupplier) {
if (event.succeeded()) {
executor.execute(methodId,
vxmsShared, t,
errorMethodHandler,
context, headers,
stringSupplier,
null,
encoder, errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount,
timeout, circuitBreakerTimeout);
} else {
statefulErrorHandling(methodId,
id,
message,
stringFunction,
deliveryOptions,
vxmsShared,
errorMethodHandler,
context,
headers,
encoder,
errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode, retryCount,
timeout, circuitBreakerTimeout,
executor, retry, event);
}
}
private static void statefulErrorHandling(String methodId,
String id, Object message,
ThrowableFutureBiConsumer>, T> stringFunction,
DeliveryOptions deliveryOptions,
VxmsShared vxmsShared, Consumer errorMethodHandler,
RoutingContext context, Map headers,
Encoder encoder, Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout,
RecursiveExecutor executor,
RetryExecutor retry,
AsyncResult> event) {
executeLocked((lock, counter) ->
decrementAndExecute(counter, valHandler -> {
if (valHandler.succeeded()) {
long count = valHandler.result();
if (count <= DEFAULT_VALUE) {
openCircuitAndHandleError(methodId,
vxmsShared,
errorMethodHandler,
context, headers,
encoder, errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount, timeout,
circuitBreakerTimeout,
executor, event,
lock, counter);
} else {
lock.release();
retryOperation(methodId,
id,
message,
stringFunction,
deliveryOptions,
vxmsShared,
event.cause(),
errorMethodHandler,
context, headers,
encoder, errorHandler,
onFailureRespond,
httpStatusCode, httpErrorCode,
retryCount, timeout,
circuitBreakerTimeout, retry);
}
} else {
final Throwable cause = valHandler.cause();
handleError(methodId,
vxmsShared,
errorMethodHandler,
context, headers,
encoder,
errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount, timeout,
circuitBreakerTimeout,
executor, lock, cause);
}
}), methodId, vxmsShared, errorHandler, onFailureRespond, errorMethodHandler, context,
headers, encoder, httpStatusCode, httpErrorCode, retryCount, timeout, circuitBreakerTimeout,
executor);
}
private static void decrementAndExecute(Counter counter,
Handler> asyncResultHandler) {
counter.decrementAndGet(asyncResultHandler);
}
private static void executeLocked(LockedConsumer consumer,
String _methodId,
VxmsShared vxmsShared,
Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
Consumer errorMethodHandler,
RoutingContext context,
Map headers,
Encoder encoder,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout, RecursiveExecutor executor) {
// TODO check if cluster-wide locks should be used
final LocalData sharedData = vxmsShared.getLocalData();
sharedData.getLockWithTimeout(_methodId, DEFAULT_LOCK_TIMEOUT, lockHandler -> {
if (lockHandler.succeeded()) {
final Lock lock = lockHandler.result();
sharedData.getCounter(_methodId, resultHandler -> {
if (resultHandler.succeeded()) {
consumer.execute(lock, resultHandler.result());
} else {
final Throwable cause = resultHandler.cause();
handleError(_methodId,
vxmsShared,
errorMethodHandler,
context,
headers,
encoder,
errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount,
timeout,
circuitBreakerTimeout,
executor, lock, cause);
}
});
} else {
final Throwable cause = lockHandler.cause();
handleError(_methodId,
vxmsShared,
errorMethodHandler,
context, headers,
encoder, errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount,
timeout,
circuitBreakerTimeout,
executor, null, cause);
}
});
}
private static void openCircuitAndHandleError(String methodId,
VxmsShared vxmsShared,
Consumer errorMethodHandler,
RoutingContext context, Map headers,
Encoder encoder, Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout, RecursiveExecutor executor,
AsyncResult> event, Lock lock, Counter counter) {
final Vertx vertx = vxmsShared.getVertx();
vertx.setTimer(circuitBreakerTimeout,
timer -> counter.addAndGet(Integer.valueOf(retryCount + 1).longValue(), val -> {
}));
counter.addAndGet(LOCK_VALUE, val -> {
final Throwable cause = event.cause();
handleError(methodId,
vxmsShared,
errorMethodHandler,
context, headers,
encoder, errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode, retryCount,
timeout, circuitBreakerTimeout,
executor, lock, cause);
});
}
private static void handleError(String methodId,
VxmsShared vxmsShared,
Consumer errorMethodHandler,
RoutingContext context, Map headers,
Encoder encoder,
Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout, RecursiveExecutor executor,
Lock lock, Throwable cause) {
Optional.ofNullable(lock).ifPresent(Lock::release);
final ThrowableFutureConsumer failConsumer = (future) -> future.fail(cause);
executor.execute(methodId,
vxmsShared, cause,
errorMethodHandler,
context, headers,
failConsumer,
null,
encoder, errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount,
timeout, circuitBreakerTimeout);
}
private static void retryOperation(String methodId,
String id,
Object message,
ThrowableFutureBiConsumer>, T> function,
DeliveryOptions deliveryOptions,
VxmsShared vxmsShared, Throwable t,
Consumer errorMethodHandler,
RoutingContext context,
Map headers,
Encoder encoder,
Consumer errorHandler,
ThrowableErrorConsumer onFailureRespond,
int httpStatusCode, int httpErrorCode,
int retryCount, long timeout,
long circuitBreakerTimeout, RetryExecutor retry) {
ResponseExecution.handleError(errorHandler, t);
retry.execute(methodId,
id, message,
function,
deliveryOptions,
vxmsShared, t,
errorMethodHandler,
context, headers,
encoder,
errorHandler,
onFailureRespond,
httpStatusCode,
httpErrorCode,
retryCount,
timeout, circuitBreakerTimeout);
}
private static ThrowableFutureConsumer createSupplier(
ThrowableFutureBiConsumer>, T> function,
AsyncResult> event) {
return (future) -> {
if (event.failed()) {
future.fail(event.cause());
} else {
function.accept(event, future);
}
};
}
private interface LockedConsumer {
void execute(Lock lock, Counter counter);
}
}