2 * Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.akraino.validation.ui.daoimpl;
18 import java.util.List;
20 import javax.annotation.Nonnull;
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;
34 public class WRobotTestResultDAOImpl implements WRobotTestResultDAO {
36 private static final EELFLoggerDelegate LOGGER = EELFLoggerDelegate.getLogger(WRobotTestResultDAOImpl.class);
39 private SessionFactory sessionFactory;
41 protected Session getSession() {
42 return sessionFactory.getCurrentSession();
46 public List<WRobotDbTestResult> getWRobotTestResults() {
47 Criteria criteria = getSession().createCriteria(WRobotDbTestResult.class);
48 criteria.setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY);
49 return criteria.list();
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);
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();
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);
81 public void saveOrUpdate(@Nonnull WRobotDbTestResult wResult) {
82 getSession().saveOrUpdate(wResult);
87 public void merge(@Nonnull WRobotDbTestResult wResult) {
88 getSession().merge(wResult);
93 public void deleteWRobotTestResult(@Nonnull Integer wRobotResultId) {
94 getSession().delete(this.getWRobotTestResult(wRobotResultId));
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();