[UI] Common class for results
[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         criteria.setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY);
49         return criteria.list();
50     }
51
52     @Override
53     public WRobotDbTestResult getWRobotTestResult(@Nonnull Integer wRobotResultId) {
54         Criteria criteria = getSession().createCriteria(WRobotDbTestResult.class);
55         criteria.setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY);
56         criteria.add(Restrictions.eq("id", wRobotResultId));
57         return criteria.list() == null || criteria.list().size() < 1 ? null
58                 : (WRobotDbTestResult) criteria.list().get(0);
59     }
60
61     @Override
62     public List<WRobotDbTestResult> getWRobotTestResult(@Nonnull ValidationDbTestResult vResult) {
63         Criteria criteria = getSession().createCriteria(WRobotDbTestResult.class);
64         criteria.setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY);
65         criteria.add(Restrictions.eq("validationDbTestResult", vResult));
66         return criteria.list() == null || criteria.list().size() == 0 ? null
67                 : (List<WRobotDbTestResult>) criteria.list();
68     }
69
70     @Override
71     public WRobotDbTestResult getWRobotTestResult(@Nonnull String layer, @Nonnull ValidationDbTestResult vResult) {
72         Criteria criteria = getSession().createCriteria(WRobotDbTestResult.class);
73         criteria.setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY);
74         criteria.add(Restrictions.eq("layer", layer));
75         criteria.add(Restrictions.eq("validationDbTestResult", vResult));
76         return criteria.list() == null || criteria.list().size() < 1 ? null
77                 : (WRobotDbTestResult) criteria.list().get(0);
78     }
79
80     @Override
81     public void saveOrUpdate(@Nonnull WRobotDbTestResult wResult) {
82         getSession().saveOrUpdate(wResult);
83         getSession().flush();
84     }
85
86     @Override
87     public void merge(@Nonnull WRobotDbTestResult wResult) {
88         getSession().merge(wResult);
89         getSession().flush();
90     }
91
92     @Override
93     public void deleteWRobotTestResult(@Nonnull Integer wRobotResultId) {
94         getSession().delete(this.getWRobotTestResult(wRobotResultId));
95         getSession().flush();
96     }
97
98     @Override
99     public void deleteAll() {
100         if (getSession().createQuery("delete from WRobotTestResult").executeUpdate() > 0) {
101             LOGGER.info(EELFLoggerDelegate.applicationLogger, "All wrapper robot test results are cleaned up");
102             getSession().flush();
103         }
104     }
105
106 }