Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ColdFusion 9 Dynamic Method Call

I am trying to work out the correct <cfscript> syntax for calling a dynamic method within ColdFusion 9. I have tried a number of variations and had a good search around.

<cfinvoke> is clearly the tag I want, sadly however I cannot use this within my pure cfscript component as it was implemented in ColdFusion 10.

i.e coldfusion 9 dynamically call method

I have tried the following within my CFC:

/** Validate the method name **/
var resources = getResources();
if (structKeyExists(variables.resources, name)) {
  variables.resourceActive[name] = true;
  var reflectionMethod = resources[name];
  var result = "#reflectionMethod.getMethodName()#"(argumentCollection = params);
}

Where the return value of reflectionMethod.getMethodName() is the method name I want to call. It is 100% returning the correct value (the name of the method) where that method is correctly defined and accessible,

My error is a syntax error on that line.

like image 343
AlexP Avatar asked Sep 27 '12 23:09

AlexP


1 Answers

You don't want to get the method name, you want to get the actual method, eg something like:

function getMethod(string method){
    return variables[method];
}

The call that, thus:

theMethod = getMethod(variableHoldingMethodName);
result = theMethod();

Unfortunately one cannot simply do this:

result = getMethod(variableFoldingMethodName)();

Or:

result = myObject[variableFoldingMethodName]();

As the CF parser doesn't like the double-up of the parentheses or brackets.

The caveat with the method I suggested is that it pulls the method out of the CFC, so it will be running in the context of the calling code, not the CFC instance. Depending on the code in the method, this might or might not matter.

Another alternative is to inject a statically-named method INTO the object, eg:

dynamicName = "foo"; // for example
myObject.staticName = myObject[dynamicName];
result = myObject.staticName(); // is actually calling foo();
like image 120
Adam Cameron Avatar answered Oct 23 '22 04:10

Adam Cameron