Coverage Report - org.kuali.rice.ksb.messaging.serviceexporters.AbstractWebServiceExporter
 
Classes in this File Line Coverage Branch Coverage Complexity
AbstractWebServiceExporter
0%
0/30
0%
0/8
2
 
 1  
 /**
 2  
  * Copyright 2005-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.ksb.messaging.serviceexporters;
 17  
 
 18  
 import java.util.List;
 19  
 
 20  
 import org.apache.cxf.Bus;
 21  
 import org.apache.cxf.endpoint.Server;
 22  
 import org.apache.cxf.endpoint.ServerRegistry;
 23  
 import org.apache.log4j.Logger;
 24  
 import org.kuali.rice.ksb.api.bus.ServiceDefinition;
 25  
 import org.kuali.rice.ksb.messaging.bam.BAMServerProxy;
 26  
 import org.kuali.rice.ksb.messaging.servlet.CXFServletControllerAdapter;
 27  
 
 28  
 /**
 29  
  * Abstract ServiceExporter for web services 
 30  
  * 
 31  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 32  
  *
 33  
  */
 34  
 public abstract class AbstractWebServiceExporter implements ServiceExporter {
 35  
 
 36  0
     static final Logger LOG = Logger.getLogger(AbstractWebServiceExporter.class);
 37  
     
 38  
     private final ServiceDefinition serviceDefinition;
 39  
     private final Bus cxfBus;
 40  
     private final ServerRegistry cxfServerRegistry;
 41  
 
 42  
     protected abstract void publishService(ServiceDefinition serviceDefinition, Object serviceImpl, String address) throws Exception;
 43  
 
 44  0
     public AbstractWebServiceExporter(ServiceDefinition serviceDefinition, Bus cxfBus, ServerRegistry cxfServerRegistry) {
 45  0
         this.serviceDefinition = serviceDefinition;
 46  0
         this.cxfBus = cxfBus;
 47  0
         this.cxfServerRegistry = cxfServerRegistry;
 48  0
     }
 49  
     
 50  
     @Override
 51  
     public Object exportService(ServiceDefinition serviceDefinition) {
 52  
             try {                        
 53  0
                     String serviceAddress = getServiceAddress(serviceDefinition);
 54  
                     
 55  
                     //Publish the CXF service if it hasn't already been published
 56  0
                     if (!(isServicePublished(serviceAddress))){
 57  0
                             publishService(serviceDefinition, serviceDefinition.getService(), serviceAddress);
 58  
                     }
 59  
                     
 60  
                     //Create a CXF mvc controller for this service
 61  0
                     CXFServletControllerAdapter cxfController = new CXFServletControllerAdapter();
 62  
                     
 63  0
                     return BAMServerProxy.wrap(cxfController, serviceDefinition);
 64  0
             } catch (Exception e) {
 65  0
                     throw new RuntimeException(e);
 66  
             }
 67  
             
 68  
     }
 69  
 
 70  
     /**
 71  
      * @return the address where the service is (or will be) published
 72  
      */
 73  
     protected String getServiceAddress(ServiceDefinition serviceDefinition) {
 74  
         //Determine endpoint address to publish service on
 75  0
         String serviceAddress = serviceDefinition.getServicePath();
 76  0
         if (("/").equals(serviceAddress)){
 77  0
                 serviceAddress = serviceAddress + serviceDefinition.getServiceName().getLocalPart();
 78  
         } else {
 79  0
                 serviceAddress = serviceAddress + "/" + serviceDefinition.getServiceName().getLocalPart();
 80  
         }
 81  0
         return serviceAddress;
 82  
     }
 83  
 
 84  
     /** 
 85  
      * This determines if the service has already been published on the CXF bus.
 86  
      * 
 87  
      * @return true if cxf server exists for this service.
 88  
      */
 89  
     protected boolean isServicePublished(String serviceAddress) {
 90  
             
 91  0
             ServerRegistry serverRegistry = getCXFServerRegistry();
 92  0
             List<Server> servers = serverRegistry.getServers();
 93  
             
 94  0
             for (Server server:servers){                
 95  0
                     String endpointAddress = server.getEndpoint().getEndpointInfo().getAddress();
 96  
     
 97  0
                     if (endpointAddress.equals(serviceAddress)){
 98  0
                             LOG.info("Service already published on CXF, not republishing: " + serviceAddress);
 99  0
                             return true;
 100  
                     }                
 101  0
             }
 102  
             
 103  0
             return false;
 104  
     }
 105  
 
 106  
     protected ServiceDefinition getServiceDefinition() {
 107  0
             return this.serviceDefinition;
 108  
     }
 109  
 
 110  
     protected Bus getCXFBus() {
 111  0
             return this.cxfBus;
 112  
     }
 113  
 
 114  
     protected ServerRegistry getCXFServerRegistry() {
 115  0
             return this.cxfServerRegistry;
 116  
     }
 117  
 
 118  
 }