Coverage Report - org.kuali.rice.kns.service.impl.SessionDocumentServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
SessionDocumentServiceImpl
0%
0/100
0%
0/20
1.765
SessionDocumentServiceImpl$CachedObject
0%
0/7
N/A
1.765
 
 1  
 /*
 2  
  * Copyright 2007-2008 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.service.impl;
 17  
 
 18  
 import java.io.ByteArrayInputStream;
 19  
 import java.io.ByteArrayOutputStream;
 20  
 import java.io.ObjectInputStream;
 21  
 import java.io.ObjectOutputStream;
 22  
 import java.sql.Timestamp;
 23  
 import java.util.Collections;
 24  
 import java.util.HashMap;
 25  
 import java.util.Map;
 26  
 
 27  
 import org.apache.commons.lang.StringUtils;
 28  
 import org.kuali.rice.core.service.EncryptionService;
 29  
 import org.kuali.rice.kns.UserSession;
 30  
 import org.kuali.rice.kns.bo.SessionDocument;
 31  
 import org.kuali.rice.kns.dao.SessionDocumentDao;
 32  
 import org.kuali.rice.kns.datadictionary.DocumentEntry;
 33  
 import org.kuali.rice.kns.service.BusinessObjectService;
 34  
 import org.kuali.rice.kns.service.DataDictionaryService;
 35  
 import org.kuali.rice.kns.service.KNSServiceLocator;
 36  
 import org.kuali.rice.kns.service.SessionDocumentService;
 37  
 import org.kuali.rice.kns.util.KualiLRUMap;
 38  
 import org.kuali.rice.kns.web.struts.form.KualiDocumentFormBase;
 39  
 import org.kuali.rice.kns.workflow.service.KualiWorkflowDocument;
 40  
 import org.springframework.beans.factory.InitializingBean;
 41  
 import org.springframework.transaction.annotation.Transactional;
 42  
 
 43  
 /**
 44  
  * This class is the service implementation for a SessionDocument. This is
 45  
  * the default, Kuali delivered implementation.
 46  
  * 
 47  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 48  
  *
 49  
  */
 50  
 @Transactional
 51  0
 public class SessionDocumentServiceImpl implements SessionDocumentService, InitializingBean  {
 52  
     protected static final String IP_ADDRESS = "ipAddress";
 53  
         protected static final String PRINCIPAL_ID = "principalId";
 54  
         protected static final String DOCUMENT_NUMBER = "documentNumber";
 55  
         protected static final String SESSION_ID = "sessionId";
 56  
 
 57  0
         private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(SessionDocumentServiceImpl.class);
 58  
     
 59  
     private BusinessObjectService businessObjectService;
 60  
     private DataDictionaryService dataDictionaryService;
 61  
     private SessionDocumentDao sessionDocumentDao;    
 62  
         private Map<String,CachedObject> cachedObjects;
 63  
         private EncryptionService encryptionService;
 64  
         private int maxCacheSize;
 65  
 
 66  0
     public static class CachedObject {
 67  
         private UserSession userSession;
 68  
         private String formKey;
 69  0
                 CachedObject(UserSession userSession, String formKey) {
 70  0
                         this.userSession = userSession;
 71  0
                         this.formKey = formKey;
 72  0
                 }
 73  
 
 74  
                 @Override
 75  
         public String toString() {
 76  0
                 return "CachedObject: principalId="+userSession.getPrincipalId()+" / objectWithFormKey="+userSession.retrieveObject(formKey);
 77  
         }
 78  
 
 79  
                 public UserSession getUserSession() {
 80  0
                         return this.userSession;
 81  
                 }
 82  
 
 83  
                 public String getFormKey() {
 84  0
                         return this.formKey;
 85  
                 }
 86  
     }
 87  
 
 88  
         @SuppressWarnings("unchecked")
 89  
         public void afterPropertiesSet() throws Exception {
 90  0
                 cachedObjects = Collections.synchronizedMap( new KualiLRUMap(maxCacheSize) );                
 91  0
         }
 92  
 
 93  
         /**
 94  
      * @see org.kuali.rice.kns.service.SessionDocumentService#getDocumentForm(String documentNumber, String docFormKey, UserSession userSession)
 95  
      */
 96  
     public KualiDocumentFormBase getDocumentForm( String documentNumber, String docFormKey, UserSession userSession, String ipAddress){
 97  0
             KualiDocumentFormBase documentForm = null;
 98  
             
 99  0
                 LOG.debug("getDocumentForm KualiDocumentFormBase from db");
 100  
                 try{
 101  0
                         HashMap<String, String> primaryKeys = new HashMap<String, String>(4);
 102  0
                         primaryKeys.put(SESSION_ID, userSession.getKualiSessionId());
 103  0
                         primaryKeys.put(DOCUMENT_NUMBER, documentNumber);
 104  0
                         primaryKeys.put(PRINCIPAL_ID, userSession.getPrincipalId());
 105  0
                         primaryKeys.put(IP_ADDRESS, ipAddress);
 106  
    
 107  0
                         SessionDocument sessionDoc = (SessionDocument)getBusinessObjectService().findByPrimaryKey(SessionDocument.class, primaryKeys);
 108  0
                         if(sessionDoc != null){
 109  0
                                 byte[] formAsBytes = sessionDoc.getSerializedDocumentForm();
 110  0
                                 if ( sessionDoc.isEncrypted() ) {
 111  0
                                         formAsBytes = getEncryptionService().decryptBytes(formAsBytes);
 112  
                                 }
 113  0
                                 ByteArrayInputStream baip = new ByteArrayInputStream(formAsBytes);
 114  0
                                 ObjectInputStream ois = new ObjectInputStream(baip);
 115  
                     
 116  
                                 // re-create the KualiDocumentFormBase object
 117  0
                                 documentForm = (KualiDocumentFormBase)ois.readObject();
 118  
                  
 119  
                                 //re-store workFlowDocument into session
 120  0
                                 KualiWorkflowDocument workflowDocument = documentForm.getDocument().getDocumentHeader().getWorkflowDocument();
 121  0
                                 userSession.setWorkflowDocument(workflowDocument);                                
 122  
                         }
 123  0
                 } catch(Exception e) {
 124  0
                     LOG.error("getDocumentForm failed for SessId/DocNum/PrinId/IP:"
 125  
                             + userSession.getKualiSessionId()+"/"+documentNumber+"/"+userSession.getPrincipalId()+"/"+ipAddress, e);
 126  0
                 }
 127  
 
 128  0
         return documentForm;
 129  
     }
 130  
 
 131  
     /**
 132  
          * @see org.kuali.rice.kns.service.SessionDocumentService#purgeDocumentForm(String
 133  
          *      documentNumber, String docFormKey, UserSession userSession )
 134  
          */
 135  
         public void purgeDocumentForm(String documentNumber, String docFormKey,
 136  
                         UserSession userSession, String ipAddress) {
 137  0
                 synchronized (userSession) {
 138  
                         
 139  0
                 LOG.debug("purge document form from session");
 140  0
                 userSession.removeObject(docFormKey);        
 141  
                         try {
 142  0
                                 LOG.debug("purge document form from database");
 143  0
                                 HashMap<String, String> primaryKeys = new HashMap<String, String>(4);
 144  0
                                 primaryKeys.put(SESSION_ID, userSession.getKualiSessionId());
 145  0
                                 primaryKeys.put(DOCUMENT_NUMBER, documentNumber);
 146  0
                                 primaryKeys.put(PRINCIPAL_ID, userSession.getPrincipalId());
 147  0
                                 primaryKeys.put(IP_ADDRESS, ipAddress);
 148  0
                                 getBusinessObjectService().deleteMatching(SessionDocument.class, primaryKeys);
 149  0
                         } catch (Exception e) {
 150  0
                                 LOG.error("purgeDocumentForm failed for SessId/DocNum/PrinId/IP:"
 151  
                                 + userSession.getKualiSessionId()+"/"+documentNumber+"/"+userSession.getPrincipalId()+"/"+ipAddress, e);
 152  0
                         }
 153  0
                 }
 154  0
         }
 155  
 
 156  
     /**
 157  
      * @see org.kuali.rice.kns.service.SessinoDocumentService#setDocumentForm()
 158  
      */
 159  
     
 160  
     public void setDocumentForm(KualiDocumentFormBase form, UserSession userSession, String ipAddress){
 161  0
             synchronized ( userSession ) { 
 162  
                     //formKey was set in KualiDocumentActionBase execute method
 163  0
                         String formKey = form.getFormKey();
 164  0
                         String key = userSession.getKualiSessionId() + "-" + formKey;
 165  0
                         cachedObjects.put(key, new CachedObject( userSession, formKey ));
 166  
                         
 167  0
                 String documentNumber = form.getDocument().getDocumentNumber(); 
 168  
                     
 169  0
                     if( StringUtils.isNotBlank(documentNumber)) {
 170  
                         try {
 171  0
                             LOG.debug("set Document Form into database");
 172  0
                             Timestamp currentTime = new Timestamp(System.currentTimeMillis());
 173  0
                             ByteArrayOutputStream baos = new ByteArrayOutputStream();
 174  0
                             ObjectOutputStream oos = new ObjectOutputStream(baos);
 175  0
                             oos.writeObject(form);
 176  
                             // serialize the KualiDocumentFormBase object into a byte array
 177  0
                             byte[] formAsBytes = baos.toByteArray();
 178  0
                                         boolean encryptContent = false;
 179  0
                                         if ( form.getDocTypeName() != null ) {
 180  0
                                                 DocumentEntry documentEntry = getDataDictionaryService().getDataDictionary().getDocumentEntry( form.getDocTypeName() );
 181  0
                                                 if ( documentEntry != null ) {
 182  0
                                                         encryptContent = documentEntry.isEncryptDocumentDataInPersistentSessionStorage();
 183  
                                                 }
 184  
                                         }                                         
 185  0
                             if ( encryptContent ) {
 186  0
                                     formAsBytes = getEncryptionService().encryptBytes(formAsBytes);
 187  
                             }
 188  
                 
 189  
                             // check if a record is already there in the database
 190  
                             // this may only happen under jMeter testing, but there is no way to be sure
 191  0
                                         HashMap<String, String> primaryKeys = new HashMap<String, String>(4);
 192  0
                                         primaryKeys.put(SESSION_ID, userSession.getKualiSessionId());
 193  0
                                         primaryKeys.put(DOCUMENT_NUMBER, documentNumber);
 194  0
                                         primaryKeys.put(PRINCIPAL_ID, userSession.getPrincipalId());
 195  0
                                         primaryKeys.put(IP_ADDRESS, ipAddress);
 196  
                 
 197  0
                                         SessionDocument sessionDocument = (SessionDocument)getBusinessObjectService().findByPrimaryKey(SessionDocument.class, primaryKeys);
 198  0
                                         if ( sessionDocument == null ) {
 199  0
                                                 sessionDocument = new SessionDocument();
 200  0
                                     sessionDocument.setSessionId(userSession.getKualiSessionId());
 201  0
                                         sessionDocument.setDocumentNumber(documentNumber);
 202  0
                                         sessionDocument.setPrincipalId(userSession.getPrincipalId());
 203  0
                                         sessionDocument.setIpAddress(ipAddress);
 204  
                                         }
 205  0
                                         sessionDocument.setSerializedDocumentForm(formAsBytes);
 206  0
                                         sessionDocument.setEncrypted(encryptContent);
 207  0
                                 sessionDocument.setLastUpdatedDate(currentTime);
 208  
                                 
 209  0
                                 businessObjectService.save(sessionDocument);
 210  
                               
 211  0
                         } catch(Exception e) {
 212  0
                                  final String className = form != null ? form.getClass().getName() : "null";
 213  0
                                  LOG.error("setDocumentForm failed for SessId/DocNum/PrinId/IP/class:"
 214  
                                                  + userSession.getKualiSessionId()+"/"+documentNumber+"/"+userSession.getPrincipalId()+"/"+ipAddress+"/"+className , e);
 215  0
                         }
 216  
                     } else {
 217  0
                             LOG.warn("documentNumber is null on form's document: " + form);
 218  
                     }
 219  0
             }            
 220  0
     }
 221  
     
 222  
     public void purgeAllSessionDocuments(Timestamp expirationDate){
 223  0
             sessionDocumentDao.purgeAllSessionDocuments(expirationDate);
 224  0
     }
 225  
     
 226  
     
 227  
 
 228  
     /**
 229  
          * @return the sessionDocumentDao
 230  
          */
 231  
         protected SessionDocumentDao getSessionDocumentDao() {
 232  0
                 return this.sessionDocumentDao;
 233  
         }
 234  
 
 235  
         /**
 236  
          * @param sessionDocumentDao the sessionDocumentDao to set
 237  
          */
 238  
         public void setSessionDocumentDao(SessionDocumentDao sessionDocumentDao) {
 239  0
                 this.sessionDocumentDao = sessionDocumentDao;
 240  0
         }
 241  
 
 242  
         /**
 243  
          * @return the businessObjectService
 244  
          */
 245  
         protected BusinessObjectService getBusinessObjectService() {
 246  0
                 return this.businessObjectService;
 247  
         }
 248  
 
 249  
         /**
 250  
          * @param businessObjectService the businessObjectService to set
 251  
          */
 252  
         public void setBusinessObjectService(BusinessObjectService businessObjectService) {
 253  0
                 this.businessObjectService = businessObjectService;
 254  0
         }
 255  
     
 256  
         /**
 257  
          * @return the maxCacheSize
 258  
          */
 259  
         public int getMaxCacheSize() {
 260  0
                 return maxCacheSize;
 261  
         }
 262  
 
 263  
         /**
 264  
          * @param maxCacheSize the maxCacheSize to set
 265  
          */
 266  
         public void setMaxCacheSize(int maxCacheSize) {
 267  0
                 this.maxCacheSize = maxCacheSize;
 268  0
         }
 269  
 
 270  
         protected EncryptionService getEncryptionService() {
 271  0
                 if ( encryptionService == null ) {
 272  0
                         encryptionService = KNSServiceLocator.getEncryptionService();
 273  
                 }
 274  0
                 return encryptionService;
 275  
         }
 276  
 
 277  
         protected DataDictionaryService getDataDictionaryService() {
 278  0
                 if ( dataDictionaryService == null ) {
 279  0
                         dataDictionaryService = KNSServiceLocator.getDataDictionaryService();
 280  
                 }
 281  0
                 return dataDictionaryService;
 282  
         }
 283  
 
 284  
 }