/app/src/main/java/org/apache/roller/weblogger/business/GuiceWebloggerProvider.java

https://github.com/apache/roller · Java · 90 lines · 35 code · 17 blank · 38 comment · 0 complexity · 6a349af74eabc9b84e26cad2a81006c6 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. The ASF licenses this file to You
  4. * under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License. For additional information regarding
  15. * copyright in this work, please see the NOTICE file in the top level
  16. * directory of this distribution.
  17. */
  18. package org.apache.roller.weblogger.business;
  19. import com.google.inject.Guice;
  20. import com.google.inject.Injector;
  21. import com.google.inject.Module;
  22. import java.util.Objects;
  23. import org.apache.roller.weblogger.config.WebloggerConfig;
  24. import org.apache.roller.weblogger.util.Reflection;
  25. /**
  26. * A Guice specific implementation of a WebloggerProvider.
  27. */
  28. public class GuiceWebloggerProvider implements WebloggerProvider {
  29. // Guice injector
  30. protected final Injector injector;
  31. // maintain our own singleton instance of Weblogger
  32. protected Weblogger webloggerInstance = null;
  33. /**
  34. * Instantiate a new GuiceWebloggerProvider using default guice module
  35. * configured in WebloggerConfig via 'guice.backend.module' property.
  36. */
  37. public GuiceWebloggerProvider() {
  38. this(Objects.requireNonNull(
  39. WebloggerConfig.getProperty("guice.backend.module"),
  40. "unable to lookup default guice module via property 'guice.backend.module'"));
  41. }
  42. /**
  43. * Instantiate a new GuiceWebloggerProvider using the given Guice module.
  44. *
  45. * @param moduleClassname The full classname of the Guice module to use.
  46. */
  47. public GuiceWebloggerProvider(String moduleClassname) {
  48. Objects.requireNonNull(moduleClassname, "moduleClassname cannot be null");
  49. try {
  50. Module module = (Module) Reflection.newInstance(moduleClassname);
  51. injector = Guice.createInjector(module);
  52. } catch (ThreadDeath t) {
  53. throw t;
  54. } catch (Throwable e) {
  55. // Fatal misconfiguration, cannot recover
  56. throw new RuntimeException("Error instantiating backend module " + moduleClassname + "; exception message: " + e.getMessage(), e);
  57. }
  58. }
  59. /**
  60. * @inheritDoc
  61. */
  62. @Override
  63. public void bootstrap() {
  64. webloggerInstance = injector.getInstance(Weblogger.class);
  65. }
  66. /**
  67. * @inheritDoc
  68. */
  69. @Override
  70. public Weblogger getWeblogger() {
  71. return webloggerInstance;
  72. }
  73. }