ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/el/parser/AstLambdaExpression.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/el/parser/AstLambdaExpression.java
Status
scanned
Type
file
Name
AstLambdaExpression.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
5939 (5.8 KB)
MD5
0c2bea2753e2544ed06c8edaefb0e0e2
SHA1
b41e2f4f681f7511a61ce307dfdb06dfc0f961c2
SHA256
ce696d4f090ab2a4a8c8aee0e677c28a8c719d2be01ed6cf27f74d9d334c953c
SHA512

      
    
SHA1_git
b6250c1e95e8c463759322a2453a47a8c07a6382
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
AstLambdaExpression.java | 5.8 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* Generated By:JJTree: Do not edit this line. AstLambdaExpression.java Version 4.3 */ package org.apache.el.parser; import java.util.ArrayList; import java.util.List; import jakarta.el.ELException; import jakarta.el.LambdaExpression; import org.apache.el.ValueExpressionImpl; import org.apache.el.lang.EvaluationContext; import org.apache.el.lang.LambdaExpressionNestedState; import org.apache.el.util.MessageFactory; public class AstLambdaExpression extends SimpleNode { public AstLambdaExpression(int id) { super(id); } @Override public Object getValue(EvaluationContext ctx) throws ELException { // Correct evaluation requires knowledge of the whole set of nested // expressions, not just the current expression LambdaExpressionNestedState state = ctx.getLambdaExpressionNestedState(); if (state == null) { // This must be an outer lambda expression. Create and populate the // state. state = new LambdaExpressionNestedState(); populateNestedState(state); ctx.setLambdaExpressionNestedState(state); } // Check that there are not more sets of parameters than there are // nested expressions. int methodParameterSetCount = jjtGetNumChildren() - 2; if (methodParameterSetCount > state.getNestingCount()) { throw new ELException(MessageFactory.get("error.lambda.tooManyMethodParameterSets")); } // First child is always parameters even if there aren't any AstLambdaParameters formalParametersNode = (AstLambdaParameters) children[0]; Node[] formalParamNodes = formalParametersNode.children; // Second child is a value expression ValueExpressionImpl ve = new ValueExpressionImpl("", children[1], ctx.getFunctionMapper(), ctx.getVariableMapper(), null); // Build a LambdaExpression List<String> formalParameters = new ArrayList<>(); if (formalParamNodes != null) { for (Node formalParamNode : formalParamNodes) { formalParameters.add(formalParamNode.getImage()); } } LambdaExpression le = new LambdaExpression(formalParameters, ve); le.setELContext(ctx); if (jjtGetNumChildren() == 2) { // No method parameters // Can only invoke the expression if none of the lambda expressions // in the nesting declare parameters if (state.getHasFormalParameters()) { return le; } else { return le.invoke(ctx, (Object[]) null); } } /* * This is a (possibly nested) lambda expression with one or more sets of parameters provided. * * If there are more nested expressions than sets of parameters this may return a LambdaExpression. * * If there are more sets of parameters than nested expressions an ELException will have been thrown by the * check at the start of this method. */ // Always have to invoke the outer-most expression int methodParameterIndex = 2; Object result = le.invoke(((AstMethodParameters) children[methodParameterIndex]).getParameters(ctx)); methodParameterIndex++; while (result instanceof LambdaExpression && methodParameterIndex < jjtGetNumChildren()) { result = ((LambdaExpression) result) .invoke(((AstMethodParameters) children[methodParameterIndex]).getParameters(ctx)); methodParameterIndex++; } return result; } private void populateNestedState(LambdaExpressionNestedState lambdaExpressionNestedState) { // Increment the nesting count for the current expression lambdaExpressionNestedState.incrementNestingCount(); if (jjtGetNumChildren() > 1) { Node firstChild = jjtGetChild(0); if (firstChild instanceof AstLambdaParameters) { if (firstChild.jjtGetNumChildren() > 0) { lambdaExpressionNestedState.setHasFormalParameters(); } } else { // Can't be a lambda expression return; } Node secondChild = jjtGetChild(1); if (secondChild instanceof AstLambdaExpression) { ((AstLambdaExpression) secondChild).populateNestedState(lambdaExpressionNestedState); } } } @Override public String toString() { // Purely for debug purposes. May not be complete or correct. Certainly // is not efficient. Be sure not to call this from 'real' code. StringBuilder result = new StringBuilder(); for (Node n : children) { result.append(n.toString()); } return result.toString(); } } /* JavaCC - OriginalChecksum=071159eff10c8e15ec612c765ae4480a (do not edit this line) */
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
21.56
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9