]> source.dussan.org Git - sonarqube.git/blob
56c2128ab896e88dc17061f8e07194013b710e8c
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2024 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.CheckForNull;
23 import javax.annotation.Nullable;
24 import javax.annotation.concurrent.Immutable;
25
26 import static com.google.common.base.Preconditions.checkArgument;
27 import static org.apache.commons.lang.StringUtils.abbreviate;
28 import static org.apache.commons.lang.StringUtils.trimToNull;
29 import static org.sonar.db.component.ComponentValidator.MAX_COMPONENT_NAME_LENGTH;
30
31 /**
32  * The attributes specific to a Component of type {@link Component.Type#FILE}.
33  */
34 @Immutable
35 public class FileAttributes {
36   private final boolean unitTest;
37   @CheckForNull
38   private final String languageKey;
39   private final boolean markedAsUnchanged;
40   private final int lines;
41   private String oldRelativePath;
42
43   public FileAttributes(boolean unitTest, @Nullable String languageKey, int lines) {
44     this(unitTest, languageKey, lines, false, null);
45   }
46
47   public FileAttributes(boolean unitTest, @Nullable String languageKey, int lines, boolean markedAsUnchanged, @Nullable String oldRelativePath) {
48     this.unitTest = unitTest;
49     this.languageKey = languageKey;
50     this.markedAsUnchanged = markedAsUnchanged;
51     checkArgument(lines > 0, "Number of lines must be greater than zero");
52     this.lines = lines;
53     this.oldRelativePath = formatOldRelativePath(oldRelativePath);
54   }
55
56   public boolean isMarkedAsUnchanged() {
57     return markedAsUnchanged;
58   }
59
60   public boolean isUnitTest() {
61     return unitTest;
62   }
63
64   @CheckForNull
65   public String getLanguageKey() {
66     return languageKey;
67   }
68
69   /**
70    * The old relative path of a file when a move is detected by the SCM in the scope of a Pull Request.
71    */
72   @CheckForNull
73   public String getOldRelativePath() {
74     return oldRelativePath;
75   }
76
77   /**
78    * Number of lines of the file, can never be less than 1
79    */
80   public int getLines() {
81     return lines;
82   }
83
84   @Override
85   public String toString() {
86     return "FileAttributes{" +
87       "languageKey='" + languageKey + '\'' +
88       ", unitTest=" + unitTest +
89       ", lines=" + lines +
90       ", markedAsUnchanged=" + markedAsUnchanged +
91       ", oldRelativePath='" + oldRelativePath + '\'' +
92       '}';
93   }
94
95   private static String formatOldRelativePath(@Nullable String path) {
96     return abbreviate(trimToNull(path), MAX_COMPONENT_NAME_LENGTH);
97   }
98 }