org.wildfly.httpclient.ejb.EjbHttpService Maven / Gradle / Ivy
Go to download
This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including
all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and
JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
The newest version!
/*
* JBoss, Home of Professional Open Source.
* Copyright 2022 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* 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.wildfly.httpclient.ejb;
import io.undertow.conduits.GzipStreamSourceConduit;
import io.undertow.server.HttpHandler;
import io.undertow.server.handlers.AllowedMethodsHandler;
import io.undertow.server.handlers.PathHandler;
import io.undertow.server.handlers.encoding.ContentEncodingRepository;
import io.undertow.server.handlers.encoding.EncodingHandler;
import io.undertow.server.handlers.encoding.GzipEncodingProvider;
import io.undertow.server.handlers.encoding.RequestEncodingHandler;
import io.undertow.util.Headers;
import io.undertow.util.Methods;
import org.jboss.ejb.server.Association;
import org.jboss.ejb.server.CancelHandle;
import org.wildfly.httpclient.common.HttpServiceConfig;
import org.wildfly.transaction.client.LocalTransactionContext;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ExecutorService;
import java.util.function.Function;
import static org.wildfly.httpclient.ejb.EjbConstants.EJB_CANCEL_PATH;
import static org.wildfly.httpclient.ejb.EjbConstants.EJB_DISCOVER_PATH;
import static org.wildfly.httpclient.ejb.EjbConstants.EJB_INVOKE_PATH;
import static org.wildfly.httpclient.ejb.EjbConstants.EJB_OPEN_PATH;
/**
* HTTP service that handles EJB calls.
*
* @author Stuart Douglas
* @author Flavia Rainone
*/
public class EjbHttpService {
private final Association association;
private final ExecutorService executorService;
private final LocalTransactionContext localTransactionContext;
private final Function classResolverFilter;
private final HttpServiceConfig httpServiceConfig;
private final Map cancellationFlags = new ConcurrentHashMap<>();
@Deprecated
public EjbHttpService(Association association, ExecutorService executorService, LocalTransactionContext localTransactionContext) {
this(HttpServiceConfig.getInstance(), association, executorService, localTransactionContext, null);
}
public EjbHttpService(Association association, ExecutorService executorService, LocalTransactionContext localTransactionContext,
Function classResolverFilter) {
this(HttpServiceConfig.getInstance(), association, executorService, localTransactionContext, classResolverFilter);
}
public EjbHttpService(HttpServiceConfig httpServiceConfig, Association association, ExecutorService executorService, LocalTransactionContext localTransactionContext,
Function classResolverFilter) {
this.httpServiceConfig = httpServiceConfig;
this.association = association;
this.executorService = executorService;
this.localTransactionContext = localTransactionContext;
this.classResolverFilter = classResolverFilter;
}
public HttpHandler createHttpHandler() {
PathHandler pathHandler = new PathHandler();
pathHandler.addPrefixPath(EJB_INVOKE_PATH, new AllowedMethodsHandler(
new HttpInvocationHandler(association, executorService, localTransactionContext, cancellationFlags, classResolverFilter, httpServiceConfig), Methods.POST))
.addPrefixPath(EJB_OPEN_PATH, new AllowedMethodsHandler(
new HttpSessionOpenHandler(association, executorService, localTransactionContext, httpServiceConfig), Methods.POST))
.addPrefixPath(EJB_CANCEL_PATH, new AllowedMethodsHandler(new HttpCancelHandler(association, executorService, localTransactionContext, cancellationFlags), Methods.DELETE))
.addPrefixPath(EJB_DISCOVER_PATH, new AllowedMethodsHandler(
new HttpDiscoveryHandler(executorService, association, httpServiceConfig), Methods.GET));
EncodingHandler encodingHandler = new EncodingHandler(pathHandler, new ContentEncodingRepository().addEncodingHandler(Headers.GZIP.toString(), new GzipEncodingProvider(), 1));
RequestEncodingHandler requestEncodingHandler = new RequestEncodingHandler(encodingHandler);
requestEncodingHandler.addEncoding(Headers.GZIP.toString(), GzipStreamSourceConduit.WRAPPER);
return httpServiceConfig.wrap(requestEncodingHandler);
}
}