]> source.dussan.org Git - sonarqube.git/blob
c5eb63dc341e4b845dc598f35b2fa4282d005a18
[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.qualitymodel;
21
22 import java.util.Optional;
23 import org.sonar.ce.task.projectanalysis.component.Component;
24 import org.sonar.ce.task.projectanalysis.component.PathAwareVisitorAdapter;
25 import org.sonar.ce.task.projectanalysis.issue.ComponentIssuesRepository;
26 import org.sonar.ce.task.projectanalysis.measure.Measure;
27 import org.sonar.ce.task.projectanalysis.measure.MeasureRepository;
28 import org.sonar.ce.task.projectanalysis.metric.Metric;
29 import org.sonar.ce.task.projectanalysis.metric.MetricRepository;
30 import org.sonar.ce.task.projectanalysis.issue.NewIssueClassifier;
31
32 import static org.sonar.api.measures.CoreMetrics.NEW_SECURITY_HOTSPOTS_REVIEWED_KEY;
33 import static org.sonar.api.measures.CoreMetrics.NEW_SECURITY_HOTSPOTS_REVIEWED_STATUS_KEY;
34 import static org.sonar.api.measures.CoreMetrics.NEW_SECURITY_HOTSPOTS_TO_REVIEW_STATUS_KEY;
35 import static org.sonar.api.measures.CoreMetrics.NEW_SECURITY_REVIEW_RATING_KEY;
36 import static org.sonar.api.rules.RuleType.SECURITY_HOTSPOT;
37 import static org.sonar.ce.task.projectanalysis.component.ComponentVisitor.Order.POST_ORDER;
38 import static org.sonar.ce.task.projectanalysis.component.CrawlerDepthLimit.FILE;
39 import static org.sonar.server.security.SecurityReviewRating.computePercent;
40 import static org.sonar.server.security.SecurityReviewRating.computeRating;
41
42 public class NewSecurityReviewMeasuresVisitor extends PathAwareVisitorAdapter<SecurityReviewCounter> {
43
44   private final ComponentIssuesRepository componentIssuesRepository;
45   private final MeasureRepository measureRepository;
46   private final Metric newSecurityReviewRatingMetric;
47   private final Metric newSecurityHotspotsReviewedMetric;
48   private final Metric newSecurityHotspotsReviewedStatusMetric;
49   private final Metric newSecurityHotspotsToReviewStatusMetric;
50   private final NewIssueClassifier newIssueClassifier;
51
52   public NewSecurityReviewMeasuresVisitor(ComponentIssuesRepository componentIssuesRepository, MeasureRepository measureRepository, MetricRepository metricRepository,
53     NewIssueClassifier newIssueClassifier) {
54     super(FILE, POST_ORDER, NewSecurityReviewMeasuresVisitor.CounterFactory.INSTANCE);
55     this.componentIssuesRepository = componentIssuesRepository;
56     this.measureRepository = measureRepository;
57     this.newSecurityReviewRatingMetric = metricRepository.getByKey(NEW_SECURITY_REVIEW_RATING_KEY);
58     this.newSecurityHotspotsReviewedMetric = metricRepository.getByKey(NEW_SECURITY_HOTSPOTS_REVIEWED_KEY);
59     this.newSecurityHotspotsReviewedStatusMetric = metricRepository.getByKey(NEW_SECURITY_HOTSPOTS_REVIEWED_STATUS_KEY);
60     this.newSecurityHotspotsToReviewStatusMetric = metricRepository.getByKey(NEW_SECURITY_HOTSPOTS_TO_REVIEW_STATUS_KEY);
61     this.newIssueClassifier = newIssueClassifier;
62   }
63
64   @Override
65   public void visitProject(Component project, Path<SecurityReviewCounter> path) {
66     if (!newIssueClassifier.isEnabled()) {
67       return;
68     }
69     computeMeasure(project, path);
70
71     // The following measures are only computed on projects level as they are required to compute the others measures on applications
72     measureRepository.add(project, newSecurityHotspotsReviewedStatusMetric, Measure.newMeasureBuilder().create(path.current().getHotspotsReviewed()));
73     measureRepository.add(project, newSecurityHotspotsToReviewStatusMetric, Measure.newMeasureBuilder().create(path.current().getHotspotsToReview()));
74   }
75
76   @Override
77   public void visitDirectory(Component directory, Path<SecurityReviewCounter> path) {
78     computeMeasure(directory, path);
79   }
80
81   @Override
82   public void visitFile(Component file, Path<SecurityReviewCounter> path) {
83     computeMeasure(file, path);
84   }
85
86   private void computeMeasure(Component component, Path<SecurityReviewCounter> path) {
87     componentIssuesRepository.getIssues(component)
88       .stream()
89       .filter(issue -> issue.type().equals(SECURITY_HOTSPOT))
90       .filter(issue -> newIssueClassifier.isNew(component, issue))
91       .forEach(issue -> path.current().processHotspot(issue));
92
93     Optional<Double> percent = computePercent(path.current().getHotspotsToReview(), path.current().getHotspotsReviewed());
94     measureRepository.add(component, newSecurityReviewRatingMetric, Measure.newMeasureBuilder().create(computeRating(percent.orElse(null)).getIndex()));
95     percent.ifPresent(p -> measureRepository.add(component, newSecurityHotspotsReviewedMetric, Measure.newMeasureBuilder().create(p)));
96
97     if (!path.isRoot()) {
98       path.parent().add(path.current());
99     }
100   }
101
102   private static final class CounterFactory extends SimpleStackElementFactory<SecurityReviewCounter> {
103     public static final NewSecurityReviewMeasuresVisitor.CounterFactory INSTANCE = new NewSecurityReviewMeasuresVisitor.CounterFactory();
104
105     private CounterFactory() {
106       // prevents instantiation
107     }
108
109     @Override
110     public SecurityReviewCounter createForAny(Component component) {
111       return new SecurityReviewCounter();
112     }
113   }
114
115 }