📄 logbuffer.h
字号:
/*-----------------------------------------------------------------------------
6502 Macroassembler and Simulator
Copyright (C) 1995-2003 Michal Kowalski
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-----------------------------------------------------------------------------*/
// LogBuffer.h: interface for the CLogBuffer class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_LOGBUFFER_H__F7F5D1B0_569C_4E6D_A034_D79FB77DB930__INCLUDED_)
#define AFX_LOGBUFFER_H__F7F5D1B0_569C_4E6D_A034_D79FB77DB930__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <vector>
// Logging class: recording consecutive items in the buffer overwriting
// old values
template <class T>
class CLogBuffer
{
public:
CLogBuffer(int nSize= 1000)
{ m_vBuffer.resize(nSize); m_pHead = m_vBuffer.begin(); m_bFull = false; }
~CLogBuffer() {}
// record item
void Record(const T& t)
{
*m_pHead++ = t;
if (m_pHead >= m_vBuffer.end())
{
m_pHead = m_vBuffer.begin();
m_bFull = true;
}
}
// no of items recorded
int GetCount() const
{
return m_bFull ? m_vBuffer.size() : m_pHead - m_vBuffer.begin();
}
// get n-th item
const T& operator [] (int nIndex) const
{
ASSERT(nIndex >= 0 && nIndex < GetCount());
const T* pStart= m_bFull ? m_pHead : m_vBuffer.begin();
pStart += nIndex;
if (pStart >= m_vBuffer.end())
return pStart[-m_vBuffer.size()];
else
return *pStart;
}
// empty buffer
void Clear()
{
m_pHead = m_vBuffer.begin();
m_bFull = false;
}
private:
std::vector<T> m_vBuffer;
T* m_pHead;
bool m_bFull;
};
#endif // !defined(AFX_LOGBUFFER_H__F7F5D1B0_569C_4E6D_A034_D79FB77DB930__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -