Click here to Skip to main content
Licence CPOL
First Posted 5 Nov 2008
Views 27,341
Downloads 318
Bookmarked 49 times

API-Less INI File Wrapper

By | 5 Nov 2008 | Article
Read, Write, Save INI files without using Windows APIs.

Introduction

Using Windows APIs to read and write (WritePrivateProfileString, GetPrivateProfileString ) INI files is easy, but if you have to get or write data on your app many times, it could cause performance issues because the functions load the INI files on each call.

So, this class will help you managing ini data on memory.

Background

This class does not use the classical INI get or put methods. It loads an INI file on initialize, uses Regular Expressions to parse data, and uses a dictionary for managing section names and data.

Regular Expressions:

static readonly Regex regRemoveEmptyLines =
    new Regex
    (
        @"(\s*;[\d\D]*?\r?\n)+|\r?\n(\s*\r?\n)*", 
        RegexOptions.Multiline | RegexOptions.Compiled
    );

static readonly Regex regParseIniData =
    new Regex
    (
        @"
        (?<IsSection>
            ^\s*\[(?<SectionName>[^\]]+)?\]\s*$
        )
        |
        (?<IsKeyValue>
            ^\s*(?<Key>[^(\s*\=\s*)]+)?\s*\=\s*(?<Value>[\d\D]*)$
        )",
        RegexOptions.Compiled | 
        RegexOptions.IgnoreCase | 
        RegexOptions.IgnorePatternWhitespace
    );

Dictionary type:

Dictionary<string, NameValueCollection> data = 
    new Dictionary<string,NameValueCollection>();

Actually, I did not search much to see if there is something like this already. I needed it and I wrote it. And, I thought that someone might find this useful.

Using the code

Initializing:

//Creates an empty ini document, you can add sections,
//keys and values dynamically. And you can save it anytime.
TA_INIDocument ini = new TA_INIDocument();

//Initializes an ini file, you can change its data and save
//it anytime
TA_INIDocument ini = new TA_INIDocument("C:\\sample.ini");

//Initializes an ini file with encoding. Sometimes ini files
//could have unicode data
TA_INIDocument ini = 
    new TA_INIDocument("C:\\sample.ini", Encoding.Unicode);

//Initializes ini data from stream
Stream iniStream;
TA_INIDocument ini = new TA_INIDocument(iniStream);

//Initializes ini data from stream with encoding
Stream iniStream;
TA_INIDocument ini =
    new TA_INIDocument(iniStream, Encoding.Unicode);

Getting and setting values:

TA_INIDocument iniDoc;

//Getting key_value collection of defined section
NameValueCollection keysAndValues = iniDoc["sectionName"];
//Getting string value of defined key and section
string value = iniDoc["sectionName"]["keyName"];
string value = iniDoc["sectionName", "keyName"];
//Setting string value of defined key
iniDoc["sectionName"]["keyName"] = "newValue";
iniDoc["sectionName", "keyName"] = "newValue";
//Getting and Setting object value of defined key and section
object value = iniDoc["sectionName", "keyName", typeof(Int32)];
iniDoc["sectionName", "keyName", typeof(Rectangle)] =
    new Rectangle(0, 0, 200, 300);
//Getting and setting specific type values excepts string
//Primitive Types (included Decimal and DateTime)
//TA_INIDocument.Get{PrimitiveTypeName}(sectionName, keyName, [defaultValue])

bool bValue = 
    iniDoc.GetBoolean("sectionName", "keyName");

bool bValue = 
    iniDoc.GetBoolean("sectionName", "keyName", true);

iniDoc.SetValue("sectionName", "keyName", bValue);

DateTime dtValue = 
    iniDoc.GetDateTime("sectionName", "keyName");

DateTime dtValue = 
    iniDoc.GetDateTime("sectionName", "keyName", DateTime.MaxValue);

iniDoc.SetValue("sectionName", "keyName", dtValue);
//Other types (required that the type has TypeConverterAttribute)
//TA_INIDocument.GetValue<T>(sectionName, keyName, [T:defaultValue])

Rectangle rtValue =
    iniDoc.GetValue<Rectangle>("sectionName", "keyName");

Rectangle rtValue =
    iniDoc.GetValue<Rectangle>("sectionName", "keyName", Rectangle.Empty);

iniDoc.SetValue("sectionName", "keyName", rtValue);

Helper functions:

//Helper Properties and Functions
TA_INIDocument iniDoc;
//Getting All Section Names
string[] sectionNames = iniDoc.SectionNames;
//Getting All Key Names of a Section
string[] keyNames = iniDoc.KeyNames("sectionName");
//Getting All Values of a Section
string[] allValues = iniDoc.SectionValues("sectionName");
//Check if section name exits
if (iniDoc.HasSection("sectionName"))
    Application.DoEvents();
//Check if key name exits of specified section
if (iniDoc.HasKey("sectionName", "keyName"))
    Application.DoEvents();

Saving all:

//Saving all data
TA_INIDocument iniDoc;
Stream iniStream;

iniDoc.Save(iniStream);
//or
iniDoc.Save(iniStream, Encoding.Unicode);
//or
iniDoc.Save("C:\\sample.ini");
//or
iniDoc.Save("C:\\sample.ini", Encoding.Unicode);

License

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

About the Author

Tolgahan ALBAYRAK

Software Developer (Senior)

Turkey Turkey

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
BugCan not load a key that its value contain '=' PinmemberBehzad Ebrahimi5:22 17 Apr '12  
GeneralMinor changes to get it work PinmemberMember 466324422:13 1 Jun '09  
GeneralSection Name Casing Bug PinmemberPaul E. Bible7:39 1 Dec '08  
There is a bug in your class. Given the following INI file:
 
[Limits]
Min=1
Max=100
 
The following code will always return the default value:
 
int minValue = ini.GetValue("Limits", "Min", 0);
 
The value of minValue will always be 0 because you're loading the INI file using the ToLowerInvariant, but you're not taking the ToLowerInvariant when comparing the section names in GetValue(). The GetValue() is looking for "limits", not "Limits".
GeneralRe: Section Name Casing Bug PinmemberTolgahan ALBAYRAK10:56 1 Dec '08  
GeneralSuperb !!! Pinmemberashu fouzdar19:37 12 Nov '08  
GeneralVery Nice PinmemberPaul Conrad11:11 12 Nov '08  
GeneralRe: Very Nice PinmemberTolgahan ALBAYRAK22:44 12 Nov '08  
Generalcong.!! PinmemberMember 413265012:04 10 Nov '08  
GeneralRe: cong.!! PinmemberTolgahan ALBAYRAK12:21 10 Nov '08  
GeneralTerminal Services and Performance PinmemberMember 214447310:37 10 Nov '08  
GeneralRe: Terminal Services and Performance PinmemberTolgahan ALBAYRAK11:18 10 Nov '08  
QuestionPurpose? PinmemberDenis Vuyka8:43 10 Nov '08  
AnswerRe: Purpose? PinmemberTolgahan ALBAYRAK10:22 10 Nov '08  
GeneralRe: Purpose? PinmemberDenis Vuyka21:06 10 Nov '08  
GeneralRe: Purpose? PinmemberTolgahan ALBAYRAK21:56 10 Nov '08  
Generalregular expressions PinmemberE. del Ayre20:31 9 Nov '08  
GeneralRe: regular expressions PinmemberTolgahan ALBAYRAK9:31 10 Nov '08  
QuestionPerformance comparison -- benchmark app? Pinmemberbolivar1234:00 7 Nov '08  
AnswerRe: Performance comparison -- benchmark app? PinmemberTolgahan ALBAYRAK6:54 7 Nov '08  
GeneralRe: Performance comparison -- benchmark app? PinmvpJohn Simmons / outlaw programmer1:52 8 Nov '08  
GeneralRe: Performance comparison -- benchmark app? PinmemberTolgahan ALBAYRAK2:47 8 Nov '08  
GeneralRe: Performance comparison -- benchmark app? Pinmember Randor 8:22 14 Nov '08  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120604.1 | Last Updated 5 Nov 2008
Article Copyright 2008 by Tolgahan ALBAYRAK
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid