Coverage Report - org.kuali.rice.kns.datadictionary.exporter.DataDictionaryMap
 
Classes in this File Line Coverage Branch Coverage Complexity
DataDictionaryMap
0%
0/29
0%
0/18
3.25
 
 1  
 /*
 2  
  * Copyright 2007 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.kns.datadictionary.exporter;
 17  
 
 18  
 import org.apache.commons.lang.StringUtils;
 19  
 import org.kuali.rice.kns.datadictionary.BusinessObjectEntry;
 20  
 import org.kuali.rice.krad.datadictionary.DataDictionaryEntry;
 21  
 import org.kuali.rice.kns.datadictionary.MaintenanceDocumentEntry;
 22  
 import org.kuali.rice.kns.datadictionary.TransactionalDocumentEntry;
 23  
 import org.kuali.rice.krad.service.DataDictionaryService;
 24  
 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
 25  
 
 26  
 import java.util.HashMap;
 27  
 import java.util.Map;
 28  
 
 29  
 @Deprecated
 30  
 public class DataDictionaryMap extends DataDictionaryMapBase {
 31  
 
 32  
     private DataDictionaryService dataDictionaryService;
 33  
 
 34  0
     BusinessObjectEntryMapper boMapper = new BusinessObjectEntryMapper();
 35  0
     MaintenanceDocumentEntryMapper maintDocMapper = new MaintenanceDocumentEntryMapper();
 36  0
     TransactionalDocumentEntryMapper transDocMapper = new TransactionalDocumentEntryMapper();
 37  
     
 38  0
     Map<String,Map> ddMap = new HashMap<String,Map>();
 39  
     
 40  
     public DataDictionaryMap(DataDictionaryService dataDictionaryService) {
 41  0
         super();
 42  0
         this.dataDictionaryService = dataDictionaryService;
 43  0
     }
 44  
 
 45  
     public Object get(Object key) {
 46  0
         Map subMap = ddMap.get( key );
 47  0
         if ( subMap == null ) { // need to load from DD
 48  0
             synchronized( this ) { // ensure only one update access happening at a time
 49  0
                 subMap = ddMap.get( key );
 50  0
                 if ( subMap == null ) { // recheck in case it was loaded by another thread while this one was blocked
 51  0
                     DataDictionaryEntry entry = KRADServiceLocatorWeb.getDataDictionaryService().getDataDictionary().getDictionaryObjectEntry( key.toString() );
 52  
                     // if that fails try just using the simple name if a full class name was passed
 53  0
                     if ( entry == null && key.toString().contains(".")) {
 54  0
                             entry = dataDictionaryService.getDataDictionary().getDictionaryObjectEntry( StringUtils.substringAfterLast( key.toString(), "." ) );
 55  
                     }
 56  0
                     if ( entry != null ) {
 57  0
                         if ( entry instanceof BusinessObjectEntry ) {
 58  0
                             subMap = boMapper.mapEntry( (BusinessObjectEntry)entry ).getExportData();                    
 59  0
                         } else if ( entry instanceof MaintenanceDocumentEntry ) {
 60  0
                             subMap = maintDocMapper.mapEntry( (MaintenanceDocumentEntry)entry ).getExportData();                    
 61  0
                         } else if ( entry instanceof TransactionalDocumentEntry ) {
 62  0
                             subMap = transDocMapper.mapEntry( (TransactionalDocumentEntry)entry ).getExportData();                    
 63  
                         }
 64  
                     }
 65  0
                     if ( subMap != null ) {
 66  0
                         ddMap.put( key.toString(), subMap );
 67  
                     }
 68  
                 }
 69  0
             }
 70  
         }
 71  0
         return subMap;
 72  
     }
 73  
 
 74  
     public DataDictionaryService getDataDictionaryService() {
 75  0
         return dataDictionaryService;
 76  
     }
 77  
 
 78  
     public void setDataDictionaryService(DataDictionaryService dataDictionaryService) {
 79  0
         this.dataDictionaryService = dataDictionaryService;
 80  0
     }
 81  
 
 82  
 }