2010-11-20 10:37:14 +00:00
|
|
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
2010-05-29 07:25:38 +00:00
|
|
|
#include "linereader.h"
|
|
|
|
|
2020-10-27 17:57:14 +00:00
|
|
|
void CLineReader::Init(IOHANDLE File)
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
2011-01-20 20:17:11 +00:00
|
|
|
m_BufferMaxSize = sizeof(m_aBuffer);
|
2010-05-29 07:25:38 +00:00
|
|
|
m_BufferSize = 0;
|
|
|
|
m_BufferPos = 0;
|
2020-10-27 17:57:14 +00:00
|
|
|
m_File = File;
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char *CLineReader::Get()
|
|
|
|
{
|
|
|
|
unsigned LineStart = m_BufferPos;
|
2011-01-20 20:17:11 +00:00
|
|
|
bool CRLFBreak = false;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
if(m_BufferPos >= m_BufferSize)
|
|
|
|
{
|
|
|
|
// fetch more
|
|
|
|
|
|
|
|
// move the remaining part to the front
|
|
|
|
unsigned Read;
|
|
|
|
unsigned Left = m_BufferSize - LineStart;
|
|
|
|
|
|
|
|
if(LineStart > m_BufferSize)
|
|
|
|
Left = 0;
|
|
|
|
if(Left)
|
|
|
|
mem_move(m_aBuffer, &m_aBuffer[LineStart], Left);
|
|
|
|
m_BufferPos = Left;
|
|
|
|
|
|
|
|
// fill the buffer
|
2020-10-27 17:57:14 +00:00
|
|
|
Read = io_read(m_File, &m_aBuffer[m_BufferPos], m_BufferMaxSize - m_BufferPos);
|
2010-05-29 07:25:38 +00:00
|
|
|
m_BufferSize = Left + Read;
|
|
|
|
LineStart = 0;
|
|
|
|
|
|
|
|
if(!Read)
|
|
|
|
{
|
|
|
|
if(Left)
|
|
|
|
{
|
|
|
|
m_aBuffer[Left] = 0; // return the last line
|
|
|
|
m_BufferPos = Left;
|
|
|
|
m_BufferSize = Left;
|
|
|
|
return m_aBuffer;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 0x0; // we are done!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(m_aBuffer[m_BufferPos] == '\n' || m_aBuffer[m_BufferPos] == '\r')
|
|
|
|
{
|
|
|
|
// line found
|
2011-01-20 20:17:11 +00:00
|
|
|
if(m_aBuffer[m_BufferPos] == '\r')
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(m_BufferPos + 1 >= m_BufferSize)
|
2011-01-20 20:17:11 +00:00
|
|
|
{
|
|
|
|
// read more to get the connected '\n'
|
|
|
|
CRLFBreak = true;
|
|
|
|
++m_BufferPos;
|
|
|
|
continue;
|
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
else if(m_aBuffer[m_BufferPos + 1] == '\n')
|
2011-01-20 20:17:11 +00:00
|
|
|
m_aBuffer[m_BufferPos++] = 0;
|
|
|
|
}
|
|
|
|
m_aBuffer[m_BufferPos++] = 0;
|
|
|
|
return &m_aBuffer[LineStart];
|
|
|
|
}
|
|
|
|
else if(CRLFBreak)
|
|
|
|
{
|
|
|
|
if(m_aBuffer[m_BufferPos] == '\n')
|
2010-10-01 10:43:44 +00:00
|
|
|
m_aBuffer[m_BufferPos++] = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
return &m_aBuffer[LineStart];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
m_BufferPos++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|