/core/src/main/java/com/ocpsoft/pretty/faces/config/spi/AnnotationConfigurationProvider.java

http://github.com/ocpsoft/prettyfaces · Java · 89 lines · 52 code · 16 blank · 21 comment · 9 complexity · 4dbcad0883fb82665431e6de6ec19739 MD5 · raw file

  1. /*
  2. * Copyright 2010 Lincoln Baxter, III
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not 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.
  15. */
  16. package com.ocpsoft.pretty.faces.config.spi;
  17. import java.util.ArrayList;
  18. import java.util.List;
  19. import javax.servlet.ServletContext;
  20. import org.apache.commons.logging.Log;
  21. import org.apache.commons.logging.LogFactory;
  22. import com.ocpsoft.pretty.faces.config.PrettyConfig;
  23. import com.ocpsoft.pretty.faces.config.PrettyConfigBuilder;
  24. import com.ocpsoft.pretty.faces.config.annotation.ClassFinder;
  25. import com.ocpsoft.pretty.faces.config.annotation.PackageFilter;
  26. import com.ocpsoft.pretty.faces.config.annotation.PrettyAnnotationHandler;
  27. import com.ocpsoft.pretty.faces.config.annotation.WebClassesFinder;
  28. import com.ocpsoft.pretty.faces.config.annotation.WebLibFinder;
  29. import com.ocpsoft.pretty.faces.el.LazyBeanNameFinder;
  30. import com.ocpsoft.pretty.faces.spi.ConfigurationProvider;
  31. /**
  32. * @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
  33. *
  34. */
  35. public class AnnotationConfigurationProvider implements ConfigurationProvider
  36. {
  37. private static final Log log = LogFactory.getLog(AnnotationConfigurationProvider.class);
  38. public static final String CONFIG_SCAN_LIB_DIR = "com.ocpsoft.pretty.SCAN_LIB_DIRECTORY";
  39. public static final String CONFIG_BASE_PACKAGES = "com.ocpsoft.pretty.BASE_PACKAGES";
  40. public PrettyConfig loadConfiguration(ServletContext servletContext)
  41. {
  42. String packageFilters = servletContext.getInitParameter(CONFIG_BASE_PACKAGES);
  43. if ((packageFilters != null) && packageFilters.trim().equalsIgnoreCase("none"))
  44. {
  45. log.debug("Annotation scanning has is disabled!");
  46. return null;
  47. }
  48. PackageFilter packageFilter = new PackageFilter(packageFilters);
  49. LazyBeanNameFinder beanNameFinder = new LazyBeanNameFinder(servletContext);
  50. PrettyAnnotationHandler annotationHandler = new PrettyAnnotationHandler(beanNameFinder);
  51. ClassLoader classloader = Thread.currentThread().getContextClassLoader();
  52. if (classloader == null)
  53. {
  54. classloader = this.getClass().getClassLoader();
  55. }
  56. List<ClassFinder> classFinders = new ArrayList<ClassFinder>();
  57. // we will always scan /WEB-INF/classes
  58. classFinders.add(new WebClassesFinder(servletContext, classloader, packageFilter));
  59. // does the user want to scan /WEB-INF/lib ?
  60. String jarConfig = servletContext.getInitParameter(CONFIG_SCAN_LIB_DIR);
  61. if ((jarConfig != null) && jarConfig.trim().equalsIgnoreCase("true"))
  62. {
  63. classFinders.add(new WebLibFinder(servletContext, classloader, packageFilter));
  64. }
  65. for (ClassFinder finder : classFinders)
  66. {
  67. finder.findClasses(annotationHandler);
  68. }
  69. PrettyConfigBuilder builder = new PrettyConfigBuilder();
  70. annotationHandler.build(builder);
  71. return builder.build();
  72. }
  73. }