Coverage Report - org.kuali.student.core.search.service.impl.SearchDispatcherImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
SearchDispatcherImpl
84%
32/38
83%
15/18
3.6
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.core.search.service.impl;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.HashMap;
 20  
 import java.util.List;
 21  
 import java.util.Map;
 22  
 
 23  
 import org.apache.log4j.Logger;
 24  
 import org.kuali.student.core.exceptions.OperationFailedException;
 25  
 import org.kuali.student.core.search.dto.SearchRequest;
 26  
 import org.kuali.student.core.search.dto.SearchResult;
 27  
 import org.kuali.student.core.search.dto.SearchTypeInfo;
 28  
 import org.kuali.student.core.search.service.SearchDispatcher;
 29  
 import org.kuali.student.core.search.service.SearchService;
 30  
 
 31  
 public class SearchDispatcherImpl implements SearchDispatcher{
 32  2
         final Logger LOG = Logger.getLogger(SearchDispatcherImpl.class);
 33  
         
 34  
         private List<SearchService> services;
 35  
         
 36  
         //Map of search key->service
 37  2
         private Map<String,SearchService> serviceMap = null;
 38  
         
 39  
         
 40  
         
 41  
         public SearchDispatcherImpl() {
 42  1
                 super();
 43  1
         }
 44  
 
 45  
         public SearchDispatcherImpl(SearchService... services){
 46  1
                 super();
 47  1
                 this.services = new ArrayList<SearchService>();
 48  1
                 if(services!=null){
 49  2
                         for(SearchService service:services){
 50  1
                                 this.services.add(service);
 51  
                         }
 52  
                 }
 53  
 //                init();
 54  1
         }
 55  
         
 56  
         public void init(){
 57  2
                 serviceMap = new HashMap<String,SearchService>();
 58  
                 
 59  
                 //Look through each service, grab it's search keys and add them to the map
 60  2
                 for(SearchService service:services){
 61  2
                         if(null==service){
 62  0
                                 LOG.warn("Null service passed to SearchDelegator");
 63  
                         }else{
 64  
                                 try {
 65  2
                                         List<SearchTypeInfo> searchTypes = service.getSearchTypes();
 66  2
                                         if(searchTypes!=null){
 67  1
                                                 for(SearchTypeInfo searchType:searchTypes){
 68  3
                                                         serviceMap.put(searchType.getKey(),service);
 69  
                                                 }
 70  
                                         }
 71  0
                                 } catch (OperationFailedException e) {
 72  0
                                         LOG.warn("Error getting searchTypes",e);
 73  4
                                 }
 74  
                         }
 75  
                 }
 76  2
         }
 77  
         
 78  
         
 79  
         /**
 80  
          * Delegates to the service responsible for the given search type key
 81  
          * @param searchRequest
 82  
          * @return The searchResult from the delegated search or null
 83  
          */
 84  
         public SearchResult dispatchSearch(SearchRequest searchRequest) {
 85  
                 //Lazy Load service map.  THis might cause synchronization issues?
 86  
                 //Needed because of circular bean dependencies... dispatch->serviceImpl->searchMgr->crossSvcMgr->dispatch
 87  4
                 if(serviceMap==null){
 88  2
                         init();
 89  
                 }
 90  
                 //Lookup which service to call for given search key and do the search
 91  4
                 if(searchRequest != null){
 92  4
                         String searchKey = searchRequest.getSearchKey();
 93  4
                         SearchService searchService = serviceMap.get(searchKey);
 94  4
                         if(searchService != null){
 95  
                                 SearchResult searchResult;
 96  
                                 try {
 97  2
                                         searchResult = searchService.search(searchRequest);
 98  0
                                 } catch (Exception e) {
 99  0
                                         LOG.warn("Error invoking search",e);
 100  0
                                         return null;
 101  2
                                 }
 102  2
                                 return searchResult;
 103  
                         }
 104  2
                         LOG.error("Error Dispatching, Search Service not found for search key:"+searchRequest.getSearchKey());
 105  
                 }
 106  2
                 return null;
 107  
         }
 108  
 
 109  
         public void setServices(List<SearchService> services) {
 110  1
                 this.services = services;
 111  1
         }
 112  
 }