]> source.dussan.org Git - sonarqube.git/blob
fc62e592e149dfb2feac78ccffa46f483529bacb
[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.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 oldName;
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 oldName) {
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.oldName = formatOldName(oldName);
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   @CheckForNull
70   public String getOldName() {
71     return oldName;
72   }
73
74   /**
75    * Number of lines of the file, can never be less than 1
76    */
77   public int getLines() {
78     return lines;
79   }
80
81   @Override
82   public String toString() {
83     return "FileAttributes{" +
84       "languageKey='" + languageKey + '\'' +
85       ", unitTest=" + unitTest +
86       ", lines=" + lines +
87       ", markedAsUnchanged=" + markedAsUnchanged +
88       ", oldName=" + oldName +
89       '}';
90   }
91
92   private String formatOldName(@Nullable String name) {
93     return abbreviate(trimToNull(name), MAX_COMPONENT_NAME_LENGTH);
94   }
95 }