Strange Numericly Named CFInvokeArgument Behavior

Posted March 29, 2007 at 2:33 PM

Tags: ColdFusion

A while back, I was talking about Sean Corfield and closures and I had asked him how to send an unknown number of "nameless" arguments to a function. He had suggested just sending them over named, but using the argument index as their name. I thought this was a brilliant idea and tested. It works great, but in the middle of testing, I had a typeo that caused some whacky results.

Look what happens when I send over index-named arguments where the index-number does not line up with the actual argument index:

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

  • <cffunction
  • name="DumpArgs"
  • access="public"
  • returntype="void"
  • output="true"
  • hint="Does nothing but CFDump out the arguments.">
  •  
  • <!--- Dump out arguments. --->
  • <cfdump
  • var="#ARGUMENTS#"
  • label="ARGUMENTS Scope"
  • />
  •  
  • <!--- Return out. --->
  • <cfreturn />
  • </cffunction>
  •  
  •  
  • <!--- Invoke DumpArgs sending over index-named arguments. --->
  • <cfinvoke method="DumpArgs">
  • <cfinvokeargument name="1" value="Kim" />
  • <cfinvokeargument name="5" value="Jessie" />
  • <cfinvokeargument name="10" value="Samantha" />
  • </cfinvoke>
  •  
  • <cfinvoke method="DumpArgs">
  • <cfinvokeargument name="10" value="Samantha" />
  • <cfinvokeargument name="5" value="Jessie" />
  • <cfinvokeargument name="1" value="Kim" />
  • </cfinvoke>
  •  
  • <cfinvoke method="DumpArgs">
  • <cfinvokeargument name="1" value="Kim" />
  • <cfinvokeargument name="10" value="Samantha" />
  • <cfinvokeargument name="5" value="Jessie" />
  • </cfinvoke>

Notice that in the three different method invokes, we send the arguments in completely different orders. This gives us the following CFDumps:


 
 
 

 
CFInvokeArgument Arguments CFDump 1  
 
 
 

 
 
 

 
CFInvokeArgument Arguments CFDump 2  
 
 
 

 
 
 

 
CFInvokeArgument Arguments CFDump 3  
 
 
 

Notice that the "first" element seems to be ordering somewhat alphabetically based on the relationship of 1 and 10. I can't quite see the pattern. But then the second and third elements are always undefined struct elements. I wonder why it is not trying to order those in some sort of alpha way. Very confusing.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Print Page




Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Mar 29, 2007 at 6:04 PM // reply »
4 Comments

Ah. I was quite befuddled myself, but couldn't quit until I figured it out. The cause for this behaviour is a combination of CF's universal variant datatype, and your use of syntactically invalid variable names.

CF variable names have to start with an alpha, underscore, or currency character. I'm not sure why, but the CF compiler apparently doesn't validate your variable names when you pass them in via cfinvokeargument (probably because it assumes you're calling named arguments that exist and have been validated within the function). So when the the arguments are passed in, it first creates an Arguments Array with three elements, and then tries to populate an Arguments Struct with the elements in the array: "1", "5" and "10", but when it tries to populate that struct, it calls Arguments["1"], but it can't tell the difference between that and Arguments[1], because internally, it's a variant either way. As such, Arguments["1"] returns the first element in the Arguments array, and Arguments["10"] is trying to return the 10th element in the Arguments array, which obviously doesn't exist.

If you change your <cfinvokeargument> tags to pass in "1", "2", and "3" instead, you'll find that all Argument structure values are populated, but in the order you passed them in, not according to the keys you specified.

Likewise, if you pass them in as "one", "ten" and "five" they will act as expected.


Mar 29, 2007 at 6:12 PM // reply »
4 Comments

Another possible solution to your quandry would be to pass them in in array syntax, e.g.

<cfinvoke method="DumpArgs">
<cfinvokeargument name="args[3]" value="Kim" />
<cfinvokeargument name="args[2]" value="Jessie" />
<cfinvokeargument name="args[1]" value="Samantha" />
</cfinvoke>

Don't know if that fits what you're trying to do, but it seems to get around the immediate problem.


Mar 30, 2007 at 4:10 AM // reply »
24 Comments

Hi,

actually you can pass argument names that are not syntactically valid variable names.

<cfinvokeargument name="another girl" value="Kim" />

will work as expected. And it should, too, because all strings can be keys of a struct. myVar['some invalid var name'] is a syntactically correct way to address a struct element (as is myVar['10'], if myVar is a struct and not an array). If numbers don't work with <cfinvokeargument>, I think it should be considered a bug.

However, if you want to pass in arguments without a name and address them in the order they were passed in, you can use the script syntax:

<cfoutput>#DumpArgs('Kim','Jessie','Samantha')#</cfoutput>

Chris


Mar 30, 2007 at 7:07 AM // reply »
6,516 Comments

@Chris,

The only problem with calling DumpArgs() in that fashion is that I needed to have logic in which arguments were sent:

DumpArgs(
if (true){ 'Samantha', }
if (false){ 'Kim', }
if (true){ 'Nicki', }
);

Now, obviously, that is NOT working code. I was just showing you what I had in my mind. This type of logic can be accomplished using the CFInvoke and CFInovkeArgument tags as you can have CFIF statements in them.... I just didn't know how to label the "name" attribute of the argument tag. The index-based naming will take care of that now.... I just need an elegant way to increment the index number as a I use it.


Mar 30, 2007 at 7:54 AM // reply »
24 Comments

@Ben,

Ahhh... I see.

Couldn't you simply use an array, conditionally append element, and then pass that array to the function?

Or, if you need single arguments within your function, could you use a struct with numeric keys and pass that struct in as argumentcollection?

Chris


Mar 30, 2007 at 8:00 AM // reply »
6,516 Comments

@Chris,

I really like the Struct with numeric keys and then an argumentCollection... Very slick idea, you old dog! I will give that a shot.


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »