View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.myfaces.spi.impl;
20  
21  import org.apache.myfaces.shared.util.ClassUtils;
22  import org.apache.myfaces.spi.FaceletConfigResourceProvider;
23  import org.apache.myfaces.spi.FaceletConfigResourceProviderFactory;
24  import org.apache.myfaces.spi.ServiceProviderFinderFactory;
25  import org.apache.myfaces.view.facelets.compiler.DefaultFaceletConfigResourceProvider;
26  
27  import javax.faces.FacesException;
28  import javax.faces.context.ExternalContext;
29  import java.lang.reflect.InvocationTargetException;
30  import java.security.AccessController;
31  import java.security.PrivilegedActionException;
32  import java.security.PrivilegedExceptionAction;
33  import java.util.List;
34  import java.util.logging.Level;
35  import java.util.logging.Logger;
36  
37  /**
38   * 
39   * @since 2.0.2
40   * @author Leonardo Uribe
41   */
42  public class DefaultFaceletConfigResourceProviderFactory extends FaceletConfigResourceProviderFactory
43  {
44      public static final String FACELET_CONFIG_PROVIDER = FaceletConfigResourceProvider.class.getName();
45      
46      public static final String FACELET_CONFIG_PROVIDER_LIST = FaceletConfigResourceProvider.class.getName()+".LIST";
47  
48      private Logger getLogger()
49      {
50          return Logger.getLogger(DefaultFaceletConfigResourceProviderFactory.class.getName());
51      }
52      
53      @Override
54      public FaceletConfigResourceProvider createFaceletConfigResourceProvider(
55              ExternalContext externalContext)
56      {
57          FaceletConfigResourceProvider returnValue = null;
58          final ExternalContext extContext = externalContext;
59          try
60          {
61              if (System.getSecurityManager() != null)
62              {
63                  returnValue
64                          = AccessController.doPrivileged(new PrivilegedExceptionAction<FaceletConfigResourceProvider>()
65                          {
66                              public FaceletConfigResourceProvider run() throws ClassNotFoundException,
67                                      NoClassDefFoundError,
68                                      InstantiationException,
69                                      IllegalAccessException,
70                                      InvocationTargetException,
71                                      PrivilegedActionException
72                              {
73                                  return resolveFaceletConfigResourceProviderFromService(extContext);
74                              }
75                          });
76              }
77              else
78              {
79                  returnValue = resolveFaceletConfigResourceProviderFromService(extContext);
80              }
81          }
82          catch (ClassNotFoundException e)
83          {
84              // ignore
85          }
86          catch (NoClassDefFoundError e)
87          {
88              // ignore
89          }
90          catch (InstantiationException e)
91          {
92              getLogger().log(Level.SEVERE, "", e);
93          }
94          catch (IllegalAccessException e)
95          {
96              getLogger().log(Level.SEVERE, "", e);
97          }
98          catch (InvocationTargetException e)
99          {
100             getLogger().log(Level.SEVERE, "", e);
101         }
102         catch (PrivilegedActionException e)
103         {
104             throw new FacesException(e);
105         }
106         return returnValue;
107     }
108     
109     private FaceletConfigResourceProvider resolveFaceletConfigResourceProviderFromService(
110             ExternalContext externalContext) throws ClassNotFoundException,
111             NoClassDefFoundError,
112             InstantiationException,
113             IllegalAccessException,
114             InvocationTargetException,
115             PrivilegedActionException
116     {
117         List<String> classList = (List<String>) externalContext.getApplicationMap().get(FACELET_CONFIG_PROVIDER_LIST);
118         if (classList == null)
119         {
120             classList = ServiceProviderFinderFactory.getServiceProviderFinder(externalContext).
121                     getServiceProviderList(FACELET_CONFIG_PROVIDER);
122             externalContext.getApplicationMap().put(FACELET_CONFIG_PROVIDER_LIST, classList);
123         }
124         
125         return ClassUtils.buildApplicationObject(FaceletConfigResourceProvider.class, classList,
126                                                  new DefaultFaceletConfigResourceProvider());
127     }
128 
129 }