| /** |
| * Copyright (C) 2010 Cloud.com, Inc. All rights reserved. |
| * |
| * This software is licensed under the GNU General Public License v3 or later. |
| * |
| * It is free software: you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License as published by |
| * the Free Software Foundation, either version 3 of the License, or any later version. |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License |
| * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| * |
| */ |
| |
| package com.cloud.network.security.dao;
|
|
|
| import java.util.Date; |
| import java.util.List; |
| |
| import javax.ejb.Local; |
| |
| import org.apache.log4j.Logger; |
| |
| import com.cloud.ha.HaWorkVO; |
| import com.cloud.network.security.SecurityGroupWork; |
| import com.cloud.network.security.SecurityGroupWorkVO; |
| import com.cloud.network.security.SecurityGroupWork.Step; |
| import com.cloud.utils.db.DB; |
| import com.cloud.utils.db.Filter; |
| import com.cloud.utils.db.GenericDaoBase; |
| import com.cloud.utils.db.SearchBuilder; |
| import com.cloud.utils.db.SearchCriteria; |
| import com.cloud.utils.db.Transaction; |
| import com.cloud.utils.db.SearchCriteria.Op; |
| import com.cloud.utils.exception.CloudRuntimeException; |
|
|
| @Local(value={SecurityGroupWorkDao.class})
|
| public class SecurityGroupWorkDaoImpl extends GenericDaoBase<SecurityGroupWorkVO, Long> implements SecurityGroupWorkDao { |
| private static final Logger s_logger = Logger.getLogger(SecurityGroupWorkDaoImpl.class); |
|
|
| private SearchBuilder<SecurityGroupWorkVO> VmIdTakenSearch; |
| private SearchBuilder<SecurityGroupWorkVO> VmIdSeqNumSearch; |
| private SearchBuilder<SecurityGroupWorkVO> VmIdUnTakenSearch; |
| private SearchBuilder<SecurityGroupWorkVO> UntakenWorkSearch; |
| private SearchBuilder<SecurityGroupWorkVO> VmIdStepSearch; |
| private SearchBuilder<SecurityGroupWorkVO> CleanupSearch; |
|
|
|
|
| protected SecurityGroupWorkDaoImpl() {
|
| VmIdTakenSearch = createSearchBuilder();
|
| VmIdTakenSearch.and("vmId", VmIdTakenSearch.entity().getInstanceId(), SearchCriteria.Op.EQ); |
| VmIdTakenSearch.and("taken", VmIdTakenSearch.entity().getDateTaken(), SearchCriteria.Op.NNULL); |
|
|
| VmIdTakenSearch.done(); |
| |
| VmIdUnTakenSearch = createSearchBuilder(); |
| VmIdUnTakenSearch.and("vmId", VmIdUnTakenSearch.entity().getInstanceId(), SearchCriteria.Op.EQ); |
| VmIdUnTakenSearch.and("taken", VmIdUnTakenSearch.entity().getDateTaken(), SearchCriteria.Op.NULL); |
| |
| VmIdUnTakenSearch.done(); |
| |
| UntakenWorkSearch = createSearchBuilder(); |
| UntakenWorkSearch.and("server", UntakenWorkSearch.entity().getServerId(), SearchCriteria.Op.NULL); |
| UntakenWorkSearch.and("taken", UntakenWorkSearch.entity().getDateTaken(), SearchCriteria.Op.NULL); |
| UntakenWorkSearch.and("step", UntakenWorkSearch.entity().getStep(), SearchCriteria.Op.EQ); |
| |
| UntakenWorkSearch.done(); |
| |
| VmIdSeqNumSearch = createSearchBuilder(); |
| VmIdSeqNumSearch.and("vmId", VmIdSeqNumSearch.entity().getInstanceId(), SearchCriteria.Op.EQ); |
| VmIdSeqNumSearch.and("seqno", VmIdSeqNumSearch.entity().getLogsequenceNumber(), SearchCriteria.Op.EQ); |
| |
| VmIdSeqNumSearch.done(); |
| |
| VmIdStepSearch = createSearchBuilder(); |
| VmIdStepSearch.and("vmId", VmIdStepSearch.entity().getInstanceId(), SearchCriteria.Op.EQ); |
| VmIdStepSearch.and("step", VmIdStepSearch.entity().getStep(), SearchCriteria.Op.EQ); |
| |
| VmIdStepSearch.done(); |
| |
| CleanupSearch = createSearchBuilder(); |
| CleanupSearch.and("taken", CleanupSearch.entity().getDateTaken(), Op.LTEQ); |
| CleanupSearch.and("step", CleanupSearch.entity().getStep(), SearchCriteria.Op.IN); |
| |
| CleanupSearch.done(); |
| |
|
|
| }
|
|
|
| @Override
|
| public SecurityGroupWork findByVmId(long vmId, boolean taken) {
|
| SearchCriteria<SecurityGroupWorkVO> sc = taken?VmIdTakenSearch.create():VmIdUnTakenSearch.create();
|
| sc.setParameters("vmId", vmId);
|
| return findOneIncludingRemovedBy(sc);
|
| } |
| |
| @Override |
| @DB |
| public SecurityGroupWorkVO take(long serverId) { |
| final Transaction txn = Transaction.currentTxn(); |
| try { |
| final SearchCriteria<SecurityGroupWorkVO> sc = UntakenWorkSearch.create(); |
| sc.setParameters("step", Step.Scheduled); |
| |
| final Filter filter = new Filter(SecurityGroupWorkVO.class, null, true, 0l, 1l);//FIXME: order desc by update time? |
| |
| txn.start(); |
| final List<SecurityGroupWorkVO> vos = lockRows(sc, filter, true); |
| if (vos.size() == 0) { |
| txn.commit(); |
| if (s_logger.isTraceEnabled()) { |
| s_logger.trace("Security Group take: no work found"); |
| } |
| return null; |
| } |
| SecurityGroupWorkVO work = vos.get(0); |
| boolean processing = false; |
| if ( findByVmIdStep(work.getInstanceId(), Step.Processing) != null) { |
| //ensure that there is no job in Processing state for the same VM |
| processing = true; |
| if (s_logger.isTraceEnabled()) { |
| s_logger.trace("Security Group work take: found a job in Scheduled and Processing vmid=" + work.getInstanceId()); |
| } |
| } |
| work.setServerId(serverId); |
| work.setDateTaken(new Date()); |
| if (processing) { |
| //the caller to take() should check the step and schedule another work item to come back |
| //and take a look. |
| work.setStep(SecurityGroupWork.Step.Done); |
| } else { |
| work.setStep(SecurityGroupWork.Step.Processing); |
| } |
| |
| update(work.getId(), work); |
| |
| txn.commit(); |
| |
| return work; |
| |
| } catch (final Throwable e) { |
| throw new CloudRuntimeException("Unable to execute take", e); |
| } |
| } |
| |
| @Override |
| @DB |
| public void updateStep(Long vmId, Long logSequenceNumber, Step step) { |
| final Transaction txn = Transaction.currentTxn(); |
| txn.start(); |
| SearchCriteria<SecurityGroupWorkVO> sc = VmIdSeqNumSearch.create(); |
| sc.setParameters("vmId", vmId); |
| sc.setParameters("seqno", logSequenceNumber); |
| |
| final Filter filter = new Filter(HaWorkVO.class, null, true, 0l, 1l); |
| |
| final List<SecurityGroupWorkVO> vos = lockRows(sc, filter, true); |
| if (vos.size() == 0) { |
| return; |
| } |
| SecurityGroupWorkVO work = vos.get(0); |
| work.setStep(step); |
| update(work.getId(), work); |
| |
| txn.commit(); |
| } |
| |
| @Override |
| public SecurityGroupWorkVO findByVmIdStep(long vmId, Step step) { |
| SearchCriteria<SecurityGroupWorkVO> sc = VmIdStepSearch.create(); |
| sc.setParameters("vmId", vmId); |
| sc.setParameters("step", step); |
| return findOneIncludingRemovedBy(sc); |
| } |
| |
| @Override |
| @DB |
| public void updateStep(Long workId, Step step) { |
| final Transaction txn = Transaction.currentTxn(); |
| txn.start(); |
| |
| SecurityGroupWorkVO work = lockRow(workId, true); |
| if (work == null) { |
| return; |
| } |
| work.setStep(step); |
| update(work.getId(), work); |
| |
| txn.commit(); |
| |
| } |
| |
| @Override |
| public int deleteFinishedWork(Date timeBefore) { |
| final SearchCriteria<SecurityGroupWorkVO> sc = CleanupSearch.create(); |
| sc.setParameters("taken", timeBefore); |
| sc.setParameters("step", Step.Done); |
| |
| return expunge(sc); |
| } |
| |
| @Override |
| public List<SecurityGroupWorkVO> findUnfinishedWork(Date timeBefore) { |
| final SearchCriteria<SecurityGroupWorkVO> sc = CleanupSearch.create(); |
| sc.setParameters("taken", timeBefore); |
| sc.setParameters("step", Step.Processing); |
| |
| List<SecurityGroupWorkVO> result = listIncludingRemovedBy(sc); |
| |
| return result; |
| } |
| |
| @Override |
| public List<SecurityGroupWorkVO> findAndCleanupUnfinishedWork(Date timeBefore) { |
| final SearchCriteria<SecurityGroupWorkVO> sc = CleanupSearch.create(); |
| sc.setParameters("taken", timeBefore); |
| sc.setParameters("step", Step.Processing); |
| |
| List<SecurityGroupWorkVO> result = listIncludingRemovedBy(sc); |
| |
| SecurityGroupWorkVO work = createForUpdate(); |
| work.setStep(Step.Error); |
| update(work, sc); |
| |
| return result; |
| } |
| |
| @Override |
| public List<SecurityGroupWorkVO> findScheduledWork() { |
| final SearchCriteria<SecurityGroupWorkVO> sc = UntakenWorkSearch.create(); |
| sc.setParameters("step", Step.Scheduled); |
| return listIncludingRemovedBy(sc); |
| }
|
|
|
|
|
| }
|