Java tutorial
/* * SonarQube, open source software quality management tool. * Copyright (C) 2008-2014 SonarSource * mailto:contact AT sonarsource DOT com * * SonarQube is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * SonarQube 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.sonar.batch.issue.tracking; import org.apache.commons.lang.time.DateUtils; import org.apache.ibatis.session.ResultContext; import org.apache.ibatis.session.ResultHandler; import org.sonar.api.batch.Sensor; import org.sonar.api.batch.SensorContext; import org.sonar.api.resources.Project; import org.sonar.core.DryRunIncompatible; import org.sonar.core.issue.db.IssueChangeDao; import org.sonar.core.issue.db.IssueChangeDto; import org.sonar.core.issue.db.IssueDao; import org.sonar.core.issue.db.IssueDto; import java.util.Calendar; import java.util.Date; /** * Load all the issues referenced during the previous scan. */ @DryRunIncompatible public class InitialOpenIssuesSensor implements Sensor { private final InitialOpenIssuesStack initialOpenIssuesStack; private final IssueDao issueDao; private final IssueChangeDao issueChangeDao; public InitialOpenIssuesSensor(InitialOpenIssuesStack initialOpenIssuesStack, IssueDao issueDao, IssueChangeDao issueChangeDao) { this.initialOpenIssuesStack = initialOpenIssuesStack; this.issueDao = issueDao; this.issueChangeDao = issueChangeDao; } @Override public boolean shouldExecuteOnProject(Project project) { return true; } @Override public void analyse(Project project, SensorContext context) { // Adding one second is a hack for resolving conflicts with concurrent user // changes during issue persistence final Date now = DateUtils.addSeconds(DateUtils.truncate(new Date(), Calendar.MILLISECOND), 1); issueDao.selectNonClosedIssuesByModule(project.getId(), new ResultHandler() { @Override public void handleResult(ResultContext rc) { IssueDto dto = (IssueDto) rc.getResultObject(); dto.setSelectedAt(now.getTime()); initialOpenIssuesStack.addIssue(dto); } }); issueChangeDao.selectChangelogOnNonClosedIssuesByModuleAndType(project.getId(), new ResultHandler() { @Override public void handleResult(ResultContext rc) { IssueChangeDto dto = (IssueChangeDto) rc.getResultObject(); initialOpenIssuesStack.addChangelog(dto); } }); } @Override public String toString() { return getClass().getSimpleName(); } }