-
Notifications
You must be signed in to change notification settings - Fork 721
Expand file tree
/
Copy pathJavaPlugin.java
More file actions
131 lines (124 loc) · 5.58 KB
/
JavaPlugin.java
File metadata and controls
131 lines (124 loc) · 5.58 KB
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
/*
* SonarQube Java
* Copyright (C) 2012-2025 SonarSource Sàrl
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA.
*
* 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 Sonar Source-Available License for more details.
*
* You should have received a copy of the Sonar Source-Available License
* along with this program; if not, see https://sonarsource.com/license/ssal/
*/
package org.sonar.plugins.java;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import org.sonar.api.Plugin;
import org.sonar.api.PropertyType;
import org.sonar.api.SonarEdition;
import org.sonar.api.SonarProduct;
import org.sonar.api.config.PropertyDefinition;
import org.sonar.java.AnalysisWarningsWrapper;
import org.sonar.java.DefaultJavaResourceLocator;
import org.sonar.java.DefaultModuleMetadata;
import org.sonar.java.JavaConstants;
import org.sonar.java.SonarComponents;
import org.sonar.java.classpath.ClasspathForMain;
import org.sonar.java.classpath.ClasspathForMainForSonarLint;
import org.sonar.java.classpath.ClasspathForTest;
import org.sonar.java.classpath.ClasspathProperties;
import org.sonar.java.filters.PostAnalysisIssueFilter;
import org.sonar.java.jsp.Jasper;
import org.sonar.java.telemetry.NoOpTelemetry;
import org.sonar.java.telemetry.DefaultTelemetry;
import org.sonar.plugins.java.api.JavaVersion;
import org.sonar.plugins.java.api.caching.SonarLintCache;
import org.sonar.plugins.surefire.SurefireExtensions;
public class JavaPlugin implements Plugin {
@SuppressWarnings("unchecked")
@Override
public void define(Context context) {
List<Object> list = new ArrayList<>();
if (context.getRuntime().getProduct() == SonarProduct.SONARLINT) {
list.add(NoOpTelemetry.class);
list.add(ClasspathForMainForSonarLint.class);
// Some custom rules (i.e. DBD) depend on the presence of SonarLintCache when executing in a SonarLint context.
// Hence, we must provide it here.
list.add(SonarLintCache.class);
} else {
list.add(DefaultTelemetry.class);
list.add(ProjectEndOfAnalysisSensor.class);
list.addAll(SurefireExtensions.getExtensions());
list.add(DroppedPropertiesSensor.class);
list.add(JavaSonarWayProfile.class);
list.add(JavaAgentQualityProfile.class);
list.add(ClasspathForMain.class);
ExternalReportExtensions.define(context);
}
if (supportJspTranspilation(context)) {
list.add(Jasper.class);
}
list.addAll(ClasspathProperties.getProperties());
list.addAll(Arrays.asList(
ClasspathForTest.class,
Java.class,
PropertyDefinition.builder(Java.FILE_SUFFIXES_KEY)
.defaultValue(Java.DEFAULT_FILE_SUFFIXES)
.category(JavaConstants.JAVA_CATEGORY)
.name("File suffixes")
.multiValues(true)
.description("List of suffixes for Java files to analyze. To not filter, leave the list empty.")
.subCategory("General")
.onConfigScopes(Set.of(PropertyDefinition.ConfigScope.PROJECT))
.build(),
JavaRulesDefinition.class,
SonarComponents.class,
DefaultJavaResourceLocator.class,
PropertyDefinition.builder(JavaVersion.ENABLE_PREVIEW)
.name("Enable JDK's latest preview feature")
.description("Allow to enable JDK's preview features for analysis. Only the Java's latest supported version preview features are supported.")
.category(JavaConstants.JAVA_CATEGORY)
.subCategory("Language")
.onConfigScopes(Set.of(PropertyDefinition.ConfigScope.PROJECT))
.type(PropertyType.BOOLEAN)
.defaultValue("False")
.build(),
PropertyDefinition.builder(SonarComponents.SONAR_IGNORE_UNNAMED_MODULE_FOR_SPLIT_PACKAGE)
.name("Ignore unnamed module for split package")
.description(
"<p>" +
"Prevent the Java parser from enforcing Java platform modularization by omitting package and class re-declarations gathered in the unnamed module." +
"</p>" +
"<p>" +
"With the Java Platform Module System introduced in Java 9, packages and classes declared outside of" +
" explicitly named modules are placed in a common \"unnamed module\"." +
" When a package or class is found in both the unnamed module and a named one, modularization is broken." +
" As a result, the parser may be unable to build the project semantic successfully, leading to analysis failure." +
" This parameter allows users to bypass Java platform modularity enforcement to prevent analysis failure." +
"</p>"
)
.category(JavaConstants.JAVA_CATEGORY)
.subCategory("Language")
.onConfigScopes(Set.of(PropertyDefinition.ConfigScope.PROJECT))
.type(PropertyType.BOOLEAN)
.defaultValue("False")
.build(),
JavaSensor.class,
PostAnalysisIssueFilter.class));
list.add(AnalysisWarningsWrapper.class);
list.add(DefaultModuleMetadata.class);
context.addExtensions(Collections.unmodifiableList(list));
}
private static boolean supportJspTranspilation(Context context) {
// currently, only security rules are interested in jsp
return context.getRuntime().getProduct() == SonarProduct.SONARQUBE
&& context.getRuntime().getEdition() != SonarEdition.COMMUNITY;
}
}