View Javadoc

1   package org.apache.commons.ognl;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   * http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.commons.ognl.enhance.UnsupportedCompilationException;
23  
24  /**
25   * $Id: ASTNotIn.java 1194869 2011-10-29 11:10:16Z mcucchiara $
26   * @author Luke Blanshard (blanshlu@netscape.net)
27   * @author Drew Davidson (drew@ognl.org)
28   */
29  class ASTNotIn
30      extends SimpleNode
31      implements NodeType
32  {
33      public ASTNotIn( int id )
34      {
35          super( id );
36      }
37  
38      public ASTNotIn( OgnlParser p, int id )
39      {
40          super( p, id );
41      }
42  
43      protected Object getValueBody( OgnlContext context, Object source )
44          throws OgnlException
45      {
46          Object v1 = children[0].getValue( context, source );
47          Object v2 = children[1].getValue( context, source );
48          return OgnlOps.in( v1, v2 ) ? Boolean.FALSE : Boolean.TRUE;
49      }
50  
51      public Class getGetterClass()
52      {
53          return Boolean.TYPE;
54      }
55  
56      public Class getSetterClass()
57      {
58          return null;
59      }
60  
61      public String toGetSourceString( OgnlContext context, Object target )
62      {
63          try
64          {
65              String result = "(! org.apache.commons.ognl.OgnlOps.in( ($w) ";
66  
67              result +=
68                  OgnlRuntime.getChildSource( context, target, children[0] ) + ", ($w) "
69                      + OgnlRuntime.getChildSource( context, target, children[1] );
70  
71              result += ") )";
72  
73              context.setCurrentType( Boolean.TYPE );
74  
75              return result;
76          }
77          catch ( NullPointerException e )
78          {
79  
80              // expected to happen in some instances
81              e.printStackTrace();
82  
83              throw new UnsupportedCompilationException( "evaluation resulted in null expression." );
84          }
85          catch ( Throwable t )
86          {
87              throw OgnlOps.castToRuntime( t );
88          }
89      }
90      
91      public <R, P> R accept( NodeVisitor<? extends R, ? super P> visitor, P data )
92          throws OgnlException
93      {
94          return visitor.visit( this, data );
95      }
96  }