2009-07-24 08:35:21 +00:00
|
|
|
#include "data.h"
|
|
|
|
#include <cstring>
|
|
|
|
|
2011-10-23 19:04:06 -07:00
|
|
|
FILE* pyc_output = stdout;
|
|
|
|
|
2009-07-24 08:35:21 +00:00
|
|
|
/* PycData */
|
|
|
|
int PycData::get16()
|
|
|
|
{
|
|
|
|
/* Ensure endianness */
|
2013-06-30 12:54:35 -07:00
|
|
|
int result = getByte() & 0xFF;
|
|
|
|
result |= (getByte() & 0xFF) << 8;
|
2009-07-24 08:35:21 +00:00
|
|
|
|
|
|
|
/* Extend sign */
|
2013-06-30 12:54:35 -07:00
|
|
|
return (result | -(result & 0x8000));
|
2009-07-24 08:35:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int PycData::get32()
|
|
|
|
{
|
|
|
|
/* Ensure endianness */
|
2013-06-30 12:54:35 -07:00
|
|
|
int result = getByte() & 0xFF;
|
|
|
|
result |= (getByte() & 0xFF) << 8;
|
|
|
|
result |= (getByte() & 0xFF) << 16;
|
|
|
|
result |= (getByte() & 0xFF) << 24;
|
|
|
|
return result;
|
2009-07-24 08:35:21 +00:00
|
|
|
}
|
|
|
|
|
2009-07-25 02:41:15 +00:00
|
|
|
Pyc_INT64 PycData::get64()
|
|
|
|
{
|
|
|
|
/* Ensure endianness */
|
2013-06-30 12:54:35 -07:00
|
|
|
Pyc_INT64 result = (Pyc_INT64)(getByte() & 0xFF);
|
|
|
|
result |= (Pyc_INT64)(getByte() & 0xFF) << 8;
|
|
|
|
result |= (Pyc_INT64)(getByte() & 0xFF) << 16;
|
|
|
|
result |= (Pyc_INT64)(getByte() & 0xFF) << 24;
|
|
|
|
result |= (Pyc_INT64)(getByte() & 0xFF) << 32;
|
|
|
|
result |= (Pyc_INT64)(getByte() & 0xFF) << 40;
|
|
|
|
result |= (Pyc_INT64)(getByte() & 0xFF) << 48;
|
|
|
|
result |= (Pyc_INT64)(getByte() & 0xFF) << 56;
|
|
|
|
return result;
|
2009-07-25 02:41:15 +00:00
|
|
|
}
|
|
|
|
|
2009-07-24 08:35:21 +00:00
|
|
|
|
|
|
|
/* PycFile */
|
|
|
|
PycFile::PycFile(const char* filename)
|
|
|
|
{
|
|
|
|
m_stream = fopen(filename, "rb");
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PycFile::atEof() const
|
|
|
|
{
|
|
|
|
int ch = fgetc(m_stream);
|
|
|
|
ungetc(ch, m_stream);
|
|
|
|
return (ch == EOF);
|
|
|
|
}
|
|
|
|
|
|
|
|
int PycFile::getByte()
|
|
|
|
{
|
|
|
|
int ch = fgetc(m_stream);
|
|
|
|
if (ch == EOF)
|
|
|
|
ungetc(ch, m_stream);
|
|
|
|
return ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
int PycFile::getBuffer(int bytes, void* buffer)
|
|
|
|
{
|
|
|
|
return (int)fread(buffer, 1, bytes, m_stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* PycBuffer */
|
|
|
|
int PycBuffer::getByte()
|
|
|
|
{
|
|
|
|
if (atEof())
|
|
|
|
return EOF;
|
|
|
|
int ch = (int)(*(m_buffer + m_pos));
|
|
|
|
++m_pos;
|
|
|
|
return ch & 0xFF; // Make sure it's just a byte!
|
|
|
|
}
|
|
|
|
|
|
|
|
int PycBuffer::getBuffer(int bytes, void* buffer)
|
|
|
|
{
|
|
|
|
if (m_pos + bytes > m_size)
|
|
|
|
bytes = m_size - m_pos;
|
|
|
|
memcpy(buffer, (m_buffer + m_pos), bytes);
|
|
|
|
return bytes;
|
|
|
|
}
|