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.view.facelets.el;
20  
21  import java.io.Externalizable;
22  import java.io.IOException;
23  import java.io.ObjectInput;
24  import java.io.ObjectOutput;
25  
26  import javax.el.ELContext;
27  import javax.el.MethodExpression;
28  import javax.el.ValueExpression;
29  import javax.faces.FacesWrapper;
30  import javax.faces.context.FacesContext;
31  import javax.faces.event.AbortProcessingException;
32  import javax.faces.event.ValueChangeEvent;
33  import javax.faces.event.ValueChangeListener;
34  
35  /**
36   *
37   * @author Leonardo Uribe
38   */
39  public class RedirectMethodExpressionValueExpressionValueChangeListener
40         implements ValueChangeListener, FacesWrapper<ValueExpression>, Externalizable
41  {
42      private ValueExpression valueExpression;
43  
44      public RedirectMethodExpressionValueExpressionValueChangeListener()
45      {
46      }
47      
48      public RedirectMethodExpressionValueExpressionValueChangeListener(ValueExpression valueExpression)
49      {
50          this.valueExpression = valueExpression;
51      }
52  
53      public void processValueChange(ValueChangeEvent event) throws AbortProcessingException
54      {
55          getMethodExpression().invoke(FacesContext.getCurrentInstance().getELContext(), new Object[]{event});
56      }
57  
58      private MethodExpression getMethodExpression()
59      {
60          return getMethodExpression(FacesContext.getCurrentInstance().getELContext());
61      }
62      
63      private MethodExpression getMethodExpression(ELContext context)
64      {
65          Object meOrVe = valueExpression.getValue(context);
66          if (meOrVe instanceof MethodExpression)
67          {
68              return (MethodExpression) meOrVe;
69          }
70          else if (meOrVe instanceof ValueExpression)
71          {
72              while (meOrVe != null && meOrVe instanceof ValueExpression)
73              {
74                  meOrVe = ((ValueExpression)meOrVe).getValue(context);
75              }
76              return (MethodExpression) meOrVe;
77          }
78          else
79          {
80              return null;
81          }
82      }
83  
84      public ValueExpression getWrapped()
85      {
86          return valueExpression;
87      }
88      public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
89      {
90          this.valueExpression = (ValueExpression) in.readObject();
91      }
92  
93      public void writeExternal(ObjectOutput out) throws IOException
94      {
95          out.writeObject(this.valueExpression);
96      }
97  
98  }