Executing A Recursive CFThread In ColdFusion 9

Posted February 23, 2010 at 9:50 AM

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 »
8,824 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 »
8,824 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:

Formatting: <strong>bold</strong> <em>italic<em>







  • Help Wanted - Find Your Next ColdFusion Job
Recent Blog Comments
Sep 5, 2010 at 6:35 PM
Muscle: Confessions Of An Unlikely Bodybuilder By Samuel Wilson Fussell
@Ben, Certainly will/ Thanks Sean ... read »
Sep 5, 2010 at 6:26 PM
Experimenting With HTML5's Cache Manifest For Offline Web Applications
@Ben, Yes, I am using Firefox Portable. At the moment I run a portable web server on the stick which holds and serves all files. The good thing is, I can run PHP pages on the stick to do requests to ... read »
Sep 5, 2010 at 5:05 PM
Ask Ben: Finding XML Nodes That Have Children With The Given Case-Insensitive Phrase
@Murray, Good point on the clarification. ... read »
Sep 5, 2010 at 4:40 PM
Ask Ben: Finding XML Nodes That Have Children With The Given Case-Insensitive Phrase
Actually, for the benefit of anyone reading this who might want to make sense of the question post, the first <td> had a bold tag surrounding the numeral 6. So, the problem was that the xmlSear ... read »
Sep 5, 2010 at 4:35 PM
Ask Ben: Finding XML Nodes That Have Children With The Given Case-Insensitive Phrase
Thanks Ben. Much appreciated. ... read »
Sep 5, 2010 at 3:39 PM
jQuery forEach() Experiment For Branch-Wise Implicit Iteration
@Sereal, Wow - what a super flattering thing to say :) I really appreciate that! I'm so happy that this stuff is providing value for you. ... read »
Sep 5, 2010 at 3:32 PM
Escaping Form Values - Understanding The ColdFusion htmlEditFormat() Life Cycle
@Ben, There's also a performance benefit to escaping on database insert since it only needs to be done ONCE - when inserting. When you escape on output, this needs to be done every time you output ... read »
Sep 5, 2010 at 3:30 PM
XML Building / Parsing / Traversing Speed In ColdFusion
@Don, I've played around with a couple of approaches to dealing with XML documents that are too large to be parsed in one shot. In one, approach, I use Regular Expression to try and parse one tag a ... read »