[UI] Support UI partial control
[validation.git] / ui / src / main / java / org / akraino / validation / ui / daoimpl / WRobotTestResultDAOImpl.java
1 /*
2  * Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may
5  * not use this file except in compliance with the License. You may obtain
6  * a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
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
13  * implied. See the License for the specific language governing
14  * permissions and limitations under the License.
15  */
16 package org.akraino.validation.ui.daoimpl;
17
18 import java.util.List;
19
20 import javax.annotation.Nonnull;
21
22 import org.akraino.validation.ui.dao.WRobotTestResultDAO;
23 import org.akraino.validation.ui.entity.ValidationDbTestResult;
24 import org.akraino.validation.ui.entity.WRobotDbTestResult;
25 import org.hibernate.Criteria;
26 import org.hibernate.Session;
27 import org.hibernate.SessionFactory;
28 import org.hibernate.criterion.Restrictions;
29 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.stereotype.Repository;
32
33 @Repository
34 public class WRobotTestResultDAOImpl implements WRobotTestResultDAO {
35
36     private static final EELFLoggerDelegate LOGGER = EELFLoggerDelegate.getLogger(WRobotTestResultDAOImpl.class);
37
38     @Autowired
39     private SessionFactory sessionFactory;
40
41     protected Session getSession() {
42         return sessionFactory.getCurrentSession();
43     }
44
45     @Override
46     public List<WRobotDbTestResult> getWRobotTestResults() {
47         Criteria criteria = getSession().createCriteria(WRobotDbTestResult.class);
48         return criteria.list();
49     }
50
51     @Override
52     public WRobotDbTestResult getWRobotTestResult(@Nonnull Integer wRobotResultId) {
53         Criteria criteria = getSession().createCriteria(WRobotDbTestResult.class);
54         criteria.add(Restrictions.eq("id", wRobotResultId));
55         return criteria.list() == null || criteria.list().size() < 1 ? null
56                 : (WRobotDbTestResult) criteria.list().get(0);
57     }
58
59     @Override
60     public List<WRobotDbTestResult> getWRobotTestResult(@Nonnull ValidationDbTestResult vResult) {
61         Criteria criteria = getSession().createCriteria(WRobotDbTestResult.class);
62         criteria.add(Restrictions.eq("vResult", vResult));
63         return criteria.list() == null || criteria.list().size() == 0 ? null
64                 : (List<WRobotDbTestResult>) criteria.list();
65     }
66
67     @Override
68     public WRobotDbTestResult getWRobotTestResult(@Nonnull String layer, @Nonnull ValidationDbTestResult vResult) {
69         Criteria criteria = getSession().createCriteria(WRobotDbTestResult.class);
70         criteria.add(Restrictions.eq("layer", layer));
71         criteria.add(Restrictions.eq("vResult", vResult));
72         return criteria.list() == null || criteria.list().size() < 1 ? null
73                 : (WRobotDbTestResult) criteria.list().get(0);
74     }
75
76     @Override
77     public void saveOrUpdate(@Nonnull WRobotDbTestResult wResult) {
78         getSession().saveOrUpdate(wResult);
79         getSession().flush();
80     }
81
82     @Override
83     public void merge(@Nonnull WRobotDbTestResult wResult) {
84         getSession().merge(wResult);
85         getSession().flush();
86     }
87
88     @Override
89     public void deleteWRobotTestResult(@Nonnull Integer wRobotResultId) {
90         getSession().delete(this.getWRobotTestResult(wRobotResultId));
91         getSession().flush();
92     }
93
94     @Override
95     public void deleteAll() {
96         if (getSession().createQuery("delete from WRobotTestResult").executeUpdate() > 0) {
97             LOGGER.info(EELFLoggerDelegate.applicationLogger, "All wrapper robot test results are cleaned up");
98             getSession().flush();
99         }
100     }
101
102 }