2012-06-14 09:06:06 -04:00
|
|
|
// IniFile.cpp: Implementation of the CIniFile class.
|
|
|
|
// Written by: Adam Clauss
|
|
|
|
// Email: cabadam@tamu.edu
|
|
|
|
// You may use this class/code as you wish in your programs. Feel free to distribute it, and
|
|
|
|
// email suggested changes to me.
|
|
|
|
//
|
|
|
|
// Rewritten by: Shane Hill
|
|
|
|
// Date: 21/08/2001
|
|
|
|
// Email: Shane.Hill@dsto.defence.gov.au
|
|
|
|
// Reason: Remove dependancy on MFC. Code should compile on any
|
|
|
|
// platform. Tested on Windows/Linux/Irix
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/*
|
|
|
|
!! MODIFIED BY FAKETRUTH and madmaxoft!!
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CIniFile_H
|
|
|
|
#define CIniFile_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define MAX_KEYNAME 128
|
|
|
|
#define MAX_VALUENAME 128
|
|
|
|
#define MAX_VALUEDATA 2048
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-05 09:24:23 -04:00
|
|
|
// tolua_begin
|
|
|
|
|
|
|
|
class cIniFile
|
|
|
|
{
|
2012-06-14 09:06:06 -04:00
|
|
|
private:
|
2013-08-05 09:24:23 -04:00
|
|
|
bool m_IsCaseInsensitive;
|
|
|
|
|
|
|
|
struct key
|
|
|
|
{
|
2013-10-25 05:38:14 -04:00
|
|
|
std::vector<AString> names;
|
|
|
|
std::vector<AString> values;
|
|
|
|
std::vector<AString> comments;
|
2013-08-05 09:24:23 -04:00
|
|
|
} ;
|
|
|
|
|
2013-10-25 05:38:14 -04:00
|
|
|
std::vector<key> keys;
|
|
|
|
std::vector<AString> names;
|
|
|
|
std::vector<AString> comments;
|
2013-08-05 09:24:23 -04:00
|
|
|
|
|
|
|
/// If the object is case-insensitive, returns s as lowercase; otherwise returns s as-is
|
2013-10-25 05:38:14 -04:00
|
|
|
AString CheckCase(const AString & s) const;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
public:
|
2013-08-05 09:24:23 -04:00
|
|
|
enum errors
|
|
|
|
{
|
|
|
|
noID = -1,
|
|
|
|
};
|
|
|
|
|
2013-10-25 05:15:44 -04:00
|
|
|
/// Creates a new instance with no data
|
|
|
|
cIniFile(void);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Sets whether or not keynames and valuenames should be case sensitive.
|
|
|
|
// The default is case insensitive.
|
2013-08-05 09:24:23 -04:00
|
|
|
void CaseSensitive (void) { m_IsCaseInsensitive = false; }
|
|
|
|
void CaseInsensitive(void) { m_IsCaseInsensitive = true; }
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-10-25 05:15:44 -04:00
|
|
|
/** Reads the contents of the specified ini file
|
2013-08-05 09:24:23 -04:00
|
|
|
If the file doesn't exist and a_AllowExampleRedirect is true, tries to read <basename>.example.ini, and
|
|
|
|
writes its contents as <basename>.ini, if successful.
|
|
|
|
Returns true if successful, false otherwise.
|
|
|
|
*/
|
2013-10-25 05:15:44 -04:00
|
|
|
bool ReadFile(const AString & a_FileName, bool a_AllowExampleRedirect = true);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-10-25 05:15:44 -04:00
|
|
|
/// Writes data stored in class to the specified ini file
|
|
|
|
bool WriteFile(const AString & a_FileName) const;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-08-05 09:24:23 -04:00
|
|
|
/// Deletes all stored ini data (but doesn't touch the file)
|
|
|
|
void Clear(void);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-08-05 09:24:23 -04:00
|
|
|
/// Returns index of specified key, or noID if not found
|
2013-10-25 05:38:14 -04:00
|
|
|
int FindKey(const AString & keyname) const;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-08-05 09:24:23 -04:00
|
|
|
/// Returns index of specified value, in the specified key, or noID if not found
|
2013-10-25 05:38:14 -04:00
|
|
|
int FindValue(const int keyID, const AString & valuename) const;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-08-05 09:24:23 -04:00
|
|
|
/// Returns number of keys currently in the ini
|
2013-10-25 05:38:14 -04:00
|
|
|
int GetNumKeys(void) const { return (int)keys.size(); }
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-08-05 09:24:23 -04:00
|
|
|
/// Add a key name
|
2013-10-25 05:38:14 -04:00
|
|
|
int AddKeyName(const AString & keyname);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Returns key names by index.
|
2013-10-25 05:38:14 -04:00
|
|
|
AString GetKeyName(const int keyID) const;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Returns number of values stored for specified key.
|
2013-10-25 05:38:14 -04:00
|
|
|
int GetNumValues(const AString & keyname) const;
|
|
|
|
int GetNumValues(const int keyID) const;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Returns value name by index for a given keyname or keyID.
|
2013-10-25 05:38:14 -04:00
|
|
|
AString GetValueName(const AString & keyname, const int valueID) const;
|
|
|
|
AString GetValueName(const int keyID, const int valueID) const;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Gets value of [keyname] valuename =.
|
|
|
|
// Overloaded to return string, int, and double.
|
|
|
|
// Returns defValue if key/value not found.
|
2013-08-05 09:24:23 -04:00
|
|
|
AString GetValue (const AString & keyname, const AString & valuename, const AString & defValue = "") const;
|
2013-10-25 05:38:14 -04:00
|
|
|
AString GetValue (const int keyID, const int valueID, const AString & defValue = "") const;
|
2013-08-05 09:24:23 -04:00
|
|
|
double GetValueF(const AString & keyname, const AString & valuename, const double defValue = 0) const;
|
|
|
|
int GetValueI(const AString & keyname, const AString & valuename, const int defValue = 0) const;
|
|
|
|
bool GetValueB(const AString & keyname, const AString & valuename, const bool defValue = false) const
|
|
|
|
{
|
2013-10-25 05:38:14 -04:00
|
|
|
return (GetValueI(keyname, valuename, defValue ? 1 : 0) != 0);
|
2013-08-05 09:24:23 -04:00
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Gets the value; if not found, write the default to the INI file
|
2013-08-05 09:24:23 -04:00
|
|
|
AString GetValueSet (const AString & keyname, const AString & valuename, const AString & defValue = "");
|
|
|
|
double GetValueSetF(const AString & keyname, const AString & valuename, const double defValue = 0.0);
|
|
|
|
int GetValueSetI(const AString & keyname, const AString & valuename, const int defValue = 0);
|
|
|
|
bool GetValueSetB(const AString & keyname, const AString & valuename, const bool defValue = false)
|
|
|
|
{
|
2013-10-25 05:38:14 -04:00
|
|
|
return (GetValueSetI(keyname, valuename, defValue ? 1 : 0) != 0);
|
2013-08-05 09:24:23 -04:00
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Sets value of [keyname] valuename =.
|
|
|
|
// Specify the optional paramter as false (0) if you do not want it to create
|
|
|
|
// the key if it doesn't exist. Returns true if data entered, false otherwise.
|
|
|
|
// Overloaded to accept string, int, and double.
|
2013-10-25 05:38:14 -04:00
|
|
|
bool SetValue( const int keyID, const int valueID, const AString & value);
|
|
|
|
bool SetValue( const AString & keyname, const AString & valuename, const AString & value, const bool create = true);
|
|
|
|
bool SetValueI( const AString & keyname, const AString & valuename, const int value, const bool create = true);
|
|
|
|
bool SetValueB( const AString & keyname, const AString & valuename, const bool value, const bool create = true)
|
2013-08-05 09:24:23 -04:00
|
|
|
{
|
2012-06-14 09:06:06 -04:00
|
|
|
return SetValueI( keyname, valuename, int(value), create);
|
2013-08-05 09:24:23 -04:00
|
|
|
}
|
2013-10-25 05:38:14 -04:00
|
|
|
bool SetValueF( const AString & keyname, const AString & valuename, const double value, const bool create = true);
|
2013-08-07 08:32:08 -04:00
|
|
|
|
|
|
|
// tolua_end
|
|
|
|
|
2013-10-25 05:38:14 -04:00
|
|
|
bool SetValueV( const AString & keyname, const AString & valuename, char *format, ...);
|
2013-08-07 08:32:08 -04:00
|
|
|
|
|
|
|
// tolua_begin
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Deletes specified value.
|
|
|
|
// Returns true if value existed and deleted, false otherwise.
|
2013-10-25 05:38:14 -04:00
|
|
|
bool DeleteValueByID(const int keyID, const int valueID);
|
|
|
|
bool DeleteValue(const AString & keyname, const AString & valuename);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Deletes specified key and all values contained within.
|
|
|
|
// Returns true if key existed and deleted, false otherwise.
|
2013-10-25 05:38:14 -04:00
|
|
|
bool DeleteKey(const AString & keyname);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Header comment functions.
|
|
|
|
// Header comments are those comments before the first key.
|
2013-10-25 05:38:14 -04:00
|
|
|
|
2013-10-26 04:33:28 -04:00
|
|
|
/// Returns the number of header comments
|
2013-10-25 05:38:14 -04:00
|
|
|
int GetNumHeaderComments(void) {return (int)comments.size();}
|
|
|
|
|
2013-10-26 04:33:28 -04:00
|
|
|
/// Adds a header comment
|
2013-10-25 05:38:14 -04:00
|
|
|
void AddHeaderComment(const AString & comment);
|
|
|
|
|
2013-10-26 04:33:28 -04:00
|
|
|
/// Returns a header comment, or empty string if out of range
|
2013-10-25 05:38:14 -04:00
|
|
|
AString GetHeaderComment(const int commentID) const;
|
|
|
|
|
2013-10-26 04:33:28 -04:00
|
|
|
/// Deletes a header comment. Returns true if successful
|
2013-10-25 05:38:14 -04:00
|
|
|
bool DeleteHeaderComment(int commentID);
|
|
|
|
|
2013-10-26 04:33:28 -04:00
|
|
|
/// Deletes all header comments
|
2013-10-25 05:38:14 -04:00
|
|
|
void DeleteHeaderComments(void) {comments.clear();}
|
2013-08-05 09:24:23 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Key comment functions.
|
|
|
|
// Key comments are those comments within a key. Any comments
|
|
|
|
// defined within value names will be added to this list. Therefore,
|
|
|
|
// these comments will be moved to the top of the key definition when
|
|
|
|
// the CIniFile::WriteFile() is called.
|
2013-10-25 05:38:14 -04:00
|
|
|
|
|
|
|
/// Get number of key comments
|
|
|
|
int GetNumKeyComments(const int keyID) const;
|
|
|
|
|
|
|
|
/// Get number of key comments
|
|
|
|
int GetNumKeyComments(const AString & keyname) const;
|
2013-08-05 09:24:23 -04:00
|
|
|
|
2013-10-25 05:38:14 -04:00
|
|
|
/// Add a key comment
|
|
|
|
bool AddKeyComment(const int keyID, const AString & comment);
|
|
|
|
|
|
|
|
/// Add a key comment
|
|
|
|
bool AddKeyComment(const AString & keyname, const AString & comment);
|
2013-08-05 09:24:23 -04:00
|
|
|
|
2013-10-25 05:38:14 -04:00
|
|
|
/// Return a key comment
|
|
|
|
AString GetKeyComment(const int keyID, const int commentID) const;
|
|
|
|
AString GetKeyComment(const AString & keyname, const int commentID) const;
|
2013-08-05 09:24:23 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
// Delete a key comment.
|
2013-10-25 05:38:14 -04:00
|
|
|
bool DeleteKeyComment(const int keyID, const int commentID);
|
|
|
|
bool DeleteKeyComment(const AString & keyname, const int commentID);
|
2013-08-05 09:24:23 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
// Delete all comments for a key.
|
2013-10-25 05:38:14 -04:00
|
|
|
bool DeleteKeyComments(const int keyID);
|
|
|
|
bool DeleteKeyComments(const AString & keyname);
|
2013-08-05 09:24:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// tolua_end
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#endif
|