]> source.dussan.org Git - sonarqube.git/blob
c40fee64e5e4f50ec2a0f10fc6da0b4fdb24efea
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program 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  * This program 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 License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.ce.task.projectanalysis.taskprocessor;
21
22 import java.util.Optional;
23 import org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
25 import org.sonar.ce.task.CeTask;
26 import org.sonar.ce.task.step.ComputationStep;
27 import org.sonar.db.DbClient;
28 import org.sonar.db.DbSession;
29 import org.sonar.db.component.ComponentDto;
30
31 public final class IgnoreOrphanBranchStep implements ComputationStep {
32   private static final Logger LOG = LoggerFactory.getLogger(IgnoreOrphanBranchStep.class);
33   private final CeTask ceTask;
34   private final DbClient dbClient;
35
36   public IgnoreOrphanBranchStep(CeTask ceTask, DbClient dbClient) {
37     this.ceTask = ceTask;
38     this.dbClient = dbClient;
39   }
40
41   @Override
42   public void execute(Context context) {
43     String entityUuid = ceTask.getEntity().orElseThrow(() -> new UnsupportedOperationException("entity not found in task")).getUuid();
44     String componentUuid = ceTask.getComponent().orElseThrow(() -> new UnsupportedOperationException("component not found in task")).getUuid();
45
46     try (DbSession dbSession = dbClient.openSession(false)) {
47       Optional<ComponentDto> componentDto = dbClient.componentDao().selectByUuid(dbSession, entityUuid);
48       if(!componentDto.isPresent()){
49         LOG.info("reindexation task has been trigger on an orphan branch. removing any exclude_from_purge flag, and skip the indexation");
50         dbClient.branchDao().updateExcludeFromPurge(dbSession, componentUuid, false);
51         dbClient.branchDao().updateNeedIssueSync(dbSession, componentUuid, false);
52         dbSession.commit();
53       }
54     }
55   }
56
57   @Override
58   public String getDescription() {
59     return "Ignore orphan component";
60   }
61 }