Executing A Recursive CFThread In ColdFusion 9

Posted February 23, 2010 at 9:50 AM by Ben Nadel

Tags: ColdFusion

Earlier this morning, I explored the fact that ColdFusion CFThread tag bodies are executed as function calls. While I didn't see any practical value to knowing this (yet), it did present a few more opportunities for exploration. Any time there is a function, there is an opportunity to play with one of computer science's greatest achievements: recursion. Given that the underlying mechanism of the CFThread tag is a function, I wondered if I could use it to execute CFThread recursively.

Before I show you this code, please note that this exploration is completely for fun! I am in no way advocating that using this approach has any benefits over using a standard ColdFusion function; in fact, this approach is markedly more complicated. That said, as a basic recursive experiment, I tried to have CFThread compute a mathematical factorial:

  • <!--- Launch a thread that will act as factorial calculation. --->
  • <cfthread
  • name="factorial"
  • value="10">
  •  
  • <!---
  • NOTE: In the following code, we can keep referring to
  • attributes since it is always being passed as a method
  • argument.
  • --->
  •  
  • <!---
  • Check to see if the value is 10. If so, then we want to
  • store the result into the thread. Only
  • --->
  • <cfif (attributes.value eq 10)>
  •  
  • <!--- Get the next factorial result. --->
  • <cfinvoke
  • returnvariable="result"
  • method="#getFunctionCalledName()#"
  • attributes="#{ value = (attributes.value - 1) }#"
  • />
  •  
  • <!---
  • Multiple the previous factorial with the current value
  • and store it into the Thread object.
  • --->
  • <cfset thread.result = (attributes.value * result) />
  •  
  • <!--- Check to see if the value is greater than one. --->
  • <cfelseif (attributes.value gt 1)>
  •  
  • <!--- Get the next factorial. --->
  • <cfinvoke
  • returnvariable="result"
  • method="#getFunctionCalledName()#"
  • attributes="#{ value = (attributes.value - 1) }#"
  • />
  •  
  • <!---
  • Return the current value multiplied by the next
  • recursive value.
  • --->
  • <cfreturn (attributes.value * result) />
  •  
  • <cfelse>
  •  
  • <!---
  • If we are at one, simply return the value - there is
  • no further recursion that we can apply.
  • --->
  • <cfreturn 1 />
  •  
  • </cfif>
  •  
  • </cfthread>
  •  
  •  
  • <!---
  • Join the thread to make sure that we can get at the
  • thread variables.
  • --->
  • <cfthread action="join" />
  •  
  •  
  • <!--- Output the results. --->
  • <cfoutput>
  •  
  • 10! = #cfthread.factorial.result#
  •  
  • </cfoutput>

As you can see, I am using ColdFusion 9's new function, getFunctionCalledName(), to figure out the name of the function object behind the CFThread tag. Then, using that method name, I am able to invoke the CFThread tag body programmatically with CFInvoke. When I call the method recursively, I have to be careful to set up the appropriate environment, passing in an Attributes struct as an argument each time. When we run the above code, we get the following output:

10! = 3628800

As you can see, the CFThread tag was able to execute recursively, working its way down to one (1) and then back up, multiplying each value to find the given factorial.

Again, there is nothing practical about this - it was just a fun experiment (depending on what your definition of "fun" is).




Reader Comments

Feb 23, 2010 at 10:01 AM // reply »
18 Comments

Great post Ben.

Although there may not be any necessity for such functions (yet, anyway.. you may have stumbled across a life-changing bit of code here ;) ) the fact remains that once again you've taken the time to explore and delve further into the code and it's underlying assets, always asking "what if?" or "why?" compared to the question generally asked which is "how?".

Awesome.


Feb 23, 2010 at 10:07 AM // reply »
11,243 Comments

@Matt,

Thanks my man - I'm glad you appreciate the extra digging I try to do. I think there is something fun knowing that the function is executing recursively in *parallel* to the page. Of course, there's nothing that would stop someone from simply passing in another function reference to the CFThread tag and executing in parallel that way... but, this was fun :)


Feb 24, 2010 at 1:35 PM // reply »
132 Comments

This the coolest use of getFunctionCalledName() I've seen. There was some initial feedback on the prerelease like "what would you ever use that for!" and no one even dreamed of anything like this.


Feb 24, 2010 at 2:10 PM // reply »
11,243 Comments

@Elliott,

Thanks you my good man :)


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
May 23, 2013 at 11:06 AM
Strange Interaction Between DeserializeJson(), ArrayContains(), And Database Values In ColdFusion
@Ben, Are you talking about As Number: YES As String: YES As Java: YES? If so, that's with 3 different ways of referencing the constant 1, not users.id[1]. Query object references(*) are what seem ... read »
May 23, 2013 at 9:55 AM
Strange Interaction Between DeserializeJson(), ArrayContains(), And Database Values In ColdFusion
@Dan, According to the CF Admin, I'm running Java "1.6.0_45". As far as the DB column, in the database it's an INT. I'll see if I can dig into what CF sees it as. @WebManWalking, But h ... read »
May 23, 2013 at 9:49 AM
Strange Interaction Between DeserializeJson(), ArrayContains(), And Database Values In ColdFusion
@Ben, I think the problem is that we're used to loose typing in ColdFusion, like JavaScript. If a value is a number but it's needed in an expression to be a string, noooo problem. I've encountered ... read »
May 23, 2013 at 9:47 AM
ColdFusion QueryAppend( qOne, qTwo )
You rock! Thank you, thank you, thank you!!! ... read »
May 23, 2013 at 5:19 AM
Ask Ben: Print Part Of A Web Page With jQuery
How to print also the background color of table cells and table lines ... read »
May 23, 2013 at 3:55 AM
Javascript Array Methods: Unshift(), Shift(), Push(), And Pop()
very interesting and helpful too. ... read »
May 22, 2013 at 5:35 PM
Script Tags, jQuery, And Html(), Text() And Contents()
This is still an issue 2 years later. jQuery is supposed to remediate these cross browser issues, no? I have been unable to find any statement from the jQuery team calling this behavior "by de ... read »
May 22, 2013 at 12:44 PM
Ask Ben: Query Loop Inside CFScript Tags
In cf10, if you call a function that has: local.result = {}; local.result.msg = ""; local.svc = new query(); local.svc.setSQL("SELECT * FROM..."); local.obj = local.svc.exe ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools