CFLib.org – Common Function Library Project

WDDXFileRead(file)

Last updated October 15, 2002

author

Nathan Dintenfass

Version: 2 | Requires: CF6 | Library: CFMLLib

Description:
Ever get annoyed at the couple of lines you are always writing to store and retrieve WDDX in flat files? Then this is the UDF for you. Also see it's sister UDF WDDXFileWrite()

Return Values:
Returns deserialized data.

Example:

<cfscript>
    hello = structNew();
    hello.foo.bar = 2;
    hello.thing = "a string";
//    wddxfileWrite(expandPath("test.wddx"),hello);
//    stuff = WDDXFileRead(expandPath("test.wddx"));
</cfscript>
<!---
<cfdump var="#stuff#">
--->

Parameters:

Name Description Required
file File to read and deserialize. Yes

Full UDF Source:

<!---
 Reads a file containing WDDX and returns the CF variable.
 Updated for CFMX var scope syntax.
 
 @param file      File to read and deserialize. (Required)
 @return Returns deserialized data. 
 @author Nathan Dintenfass (nathan@changemedia.com) 
 @version 2, October 15, 2002 
--->
<cffunction name="WDDXFileRead" output="no">
    <cfargument name="file" required="yes">
    
    <cfset var tempPacket = "">
    <cfset var tempVar = "">
    
    <!--- make sure the file exists, otherwise, throw an error --->
    <cfif NOT fileExists(file)>
        <cfthrow message="WDDXFileRead() error: File Does Not Exist" detail="The file #file# called in WDDXFileRead() does not exist">
    </cfif>
    <!--- read the file --->
    <cffile action="read" file="#file#" variable="tempPacket">
    <!--- make sure it is a valid WDDX Packet --->
    <cfif NOT isWDDX(tempPacket)>
        <cfthrow message="WDDXFileRead() error: Bad Packet" detail="The file #file# called in WDDXFileRead() does not contain a valid WDDX packet">        
    </cfif>
    <!--- deserialize --->
    <cfwddx action="wddx2cfml" input="#tempPacket#" output="tempVar">
    <cfreturn tempVar>    
</cffunction>

Search CFLib.org


Latest Additions

Raymond Camden added
QueryDeleteRows
November 04, 2017

Leigh added
nullPad
May 11, 2016

Raymond Camden added
stripHTML
May 10, 2016

Kevin Cotton added
date2ExcelDate
May 05, 2016

Raymond Camden added
CapFirst
April 25, 2016

Created by Raymond Camden / Design by Justin Johnson