vote up 0 vote down star

Could anyone find a way of improving this code a bit? I want to read in an INI file in one felt swoop and create a corresponding data structure.

<cfset INIfile = expandPath(".") & "\jobs.ini">
<cfset profile = GetProfileSections(INIfile)>
<cfloop collection="#profile#" item="section">
	<cfloop list="#profile[section]#" index="entry">
		<cfset app.workflow[section][entry]=GetProfileString(INIfile, section, entry) >
	</cfloop>
</cfloop>
flag
So you don't show the functions for parsing the ini files. So no way to know how to improve the code. I guess I could point out that as of CF8 you can loop through a file line by line in cfloop using the file attribute. – Terry Ryan Oct 27 at 21:20
2  
Terry, those are built-in CF functions! – Peter Boughton Oct 28 at 0:15

2 Answers

vote up 3 vote down check

I don't believe you can improve this using CFML power. Do you need to parse huge ini files? If not, why would you like to improve your code, it looks pretty straightforward for me.

Other possible (though common for CF) solution is to try pure Java. See this SO thread for pure Java examples.

P.S. BTW, in case of special performance needs you should consider using another storage for configuration. Simple SELECT query to the old good MySQL can be much faster for large datasets.

link|flag
I agree that you cant really improve it in CF. I would also question if a ini file is even needed. Does anyone else use the file? (either read or write). Is the app sent to customers or is it internal? If developers are the only people who ever set information in it, then whats wrong with a CF file with a bunch of CF sets? You might be surprised how doing something like that can speed up performance and make everyone's lives easier. Besides, Its the simplest solution that might possibly work! – ryber Oct 28 at 13:32
No, it's no a big file. I would also entertain an XML approach. I'm still on CF7 unfortunately. – Richard Oct 28 at 16:15
vote up 1 vote down

To expand on ryber's comment, you might consider using this approach instead. I'm assuming you're using CF8.01 or later, as I make use of nested implicit structure notation. This could easily be converted to CF7/6/etc syntax, but wouldn't be as clean or concise.

Again, this only applies if your ini file isn't used by any other applications or people, and doesn't need to be in ini format.

settings.cfm:

<cfset variables.settings = {
    fooSection = {
    	fooKey = 'fooVal',
    	fooNumber = 2,
    },
    fooSection2 = {
    	//...
    },
    fooSection3 = {
    	//...
    }
} />

Application.cfc: (only the onApplicationStart method)

<cffunction name="onApplicationStart">
    <cfinclude template="settings.cfm" />
    <cfset application.workflow = variables.settings />
    <cfreturn true />
</cffunction>

In addition, I've use the CFEncode application to encrypt the contents of settings.cfm. It won't protect you from someone who gets a copy of the file and wants to see what its encrypted contents are (the encryption isn't that strong, and there are ways to see the contents without decrypting it), but if you just want to keep some nosy people out, it adds a little extra barrier-to-entry that might deter some people.


Update: Since you just left a comment that says you are on CF7, here's native CF7 syntax:

settings.cfm:

<cfset variables.settings = StructNew() />
<cfset variables.settings.fooSection = StructNew() />
<cfset variables.settings.fooSection.fooKey = 'fooVal' />
<cfset variables.settings.fooSection.fooNumber = 2 />
<!--- ... --->

Alternatively, you could use JSONUtil and CFSaveContent to continue to use a JSON-looking approach (similar to my original syntax), but on CF7:

<cfsavecontent variable="variables.jsonSettings">
{
    fooSection = {
    	fooKey = 'fooVal',
    	fooNumber = 2,
    },
    fooSection2 = {
    	//...
    },
    fooSection3 = {
    	//...
    }
};
</cfsavecontent>
<cfset variables.settings = jsonUtil.deserializeFromJSON(variables.jsonSettings) />
link|flag
Or, just stick to a simple ini file, where there's no need to worry about braces, commas and quotes! – Peter Boughton Oct 28 at 18:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.