?? datafile.cpp
字號(hào):
return (pKey == NULL) ? t_Str("") : pKey->szValue;
}
// GetString
// Returns the key value as a t_Str object. A return value of
// t_Str("") indicates that the key could not be found.
t_Str CDataFile::GetString(t_Str szKey, t_Str szSection)
{
return GetValue(szKey, szSection);
}
// GetFloat
// Returns the key value as a float type. Returns FLT_MIN if the key is
// not found.
float CDataFile::GetFloat(t_Str szKey, t_Str szSection)
{
t_Str szValue = GetValue(szKey, szSection);
if ( szValue.size() == 0 )
return FLT_MIN;
return (float)atof( szValue.c_str() );
}
// GetInt
// Returns the key value as an integer type. Returns INT_MIN if the key is
// not found.
int CDataFile::GetInt(t_Str szKey, t_Str szSection)
{
t_Str szValue = GetValue(szKey, szSection);
if ( szValue.size() == 0 )
return INT_MIN;
return atoi( szValue.c_str() );
}
// GetBool
// Returns the key value as a bool type. Returns false if the key is
// not found.
bool CDataFile::GetBool(t_Str szKey, t_Str szSection)
{
bool bValue = false;
t_Str szValue = GetValue(szKey, szSection);
if ( szValue.find("1") == 0
|| CompareNoCase(szValue, "true")
|| CompareNoCase(szValue, "yes") )
{
bValue = true;
}
return bValue;
}
// DeleteSection
// Delete a specific section. Returns false if the section cannot be
// found or true when sucessfully deleted.
bool CDataFile::DeleteSection(t_Str szSection)
{
SectionItor s_pos;
for (s_pos = m_Sections.begin(); s_pos != m_Sections.end(); s_pos++)
{
if ( CompareNoCase( (*s_pos).szName, szSection ) == 0 )
{
m_Sections.erase(s_pos);
return true;
}
}
return false;
}
// DeleteKey
// Delete a specific key in a specific section. Returns false if the key
// cannot be found or true when sucessfully deleted.
bool CDataFile::DeleteKey(t_Str szKey, t_Str szFromSection)
{
KeyItor k_pos;
t_Section* pSection;
if ( (pSection = GetSection(szFromSection)) == NULL )
return false;
for (k_pos = pSection->Keys.begin(); k_pos != pSection->Keys.end(); k_pos++)
{
if ( CompareNoCase( (*k_pos).szKey, szKey ) == 0 )
{
pSection->Keys.erase(k_pos);
return true;
}
}
return false;
}
// CreateKey
// Given a key, a value and a section, this function will attempt to locate the
// Key within the given section, and if it finds it, change the keys value to
// the new value. If it does not locate the key, it will create a new key with
// the proper value and place it in the section requested.
bool CDataFile::CreateKey(t_Str szKey, t_Str szValue, t_Str szComment, t_Str szSection)
{
bool bAutoKey = (m_Flags & AUTOCREATE_KEYS) == AUTOCREATE_KEYS;
bool bReturn = false;
m_Flags |= AUTOCREATE_KEYS;
bReturn = SetValue(szKey, szValue, szComment, szSection);
if ( !bAutoKey )
m_Flags &= ~AUTOCREATE_KEYS;
return bReturn;
}
// CreateSection
// Given a section name, this function first checks to see if the given section
// allready exists in the list or not, if not, it creates the new section and
// assigns it the comment given in szComment. The function returns true if
// sucessfully created, or false otherwise.
bool CDataFile::CreateSection(t_Str szSection, t_Str szComment)
{
t_Section* pSection = GetSection(szSection);
if ( pSection )
{
Report(E_INFO, "[CDataFile::CreateSection] Section <%s> allready exists. Aborting.", szSection.c_str());
return false;
}
pSection = new t_Section;
pSection->szName = szSection;
pSection->szComment = szComment;
m_Sections.push_back(*pSection);
m_bDirty = true;
return true;
}
// CreateSection
// Given a section name, this function first checks to see if the given section
// allready exists in the list or not, if not, it creates the new section and
// assigns it the comment given in szComment. The function returns true if
// sucessfully created, or false otherwise. This version accpets a KeyList
// and sets up the newly created Section with the keys in the list.
bool CDataFile::CreateSection(t_Str szSection, t_Str szComment, KeyList Keys)
{
if ( !CreateSection(szSection, szComment) )
return false;
t_Section* pSection = GetSection(szSection);
if ( !pSection )
return false;
KeyItor k_pos;
pSection->szName = szSection;
for (k_pos = Keys.begin(); k_pos != Keys.end(); k_pos++)
{
t_Key* pKey = new t_Key;
pKey->szComment = (*k_pos).szComment;
pKey->szKey = (*k_pos).szKey;
pKey->szValue = (*k_pos).szValue;
pSection->Keys.push_back(*pKey);
}
m_Sections.push_back(*pSection);
m_bDirty = true;
return true;
}
// SectionCount
// Simply returns the number of sections in the list.
int CDataFile::SectionCount()
{
return m_Sections.size();
}
// KeyCount
// Returns the total number of keys contained within all the sections.
int CDataFile::KeyCount()
{
int nCounter = 0;
SectionItor s_pos;
for (s_pos = m_Sections.begin(); s_pos != m_Sections.end(); s_pos++)
nCounter += (*s_pos).Keys.size();
return nCounter;
}
// Protected Member Functions ///////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
// GetKey
// Given a key and section name, looks up the key and if found, returns a
// pointer to that key, otherwise returns NULL.
t_Key* CDataFile::GetKey(t_Str szKey, t_Str szSection)
{
KeyItor k_pos;
t_Section* pSection;
// Since our default section has a name value of t_Str("") this should
// always return a valid section, wether or not it has any keys in it is
// another matter.
if ( (pSection = GetSection(szSection)) == NULL )
return NULL;
for (k_pos = pSection->Keys.begin(); k_pos != pSection->Keys.end(); k_pos++)
{
if ( CompareNoCase( (*k_pos).szKey, szKey ) == 0 )
return (t_Key*)&(*k_pos);
}
return NULL;
}
// GetSection
// Given a section name, locates that section in the list and returns a pointer
// to it. If the section was not found, returns NULL
t_Section* CDataFile::GetSection(t_Str szSection)
{
SectionItor s_pos;
for (s_pos = m_Sections.begin(); s_pos != m_Sections.end(); s_pos++)
{
if ( CompareNoCase( (*s_pos).szName, szSection ) == 0 )
return (t_Section*)&(*s_pos);
}
return NULL;
}
t_Str CDataFile::CommentStr(t_Str szComment)
{
t_Str szNewStr = t_Str("");
Trim(szComment);
if ( szComment.size() == 0 )
return szComment;
if ( szComment.find_first_of(CommentIndicators) != 0 )
{
szNewStr = CommentIndicators[0];
szNewStr += " ";
}
szNewStr += szComment;
return szNewStr;
}
// Utility Functions ////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
// GetNextWord
// Given a key +delimiter+ value string, pulls the key name from the string,
// deletes the delimiter and alters the original string to contain the
// remainder. Returns the key
t_Str GetNextWord(t_Str& CommandLine)
{
int nPos = CommandLine.find_first_of(EqualIndicators);
t_Str sWord = t_Str("");
if ( nPos > -1 )
{
sWord = CommandLine.substr(0, nPos);
CommandLine.erase(0, nPos+1);
}
else
{
sWord = CommandLine;
CommandLine = t_Str("");
}
Trim(sWord);
return sWord;
}
// CompareNoCase
// it's amazing what features std::string lacks. This function simply
// does a lowercase compare against the two strings, returning 0 if they
// match.
int CompareNoCase(t_Str str1, t_Str str2)
{
#ifdef WIN32
return stricmp(str1.c_str(), str2.c_str());
#else
// return _strcasecmp(str1.c_str(), str2.c_str());
return _stricmp(str1.c_str(), str2.c_str());
#endif
}
// Trim
// Trims whitespace from both sides of a string.
void Trim(t_Str& szStr)
{
t_Str szTrimChars = WhiteSpace;
szTrimChars += EqualIndicators;
int nPos, rPos;
// trim left
nPos = szStr.find_first_not_of(szTrimChars);
if ( nPos > 0 )
szStr.erase(0, nPos);
// trim right and return
nPos = szStr.find_last_not_of(szTrimChars);
rPos = szStr.find_last_of(szTrimChars);
if ( rPos > nPos && rPos > -1)
szStr.erase(rPos, szStr.size()-rPos);
}
// WriteLn
// Writes the formatted output to the file stream, returning the number of
// bytes written.
int WriteLn(fstream& stream, char* fmt, ...)
{
char buf[MAX_BUFFER_LEN];
int nLength;
t_Str szMsg;
memset(buf, 0, MAX_BUFFER_LEN);
va_list args;
va_start (args, fmt);
nLength = _vsnprintf(buf, MAX_BUFFER_LEN, fmt, args);
va_end (args);
if ( buf[nLength] != '\n' && buf[nLength] != '\r' )
buf[nLength++] = '\n';
stream.write(buf, nLength);
return nLength;
}
// Report
// A simple reporting function. Outputs the report messages to stdout
// This is a dumb'd down version of a simmilar function of mine, so if
// it looks like it should do more than it does, that's why...
void Report(e_DebugLevel DebugLevel, char *fmt, ...)
{
char buf[MAX_BUFFER_LEN];
int nLength;
t_Str szMsg;
va_list args;
memset(buf, 0, MAX_BUFFER_LEN);
va_start (args, fmt);
nLength = _vsnprintf(buf, MAX_BUFFER_LEN, fmt, args);
va_end (args);
if ( buf[nLength] != '\n' && buf[nLength] != '\r' )
buf[nLength++] = '\n';
switch ( DebugLevel )
{
case E_DEBUG:
szMsg = "<debug> ";
break;
case E_INFO:
szMsg = "<info> ";
break;
case E_WARN:
szMsg = "<warn> ";
break;
case E_ERROR:
szMsg = "<error> ";
break;
case E_FATAL:
szMsg = "<fatal> ";
break;
case E_CRITICAL:
szMsg = "<critical> ";
break;
}
szMsg += buf;
#ifdef WIN32
OutputDebugString(szMsg.c_str());
#endif
printf(szMsg.c_str());
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -