1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
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 | |
|
33 | |
|
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; |
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 | |
|
70 | |
|
71 | |
|
72 | |
|
73 | |
|
74 | |
|
75 | |
|
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 | |
|
135 | |
|
136 | |
|
137 | |
|
138 | 0 | private class HomeScreenReloader implements Runnable { |
139 | |
|
140 | |
|
141 | |
|
142 | |
|
143 | |
public void run() { |
144 | 0 | Calendar updateCalendar = Calendar.getInstance(); |
145 | 0 | Date nextCacheUpdate = new Date(); |
146 | |
|
147 | |
|
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 | |
|
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 | |
|