]> source.dussan.org Git - sonarqube.git/blob
78a4b644cc81fd816a0ecebf36b5783d04ed8cee
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 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.server.project;
21
22 import java.util.Arrays;
23 import java.util.Set;
24 import java.util.function.Consumer;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27 import org.springframework.beans.factory.annotation.Autowired;
28
29 import static com.google.common.base.Preconditions.checkNotNull;
30
31 public class ProjectLifeCycleListenersImpl implements ProjectLifeCycleListeners {
32   private static final Logger LOG = LoggerFactory.getLogger(ProjectLifeCycleListenersImpl.class);
33
34   private final ProjectLifeCycleListener[] listeners;
35
36   /**
37    * Used by the container when there is no ProjectLifeCycleListener implementation in container.
38    */
39   @Autowired(required = false)
40   public ProjectLifeCycleListenersImpl() {
41     this.listeners = new ProjectLifeCycleListener[0];
42   }
43
44   /**
45    * Used by the container when there is at least one ProjectLifeCycleListener implementation in container.
46    */
47   @Autowired(required = false)
48   public ProjectLifeCycleListenersImpl(ProjectLifeCycleListener[] listeners) {
49     this.listeners = listeners;
50   }
51
52   @Override
53   public void onProjectsDeleted(Set<Project> projects) {
54     checkNotNull(projects, "projects can't be null");
55     if (projects.isEmpty()) {
56       return;
57     }
58
59     Arrays.stream(listeners)
60       .forEach(safelyCallListener(listener -> listener.onProjectsDeleted(projects)));
61   }
62
63   @Override
64   public void onProjectBranchesDeleted(Set<Project> projects) {
65     checkNotNull(projects, "projects can't be null");
66     if (projects.isEmpty()) {
67       return;
68     }
69
70     Arrays.stream(listeners)
71       .forEach(safelyCallListener(listener -> listener.onProjectBranchesDeleted(projects)));
72   }
73
74   @Override
75   public void onProjectsRekeyed(Set<RekeyedProject> rekeyedProjects) {
76     checkNotNull(rekeyedProjects, "rekeyedProjects can't be null");
77     if (rekeyedProjects.isEmpty()) {
78       return;
79     }
80
81     Arrays.stream(listeners)
82       .forEach(safelyCallListener(listener -> listener.onProjectsRekeyed(rekeyedProjects)));
83   }
84
85   private static Consumer<ProjectLifeCycleListener> safelyCallListener(Consumer<ProjectLifeCycleListener> task) {
86     return listener -> {
87       try {
88         task.accept(listener);
89       } catch (Error | Exception e) {
90         LOG.error("Call on ProjectLifeCycleListener \"{}\" failed", listener.getClass(), e);
91       }
92     };
93   }
94 }