当前位置: 首页>>代码示例>>C++>>正文


C++ LogReader::find方法代码示例

本文整理汇总了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;

	}
开发者ID:rasim-valiullin,项目名称:d512388b-9b91-45f9-8f88-b6d4e252c270,代码行数:74,代码来源:logreader.cpp


注:本文中的LogReader::find方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。