[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / POLICY-SDK-APP / src / main / java / org / onap / policy / daoImp / SystemLogDbDaoImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.daoImp;
22
23
24 import java.util.List;
25
26 import org.hibernate.Criteria;
27 import org.hibernate.Session;
28 import org.springframework.stereotype.Service;
29
30 import org.onap.policy.xacml.api.XACMLErrorConstants;
31
32 import org.hibernate.Transaction;
33 import org.hibernate.criterion.Restrictions;
34 import org.onap.policy.conf.HibernateSession;
35 import org.onap.policy.controller.PolicyController;
36 import org.onap.policy.dao.SystemLogDbDao;
37 import org.onap.policy.rest.jpa.SystemLogDB;
38 import org.onap.policy.common.logging.flexlogger.FlexLogger; 
39 import org.onap.policy.common.logging.flexlogger.Logger;
40
41
42 @Service("SystemLogDbDao")
43 public class SystemLogDbDaoImpl implements SystemLogDbDao {
44         private static final Logger logger = FlexLogger.getLogger(SystemLogDbDaoImpl.class);
45         @SuppressWarnings("unchecked")
46         @Override
47         public List<SystemLogDB> getLoggingData() {
48                 Session session = HibernateSession.getSession();
49                 Transaction tx = session.beginTransaction();
50                 List<SystemLogDB> system = null;
51         try {
52                 String sqlWhere = "date > DATE_SUB(curdate(), INTERVAL 5 DAY) ORDER BY date DESC limit "+PolicyController.getLogTableLimit()+"";
53                 Criteria cr = session.createCriteria(SystemLogDB.class);
54                 cr.add(Restrictions.sqlRestriction(sqlWhere));
55             system = cr.list();
56                         tx.commit();
57                 } catch (Exception e) {
58                         logger.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + "Error While Querying SystemLogDB Table"+e);      
59                 }finally{
60                         try{
61                                 session.close();
62                         }catch(Exception e1){
63                                 logger.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + "Error While Closing Connection/Statement"+e1);
64                         }
65                 }
66                 return system;
67         }
68
69         @SuppressWarnings("unchecked")
70         @Override
71         public List<SystemLogDB> getSystemAlertData() {
72                 Session session = HibernateSession.getSession();;
73                 Transaction tx = session.beginTransaction();
74                 List<SystemLogDB> system = null;
75         try {
76                 String sqlWhere = "date > DATE_SUB(curdate(), INTERVAL 5 DAY) and logtype = 'error' ORDER BY date DESC limit "+PolicyController.getSystemAlertTableLimit()+"";
77                 Criteria cr = session.createCriteria(SystemLogDB.class);
78                 cr.add(Restrictions.sqlRestriction(sqlWhere));
79             system = cr.list();
80                         tx.commit();
81                 } catch (Exception e) {
82                         logger.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + "Error While Querying SystemLogDB Table"+e);      
83                 }finally{
84                         try{
85                                 session.close();
86                         }catch(Exception e1){
87                                 logger.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + "Error While Closing Connection/Statement"+e1);
88                         }
89                 }
90                 return system;
91         }
92
93 }