View Javadoc

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      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      public AbstractWebServiceExporter(ServiceDefinition serviceDefinition, Bus cxfBus, ServerRegistry cxfServerRegistry) {
45          this.serviceDefinition = serviceDefinition;
46          this.cxfBus = cxfBus;
47          this.cxfServerRegistry = cxfServerRegistry;
48      }
49      
50      @Override
51      public Object exportService(ServiceDefinition serviceDefinition) {
52      	try {			
53      		String serviceAddress = getServiceAddress(serviceDefinition);
54      		
55      		//Publish the CXF service if it hasn't already been published
56      		if (!(isServicePublished(serviceAddress))){
57      			publishService(serviceDefinition, serviceDefinition.getService(), serviceAddress);
58      		}
59      		
60      		//Create a CXF mvc controller for this service
61      		CXFServletControllerAdapter cxfController = new CXFServletControllerAdapter();
62      		
63      		return BAMServerProxy.wrap(cxfController, serviceDefinition);
64      	} catch (Exception e) {
65      		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          String serviceAddress = serviceDefinition.getServicePath();
76          if (("/").equals(serviceAddress)){
77          	serviceAddress = serviceAddress + serviceDefinition.getServiceName().getLocalPart();
78          } else {
79          	serviceAddress = serviceAddress + "/" + serviceDefinition.getServiceName().getLocalPart();
80          }
81          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      	ServerRegistry serverRegistry = getCXFServerRegistry();
92      	List<Server> servers = serverRegistry.getServers();
93      	
94      	for (Server server:servers){		
95      		String endpointAddress = server.getEndpoint().getEndpointInfo().getAddress();
96      
97      		if (endpointAddress.equals(serviceAddress)){
98      			LOG.info("Service already published on CXF, not republishing: " + serviceAddress);
99      			return true;
100     		}		
101     	}
102     	
103     	return false;
104     }
105 
106     protected ServiceDefinition getServiceDefinition() {
107     	return this.serviceDefinition;
108     }
109 
110     protected Bus getCXFBus() {
111     	return this.cxfBus;
112     }
113 
114     protected ServerRegistry getCXFServerRegistry() {
115     	return this.cxfServerRegistry;
116     }
117 
118 }