Click here to Skip to main content
15,881,424 members
Articles / Desktop Programming / MFC

A Simple Class to Read and Write INI Files

Rate me:
Please Sign up or sign in to vote.
3.08/5 (16 votes)
30 Nov 2006CPOL1 min read 107.9K   4.8K   43   21
This class is a thin MFC wrapper around Win32 API for reading/writing INI files.

Introduction

This is a further exploration if the INI file class theme started by Xiangxiong Jian (xiaohe521) and Adam (aejw) on The Code Project. The main idea remains pretty much the same: the class is a thin wrapper around Win32 <stockticker>API for reading/writing INI files. However, I was trying to gear my class more towards the <stockticker>MFC.

This class may be useful if your application needs to access both registry and INI file, or multiple INI files. Otherwise, you could use AfxGetApp()->m_pszProfileName and AfxGetApp()->GetProfileXXXX(…).

Class Declaration

C++
class CIniFile : public CObject
{
public:
 CIniFile(LPCTSTR lpIniFileName, INT iMaxStringLength);
 virtual ~CIniFile();
C++
// Attributes
protected:
 CString  m_strFileName; 	// path to the INI file
 const INT m_MAXSTRLEN; 	// max length of a string (excluding the key name)
                        	//that can be written/read to/from the
                        	// INI file by this instance
C++
// Operations
public:
 CString GetIniFileName();
 void SetIniFileName(LPCTSTR lpIniFileName);
 BOOL GetStatus(CFileStatus& rStatus);
C++
void GetString(LPCTSTR lpSection, LPCTSTR lpKey,
       CString& strRet, LPCTSTR strDefault);
UINT GetInt(LPCTSTR lpSection, LPCTSTR lpKey, INT iDefaultValue);
FLOAT GetFloat(LPCTSTR lpSection, LPCTSTR lpKey, FLOAT fDefaultValue);
BOOL GetStruct(LPCTSTR lpSection, LPCTSTR lpKey,
       LPVOID lpRetStruct, UINT iSizeStruct);
void GetSectionNames(CStringList& lstSectionNames);
C++
BOOL WriteSection(LPCTSTR lpSection, LPCTSTR lpData);
BOOL WriteString(LPCTSTR lpSection, LPCTSTR lpKey, LPCTSTR lpString);
BOOL WriteNumber(LPCTSTR lpSection, LPCTSTR lpKey, INT iValue);
BOOL WriteNumber(LPCTSTR lpSection, LPCTSTR lpKey, FLOAT fValue);
BOOL WriteStruct(LPCTSTR lpSection, LPCTSTR lpKey,
       LPVOID lpStruct, UINT iSizeStruct);
C++
 BOOL RemoveKey(LPCTSTR lpSection, LPCTSTR lpKey); 
};

Class Implementation

The implementation is very straightforward. It’s based on the following <stockticker>API functions:

  • GetPrivateProfileSectionNames
  • GetPrivateProfileStruct
  • GetPrivateProfileString
  • GetPrivateProfileInt
  • WritePrivateProfileStruct
  • WritePrivateProfileString
  • WritePrivateProfileSection

Download the source code for details (it's fairly well commented).

Demo Application / Test Bed

Here’s the console application that exercises the methods of the class. The output goes to the afxDump.

C++
// just a dummy structure to write/read to/from the INI file
struct TestStruct : public POINT
{
 char charr[8];
};
C++
// PURPOSE: test bed for the INI file class
void TestIniClass()
{
 CIniFile iniFile(".\\test1.ini", 1024);
 iniFile.SetIniFileName(".\\test2.ini");     		// change the file name 
					 // after the class has bee created
C++
// test the writing to the INI file
iniFile.WriteSection("section1", "key1=test1\x000key2=test2"); // make a section
                           // with 2 new keys
iniFile.WriteSection("section2", "key1=test1");    // make another section
iniFile.WriteString("section1", "key3", "test3");      // create a new key
iniFile.WriteString("section1", "key2", "test4");      // update an existing key
iniFile.WriteString("section1", "key1", NULL);     // remove an existing key
iniFile.RemoveKey("section1", "key3");             // remove another existing key
iniFile.WriteNumber("section1", "key4", 123);      // write an integer
                       // to a new key
iniFile.WriteNumber("section1", "key5", -123);     // write a negative integer
                       // to a new key
iniFile.WriteNumber("section1", "key6", -123.456f);    // write a float to a new key
TestStruct writeTestStruct;
writeTestStruct.x = 6;
writeTestStruct.y = 7;
strcpy(writeTestStruct.charr, "abcdefg");
iniFile.WriteStruct("section1", "key7", &writeTestStruct, sizeof(TestStruct));

// Test the reading from the INI file
CString str;           // string that will receive the output
iniFile.GetString("section1", "key2", str, "default"); TRACE("key2=%s\n", str);
iniFile.GetString("section1", "nokey", str, "default");
   TRACE("nokey=%s\n", str); // non-existent key
iniFile.GetString("section3", "key1", str, "default"); TRACE("nokey=%s\n", str);
TRACE("key4=%d\n", iniFile.GetInt("section1", "key4", 0));
TRACE("key5=%d\n", iniFile.GetInt("section1", "key5", 0));
TRACE("key6=%f\n", iniFile.GetFloat("section1", "key6", 0));
TestStruct readTestStruct;
iniFile.GetStruct("section1", "key7", &readTestStruct, sizeof(TestStruct));
TRACE("key7= %ld %ld %s\n", readTestStruct.x,
   readTestStruct.y, readTestStruct.charr);
C++
 // Test the section list retrieval
 CStringList lstSectionNames;
 iniFile.GetSectionNames(lstSectionNames); 
 TRACE("Sections:\n");
 for (POSITION pos = lstSectionNames.GetHeadPosition(); pos != NULL; )
 {
  TRACE("\t%s\n", lstSectionNames.GetNext(pos));
 }
}

Is there anything that should be fixed, added or removed in this project? Please let me know!

References

[1] A Small Class to Read INI File

[2] INI Class for .NET

[3] CIni

Revision History

Rev 0.1Initial draftNick AlexeevNov 24, 2006
Rev 0.2Added exception handlingNick AlexeevNov 30, 2006

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Systems Engineer Prolitech
United States United States
doing business as Prolitech
Redwood City, CA

blog (mostly technical)
http://prolifictec.com/blog/index.html

Comments and Discussions

 
QuestionErrors in VS2010 Pin
Tarun2221-May-12 21:47
Tarun2221-May-12 21:47 
Sir i used your source code and made a win32 console application,when i debug i am fatal errors how to remove them
GeneralGetPrivateProfileString() in XP and Vista Pin
Roger Gonsalves6-Sep-09 16:51
Roger Gonsalves6-Sep-09 16:51 
Questionhow to Pin
pbturner9-May-07 5:38
pbturner9-May-07 5:38 
GeneralRe: how to [modified] Pin
Nick Alexeev9-May-07 7:15
professionalNick Alexeev9-May-07 7:15 
GeneralRe: how to Pin
pbturner9-May-07 8:03
pbturner9-May-07 8:03 
GeneralThanks Pin
John Patrick Francis21-Dec-06 13:52
John Patrick Francis21-Dec-06 13:52 
GeneralRe: Thanks Pin
Nick Alexeev28-Jan-07 7:36
professionalNick Alexeev28-Jan-07 7:36 
GeneralRe: Thanks Pin
nickhalfasleep24-Apr-07 10:20
nickhalfasleep24-Apr-07 10:20 
QuestionHow many more do we need? Pin
Not Active25-Nov-06 2:54
mentorNot Active25-Nov-06 2:54 
AnswerRe: How many more do we need? Pin
Sceptic Mole26-Nov-06 1:00
Sceptic Mole26-Nov-06 1:00 
AnswerRe: How many more do we need? Pin
CPallini30-Nov-06 21:21
mveCPallini30-Nov-06 21:21 
AnswerRe: How many more do we need? Pin
Abu Mami1-Dec-06 1:27
Abu Mami1-Dec-06 1:27 
AnswerRe: How many more do we need? Pin
Stephen Hewitt5-Dec-06 12:30
Stephen Hewitt5-Dec-06 12:30 
GeneralRe: How many more do we need? Pin
Nick Alexeev5-Dec-06 20:17
professionalNick Alexeev5-Dec-06 20:17 
GeneralA suggestion. Pin
CPallini25-Nov-06 0:57
mveCPallini25-Nov-06 0:57 
GeneralRe: A suggestion. Pin
Nick Alexeev25-Nov-06 16:00
professionalNick Alexeev25-Nov-06 16:00 
GeneralRe: A suggestion. Pin
CPallini25-Nov-06 22:06
mveCPallini25-Nov-06 22:06 
GeneralRe: A suggestion. Pin
Nick Alexeev30-Nov-06 20:05
professionalNick Alexeev30-Nov-06 20:05 
GeneralRe: A suggestion. Pin
CPallini30-Nov-06 21:20
mveCPallini30-Nov-06 21:20 
QuestionOrigional? Pin
Waldermort24-Nov-06 17:29
Waldermort24-Nov-06 17:29 
AnswerRe: Origional? [modified] Pin
Nick Alexeev24-Nov-06 17:43
professionalNick Alexeev24-Nov-06 17:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.