本文整理汇总了C++中LogEntry::Entry方法的典型用法代码示例。如果您正苦于以下问题:C++ LogEntry::Entry方法的具体用法?C++ LogEntry::Entry怎么用?C++ LogEntry::Entry使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LogEntry
的用法示例。
在下文中一共展示了LogEntry::Entry方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: WriteEntry
VXIlogResult OSBlog::WriteEntry(const LogEntry &entry, bool logToStdout)
{
if (((! gblLogFile) && (! gblLogToStdout)) || (entry.size() < 1))
return VXIlog_RESULT_SUCCESS;
// Convert to narrow characters
unsigned int i;
unsigned int n = entry.size();
const wchar_t *ptr = entry.Entry();
char outbuf[MAX_LOG_BUFFER];
for(i=0; i<n; i++)
outbuf[i] = w2c(ptr[i]);
outbuf[i] = '\0';
// Lock and write out the log entry
if (VXItrdMutexLock(gblLogMutex) != VXItrd_RESULT_SUCCESS)
return VXIlog_RESULT_SYSTEM_ERROR;
VXIlogResult rc = VXIlog_RESULT_SUCCESS;
if (gblLogFile) {
if (fwrite(outbuf, sizeof(char), n, gblLogFile) < 1) {
// should disable logging.
rc = VXIlog_RESULT_IO_ERROR;
} else {
// to ensure we don't lose log lines on a crash/abort
fflush(gblLogFile);
}
}
if (gblLogToStdout && logToStdout &&
(fwrite(outbuf, sizeof(char), n, stdout) < 1 || fflush(stdout) != 0))
rc = VXIlog_RESULT_IO_ERROR;
if (VXItrdMutexUnlock(gblLogMutex) != VXItrd_RESULT_SUCCESS)
rc = VXIlog_RESULT_SYSTEM_ERROR;
return rc;
}