Skip to content

pic-o/anotherIniParser

Repository files navigation

anotherIniParser

The label says it all, "another" (there are many many out there) simple ini parser for config files. This was made to be cross platform / license compatible

Original blog post @ http://blog.pic-o.com/2013/05/another-ini-parser/

Usage

Ensure the compiller source libary is setup to include the source codes. And....

#include "iniParser.hpp"

And that you compile, and include the needed object files at the same time (iniParser, charTools) (note that BSD 3-Clause NOT a viral GPL/LGPL, it mainly require acknowledgment. So you can include this in your work directly as source code)

Personal Request

Drop me an email if you do use this / encounter problems =)

Example?

//The following is a quick rough guide on how to start things working. For more details see the various individual function notes

iniParser configParser;
configParser.parseIniFile( "./configFile.ini", "default" ); //fileLocks = true, lineBuffer = 256
...
//Getting a value in section "default" (if no section stated in config file, this is assumed, as indicated above)
std::cout << configParser.sectionValueGet( "default", "optionA" );
...
//Setting a value in section "default"
std::string setValue;
std::cin >> setValue;
configParser.sectionValueSet( "default", "optionB", setValue.c_str() ); //generates = true
...
//And when things go wrong : a "useful debug"
std::cout << configParser.outputIniStr();

Short-Story

  • Creating your "own ini parser" is seriously a good "exercise" for ANY programmer. And would also give subtle exposure to the programmer "mindset" on peer review.
  • This uses c-style const char* strings. Instead of C++ strings, due to my belief (debatable) on the usage of char*, and the self-disciplined involved in its memory management.
  • It is non-memory leaky on its own, and assumes all input will be cleaned up by its own respective (hence requiring const char* inputs).[Exception exists for the _sectionN() variant. For those squeezing out performance, while knowing how to manage the memory overhead]
  • Easily included in any project, as it follows std C/C++, while having its own conditional build for windows/linux/mac(untested) respectively. (this is especially useful in building changes on the client machine, which may lack "certain things")
  • Easy dumping / debugging / error handling (returns breaking point line number, in negative value)

Note: This is the most recent cleanup version. And has yet to seen full wild deployment. But so far it passed most of my test. I will remove this line in due time, when i have enough "code reviews"

Documentation Notes

The source code commenting was based on NaturalDocs (http://www.naturaldocs.org/). And hence requires that seperately (has its AGPL license) to output the documents.

Cross Platform Notes

File locking is based on linux style file lock. For windows which features a file lock on a "byte level", the first byte of the file is defined as the "byte range" to lock/unlock. See the source code, for the specific platform defines.

License Notes?

author:

picoCreator AKA Eugene Cheah

email:

pico.creator{at}gmail.com

website:

www.pic-o.com/blog

license-short:

BSD 3-Clause License [http://opensource.org/licenses/BSD-3-Clause]

license-full:

Copyright (c) 2013, picoCreator (Eugene Cheah Hui Qin | pico.creator{at}gmail.com) All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • Neither the name of ANY ORGANIZATION(S) AFFLIATED WITH THE CREATOR nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

About

Another cross platform INI file Parser

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published