project64/Source/Common/IniFileClass.h

124 lines
3.9 KiB
C
Raw Normal View History

#pragma once
2016-01-13 02:21:23 +00:00
#ifndef _WIN32
/* for POSIX method away from Win32 _stricmp--see "Platform.h" */
#include <strings.h>
#endif
#include "Platform.h"
2016-01-13 02:21:23 +00:00
#include "FileClass.h"
#include "CriticalSection.h"
#include "StdString.h"
#include "SmartPointer.h"
#include <map>
2015-10-25 10:50:28 +00:00
class CIniFileBase
{
2015-10-25 10:50:28 +00:00
struct insensitive_compare
{
2016-01-13 02:21:23 +00:00
bool operator() (const std::string & a, const std::string & b) const
{
return _stricmp(a.c_str(), b.c_str()) < 0;
}
2015-10-25 10:50:28 +00:00
};
2013-04-24 07:08:35 +00:00
2015-10-25 10:50:28 +00:00
typedef std::string ansi_string;
2016-01-12 18:38:10 +00:00
typedef std::map<ansi_string, long> FILELOC;
2015-10-25 10:50:28 +00:00
typedef FILELOC::iterator FILELOC_ITR;
2016-01-12 18:38:10 +00:00
typedef std::map<ansi_string, ansi_string, insensitive_compare> KeyValueList;
public:
2016-01-12 18:38:10 +00:00
typedef std::map<stdstr, stdstr> KeyValueData;
2015-10-25 10:50:28 +00:00
typedef std::vector<stdstr> SectionList;
protected:
2015-10-25 10:50:28 +00:00
CFileBase & m_File;
stdstr m_FileName;
private:
2015-10-25 10:50:28 +00:00
ansi_string m_CurrentSection;
bool m_CurrentSectionDirty;
int m_CurrentSectionFilePos; // Where in the file is the current Section
KeyValueList m_CurrentSectionData;
long m_lastSectionSearch; // When Scanning for a section, what was the last scanned pos
bool m_ReadOnly;
bool m_InstantFlush;
const char * m_LineFeed;
CriticalSection m_CS;
FILELOC m_SectionsPos;
2016-01-12 18:38:10 +00:00
void fInsertSpaces(int Pos, int NoOfSpaces);
int GetStringFromFile(char * & String, AUTO_PTR<char> &Data, int & MaxDataSize, int & DataSize, int & ReadPos);
2016-01-12 18:38:10 +00:00
bool MoveToSectionNameData(const char * lpSectionName, bool ChangeCurrentSection);
const char * CleanLine(char * Line);
2016-01-12 18:38:10 +00:00
void ClearSectionPosList(long FilePos);
protected:
2015-10-25 10:50:28 +00:00
void OpenIniFileReadOnly();
void OpenIniFile(bool bCreate = true);
2016-01-12 18:38:10 +00:00
void SaveCurrentSection(void);
public:
2016-01-12 18:38:10 +00:00
CIniFileBase(CFileBase & FileObject, const char * FileName);
2015-10-25 10:50:28 +00:00
virtual ~CIniFileBase(void);
bool IsEmpty();
2016-01-12 18:38:10 +00:00
bool IsFileOpen(void);
bool DeleteSection(const char * lpSectionName);
bool GetString(const char * lpSectionName, const char * lpKeyName, const char * lpDefault, stdstr & Value);
stdstr GetString(const char * lpSectionName, const char * lpKeyName, const char * lpDefault);
uint32_t GetString(const char * lpSectionName, const char * lpKeyName, const char * lpDefault, char * lpReturnedString, uint32_t nSize);
uint32_t GetNumber(const char * lpSectionName, const char * lpKeyName, uint32_t nDefault);
bool GetNumber(const char * lpSectionName, const char * lpKeyName, uint32_t nDefault, uint32_t & Value);
virtual void SaveString(const char * lpSectionName, const char * lpKeyName, const char * lpString);
virtual void SaveNumber(const char * lpSectionName, const char * lpKeyName, uint32_t Value);
2016-01-12 18:38:10 +00:00
void SetAutoFlush(bool AutoFlush);
void FlushChanges(void);
bool EntryExists(const char * lpSectionName, const char * lpKeyName);
2016-01-12 18:38:10 +00:00
void GetKeyList(const char * lpSectionName, strlist &List);
void GetKeyValueData(const char * lpSectionName, KeyValueData & List);
2015-10-25 10:50:28 +00:00
2016-01-12 18:38:10 +00:00
void GetVectorOfSections(SectionList & sections);
const stdstr &GetFileName() { return m_FileName; }
};
template <class CFileStorage>
class CIniFileT :
2015-10-25 10:50:28 +00:00
public CIniFileBase
{
public:
2016-01-12 18:38:10 +00:00
CIniFileT(const char * FileName) :
CIniFileBase(m_FileObject, FileName)
2015-10-25 10:50:28 +00:00
{
//Try to open file for reading
OpenIniFile();
}
2016-01-12 18:38:10 +00:00
CIniFileT(const char * FileName, bool bCreate, bool bReadOnly) :
CIniFileBase(m_FileObject, FileName)
2015-10-25 10:50:28 +00:00
{
2016-01-12 18:38:10 +00:00
if (bReadOnly)
2015-10-25 10:50:28 +00:00
{
OpenIniFileReadOnly();
}
else
{
//Try to open file for reading
OpenIniFile(bCreate);
}
}
virtual ~CIniFileT(void)
{
SaveCurrentSection();
}
protected:
2015-10-25 10:50:28 +00:00
CFileStorage m_FileObject;
};
2015-01-31 19:27:27 +00:00
typedef CIniFileT<CFile> CIniFile;