]> source.dussan.org Git - sonarqube.git/blob
4e1bba5d7c327c6130c2c21e7be7d856c3996fe4
[sonarqube.git] /
1 /*
2  * Sonar, open source software quality management tool.
3  * Copyright (C) 2009 SonarSource SA
4  * mailto:contact AT sonarsource DOT com
5  *
6  * Sonar is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * Sonar is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Sonar; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
19  */
20 package org.sonar.plugins.core.timemachine;
21
22 import org.sonar.api.BatchExtension;
23 import org.sonar.api.database.DatabaseSession;
24 import org.sonar.api.database.model.Snapshot;
25 import org.sonar.batch.components.PastSnapshot;
26 import org.sonar.batch.components.TimeMachineConfiguration;
27
28 import java.util.List;
29
30 public final class TimeMachineConfigurationPersister implements BatchExtension {
31
32   private TimeMachineConfiguration configuration;
33   private Snapshot projectSnapshot;
34   private DatabaseSession session;
35
36   public TimeMachineConfigurationPersister(TimeMachineConfiguration configuration, Snapshot projectSnapshot, DatabaseSession session) {
37     this.configuration = configuration;
38     this.projectSnapshot = projectSnapshot;
39     this.session = session;
40   }
41
42   public void start() {
43     List<PastSnapshot> pastSnapshots = configuration.getProjectPastSnapshots();
44     for (PastSnapshot pastSnapshot : pastSnapshots) {
45       projectSnapshot = session.reattach(Snapshot.class, projectSnapshot.getId());
46       projectSnapshot.setPeriodMode(pastSnapshot.getIndex(), pastSnapshot.getMode());
47       projectSnapshot.setPeriodModeParameter(pastSnapshot.getIndex(), pastSnapshot.getModeParameter());
48       projectSnapshot.setPeriodDate(pastSnapshot.getIndex(), pastSnapshot.getTargetDate());
49       session.save(projectSnapshot);
50     }
51     session.commit();
52   }
53 }