@pru-rt/spel2js
Version:
Parse Spring Expression Language in JavaScript
93 lines (77 loc) • 2.8 kB
JavaScript
/*
* 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';
/**
* 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 (!context) {
throw {
name: 'ContextDoesNotExistException',
message: 'Attempting to look up property \''+ methodName +'\' for an undefined context.'
};
}
//handle safe navigation
function maybeHandleNullSafeNavigation(member) {
if (member === undefined) {
if (nullSafeNavigation) {
return null;
}
throw {
name: 'NullPointerException',
message: 'Method ' + methodName + ' does not exist.'
};
}
return member;
}
//populate arguments
args.forEach(function (arg) {
compiledArgs.push(arg.getValue(state));
});
//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 */
}
//size() -> length
if (methodName === 'size' && Array.isArray(context)) {
return context.length;
}
method = maybeHandleNullSafeNavigation(context[methodName]);
if (method) {
return method.apply(context, compiledArgs);
}
return null;
};
return node;
}
export var MethodReference = {
create: createNode
};