]> source.dussan.org Git - sonarqube.git/blob
b07d637679e3c82423b870776a3d6d817f866d5b
[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 javax.annotation.Nullable;
23 import org.sonar.ce.task.projectanalysis.analysis.Branch;
24 import org.sonar.core.component.ComponentKeys;
25 import org.sonar.db.component.BranchDto;
26 import org.sonar.db.component.BranchType;
27
28 import static org.apache.commons.lang.StringUtils.isEmpty;
29 import static org.apache.commons.lang.StringUtils.trimToNull;
30
31 /**
32  * Implementation of {@link Branch} for default/main branch. It is used
33  * when no branch is provided as a scanner parameter or if the branch plugin is not installed.
34  */
35 public class DefaultBranchImpl implements Branch {
36   private final String branchName;
37
38   public DefaultBranchImpl() {
39     this.branchName = BranchDto.DEFAULT_MAIN_BRANCH_NAME;
40   }
41
42   @Override
43   public BranchType getType() {
44     return BranchType.BRANCH;
45   }
46
47   @Override
48   public boolean isMain() {
49     return true;
50   }
51
52   @Override
53   public String getReferenceBranchUuid() {
54     throw new IllegalStateException("Not valid for the main branch");
55   }
56
57   @Override
58   public String getName() {
59     return branchName;
60   }
61
62   @Override
63   public boolean supportsCrossProjectCpd() {
64     return true;
65   }
66
67   @Override
68   public String getPullRequestKey() {
69     throw new IllegalStateException("Only a branch of type PULL_REQUEST can have a pull request id.");
70   }
71
72   @Override
73   public String getTargetBranchName() {
74     throw new IllegalStateException("Only on a pull request");
75   }
76
77   @Override
78   public String generateKey(String projectKey, @Nullable String fileOrDirPath) {
79     if (isEmpty(fileOrDirPath)) {
80       return projectKey;
81     }
82     return ComponentKeys.createEffectiveKey(projectKey, trimToNull(fileOrDirPath));
83   }
84 }