]> source.dussan.org Git - sonarqube.git/blob
eb016d45ba21c0cff4ed6c19e16527b103c2a7e5
[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.server.platform.platformlevel;
21
22 import org.slf4j.LoggerFactory;
23 import org.sonar.core.platform.EditionProvider;
24 import org.sonar.core.platform.PlatformEditionProvider;
25 import org.sonar.server.app.ProcessCommandWrapper;
26 import org.sonar.server.authentication.DefaultAdminCredentialsVerifierImpl;
27 import org.sonar.server.ce.queue.CeQueueCleaner;
28 import org.sonar.server.es.IndexerStartupTask;
29 import org.sonar.server.platform.ServerLifecycleNotifier;
30 import org.sonar.server.platform.web.RegisterServletFilters;
31 import org.sonar.server.plugins.DetectPluginChange;
32 import org.sonar.server.plugins.PluginConsentVerifier;
33 import org.sonar.server.qualitygate.RegisterQualityGates;
34 import org.sonar.server.qualityprofile.RegisterQualityProfiles;
35 import org.sonar.server.qualityprofile.builtin.BuiltInQProfileInsertImpl;
36 import org.sonar.server.qualityprofile.builtin.BuiltInQProfileLoader;
37 import org.sonar.server.qualityprofile.builtin.BuiltInQProfileUpdateImpl;
38 import org.sonar.server.qualityprofile.builtin.BuiltInQualityProfilesUpdateListener;
39 import org.sonar.server.rule.AdvancedRuleDescriptionSectionsGenerator;
40 import org.sonar.server.rule.LegacyHotspotRuleDescriptionSectionsGenerator;
41 import org.sonar.server.rule.LegacyIssueRuleDescriptionSectionsGenerator;
42 import org.sonar.server.rule.RuleDescriptionSectionsGeneratorResolver;
43 import org.sonar.server.rule.WebServerRuleFinder;
44 import org.sonar.server.rule.registration.NewRuleCreator;
45 import org.sonar.server.rule.registration.QualityProfileChangesUpdater;
46 import org.sonar.server.rule.registration.RulesKeyVerifier;
47 import org.sonar.server.rule.registration.RulesRegistrant;
48 import org.sonar.server.rule.registration.StartupRuleUpdater;
49 import org.sonar.server.startup.RegisterMetrics;
50 import org.sonar.server.startup.RegisterPermissionTemplates;
51 import org.sonar.server.startup.RegisterPlugins;
52 import org.sonar.server.startup.RenameDeprecatedPropertyKeys;
53 import org.sonar.server.startup.UpgradeSuggestionsCleaner;
54 import org.sonar.server.user.DoPrivileged;
55 import org.sonar.server.user.ThreadLocalUserSession;
56
57 public class PlatformLevelStartup extends PlatformLevel {
58   private AddIfStartupLeaderAndPluginsChanged addIfPluginsChanged;
59
60   public PlatformLevelStartup(PlatformLevel parent) {
61     super("startup tasks", parent);
62   }
63
64   @Override
65   protected void configureLevel() {
66     add(ServerLifecycleNotifier.class);
67
68     addIfStartupLeader(
69       IndexerStartupTask.class);
70     addIfStartupLeaderAndPluginsChanged(
71       RegisterMetrics.class,
72       RegisterQualityGates.class,
73       RuleDescriptionSectionsGeneratorResolver.class,
74       AdvancedRuleDescriptionSectionsGenerator.class,
75       LegacyHotspotRuleDescriptionSectionsGenerator.class,
76       LegacyIssueRuleDescriptionSectionsGenerator.class,
77       RulesRegistrant.class,
78       QualityProfileChangesUpdater.class,
79       NewRuleCreator.class,
80       RulesKeyVerifier.class,
81       StartupRuleUpdater.class,
82       BuiltInQProfileLoader.class);
83     addIfStartupLeader(
84       BuiltInQualityProfilesUpdateListener.class,
85       BuiltInQProfileUpdateImpl.class);
86     addIfStartupLeaderAndPluginsChanged(
87       BuiltInQProfileInsertImpl.class,
88       RegisterQualityProfiles.class);
89     addIfStartupLeader(
90       RegisterPermissionTemplates.class,
91       RenameDeprecatedPropertyKeys.class,
92       CeQueueCleaner.class,
93       UpgradeSuggestionsCleaner.class,
94       PluginConsentVerifier.class);
95     add(RegisterPlugins.class,
96       // RegisterServletFilters makes the WebService engine of Level4 served by the MasterServletFilter, therefore it
97       // must be started after all the other startup tasks
98       RegisterServletFilters.class
99     );
100   }
101
102   /**
103    * Add a component to container only if plugins have changed since last start.
104    *
105    * @throws IllegalStateException if called from PlatformLevel3 or below, plugin info is loaded yet
106    */
107   AddIfStartupLeaderAndPluginsChanged addIfStartupLeaderAndPluginsChanged(Object... objects) {
108     if (addIfPluginsChanged == null) {
109       this.addIfPluginsChanged = new AddIfStartupLeaderAndPluginsChanged(getWebServer().isStartupLeader() && anyPluginChanged());
110     }
111     addIfPluginsChanged.ifAdd(objects);
112     return addIfPluginsChanged;
113   }
114
115   private boolean anyPluginChanged() {
116     return parent.getOptional(DetectPluginChange.class)
117       .map(DetectPluginChange::anyPluginChanged)
118       .orElseThrow(() -> new IllegalStateException("DetectPluginChange not available in the container yet"));
119   }
120
121   public final class AddIfStartupLeaderAndPluginsChanged extends AddIf {
122     private AddIfStartupLeaderAndPluginsChanged(boolean condition) {
123       super(condition);
124     }
125   }
126
127   @Override
128   public PlatformLevel start() {
129     DoPrivileged.execute(new DoPrivileged.Task(parent.get(ThreadLocalUserSession.class)) {
130       @Override
131       protected void doPrivileged() {
132         PlatformLevelStartup.super.start();
133         getOptional(IndexerStartupTask.class).ifPresent(IndexerStartupTask::execute);
134         get(ServerLifecycleNotifier.class).notifyStart();
135         get(ProcessCommandWrapper.class).notifyOperational();
136         get(WebServerRuleFinder.class).stopCaching();
137         LoggerFactory.getLogger(PlatformLevelStartup.class)
138           .info("Running {} Edition", get(PlatformEditionProvider.class).get().map(EditionProvider.Edition::getLabel).orElse(""));
139         get(DefaultAdminCredentialsVerifierImpl.class).runAtStart();
140       }
141     });
142
143     return this;
144   }
145 }