]> source.dussan.org Git - sonarqube.git/blob
668e2115cd1dd94433065832d8c11fa3a8977123
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2022 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.component;
21
22 import java.util.Collections;
23 import java.util.HashMap;
24 import java.util.HashSet;
25 import java.util.List;
26 import java.util.Map;
27 import java.util.Set;
28 import org.sonar.ce.task.projectanalysis.analysis.AnalysisMetadataHolder;
29 import org.sonar.db.DbClient;
30 import org.sonar.db.DbSession;
31 import org.sonar.db.component.KeyWithUuidDto;
32
33 import static org.sonar.db.component.ComponentDto.removeBranchAndPullRequestFromKey;
34
35 /**
36  * Cache a map of component key -> set<uuid> in:
37  * - sibling PRs that have open issues
38  * - branches that use reference branch as new code period setting and have it set to currently analysed branch
39  */
40 public class SiblingComponentsWithOpenIssues {
41   private final DbClient dbClient;
42   private final AnalysisMetadataHolder metadataHolder;
43   private final TreeRootHolder treeRootHolder;
44
45   private Map<String, Set<String>> uuidsByKey;
46
47   public SiblingComponentsWithOpenIssues(TreeRootHolder treeRootHolder, AnalysisMetadataHolder metadataHolder, DbClient dbClient) {
48     this.treeRootHolder = treeRootHolder;
49     this.metadataHolder = metadataHolder;
50     this.dbClient = dbClient;
51   }
52
53   private void loadUuidsByKey() {
54     String currentBranchUuid = treeRootHolder.getRoot().getUuid();
55     String referenceBranchUuid;
56
57     uuidsByKey = new HashMap<>();
58
59     try (DbSession dbSession = dbClient.openSession(false)) {
60       if (metadataHolder.isPullRequest()) {
61         referenceBranchUuid = metadataHolder.getBranch().getReferenceBranchUuid();
62       } else {
63         referenceBranchUuid = currentBranchUuid;
64         addComponentsFromBranchesThatUseCurrentBranchAsNewCodePeriodReferenceAndHaveOpenIssues(dbSession);
65       }
66
67       addComponentsFromPullRequestsTargetingCurrentBranchThatHaveOpenIssues(dbSession, referenceBranchUuid, currentBranchUuid);
68     }
69   }
70
71   private void addComponentsFromBranchesThatUseCurrentBranchAsNewCodePeriodReferenceAndHaveOpenIssues(DbSession dbSession) {
72     String projectUuid = metadataHolder.getProject().getUuid();
73     String currentBranchName = metadataHolder.getBranch().getName();
74
75     Set<String> branchUuids = dbClient.newCodePeriodDao().selectBranchesReferencing(dbSession, projectUuid, currentBranchName);
76
77     List<KeyWithUuidDto> components = dbClient.componentDao().selectComponentsFromBranchesThatHaveOpenIssues(dbSession, branchUuids);
78     for (KeyWithUuidDto dto : components) {
79       uuidsByKey.computeIfAbsent(removeBranchAndPullRequestFromKey(dto.key()), s -> new HashSet<>()).add(dto.uuid());
80     }
81   }
82
83   private void addComponentsFromPullRequestsTargetingCurrentBranchThatHaveOpenIssues(DbSession dbSession, String referenceBranchUuid, String currentBranchUuid) {
84     List<KeyWithUuidDto> components = dbClient.componentDao().selectComponentsFromPullRequestsTargetingCurrentBranchThatHaveOpenIssues(
85       dbSession, referenceBranchUuid, currentBranchUuid);
86     for (KeyWithUuidDto dto : components) {
87       uuidsByKey.computeIfAbsent(removeBranchAndPullRequestFromKey(dto.key()), s -> new HashSet<>()).add(dto.uuid());
88     }
89   }
90
91   public Set<String> getUuids(String componentKey) {
92     if (uuidsByKey == null) {
93       loadUuidsByKey();
94     }
95
96     return uuidsByKey.getOrDefault(componentKey, Collections.emptySet());
97   }
98 }