]> source.dussan.org Git - sonarqube.git/blob
cfe7606bbf29e63172b5c198a26c2af4169ef3f9
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2021 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.web;
21
22 import java.util.Enumeration;
23 import java.util.Properties;
24 import javax.servlet.ServletContext;
25 import javax.servlet.ServletContextEvent;
26 import javax.servlet.ServletContextListener;
27 import org.sonar.api.utils.log.Loggers;
28 import org.sonar.server.platform.PlatformImpl;
29
30 public final class PlatformServletContextListener implements ServletContextListener {
31   static final String STARTED_ATTRIBUTE = "sonarqube.started";
32
33   @Override
34   public void contextInitialized(ServletContextEvent event) {
35     try {
36       Properties props = new Properties();
37       ServletContext servletContext = event.getServletContext();
38       Enumeration<String> paramKeys = servletContext.getInitParameterNames();
39       while (paramKeys.hasMoreElements()) {
40         String key = paramKeys.nextElement();
41         props.put(key, servletContext.getInitParameter(key));
42       }
43       PlatformImpl.getInstance().init(props, servletContext);
44       PlatformImpl.getInstance().doStart();
45       event.getServletContext().setAttribute(STARTED_ATTRIBUTE, Boolean.TRUE);
46     } catch (org.sonar.api.utils.MessageException | org.sonar.process.MessageException e) {
47       Loggers.get(PlatformImpl.class).error("Web server startup failed: " + e.getMessage());
48       stopQuietly();
49     } catch (Throwable t) {
50       Loggers.get(PlatformImpl.class).error("Web server startup failed", t);
51       stopQuietly();
52       throw new AbortTomcatStartException();
53     }
54   }
55
56   private void stopQuietly() {
57     try {
58       PlatformImpl.getInstance().doStop();
59     } catch (Exception e) {
60       // ignored, but an error during startup generally prevents pico to be correctly stopped
61     }
62   }
63
64   @Override
65   public void contextDestroyed(ServletContextEvent event) {
66     PlatformImpl.getInstance().doStop();
67   }
68
69 }