]> source.dussan.org Git - sonarqube.git/blob
900dc82c152c3d3d8348d472539dce87736bded7
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2021 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 sibling PRs that have open issues
37  */
38 public class SiblingComponentsWithOpenIssues {
39   private final DbClient dbClient;
40   private final AnalysisMetadataHolder metadataHolder;
41   private final TreeRootHolder treeRootHolder;
42
43   private Map<String, Set<String>> uuidsByKey;
44
45   public SiblingComponentsWithOpenIssues(TreeRootHolder treeRootHolder, AnalysisMetadataHolder metadataHolder, DbClient dbClient) {
46     this.treeRootHolder = treeRootHolder;
47     this.metadataHolder = metadataHolder;
48     this.dbClient = dbClient;
49   }
50
51   private void loadUuidsByKey() {
52     String currentBranchUuid = treeRootHolder.getRoot().getUuid();
53     String referenceBranchUuid;
54
55     if (metadataHolder.isPullRequest()) {
56       referenceBranchUuid = metadataHolder.getBranch().getReferenceBranchUuid();
57     } else {
58       referenceBranchUuid = currentBranchUuid;
59     }
60
61     uuidsByKey = new HashMap<>();
62     try (DbSession dbSession = dbClient.openSession(false)) {
63       List<KeyWithUuidDto> components = dbClient.componentDao().selectAllSiblingComponentKeysHavingOpenIssues(dbSession, referenceBranchUuid, currentBranchUuid);
64       for (KeyWithUuidDto dto : components) {
65         uuidsByKey.computeIfAbsent(removeBranchAndPullRequestFromKey(dto.key()), s -> new HashSet<>()).add(dto.uuid());
66       }
67     }
68   }
69
70   public Set<String> getUuids(String componentKey) {
71     if (uuidsByKey == null) {
72       loadUuidsByKey();
73     }
74
75     return uuidsByKey.getOrDefault(componentKey, Collections.emptySet());
76   }
77 }