/opengrok-0.9-src/src/org/opensolaris/opengrok/web/WebappListener.java

# · Java · 87 lines · 54 code · 7 blank · 26 comment · 11 complexity · 07b2419e4a3684aea79d6ff7e881da64 MD5 · raw file

  1. /*
  2. * CDDL HEADER START
  3. *
  4. * The contents of this file are subject to the terms of the
  5. * Common Development and Distribution License (the "License").
  6. * You may not use this file except in compliance with the License.
  7. *
  8. * See LICENSE.txt included in this distribution for the specific
  9. * language governing permissions and limitations under the License.
  10. *
  11. * When distributing Covered Code, include this CDDL HEADER in each
  12. * file and include the License file at LICENSE.txt.
  13. * If applicable, add the following below this CDDL HEADER, with the
  14. * fields enclosed by brackets "[]" replaced with your own identifying
  15. * information: Portions Copyright [yyyy] [name of copyright owner]
  16. *
  17. * CDDL HEADER END
  18. */
  19. /*
  20. * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
  21. * Use is subject to license terms.
  22. */
  23. package org.opensolaris.opengrok.web;
  24. import java.io.File;
  25. import java.io.IOException;
  26. import java.net.InetAddress;
  27. import java.net.InetSocketAddress;
  28. import java.net.SocketAddress;
  29. import java.net.UnknownHostException;
  30. import java.util.logging.Level;
  31. import javax.servlet.ServletContext;
  32. import javax.servlet.ServletContextEvent;
  33. import javax.servlet.ServletContextListener;
  34. import org.opensolaris.opengrok.OpenGrokLogger;
  35. import org.opensolaris.opengrok.configuration.RuntimeEnvironment;
  36. /**
  37. * Populate the Mercurial Repositories
  38. * @author Trond Norbye
  39. */
  40. public final class WebappListener implements ServletContextListener {
  41. public void contextInitialized(final ServletContextEvent servletContextEvent) {
  42. ServletContext context = servletContextEvent.getServletContext();
  43. RuntimeEnvironment env = RuntimeEnvironment.getInstance();
  44. String config = context.getInitParameter("CONFIGURATION");
  45. if (config == null) {
  46. OpenGrokLogger.getLogger().severe("CONFIGURATION section missing in web.xml");
  47. } else {
  48. try {
  49. env.readConfiguration(new File(config));
  50. } catch (IOException ex) {
  51. OpenGrokLogger.getLogger().log(Level.WARNING, "OpenGrok Configuration error. Failed to read config file: ", ex);
  52. }
  53. }
  54. String address = context.getInitParameter("ConfigAddress");
  55. if (address != null && address.length() > 0) {
  56. OpenGrokLogger.getLogger().log(Level.INFO, "Will listen for configuration on [" + address + "]");
  57. String[] cfg = address.split(":");
  58. if (cfg.length == 2) {
  59. try {
  60. SocketAddress addr = new InetSocketAddress(InetAddress.getByName(cfg[0]), Integer.parseInt(cfg[1]));
  61. if (!RuntimeEnvironment.getInstance().startConfigurationListenerThread(addr)) {
  62. OpenGrokLogger.getLogger().log(Level.SEVERE, "OpenGrok: Failed to start configuration listener thread");
  63. }
  64. } catch (NumberFormatException ex) {
  65. OpenGrokLogger.getLogger().log(Level.SEVERE, "OpenGrok: Failed to start configuration listener thread:", ex);
  66. } catch (UnknownHostException ex) {
  67. OpenGrokLogger.getLogger().log(Level.SEVERE, "OpenGrok: Failed to start configuration listener thread:", ex);
  68. }
  69. } else {
  70. OpenGrokLogger.getLogger().log(Level.SEVERE, "Incorrect format for the configuration address: ");
  71. for (int i = 0; i < cfg.length; ++i) {
  72. OpenGrokLogger.getLogger().log(Level.SEVERE, "[" + cfg[i] + "]");
  73. }
  74. }
  75. }
  76. }
  77. public void contextDestroyed(final ServletContextEvent servletContextEvent) {
  78. RuntimeEnvironment.getInstance().stopConfigurationListenerThread();
  79. }
  80. }