Spacious Formatting For Inline ColdFusion Variable Evaluation

Posted April 30, 2007 at 7:52 AM

Tags: ColdFusion

I was just reading Elliott Sprehn's test cases for Ray Camden's Friday Puzzler when I came across something very interesting: at the end of his file, he has his hash signs (#) and his variables on different lines for inline evaluation. I have never seen this before, so naturally I had to test it:

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

  • <!--- Set up girl object. --->
  • <cfset objGirl = StructNew() />
  • <cfset objGirl.Hair = "Brunette" />
  • <cfset objGirl.Cuteness = 9.5 />
  • <cfset objGirl.Hotness = 7.5 />
  • <cfset objGirl.Athletic = false />
  • <cfset objGirl.Curvey = true />
  •  
  •  
  • <!---
  • Determine general "hotness". This may or may
  • not correlate to the hotness factor.
  • --->
  • Girl Is Hot:
  •  
  • #
  • ListFind( "Brunette,Black", objGirl.Hair ) AND
  • (
  • (
  • objGirl.Athletic AND
  • (objGirl.Hotness GTE 8.5)
  • )
  • OR
  • (
  • objGirl.Curvey AND
  • objGirl.Cuteness GTE 8
  • )
  • )
  • #

Running that (to make sure we don't get any ColdFusion errors), we get:

Girl Is Hot: YES

Notice how spaced out the code is? I am not saying that I would necessarily do it this way, but I have variable evaluations that are very long and highly unreadable. It is nice to know that I can make things a bit more readable by breaking it up by lines. I am just shocked that the hash signs don't have to be directly next to either a variable or an expression. Very cool.

Remember people, 80% of the cost of a project goes into maintenance... make your code readable!

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Print Page




Reader Comments

Apr 30, 2007 at 8:07 AM // reply »
5 Comments

I don't find that very readable at all. Im sure ever situation is different and you are forced to write code like that sometimes, but if it starts getting unreadable, and especially if you are having to do the same code more than once, why not pull the logic out into a udf? even if its on the same page, it would be a ton more readable than that.


Apr 30, 2007 at 8:12 AM // reply »
6,516 Comments

@Ryan,

I agree, so far as pulling repeated code out into a UDF. Yes, there is a rare case where something like this would need to be done. And, while you might not find this readable, I am sure it is more readable than having that all on one line.


Apr 30, 2007 at 10:03 AM // reply »
15 Comments

You guys have missed the point. What I really want to know is did your Weird Science girl materialise? :-)


Apr 30, 2007 at 10:41 AM // reply »
6,516 Comments

Still working out the bugs in the computer program ;)


May 1, 2007 at 5:03 AM // reply »
4 Comments

Yeah it works, for the same reason you can do that kind of thing inside a <cfset> statement.

ColdFusion defines the cfset statement as:

<cfset ((Identifier|String) =)? expression>

Where the left hand side of the statement is optional, and the right hand side is an expression that evaluates to some value. Whitespace between any of the parts is valid, CF doesn't care if there's new lines or spaces before, or after the Identifier/String, expression or assignment operator.

The pound syntax in CF, which can be defined as #expression#, is just the right hand side of the cfset statement. We know this because CF forbids placing the left hand side of the statement inside pound signs. (ex. #foo = 1# is a compiler error).

Thus we can reason that whatever is allowed on the right hand side of a cfset is also allowed inside pound signs.

This has some curious implications as far as syntax goes because you can do something like:

<cfloop collection="#

server

#" item="name">
<cfoutput>#name#</cfoutput>
</cfloop>

We can also reason that:

"2sheep" EQ "#

1
+
1

#sheep"

And all kinds of other fun syntactic craziness. I'd not say this kind of thing is best practice for most cases, but it illustrates what CF sees when you use expressions.


May 1, 2007 at 7:15 AM // reply »
6,516 Comments

Yeah, certainly not best practices, but nice to know what can be done in a pinch.


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 21, 2009 at 6:47 PM
Hal Helms - Real World Object Oriented Development, Sarasota - Day Five
@charlie griefer, Thank you.. ... read »
Nov 21, 2009 at 5:15 PM
Using ColdFusion Structures To Remove Duplicate List Values
@Jose Galdamez, Oh heh yeah I didn't paste the whole code. I should have defined the vars -- my bad. It's fixed thou. Thanks. ... read »
Nov 21, 2009 at 4:49 PM
Styling The ColdFusion 8 WriteToBrowser CFImage Output
Great work yet again Ben! Whilst I didn't use this whole code, I copied some of your regex code for a similar problem with the lack of an alt attribute and unescaped ampersands in CFIMAGE for Railo 3 ... read »
Nov 21, 2009 at 1:13 PM
My First ColdFusion Builder Extension - Encrypting And Decrypting CFM / CFC Files
@Ben, Because I am pedantic, I just want to make sure that everyone knows there is absolutely no encryption going on. There is only encoding and obfuscation. The cfencode tool only obfuscates your C ... read »
Nov 21, 2009 at 12:28 PM
Using ColdFusion Structures To Remove Duplicate List Values
@Jody I can't seem to get your code sample to work. If you are still having problems, try this code out and see if it gets you what you wanted. <!--- Comma delimited list with various duplicates ... read »
Nov 21, 2009 at 11:03 AM
Groovy Operator Overloading Does Not Work In The ColdFusion Context
Hi Ben, Thanks for this informative post. Now I am reading ur old posts too ... read »
Nov 21, 2009 at 10:56 AM
HostMySite.com Has The Best ColdFusion Hosting
@Mehul, Yes very nice people, however several downtimes per day which was not acceptable. Hence we had to move out. I am glad you are having good luck with them so far. ... read »