1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
|
/*
* SonarQube :: Plugin API
* Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.api.resources;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.sonar.api.batch.SensorContext;
import org.sonar.api.batch.fs.FileSystem;
import org.sonar.api.scan.filesystem.PathResolver;
import org.sonar.api.utils.WildcardPattern;
import javax.annotation.CheckForNull;
import java.util.List;
/**
* This class is an implementation of a resource of type FILE
*
* @since 1.10
*/
public class File extends Resource {
public static final String SCOPE = Scopes.FILE;
private String filename;
private Language language;
private Directory parent;
private String qualifier = Qualifiers.FILE;
private final String relativePathFromSourceDir;
private File() {
// Used by factory method
this.relativePathFromSourceDir = null;
}
/**
* @deprecated since 4.2 use {@link FileSystem#inputFile(org.sonar.api.batch.fs.FilePredicate)}
*/
@Deprecated
public File(String relativePathFromSourceDir) {
if (relativePathFromSourceDir == null) {
throw new IllegalArgumentException("File key is null");
}
this.relativePathFromSourceDir = parseKey(relativePathFromSourceDir);
}
/**
* @deprecated since 4.2 use {@link FileSystem#inputFile(org.sonar.api.batch.fs.FilePredicate)}
*/
@Deprecated
public File(String relativeDirectoryPathFromSourceDir, String filename) {
this.filename = StringUtils.trim(filename);
if (StringUtils.isBlank(relativeDirectoryPathFromSourceDir)) {
this.relativePathFromSourceDir = filename;
} else {
this.relativePathFromSourceDir = new StringBuilder().append(Directory.parseKey(relativeDirectoryPathFromSourceDir)).append(Directory.SEPARATOR).append(this.filename)
.toString();
}
}
/**
* @deprecated since 4.2 use {@link FileSystem#inputFile(org.sonar.api.batch.fs.FilePredicate)}
*/
@Deprecated
public File(Language language, String relativePathFromSourceDir) {
this(relativePathFromSourceDir);
this.language = language;
}
/**
* Creates a File from language, directory and filename
* @deprecated since 4.2 use {@link #fromIOFile(java.io.File, Project)}
*/
@Deprecated
public File(Language language, String relativeDirectoryPathFromSourceDir, String filename) {
this(relativeDirectoryPathFromSourceDir, filename);
this.language = language;
}
/**
* Internal.
*/
public String relativePathFromSourceDir() {
return relativePathFromSourceDir;
}
/**
* {@inheritDoc}
*
* @see Resource#getParent()
*/
@Override
public Directory getParent() {
return parent;
}
private static String parseKey(String key) {
if (StringUtils.isBlank(key)) {
return null;
}
String normalizedKey = key;
normalizedKey = normalizedKey.replace('\\', '/');
normalizedKey = StringUtils.trim(normalizedKey);
return normalizedKey;
}
/**
* {@inheritDoc}
*
* @see Resource#matchFilePattern(String)
*/
@Override
public boolean matchFilePattern(String antPattern) {
WildcardPattern matcher = WildcardPattern.create(antPattern, Directory.SEPARATOR);
return matcher.match(getKey());
}
/**
* Creates a File from an io.file and a list of sources directories
* @deprecated since 4.2 use {@link #fromIOFile(java.io.File, Project)}
*/
@Deprecated
@CheckForNull
public static File fromIOFile(java.io.File file, List<java.io.File> sourceDirs) {
PathResolver.RelativePath relativePath = new PathResolver().relativePath(sourceDirs, file);
if (relativePath != null) {
return new File(relativePath.path());
}
return null;
}
/**
* Creates a {@link File} from an absolute {@link java.io.File} and a module.
* The returned {@link File} can be then passed for example to
* {@link SensorContext#saveMeasure(Resource, org.sonar.api.measures.Measure)}.
* @param file absolute path to a file
* @param module
* @return null if the file is not under module basedir.
* @deprecated since 4.5 use {@link FileSystem#inputFile(org.sonar.api.batch.fs.FilePredicate)}
*/
@Deprecated
@CheckForNull
public static File fromIOFile(java.io.File file, Project module) {
String relativePathFromBasedir = new PathResolver().relativePath(module.getBaseDir(), file);
if (relativePathFromBasedir != null) {
return File.create(relativePathFromBasedir);
}
return null;
}
/**
* {@inheritDoc}
*
* @see Resource#getName()
*/
@Override
public String getName() {
return filename;
}
/**
* {@inheritDoc}
*
* @see Resource#getLongName()
*/
@Override
public String getLongName() {
return StringUtils.defaultIfBlank(getPath(), getKey());
}
/**
* {@inheritDoc}
*
* @see Resource#getDescription()
*/
@Override
public String getDescription() {
return null;
}
/**
* {@inheritDoc}
*
* @see Resource#getLanguage()
*/
@Override
public Language getLanguage() {
return language;
}
/**
* Sets the language of the file
*/
public void setLanguage(Language language) {
this.language = language;
}
/**
* @return SCOPE_ENTITY
*/
@Override
public final String getScope() {
return SCOPE;
}
/**
* Returns the qualifier associated to this File. Should be QUALIFIER_FILE or QUALIFIER_UNIT_TEST_CLASS
*/
@Override
public String getQualifier() {
return qualifier;
}
public void setQualifier(String qualifier) {
this.qualifier = qualifier;
}
/**
* Internal use only.
* @deprecated since 5.1 use {@link FileSystem#inputFile(org.sonar.api.batch.fs.FilePredicate)}
*/
@Deprecated
public static File create(String relativePathFromBasedir) {
File file = new File();
String normalizedPath = normalize(relativePathFromBasedir);
file.setKey(normalizedPath);
file.setPath(normalizedPath);
String directoryPath;
if (normalizedPath != null && normalizedPath.contains(Directory.SEPARATOR)) {
directoryPath = StringUtils.substringBeforeLast(normalizedPath, Directory.SEPARATOR);
file.filename = StringUtils.substringAfterLast(normalizedPath, Directory.SEPARATOR);
} else {
directoryPath = Directory.SEPARATOR;
file.filename = normalizedPath;
}
file.parent = Directory.create(directoryPath);
return file;
}
/**
* Internal use only.
* @deprecated since 5.1 use {@link FileSystem#inputFile(org.sonar.api.batch.fs.FilePredicate)}
*/
@Deprecated
public static File create(String relativePathFromBasedir, Language language, boolean unitTest) {
File file = create(relativePathFromBasedir);
file.setLanguage(language);
if (unitTest) {
file.setQualifier(Qualifiers.UNIT_TEST_FILE);
}
return file;
}
@Override
public String toString() {
return new ToStringBuilder(this)
.append("key", getKey())
.append("path", getPath())
.append("filename", filename)
.append("language", language)
.toString();
}
}
|