Skip to content

Commit

Permalink
[JBWS-4040] Graceful shutdown (#15)
Browse files Browse the repository at this point in the history
* Adding GracefulShutdownInterceptor
* Retrieve RejectionRule from JBossWS SPI deployment
  • Loading branch information
asoldano committed Nov 21, 2016
1 parent ad03920 commit 3038568
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 0 deletions.
Expand Up @@ -88,6 +88,7 @@
import org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher;
import org.jboss.wsf.stack.cxf.extensions.policy.PolicySetsAnnotationListener;
import org.jboss.wsf.stack.cxf.interceptor.EndpointAssociationInterceptor;
import org.jboss.wsf.stack.cxf.interceptor.GracefulShutdownInterceptor;
import org.jboss.wsf.stack.cxf.interceptor.HandlerAuthInterceptor;
import org.jboss.wsf.stack.cxf.interceptor.NsCtxSelectorStoreInterceptor;
import org.jboss.wsf.stack.cxf.interceptor.WSDLSoapAddressRewriteInterceptor;
Expand Down Expand Up @@ -363,6 +364,7 @@ protected void setInterceptors(Bus bus, Deployment dep, Map<String, String> prop
//with the proper spi Endpoint retrieved in CXFServletExt
bus.getInInterceptors().add(new EndpointAssociationInterceptor());
bus.getInInterceptors().add(new NsCtxSelectorStoreInterceptor());
bus.getInInterceptors().add(new GracefulShutdownInterceptor());

final String p = (props != null) ? props.get(Constants.JBWS_CXF_DISABLE_HANDLER_AUTH_CHECKS) : null;
if ((p == null || (!"true".equalsIgnoreCase(p) && !"1".equalsIgnoreCase(p))) && !Boolean.getBoolean(Constants.JBWS_CXF_DISABLE_HANDLER_AUTH_CHECKS)) {
Expand Down
@@ -0,0 +1,98 @@
/*
* JBoss, Home of Professional Open Source.
* Copyright 2016, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.wsf.stack.cxf.interceptor;

import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.logging.Logger;

import javax.servlet.ServletRequest;
import javax.xml.namespace.QName;

import org.apache.cxf.binding.soap.SoapMessage;
import org.apache.cxf.binding.soap.interceptor.AbstractSoapInterceptor;
import org.apache.cxf.binding.soap.interceptor.ReadHeadersInterceptor;
import org.apache.cxf.common.i18n.Message;
import org.apache.cxf.common.logging.LogUtils;
import org.apache.cxf.headers.Header;
import org.apache.cxf.interceptor.Fault;
import org.apache.cxf.phase.Phase;
import org.apache.cxf.transport.http.AbstractHTTPDestination;
import org.jboss.wsf.spi.deployment.Deployment;
import org.jboss.wsf.spi.deployment.Endpoint;
import org.jboss.wsf.spi.invocation.RejectionRule;

/**
* An interceptor that rejects message by throwing a Fault when the server is suspended.
*
* @author alessio.soldano@jboss.com
* @since 4-Nov-2016
*
*/
public class GracefulShutdownInterceptor extends AbstractSoapInterceptor
{
private static final Logger LOG = LogUtils.getL7dLogger(GracefulShutdownInterceptor.class);

public GracefulShutdownInterceptor()
{
super(Phase.READ);
addAfter(ReadHeadersInterceptor.class.getName());
}

@Override
public void handleMessage(SoapMessage message) throws Fault
{
ServletRequest req = (ServletRequest) message.get(AbstractHTTPDestination.HTTP_REQUEST);
if ("true".equals(req.getAttribute("org.wildfly.suspended")))
{
if (!message.hasHeaders())
{
throw createFault();
}
else
{
Deployment dep = message.getExchange().get(Endpoint.class).getService().getDeployment();
RejectionRule rr = dep.getAttachment(RejectionRule.class);
if (rr != null)
{
List<Header> headers = message.getHeaders();
Map<QName, Object> m = new HashMap<>();
for (Header header : headers)
{
m.put(header.getName(), header.getObject());
}
if (rr.rejectMessage(m))
{
throw createFault();
}
}
}
}
}

private Fault createFault() {
Fault f = new Fault(new Message("Server is suspended", LOG));
f.setStatusCode(503);
return f;
}
}

0 comments on commit 3038568

Please sign in to comment.