1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.stats.dao.impl; |
17 | |
|
18 | |
import org.apache.ojb.broker.accesslayer.LookupException; |
19 | |
import org.kuali.rice.core.api.util.ConcreteKeyValue; |
20 | |
import org.kuali.rice.core.api.util.KeyValue; |
21 | |
import org.kuali.rice.kew.stats.Stats; |
22 | |
import org.kuali.rice.kew.stats.dao.StatsDAO; |
23 | |
import org.kuali.rice.kew.api.KewApiConstants; |
24 | |
|
25 | |
import javax.persistence.EntityManager; |
26 | |
import javax.persistence.PersistenceContext; |
27 | |
import javax.persistence.Query; |
28 | |
import java.sql.SQLException; |
29 | |
import java.sql.Timestamp; |
30 | |
import java.util.ArrayList; |
31 | |
import java.util.Calendar; |
32 | |
import java.util.Date; |
33 | |
import java.util.List; |
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | 0 | public class StatsDaoJpaImpl implements StatsDAO { |
51 | |
|
52 | |
@PersistenceContext |
53 | |
private EntityManager entityManager; |
54 | |
|
55 | |
@Override |
56 | |
public void DocumentsRoutedReport(Stats stats, Date begDate, Date endDate) throws SQLException, LookupException { |
57 | 0 | Query query = entityManager.createQuery("select count(*) as count, drhv.docRouteStatus from DocumentRouteHeaderValue drhv where drhv.createDate between :beginDate and :endDate group by docRouteStatus"); |
58 | |
|
59 | 0 | query.setParameter("beginDate", new Timestamp(begDate.getTime())); |
60 | 0 | query.setParameter("endDate", new Timestamp(endDate.getTime())); |
61 | |
|
62 | |
@SuppressWarnings("unchecked") |
63 | 0 | List<Object[]> resultList = query.getResultList(); |
64 | |
|
65 | 0 | for (Object[] result : resultList) { |
66 | 0 | String actionType = result[1].toString(); |
67 | 0 | String number = result[0].toString(); |
68 | 0 | if (actionType.equals(KewApiConstants.ROUTE_HEADER_CANCEL_CD)) { |
69 | 0 | stats.setCanceledNumber(number); |
70 | 0 | } else if (actionType.equals(KewApiConstants.ROUTE_HEADER_DISAPPROVED_CD)) { |
71 | 0 | stats.setDisapprovedNumber(number); |
72 | 0 | } else if (actionType.equals(KewApiConstants.ROUTE_HEADER_ENROUTE_CD)) { |
73 | 0 | stats.setEnrouteNumber(number); |
74 | 0 | } else if (actionType.equals(KewApiConstants.ROUTE_HEADER_EXCEPTION_CD)) { |
75 | 0 | stats.setExceptionNumber(number); |
76 | 0 | } else if (actionType.equals(KewApiConstants.ROUTE_HEADER_FINAL_CD)) { |
77 | 0 | stats.setFinalNumber(number); |
78 | 0 | } else if (actionType.equals(KewApiConstants.ROUTE_HEADER_INITIATED_CD)) { |
79 | 0 | stats.setInitiatedNumber(number); |
80 | 0 | } else if (actionType.equals(KewApiConstants.ROUTE_HEADER_PROCESSED_CD)) { |
81 | 0 | stats.setProcessedNumber(number); |
82 | 0 | } else if (actionType.equals(KewApiConstants.ROUTE_HEADER_SAVED_CD)) { |
83 | 0 | stats.setSavedNumber(number); |
84 | |
} |
85 | 0 | } |
86 | 0 | } |
87 | |
|
88 | |
@Override |
89 | |
public void NumActiveItemsReport(Stats stats) throws SQLException, LookupException { |
90 | 0 | stats.setNumActionItems(entityManager.createQuery("select count(*) from ActionItem ai").getSingleResult().toString()); |
91 | |
|
92 | 0 | } |
93 | |
|
94 | |
@Override |
95 | |
public void NumInitiatedDocsByDocTypeReport(Stats stats) throws SQLException, LookupException { |
96 | 0 | Query query = entityManager.createQuery("select count(*), dt.name from DocumentRouteHeaderValue drhv, DocumentType dt where drhv.createDate > :createDate and drhv.documentTypeId = dt.documentTypeId group by dt.name"); |
97 | |
|
98 | 0 | Calendar calendar = Calendar.getInstance(); |
99 | 0 | calendar.add(Calendar.DAY_OF_YEAR, -29); |
100 | 0 | calendar.set(Calendar.HOUR_OF_DAY, 0); |
101 | 0 | calendar.set(Calendar.MINUTE, 0); |
102 | 0 | calendar.set(Calendar.SECOND, 0); |
103 | 0 | calendar.set(Calendar.MILLISECOND, 0); |
104 | 0 | query.setParameter("createDate", new Timestamp(calendar.getTime().getTime())); |
105 | |
|
106 | |
@SuppressWarnings("unchecked") |
107 | 0 | List<Object[]> resultList = query.getResultList(); |
108 | |
|
109 | 0 | List<KeyValue> numDocs = new ArrayList<KeyValue>(resultList.size()); |
110 | 0 | for (Object[] result : resultList) { |
111 | 0 | numDocs.add(new ConcreteKeyValue(result[1].toString(),result[0].toString())); |
112 | |
} |
113 | |
|
114 | 0 | stats.setNumInitiatedDocsByDocType(numDocs); |
115 | 0 | } |
116 | |
|
117 | |
@Override |
118 | |
public void NumUsersReport(Stats stats) throws SQLException, LookupException { |
119 | 0 | stats.setNumUsers(entityManager.createQuery("select count(distinct uo.workflowId) from UserOptions uo").getSingleResult().toString()); |
120 | |
|
121 | 0 | } |
122 | |
|
123 | |
@Override |
124 | |
public void NumberOfDocTypesReport(Stats stats) throws SQLException, LookupException { |
125 | 0 | stats.setNumDocTypes(entityManager.createQuery("select count(*) from DocumentType dt where dt.currentInd = true").getSingleResult().toString()); |
126 | |
|
127 | 0 | } |
128 | |
|
129 | |
public EntityManager getEntityManager() { |
130 | 0 | return this.entityManager; |
131 | |
} |
132 | |
|
133 | |
public void setEntityManager(EntityManager entityManager) { |
134 | 0 | this.entityManager = entityManager; |
135 | 0 | } |
136 | |
|
137 | |
} |