2014-08-13 20:30:35 +00:00
|
|
|
/*
|
|
|
|
AppleWin : An Apple //e emulator for Windows
|
|
|
|
|
|
|
|
Copyright (C) 1994-1996, Michael O'Brien
|
|
|
|
Copyright (C) 1999-2001, Oliver Schmidt
|
|
|
|
Copyright (C) 2002-2005, Tom Charlesworth
|
|
|
|
Copyright (C) 2006-2014, Tom Charlesworth, Michael Pohoreski
|
|
|
|
|
|
|
|
AppleWin 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.
|
|
|
|
|
|
|
|
AppleWin 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 AppleWin; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2006-02-26 06:27:51 +00:00
|
|
|
#include "StdAfx.h"
|
2010-02-14 21:11:26 +00:00
|
|
|
|
2014-08-13 21:03:33 +00:00
|
|
|
#include "Util_Text.h"
|
|
|
|
#include "Util_MemoryTextFile.h"
|
2006-02-26 06:27:51 +00:00
|
|
|
|
|
|
|
// MemoryTextFile _________________________________________________________________________________
|
|
|
|
|
2006-02-27 00:31:46 +00:00
|
|
|
const int EOL_NULL = 0;
|
2006-02-26 06:27:51 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
bool MemoryTextFile_t::Read( char *pFileName )
|
|
|
|
{
|
|
|
|
bool bStatus = false;
|
|
|
|
FILE *hFile = fopen( pFileName, "rt" );
|
|
|
|
|
|
|
|
if (hFile)
|
|
|
|
{
|
|
|
|
fseek( hFile, 0, SEEK_END );
|
|
|
|
long nSize = ftell( hFile );
|
|
|
|
fseek( hFile, 0, SEEK_SET );
|
|
|
|
|
|
|
|
m_vBuffer.reserve( nSize + 1 );
|
|
|
|
m_vBuffer.insert( m_vBuffer.begin(), nSize+1, 0 );
|
|
|
|
|
|
|
|
char *pBuffer = & m_vBuffer.at(0);
|
|
|
|
fread( (void*)pBuffer, nSize, 1, hFile );
|
|
|
|
|
2006-02-27 00:31:46 +00:00
|
|
|
m_vBuffer.push_back( EOL_NULL );
|
2006-02-26 06:27:51 +00:00
|
|
|
|
|
|
|
fclose(hFile);
|
|
|
|
|
|
|
|
m_bDirty = true;
|
|
|
|
GetLinePointers();
|
|
|
|
|
|
|
|
bStatus = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
void MemoryTextFile_t::GetLine( const int iLine, char *pLine, const int nMaxLineChars )
|
|
|
|
{
|
|
|
|
if (m_bDirty)
|
|
|
|
{
|
|
|
|
GetLinePointers();
|
|
|
|
}
|
|
|
|
|
|
|
|
ZeroMemory( pLine, nMaxLineChars );
|
|
|
|
strncpy( pLine, m_vLines[ iLine ], nMaxLineChars-1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// cr/new lines are converted into null, string terminators
|
|
|
|
//===========================================================================
|
|
|
|
void MemoryTextFile_t::GetLinePointers()
|
|
|
|
{
|
|
|
|
if (! m_bDirty)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_vLines.erase( m_vLines.begin(), m_vLines.end() );
|
2010-01-17 18:43:06 +00:00
|
|
|
char *pBegin = & m_vBuffer[ 0 ];
|
|
|
|
char *pLast = & m_vBuffer[ m_vBuffer.size()-1 ];
|
2006-02-26 06:27:51 +00:00
|
|
|
|
|
|
|
char *pEnd = NULL;
|
|
|
|
char *pStartNextLine;
|
|
|
|
|
2010-01-17 18:43:06 +00:00
|
|
|
while (pBegin <= pLast)
|
2006-02-26 06:27:51 +00:00
|
|
|
{
|
2010-01-17 18:43:06 +00:00
|
|
|
if ( *pBegin ) // Only keep non-empty lines
|
|
|
|
m_vLines.push_back( pBegin );
|
2006-02-26 06:27:51 +00:00
|
|
|
|
|
|
|
pEnd = const_cast<char*>( SkipUntilEOL( pBegin ));
|
|
|
|
|
2006-02-27 00:31:46 +00:00
|
|
|
if (*pEnd == EOL_NULL)
|
2006-02-26 06:27:51 +00:00
|
|
|
{
|
|
|
|
// Found EOL via null
|
|
|
|
pStartNextLine = pEnd + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pStartNextLine = const_cast<char*>( EatEOL( pEnd ));
|
|
|
|
|
|
|
|
// DOS/Win "Text" mode converts LF CR (0D 0A) to CR (0D)
|
|
|
|
// but just in case, the file is read in binary.
|
|
|
|
int nEOL = pStartNextLine - pEnd;
|
|
|
|
while (nEOL-- > 1)
|
|
|
|
{
|
|
|
|
*pEnd++ = ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
// assert( pEnd != NULL );
|
2006-02-27 00:31:46 +00:00
|
|
|
*pEnd = EOL_NULL;
|
2006-02-26 06:27:51 +00:00
|
|
|
}
|
|
|
|
pBegin = pStartNextLine;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_bDirty = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
void MemoryTextFile_t::PushLine( char *pLine )
|
|
|
|
{
|
|
|
|
char *pSrc = pLine;
|
|
|
|
while (pSrc && *pSrc)
|
|
|
|
{
|
|
|
|
if (*pSrc == CHAR_CR)
|
2006-02-27 00:31:46 +00:00
|
|
|
m_vBuffer.push_back( EOL_NULL );
|
2006-02-26 06:27:51 +00:00
|
|
|
else
|
|
|
|
if (*pSrc == CHAR_LF)
|
2006-02-27 00:31:46 +00:00
|
|
|
m_vBuffer.push_back( EOL_NULL );
|
2006-02-26 06:27:51 +00:00
|
|
|
else
|
|
|
|
m_vBuffer.push_back( *pSrc );
|
|
|
|
|
|
|
|
pSrc++;
|
|
|
|
}
|
2006-02-27 00:31:46 +00:00
|
|
|
m_vBuffer.push_back( EOL_NULL );
|
2006-02-26 06:27:51 +00:00
|
|
|
|
|
|
|
m_bDirty = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|