One solution would be to set a local flag by evaluating len(trim(myvar)), but I thought calling a cfc made more sense, and it is still pretty straightforward.
Feel free to use this code in your non-CF9 applications.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfcomponent name="utilities" output="false" hint="I provide various utility functionality"> | |
<cffunction name="init" access="public" returntype="any" output="false" hint="Initializes the Service"> | |
<cfreturn this /> | |
</cffunction> | |
<cffunction name="isNullFormat" access="remote" returntype="any" output="false" hint="I return whether something is null"> | |
<cfargument name="input" type="any" required="true" /> | |
<cfset var inputdatatype = ""> | |
<cftry> | |
<cfset inputdatatype = arguments.input.GetClass().GetName() /> | |
<cfif inputdatatype IS "java.lang.String" AND NOT len(trim(arguments.input))> | |
<cfreturn true /> | |
<cfelseif inputdatatype IS "java.lang.String" AND len(trim(arguments.input))> | |
<cfreturn false /> | |
<cfelseif inputdatatype IS "coldfusion.runtime.Struct" AND StructIsEmpty(arguments.input)> | |
<cfreturn true /> | |
<cfelseif inputdatatype IS "coldfusion.runtime.Struct" AND NOT StructIsEmpty(arguments.input)> | |
<cfreturn false /> | |
<cfelseif inputdatatype IS "coldfusion.runtime.Array" AND NOT ArrayLen(arguments.input)> | |
<cfreturn true /> | |
<cfelseif inputdatatype IS "coldfusion.runtime.Array" AND ArrayLen(arguments.input)> | |
<cfreturn false /> | |
<cfelseif inputdatatype IS "coldfusion.sql.QueryTable" AND NOT arguments.input.recordcount> | |
<cfreturn true /> | |
<cfelseif inputdatatype IS "coldfusion.sql.QueryTable" AND arguments.input.recordcount> | |
<cfreturn false /> | |
<cfelse> | |
<cfthrow type="customerror" message="Unknown data type." detail="Input: #arguments.input#. Data type received: #inputdatatype#"> | |
</cfif> | |
<cfcatch type="any"> | |
<!--- fail ---> | |
</cfcatch> | |
</cftry> | |
</cffunction> | |
</cfcomponent> |
Maybe you can do ArrayIsDefined(arguments, 1) instead of try/catch
ReplyDeleteI still prefer to use try/catch in case the conditionals or anything else fails; that way the user doesn't get a big nasty error message. Plus, I like to add error logging/emailing in the catch for notification.
DeleteIn such a trivial function like this, the try/catch is probably unnecessary.
I've since found a decent way to handle multiple structures. I'll update the post. Stay tuned!