How Do I Get A Pointer To A Built In ColdFusion Method?

Posted March 1, 2007 at 2:18 PM

Tags: ColdFusion

Does anyone know how to get a pointer to a built in ColdFusion method? I want to do something along the lines of:

 Launch code in new window » Download code as text file »

  • <!--- Check for regular expression search. --->
  • <cfif ARGUMENTS.IsRegex>
  •  
  • <!--- Get regex find. --->
  • <cfset Method = REFindNoCase />
  •  
  • <cfelse>
  •  
  • <!--- Get standard find. --->
  • <cfset Method = FindNoCase />
  •  
  • </cfif>
  •  
  • <!--- Use method pointer. --->
  • <cfif Method( "foo", "I like foo bar" )>
  • <!--- Code here. --->
  • </cfif>

The problem with this is that it throws an undefined variable error (FindNoCase). Now, I know the idea is sound as I have done it with user defined methods. But those methods are all scopes in some way and are very easy to reference. Built in ColdFusion methods are proving quite hard to find!

I tried all the different scopes and notations (array and structure):

 Launch code in new window » Download code as text file »

  • <cftry>
  • <cfdump var="#FindNoCase#" />
  • <cfcatch>
  • "FindNoCase" failed.<br />
  • </cfcatch>
  • </cftry>
  •  
  • <cftry>
  • <cfdump var="#VARIABLES.FindNoCase#" />
  • <cfcatch>
  • "VARIABLES.FindNoCase" failed.<br />
  • </cfcatch>
  • </cftry>
  •  
  • <cftry>
  • <cfdump var="#VARIABLES[ 'FindNoCase' ]#" />
  • <cfcatch>
  • "VARIABLES[ 'FindNoCase' ]" failed.<br />
  • </cfcatch>
  • </cftry>
  •  
  • <cftry>
  • <cfdump var="#APPLICATION.FindNoCase#" />
  • <cfcatch>
  • "APPLICATION.FindNoCase" failed.<br />
  • </cfcatch>
  • </cftry>
  •  
  • <cftry>
  • <cfdump var="#APPLICATION[ 'FindNoCase' ]#" />
  • <cfcatch>
  • "APPLICATION[ 'FindNoCase' ]" failed.<br />
  • </cfcatch>
  • </cftry>
  •  
  • <cftry>
  • <cfdump var="#REQUEST.FindNoCase#" />
  • <cfcatch>
  • "REQUEST.FindNoCase" failed.<br />
  • </cfcatch>
  • </cftry>
  •  
  • <cftry>
  • <cfdump var="#REQUEST[ 'FindNoCase' ]#" />
  • <cfcatch>
  • "REQUEST[ 'FindNoCase' ]" failed.<br />
  • </cfcatch>
  • </cftry>

This gives me the following output:

"FindNoCase" failed.
"VARIABLES.FindNoCase" failed.
"VARIABLES[ 'FindNoCase' ]" failed.
"APPLICATION.FindNoCase" failed.
"APPLICATION[ 'FindNoCase' ]" failed.
"REQUEST.FindNoCase" failed.
"REQUEST[ 'FindNoCase' ]" failed.

Anyone know where I can find these method pointers?

Download Code Snippet ZIP File

Comments (25)  |  Post Comment  |  Ask Ben  |  Permalink  |  Other Searches  |  Print Page




Keep your Web site content fresh and your overhead costs low with Savvy Content Manager

Reader Comments

You might just wrap them, if nothing else comes up.

Posted by Sam on Mar 1, 2007 at 2:38 PM


Try this.

if StructKeyExists( component, methodname )

Posted by Dan Wilson on Mar 1, 2007 at 2:56 PM


@Sam,

Yeah, I could work something out. For my directory search UDF, I ended up just putting both test cases into a single CFIF conditional.

@Dan,

The problem is that built in methods are not part of any component that I can check.

Posted by Ben Nadel on Mar 1, 2007 at 3:01 PM


How about an evaluate? This works:

<cfset Method = "FindNoCase" />
<cfset x = evaluate("#Method#('foo', 'I like foo bar')") />
<cfoutput>#x#</cfoutput>

Posted by rich on Mar 1, 2007 at 4:36 PM


My java knowledge is almost non-existent. This may not help at all, but I figure it never hurts to share information.

I found a post about running your own Java libraries with coldfusion. In one of the comments, Mark mentions that his code supports access to built in classes and libraries, although I didn't see an example of that.

http://www.compoundtheory.com/?action=displayPost&ID=114

I played around with some of the code on the page. The code below displays the method names of something. Number 269 is FindNoCase with two parameters. Number 270 is FindNoCase with three parameters.

<!--- Do something? --->
<cfset cfClassLoader = getClass()>

<!--- Get the methods --->
<cfset var_getMethods = cfClassLoader.getMethods()>

<!--- Loop through the methods and display their names --->
<cfloop from="1" to="#arrayLen(var_getMethods)#" index="currentMethodIndex">
<cfoutput>
#currentMethodIndex# - #var_getMethods[currentMethodIndex].getName()#<br />
</cfoutput>
</cfloop>

I tried playing around with CFDUMP to equate a variable to a method but didn't have much success. Again, my Java knowledge is very limited.

Posted by Gabriel on Mar 1, 2007 at 4:47 PM


Although I think this is interesting I think maybe WHY!? is even more interesting.

I can't think of a case where this would be particularly useful? Maybe you could give a fuller example of what you're trying to do?

D

Posted by David Stockton on Mar 2, 2007 at 7:33 AM


@David,

Look at the example I gave. It checks a flag for regular expression usage and then uses either a REFind() or Find() method. This is actually the situation where this came up. REFind() and Find() have the same arguments, it should be very easy to swap them out.

Now, imagine if that was part of some HUGE CFIF statement. I wouldn't want to duplicate the logic depending on a flag.

Plus, this is mad elegant and sexy.

Posted by Ben Nadel on Mar 2, 2007 at 7:39 AM


Hi Ben,

Yes I get what you're trying to do but probably just disgaree on it's elegance factor.... (definitely on the mad factor tho! :p)

This situation sounds like it would fit the proxy(?) pattern nicely:

cffunction myFind(regEx, str, sub, ....)
cfif regEx
cfreturn refind()....
cfelse
cfreturn find()...
/cfif
/cffunction

Wouldn't that be a more elegant solution?

D

Posted by David Stockton on Mar 2, 2007 at 7:48 AM


@Dave,

I guess it's just a matter of opinion. Your solution, which is good, requires another UDF to be defined. Nothing wrong with that. But I just feel for something that should be really simple, having a proxy method ties the given UDF to more parts of an application that it needs to be.

But, in the end, your suggestion might just be the best idea.

Posted by Ben Nadel on Mar 2, 2007 at 7:53 AM


David,
In that situation, I don't think there is much difference between

if (condition)
return something
else
return something else

In fact, a lot of people are big fans of having a single point of return in a function, as it can make it easier to follow knowing there is only one place the function returns control to its calling code.

From that view, it would certainly be worse that doing something like

if(condition)
result=something
else
result=something else

return result

Posted by Sam on Mar 2, 2007 at 7:59 AM


With all that said though, I think I'd simply use the REFind if there was a chance of using regular expressions. After all, it's still a regular expression even if you don't use any special characters.

Posted by Sam on Mar 2, 2007 at 8:00 AM


Ben,

I'm interested to know what other languges you've done this in?

D

Posted by David Stockton on Mar 2, 2007 at 8:00 AM


Sam

I agree on the single return point. I was kinda just illustrating the point of abstracting the functionality into another function.

I agree on the just use reFind() although I imagine Ben was aware of that too. I think the question was more about can you do it the pointer way and/or is there a more elegant way (ans: probably not).

Without doing any tests I would also think that always using reFind() is faster than a function because it'd be another class to deal with.

D

Posted by David Stockton on Mar 2, 2007 at 9:28 AM


The problem with always using REFind() is that the string you are searching for might have "reg-ex" specific characters, so unless you want to escape all characters in the reg-ex substring, then no go.

Posted by Ben Nadel on Mar 2, 2007 at 11:07 AM


Ben,

Although I am not sure but this method could help you locating builtin functions

getFunctionList().

Thanks

Posted by Qasim Rasheed on Mar 7, 2007 at 5:42 PM


@Qasim,

Thanks for the suggestion. I talked to Michael Dinowitz yesterday at CFUNITED Express NYC and he said that this cannot be done (getting method pointers) for built in methods because the methods (as opposed to UDFs) are just wrappers for the Java methods. They are not really first class objects like UDFs.

Posted by Ben Nadel on Mar 9, 2007 at 4:22 PM


Sorry not to be in English.
But my two cents.
http://pcsilva.blogspot.com/2007/03/onde-est-funo-mais-uma-que-compartilho.html

Posted by Pedro Claudio on Mar 18, 2007 at 4:43 PM


@Pedro,

That looks very interesting. I have never invoked a method indirectly like that. I will play around.

Posted by Ben Nadel on Mar 19, 2007 at 7:30 AM


Ben,
I tried to work with the functions undocumented _invoke and _invokeUDF, but did not discover which the first parameter.

<cfoutput>#_invoke()#</cfoutput>
<cfoutput>#_invokeUDF()#</cfoutput>

Regards

Posted by Pedro Claudio on Mar 20, 2007 at 6:10 PM


Hmm, I have never seen those methods, hidden or otherwise. I just tried to do a GetMetaData() on them and got undefined errors.

Posted by Ben Nadel on Mar 20, 2007 at 6:20 PM


See Ben,
<cfdump var="#getpagecontext().getpage()#">

It looks for the methods initiated for _, you will see some (undocumented)

_invoke(java.lang.Object, java.lang.String, java.lang.Object[]):java.lang.Object

_invoke(java.lang.Object, java.lang.String, java.util.Map):java.lang.Object

_invokeUDF(java.lang.Object, java.lang.String, coldfusion.runtime.CFPage, java.util.Map):java.lang.Object

_invokeUDF(java.lang.Object, java.lang.String, coldfusion.runtime.CFPage, java.lang.Object[]):java.lang.Object

Posted by Pedro Claudio on Mar 20, 2007 at 6:40 PM


Oh, I see. Yeah, those are some tricky methods. I think that is part of what the JavaProxy thing does - it figures out how to invoke those between CF and Java. I have heard that no one can figure out how to call the Invoke methods directly.

Posted by Ben Nadel on Mar 20, 2007 at 8:04 PM


I believe that they can yes, the classes are different.
coldfusion.runtime.CfJspPage._invoke(...)
coldfusion.runtime.TemplateProxyFactory.resolveName()
http://www.mxstudio.com.br/views.tutorial.php?act=view&cid=7&aid=699

Posted by Pedro Claudio on Mar 20, 2007 at 8:25 PM


It had reason how much to the direct access.

it does not work.
<cfscript>
pageContext=GetPageContext();
Object=pageContext.getClass().forName('coldfusion.runtime.TemplateProxyFactory').newInstance().resolveName('POIUtility', pageContext);

arg = ArrayNew(1);
Invoke = _invoke(Object,JavaCast('string','GetNewSheetStruct'),arg);
</cfscript>

it works

<cfscript>
pageContext=GetPageContext();
Object=pageContext.getClass().forName('coldfusion.runtime.TemplateProxyFactory').newInstance().resolveName('POIUtility', pageContext);

page = pageContext.getPage();
arg = ArrayNew(1);
Invoke = page._invoke(Object,JavaCast('string','GetNewSheetStruct'),arg);
</cfscript>

Posted by Pedro Claudio on Mar 22, 2007 at 1:26 AM


Hmmm, very interesting. I will have to study this.

Posted by Ben Nadel on Mar 22, 2007 at 7:25 AM


Post Comment  |  Ask Ben


Home   |   Web Log   |   ColdFusion   |   Projects   |   Resume   |   Job Form   |   Search   |   Contact
Epicenter Consulting - Custom Software Solutions for Business Evolution HostMySite.com - The Leader In ColdFusion Hosting