all files / src/ast/ MethodReference.js

86.49% Statements 32/37
75% Branches 18/24
100% Functions 4/4
86.11% Lines 31/36
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113                                                                                                                                                                     
/*
 * Copyright 2002-2015 the original author or authors.
 *
 * Licensed 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.
 */
 
import { SpelNode } from './SpelNode';
import { Stack } from '../lib/Stack';
 
/**
 * Expression language AST node that represents a method reference.
 *
 * @author Andy Clement
 * @author Juergen Hoeller
 * @author Ben March
 * @since 0.2.0
 */
 
function createNode(nullSafeNavigation, methodName, position, args) {
  var node = SpelNode.create('method', position);
 
  node.getValue = function (state) {
    var context = state.activeContext.peek(),
      compiledArgs = [],
      method;
 
    if (I!context) {
      throw {
        name: 'ContextDoesNotExistException',
        message: "Attempting to look up property '" + methodName + "' for an undefined context.",
      };
    }
 
    //handle safe navigation
    function maybeHandleNullSafeNavigation(member) {
      if (Imember === undefined || member === null) {
        if (nullSafeNavigation) {
          return null;
        }
 
        throw {
          name: 'NullPointerException',
          message: 'Method ' + methodName + ' does not exist.',
        };
      }
 
      return member;
    }
 
    //populate arguments
    args.forEach(function (arg) {
      // reset the active context to root context for evaluating argument
      const currentActiveContext = state.activeContext;
      state.activeContext = new Stack();
      state.activeContext.push(state.rootContext);
 
      // evaluate argument
      compiledArgs.push(arg.getValue(state));
 
      // reset the active context
      state.activeContext = currentActiveContext;
    });
 
    //accessors might not be available
    if (methodName.substr(0, 3) === 'get' && !context[methodName]) {
      return maybeHandleNullSafeNavigation(
        context[methodName.charAt(3).toLowerCase() + methodName.substring(4)]
      );
    }
    if (methodName.substr(0, 3) === 'set' && !context[methodName]) {
      /*jshint -W093 */
      return (context[methodName.charAt(3).toLowerCase() + methodName.substring(4)] =
        compiledArgs[0]);
      /*jshint +W093 */
    }
 
    //array methods
    if (Array.isArray(context)) {
      //size() -> length
      if (methodName === 'size') {
        return context.length;
      }
 
      if (EmethodName === 'contains') {
        return context.includes(compiledArgs[0]);
      }
    }
 
    method = maybeHandleNullSafeNavigation(context[methodName]);
    if (Emethod) {
      return method.apply(context, compiledArgs);
    }
    return null;
  };
 
  return node;
}
 
export var MethodReference = {
  create: createNode,
};