本文整理汇总了C++中ITabFile::WriteString方法的典型用法代码示例。如果您正苦于以下问题:C++ ITabFile::WriteString方法的具体用法?C++ ITabFile::WriteString怎么用?C++ ITabFile::WriteString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ITabFile
的用法示例。
在下文中一共展示了ITabFile::WriteString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Save
BOOL KTrackList::Save()
{
BOOL bResult = false;
int nRetCode = 0;
ITabFile* piTabFile = NULL;
int nLine = 0;
char szFileName[MAX_PATH];
snprintf(szFileName, sizeof(szFileName), "%s/%s/track.tab", SETTING_DIR, TRACK_DIR);
szFileName[sizeof(szFileName) - 1] = '\0';
piTabFile = g_CreateTabFile();
KGLOG_PROCESS_ERROR(piTabFile);
nRetCode = piTabFile->InsertNewCol(COL_ID);
KGLOG_PROCESS_ERROR(nRetCode != -1);
nRetCode = piTabFile->InsertNewCol(COL_MAP);
KGLOG_PROCESS_ERROR(nRetCode != -1);
nRetCode = piTabFile->InsertNewCol(COL_DESC);
KGLOG_PROCESS_ERROR(nRetCode != -1);
nLine = 2;
for (KTRACK_TABLE::iterator it = m_TrackTable.begin(); it != m_TrackTable.end(); ++it)
{
DWORD dwID = it->first;
KTRACK_INFO* pTrackInfo = &it->second;
nRetCode = piTabFile->WriteInteger(nLine, COL_ID, dwID);
KGLOG_PROCESS_ERROR(nRetCode);
nRetCode = piTabFile->WriteInteger(nLine, COL_MAP, pTrackInfo->dwMapID);
KGLOG_PROCESS_ERROR(nRetCode);
nRetCode = piTabFile->WriteString(nLine, COL_DESC, pTrackInfo->szDesc);
KGLOG_PROCESS_ERROR(nRetCode);
nRetCode = SaveTrack(dwID, pTrackInfo->Track);
KGLOG_PROCESS_ERROR(nRetCode);
nLine++;
}
nRetCode = piTabFile->Save(szFileName);
KGLOG_PROCESS_ERROR(nRetCode);
bResult = true;
Exit0:
KG_COM_RELEASE(piTabFile);
return bResult;
}
示例2: time
//.........这里部分代码省略.........
for (int i = 0; i < m_ServerList.size(); i++)
{
lStartTime = time(NULL);
ptmTime = localtime(&lStartTime);
KG_PROCESS_ERROR(ptmTime);
KGLogPrintf(
KGLOG_INFO,
"Analyze %s ::Start Time: %d-%d-%d %d:%d:%d\n",
m_ServerList[i].szServerName,
ptmTime->tm_year + 1900,
ptmTime->tm_mon + 1,
ptmTime->tm_mday,
ptmTime->tm_hour,
ptmTime->tm_min,
ptmTime->tm_sec
);
nRetCode = Analyze(m_ServerList[i], "role");
if (!nRetCode)
{
KGLogPrintf(
KGLOG_INFO,
"Analyze %s Error",m_ServerList[i].szServerName
);
if (!nErrorTabFileInitFlag)
{
piErrorTabFile = g_CreateTabFile();
KGLOG_PROCESS_ERROR(piErrorTabFile);
nErrorTabFileInitFlag = true;
nRetCode = piErrorTabFile->InsertNewCol("ZoneName");
KGLOG_PROCESS_ERROR(nRetCode);
nRetCode = piErrorTabFile->InsertNewCol("ServerName");
KGLOG_PROCESS_ERROR(nRetCode);
nRetCode = piErrorTabFile->InsertNewCol("LogServerName");
KGLOG_PROCESS_ERROR(nRetCode);
nRetCode = piErrorTabFile->InsertNewCol("BackUpFilePath");
KGLOG_PROCESS_ERROR(nRetCode);
}
nRetCode = piErrorTabFile->WriteString(nErrorCount + 2, "ZoneName", m_ServerList[i].szZoneName);
KGLOG_PROCESS_ERROR(nRetCode);
nRetCode = piErrorTabFile->WriteString(nErrorCount + 2, "ServerName", m_ServerList[i].szServerName);
KGLOG_PROCESS_ERROR(nRetCode);
nRetCode = piErrorTabFile->WriteString(nErrorCount + 2, "LogServerName", m_ServerList[i].szLogServerName);
KGLOG_PROCESS_ERROR(nRetCode);
nRetCode = piErrorTabFile->WriteString(nErrorCount + 2, "BackUpFilePath", m_ServerList[i].szBackUpFilePath);
KGLOG_PROCESS_ERROR(nRetCode);
nErrorCount++;
m_ErrorServerList.push_back(m_ServerList[i]);
}
lStopTime = time(NULL);
ptmTime = localtime(&lStopTime);
KGLOG_PROCESS_ERROR(ptmTime);
KGLogPrintf(
KGLOG_INFO,
"Analyze %s ::Stop Time: %d-%d-%d %d:%d:%d\n",
m_ServerList[i].szServerName,
ptmTime->tm_year + 1900,
ptmTime->tm_mon + 1,
ptmTime->tm_mday,
ptmTime->tm_hour,
ptmTime->tm_min,
ptmTime->tm_sec
);
uRunningSeconds = (unsigned)(lStopTime - lStartTime);
KGLogPrintf(
KGLOG_INFO,
"Analyze %s Running Time: %d days ,%d hours ,%d minutes, %d seconds.\n",
m_ServerList[i].szServerName,
(uRunningSeconds / (60 * 60 * 24)),
((uRunningSeconds % (60 * 60 * 24)) / (60 * 60)),
((uRunningSeconds % (60 * 60)) / 60),
(uRunningSeconds % 60)
);
}
nResult = true;
Exit0:
if (nErrorTabFileInitFlag)
{
KG_COM_RELEASE(piErrorTabFile);
nErrorTabFileInitFlag = false;
}
return nResult;
}