Coverage Report - org.kuali.mobility.admin.service.AdminServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
AdminServiceImpl
0%
0/25
N/A
1.357
AdminServiceImpl$1
N/A
N/A
1.357
AdminServiceImpl$HomeScreenReloader
0%
0/20
0%
0/4
1.357
 
 1  
 /**
 2  
  * Copyright 2011 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.mobility.admin.service;
 17  
 
 18  
 import java.util.Calendar;
 19  
 import java.util.Date;
 20  
 import java.util.List;
 21  
 import java.util.concurrent.ConcurrentHashMap;
 22  
 import java.util.concurrent.ConcurrentMap;
 23  
 
 24  
 import org.kuali.mobility.admin.dao.AdminDao;
 25  
 import org.kuali.mobility.admin.entity.HomeScreen;
 26  
 import org.kuali.mobility.admin.entity.Tool;
 27  
 import org.springframework.beans.factory.annotation.Autowired;
 28  
 import org.springframework.stereotype.Service;
 29  
 import org.springframework.transaction.annotation.Transactional;
 30  
 
 31  
 /**
 32  
  * Service for actually performing administrative tasks
 33  
  * @author Kuali Mobility Team (moblitiy.collab@kuali.org)
 34  
  */
 35  
 @Service(value = "AdminService")
 36  0
 public class AdminServiceImpl implements AdminService {
 37  
         
 38  0
         private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(AdminServiceImpl.class);
 39  
 
 40  
         private static final int HOMESCREEN_UPDATE_INTERVAL = 5; //5 min
 41  
         
 42  
         private static ConcurrentMap<String, HomeScreen> homeScreens;
 43  
         
 44  0
         private static Thread homeScreenReloaderThread = null;
 45  
 
 46  
         static {
 47  0
                 homeScreens = new ConcurrentHashMap<String, HomeScreen>();
 48  0
         } 
 49  
         
 50  
         @Autowired
 51  
     private AdminDao adminDao;
 52  
         
 53  
         @Override
 54  
         public void startCache() {
 55  0
                 homeScreenReloaderThread = new Thread(new HomeScreenReloader());
 56  0
                 homeScreenReloaderThread.setDaemon(true);
 57  0
                 homeScreenReloaderThread.start();
 58  0
     }
 59  
     
 60  
         @Override
 61  
     public void stopCache() {
 62  0
             homeScreenReloaderThread.interrupt();
 63  0
             homeScreenReloaderThread = null;
 64  0
     }
 65  
         
 66  
         @Transactional(readOnly = true)
 67  
         public HomeScreen getCachedHomeScreenByAlias(String alias) {
 68  0
                 return getHomeScreenByAlias(alias);
 69  
                 /* TODO: Add caching back in when publishing works properly
 70  
                 HomeScreen homeScreen = homeScreens.get(alias);
 71  
                 if (homeScreen == null) {
 72  
                         LOG.warn("Cannot find homeScreen with alias: " + alias + " in the cache. Fetching from database");
 73  
                         return getHomeScreenByAlias(alias);
 74  
                 }
 75  
                 return homeScreen;
 76  
                 */
 77  
          }
 78  
 
 79  
         @Transactional
 80  
         @Override
 81  
         public List<HomeScreen> getAllHomeScreens() {
 82  0
                 return adminDao.getAllHomeScreens();
 83  
         }
 84  
         
 85  
         @Transactional
 86  
         @Override
 87  
         public HomeScreen getHomeScreenById(long homeScreenId) {
 88  0
                 return adminDao.getHomeScreenById(homeScreenId);
 89  
         }
 90  
         
 91  
         @Transactional
 92  
         @Override
 93  
         public HomeScreen getHomeScreenByAlias(String alias) {
 94  0
                 return adminDao.getHomeScreenByAlias(alias);
 95  
         }
 96  
         
 97  
         @Transactional
 98  
         @Override
 99  
         public Long saveHomeScreen(HomeScreen homeScreen) {
 100  0
                 return adminDao.saveHomeScreen(homeScreen);
 101  
         }
 102  
 
 103  
         @Transactional
 104  
         @Override
 105  
         public void deleteHomeScreenById(long homeScreenId) {
 106  0
                 adminDao.deleteHomeScreenById(homeScreenId);
 107  0
         }
 108  
         
 109  
         @Transactional
 110  
         @Override
 111  
         public List<Tool> getAllTools() {
 112  0
                 return adminDao.getAllTools();
 113  
         }
 114  
         
 115  
         @Transactional
 116  
         @Override
 117  
         public Tool getToolById(long toolId) {
 118  0
                 return adminDao.getToolById(toolId);
 119  
         }
 120  
         
 121  
         @Transactional
 122  
         @Override
 123  
         public Long saveTool(Tool tool) {
 124  0
                 return adminDao.saveTool(tool);
 125  
         }
 126  
 
 127  
         @Transactional
 128  
         @Override
 129  
         public void deleteToolById(long toolId) {
 130  0
                 adminDao.deleteToolById(toolId);
 131  0
         }
 132  
         
 133  
         /**
 134  
          * Class to be used as the cache reloader background thread.
 135  
          * @author Kuali Mobility Team (moblitiy.collab@kuali.org)
 136  
          *
 137  
          */
 138  0
         private class HomeScreenReloader implements Runnable {
 139  
         
 140  
                 /**
 141  
                  * Main entry point for the cache reloader
 142  
                  */
 143  
         public void run() {    
 144  0
             Calendar updateCalendar = Calendar.getInstance();
 145  0
             Date nextCacheUpdate = new Date();
 146  
                      
 147  
             // Cache loop
 148  
             while (true) {
 149  0
                 Date now = new Date();
 150  0
                 if (now.after(nextCacheUpdate)) {
 151  
                     try {
 152  0
                             reloadHomeScreens();        
 153  0
                     } catch (Exception e) {
 154  0
                             LOG.error("Error reloading home screen cache.", e);
 155  0
                     }
 156  0
                     updateCalendar.add(Calendar.MINUTE, HOMESCREEN_UPDATE_INTERVAL);
 157  0
                     nextCacheUpdate = new Date(updateCalendar.getTimeInMillis());
 158  
                 }
 159  
                 try {
 160  0
                     Thread.sleep(1000 * 60);
 161  0
                 } catch (InterruptedException e) {
 162  0
                     LOG.error("Error:", e);
 163  0
                 }
 164  0
             }
 165  
         }
 166  
 
 167  
         /**
 168  
          * Does the actual work of updating the home screens
 169  
          */
 170  
                 private void reloadHomeScreens() {
 171  0
                         List<HomeScreen> names = adminDao.getAllHomeScreens();
 172  0
                         for (HomeScreen homeScreen : names) {
 173  0
                                 homeScreens.put(homeScreen.getAlias(), adminDao.getHomeScreenByAlias(homeScreen.getAlias()));
 174  
                         }                        
 175  0
                 }
 176  
         
 177  
         }
 178  
         
 179  
 }
 180  
 
 181