本文整理汇总了C++中LogReader::find方法的典型用法代码示例。如果您正苦于以下问题:C++ LogReader::find方法的具体用法?C++ LogReader::find怎么用?C++ LogReader::find使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LogReader
的用法示例。
在下文中一共展示了LogReader::find方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: if
bool LogReader::Substit::process(LogReader &a_logReader, bool a_init)
{
if (m_resume < 0)
return false;
const __int64 l_fileSize = a_logReader.m_fileSize;
const unsigned int l_maxFindSize = a_logReader.m_maxFindSize;
__int64 &l_maxClose = a_logReader.m_maxClose;
const __int64 l_testClose = l_fileSize - l_maxFindSize;
if (m_prev == InvPtr)
{
if (m_resume >= l_testClose)
l_maxClose = l_fileSize;
else
l_maxClose = m_resume + l_maxFindSize;
}
const __int64 l_maxEntry = l_maxClose - m_singles;
if (m_resume > l_maxEntry)
return false;
if (m_anySeq)
{
if (m_next != InvPtr && m_next->type() == t_sample)
{
const Sample *const l_next = static_cast<const Sample *>(m_next);
const char l_firstChar = l_next->m_data[0];
const __int64 l_minClose = m_resume + m_singles;
if (m_prev == InvPtr)
{
const __int64 l_found = a_logReader.find(l_minClose, l_fileSize, l_firstChar);
if (a_logReader.m_status != s_ok || l_found < 0)
return false;
m_resume = l_found - m_singles;
if (m_resume >= l_testClose)
l_maxClose = l_fileSize;
else
l_maxClose = m_resume + l_maxFindSize;
}
else
{
const __int64 l_found = a_logReader.find(l_minClose, l_maxClose, l_firstChar);
if (a_logReader.m_status != s_ok || l_found < 0)
return false;
m_resume = l_found - m_singles;
}
}
}
else if (!a_init)
return false;
const __int64 l_close = m_resume + m_singles;
if (m_prev == InvPtr)
a_logReader.m_findEntry = m_resume;
if (m_next != InvPtr)
m_next->m_resume = l_close;
a_logReader.m_findClose = l_close;
m_resume++;
return true;
}