+ unify DLL export defines to namespace names
git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5000 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
This commit is contained in:
636
src/Base/Stream.cpp
Normal file
636
src/Base/Stream.cpp
Normal file
@@ -0,0 +1,636 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2007 Werner Mayer <wmayer[at]users.sourceforge.net> *
|
||||
* *
|
||||
* This file is part of the FreeCAD CAx development system. *
|
||||
* *
|
||||
* This library is free software; you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU Library General Public *
|
||||
* License as published by the Free Software Foundation; either *
|
||||
* version 2 of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This library 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 Library General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU Library General Public *
|
||||
* License along with this library; see the file COPYING.LIB. If not, *
|
||||
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
||||
* Suite 330, Boston, MA 02111-1307, USA *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
|
||||
#include "PreCompiled.h"
|
||||
|
||||
#ifndef _PreComp_
|
||||
# include <QBuffer>
|
||||
# include <QByteArray>
|
||||
# include <QDataStream>
|
||||
# include <QIODevice>
|
||||
# include <cstdlib>
|
||||
# include <string>
|
||||
# include <cstdio>
|
||||
# include <cstring>
|
||||
#ifdef __GNUC__
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include "Stream.h"
|
||||
#include "Swap.h"
|
||||
#include "FileInfo.h"
|
||||
|
||||
using namespace Base;
|
||||
|
||||
Stream::Stream() : _swap(false)
|
||||
{
|
||||
}
|
||||
|
||||
Stream::~Stream()
|
||||
{
|
||||
}
|
||||
|
||||
Stream::ByteOrder Stream::byteOrder() const
|
||||
{
|
||||
return _swap ? BigEndian : LittleEndian;
|
||||
}
|
||||
|
||||
void Stream::setByteOrder(ByteOrder bo)
|
||||
{
|
||||
_swap = (bo == BigEndian);
|
||||
}
|
||||
|
||||
OutputStream::OutputStream(std::ostream &rout) : _out(rout)
|
||||
{
|
||||
}
|
||||
|
||||
OutputStream::~OutputStream()
|
||||
{
|
||||
}
|
||||
|
||||
OutputStream& OutputStream::operator << (bool b)
|
||||
{
|
||||
_out.write((const char*)&b, sizeof(bool));
|
||||
return *this;
|
||||
}
|
||||
|
||||
OutputStream& OutputStream::operator << (int8_t ch)
|
||||
{
|
||||
_out.write((const char*)&ch, sizeof(int8_t));
|
||||
return *this;
|
||||
}
|
||||
|
||||
OutputStream& OutputStream::operator << (uint8_t uch)
|
||||
{
|
||||
_out.write((const char*)&uch, sizeof(uint8_t));
|
||||
return *this;
|
||||
}
|
||||
|
||||
OutputStream& OutputStream::operator << (int16_t s)
|
||||
{
|
||||
if (_swap) SwapEndian<int16_t>(s);
|
||||
_out.write((const char*)&s, sizeof(int16_t));
|
||||
return *this;
|
||||
}
|
||||
|
||||
OutputStream& OutputStream::operator << (uint16_t us)
|
||||
{
|
||||
if (_swap) SwapEndian<uint16_t>(us);
|
||||
_out.write((const char*)&us, sizeof(uint16_t));
|
||||
return *this;
|
||||
}
|
||||
|
||||
OutputStream& OutputStream::operator << (int32_t i)
|
||||
{
|
||||
if (_swap) SwapEndian<int32_t>(i);
|
||||
_out.write((const char*)&i, sizeof(int32_t));
|
||||
return *this;
|
||||
}
|
||||
|
||||
OutputStream& OutputStream::operator << (uint32_t ui)
|
||||
{
|
||||
if (_swap) SwapEndian<uint32_t>(ui);
|
||||
_out.write((const char*)&ui, sizeof(uint32_t));
|
||||
return *this;
|
||||
}
|
||||
|
||||
OutputStream& OutputStream::operator << (int64_t l)
|
||||
{
|
||||
if (_swap) SwapEndian<int64_t>(l);
|
||||
_out.write((const char*)&l, sizeof(int64_t));
|
||||
return *this;
|
||||
}
|
||||
|
||||
OutputStream& OutputStream::operator << (uint64_t ul)
|
||||
{
|
||||
if (_swap) SwapEndian<uint64_t>(ul);
|
||||
_out.write((const char*)&ul, sizeof(uint64_t));
|
||||
return *this;
|
||||
}
|
||||
|
||||
OutputStream& OutputStream::operator << (float f)
|
||||
{
|
||||
if (_swap) SwapEndian<float>(f);
|
||||
_out.write((const char*)&f, sizeof(float));
|
||||
return *this;
|
||||
}
|
||||
|
||||
OutputStream& OutputStream::operator << (double d)
|
||||
{
|
||||
if (_swap) SwapEndian<double>(d);
|
||||
_out.write((const char*)&d, sizeof(double));
|
||||
return *this;
|
||||
}
|
||||
|
||||
InputStream::InputStream(std::istream &rin) : _in(rin)
|
||||
{
|
||||
}
|
||||
|
||||
InputStream::~InputStream()
|
||||
{
|
||||
}
|
||||
|
||||
InputStream& InputStream::operator >> (bool& b)
|
||||
{
|
||||
_in.read((char*)&b, sizeof(bool));
|
||||
return *this;
|
||||
}
|
||||
|
||||
InputStream& InputStream::operator >> (int8_t& ch)
|
||||
{
|
||||
_in.read((char*)&ch, sizeof(int8_t));
|
||||
return *this;
|
||||
}
|
||||
|
||||
InputStream& InputStream::operator >> (uint8_t& uch)
|
||||
{
|
||||
_in.read((char*)&uch, sizeof(uint8_t));
|
||||
return *this;
|
||||
}
|
||||
|
||||
InputStream& InputStream::operator >> (int16_t& s)
|
||||
{
|
||||
_in.read((char*)&s, sizeof(int16_t));
|
||||
if (_swap) SwapEndian<int16_t>(s);
|
||||
return *this;
|
||||
}
|
||||
|
||||
InputStream& InputStream::operator >> (uint16_t& us)
|
||||
{
|
||||
_in.read((char*)&us, sizeof(uint16_t));
|
||||
if (_swap) SwapEndian<uint16_t>(us);
|
||||
return *this;
|
||||
}
|
||||
|
||||
InputStream& InputStream::operator >> (int32_t& i)
|
||||
{
|
||||
_in.read((char*)&i, sizeof(int32_t));
|
||||
if (_swap) SwapEndian<int32_t>(i);
|
||||
return *this;
|
||||
}
|
||||
|
||||
InputStream& InputStream::operator >> (uint32_t& ui)
|
||||
{
|
||||
_in.read((char*)&ui, sizeof(uint32_t));
|
||||
if (_swap) SwapEndian<uint32_t>(ui);
|
||||
return *this;
|
||||
}
|
||||
|
||||
InputStream& InputStream::operator >> (int64_t& l)
|
||||
{
|
||||
_in.read((char*)&l, sizeof(int64_t));
|
||||
if (_swap) SwapEndian<int64_t>(l);
|
||||
return *this;
|
||||
}
|
||||
|
||||
InputStream& InputStream::operator >> (uint64_t& ul)
|
||||
{
|
||||
_in.read((char*)&ul, sizeof(uint64_t));
|
||||
if (_swap) SwapEndian<uint64_t>(ul);
|
||||
return *this;
|
||||
}
|
||||
|
||||
InputStream& InputStream::operator >> (float& f)
|
||||
{
|
||||
_in.read((char*)&f, sizeof(float));
|
||||
if (_swap) SwapEndian<float>(f);
|
||||
return *this;
|
||||
}
|
||||
|
||||
InputStream& InputStream::operator >> (double& d)
|
||||
{
|
||||
_in.read((char*)&d, sizeof(double));
|
||||
if (_swap) SwapEndian<double>(d);
|
||||
return *this;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
ByteArrayOStreambuf::ByteArrayOStreambuf(QByteArray& ba) : _buffer(new QBuffer(&ba))
|
||||
{
|
||||
_buffer->open(QIODevice::WriteOnly);
|
||||
}
|
||||
|
||||
ByteArrayOStreambuf::~ByteArrayOStreambuf()
|
||||
{
|
||||
_buffer->close();
|
||||
delete _buffer;
|
||||
}
|
||||
|
||||
std::streambuf::int_type
|
||||
ByteArrayOStreambuf::overflow(std::streambuf::int_type c)
|
||||
{
|
||||
if (c != EOF) {
|
||||
char z = c;
|
||||
if (_buffer->write (&z, 1) != 1) {
|
||||
return EOF;
|
||||
}
|
||||
}
|
||||
return c;
|
||||
}
|
||||
|
||||
std::streamsize ByteArrayOStreambuf::xsputn (const char* s, std::streamsize num)
|
||||
{
|
||||
return _buffer->write(s,num);
|
||||
}
|
||||
|
||||
std::streambuf::pos_type
|
||||
ByteArrayOStreambuf::seekoff(std::streambuf::off_type off,
|
||||
std::ios_base::seekdir way,
|
||||
std::ios_base::openmode /*mode*/)
|
||||
{
|
||||
off_type begpos = 0;
|
||||
off_type endpos = 0;
|
||||
off_type curpos = _buffer->pos();
|
||||
switch (way) {
|
||||
case std::ios_base::beg:
|
||||
begpos = 0;
|
||||
endpos = off;
|
||||
break;
|
||||
case std::ios_base::cur:
|
||||
begpos = curpos;
|
||||
endpos = begpos + off;
|
||||
break;
|
||||
case std::ios_base::end:
|
||||
begpos = _buffer->size();
|
||||
endpos = begpos;
|
||||
break;
|
||||
default:
|
||||
return pos_type(off_type(-1));
|
||||
}
|
||||
|
||||
if (endpos != curpos) {
|
||||
if (!_buffer->seek(endpos))
|
||||
endpos = -1;
|
||||
}
|
||||
|
||||
return pos_type(endpos);
|
||||
}
|
||||
|
||||
std::streambuf::pos_type
|
||||
ByteArrayOStreambuf::seekpos(std::streambuf::pos_type pos,
|
||||
std::ios_base::openmode /*mode*/)
|
||||
{
|
||||
return seekoff(pos, std::ios_base::beg);
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
ByteArrayIStreambuf::ByteArrayIStreambuf(const QByteArray& data) : _buffer(data)
|
||||
{
|
||||
_beg = 0;
|
||||
_end = data.size();
|
||||
_cur = 0;
|
||||
}
|
||||
|
||||
ByteArrayIStreambuf::~ByteArrayIStreambuf()
|
||||
{
|
||||
}
|
||||
|
||||
ByteArrayIStreambuf::int_type ByteArrayIStreambuf::underflow()
|
||||
{
|
||||
if (_cur == _end)
|
||||
return traits_type::eof();
|
||||
|
||||
return static_cast<ByteArrayIStreambuf::int_type>(_buffer[_cur]) & 0x000000ff;
|
||||
}
|
||||
|
||||
ByteArrayIStreambuf::int_type ByteArrayIStreambuf::uflow()
|
||||
{
|
||||
if (_cur == _end)
|
||||
return traits_type::eof();
|
||||
|
||||
return static_cast<ByteArrayIStreambuf::int_type>(_buffer[_cur++]) & 0x000000ff;
|
||||
}
|
||||
|
||||
ByteArrayIStreambuf::int_type ByteArrayIStreambuf::pbackfail(int_type ch)
|
||||
{
|
||||
if (_cur == _beg || (ch != traits_type::eof() && ch != _buffer[_cur-1]))
|
||||
return traits_type::eof();
|
||||
|
||||
return static_cast<ByteArrayIStreambuf::int_type>(_buffer[--_cur]) & 0x000000ff;
|
||||
}
|
||||
|
||||
std::streamsize ByteArrayIStreambuf::showmanyc()
|
||||
{
|
||||
return _end - _cur;
|
||||
}
|
||||
|
||||
std::streambuf::pos_type
|
||||
ByteArrayIStreambuf::seekoff(std::streambuf::off_type off,
|
||||
std::ios_base::seekdir way,
|
||||
std::ios_base::openmode /*mode*/ )
|
||||
{
|
||||
int p_pos=-1;
|
||||
if (way == std::ios_base::beg)
|
||||
p_pos = _beg;
|
||||
else if (way == std::ios_base::end)
|
||||
p_pos = _end;
|
||||
else if (way == std::ios_base::cur)
|
||||
p_pos = _cur;
|
||||
|
||||
if (p_pos > _end)
|
||||
return traits_type::eof();
|
||||
|
||||
if (((p_pos + off) > _end) || ((p_pos + off) < _beg))
|
||||
return traits_type::eof();
|
||||
|
||||
_cur = p_pos+ off;
|
||||
|
||||
return ((p_pos+off) - _beg);
|
||||
}
|
||||
|
||||
std::streambuf::pos_type
|
||||
ByteArrayIStreambuf::seekpos(std::streambuf::pos_type pos,
|
||||
std::ios_base::openmode /*mode*/)
|
||||
{
|
||||
return seekoff(pos, std::ios_base::beg);
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
IODeviceOStreambuf::IODeviceOStreambuf(QIODevice* dev) : device(dev)
|
||||
{
|
||||
}
|
||||
|
||||
IODeviceOStreambuf::~IODeviceOStreambuf()
|
||||
{
|
||||
}
|
||||
|
||||
std::streambuf::int_type
|
||||
IODeviceOStreambuf::overflow(std::streambuf::int_type c)
|
||||
{
|
||||
if (c != EOF) {
|
||||
char z = c;
|
||||
if (device->write (&z, 1) != 1) {
|
||||
return EOF;
|
||||
}
|
||||
}
|
||||
return c;
|
||||
}
|
||||
|
||||
std::streamsize IODeviceOStreambuf::xsputn (const char* s, std::streamsize num)
|
||||
{
|
||||
return device->write(s,num);
|
||||
}
|
||||
|
||||
std::streambuf::pos_type
|
||||
IODeviceOStreambuf::seekoff(std::streambuf::off_type off,
|
||||
std::ios_base::seekdir way,
|
||||
std::ios_base::openmode /*mode*/)
|
||||
{
|
||||
off_type begpos = 0;
|
||||
off_type endpos = 0;
|
||||
off_type curpos = device->pos();
|
||||
switch (way) {
|
||||
case std::ios_base::beg:
|
||||
begpos = 0;
|
||||
endpos = off;
|
||||
break;
|
||||
case std::ios_base::cur:
|
||||
begpos = curpos;
|
||||
endpos = begpos + off;
|
||||
break;
|
||||
case std::ios_base::end:
|
||||
begpos = device->size();
|
||||
endpos = begpos;
|
||||
break;
|
||||
default:
|
||||
return pos_type(off_type(-1));
|
||||
}
|
||||
|
||||
if (endpos != curpos) {
|
||||
if (!device->seek(endpos))
|
||||
endpos = -1;
|
||||
}
|
||||
|
||||
return pos_type(endpos);
|
||||
}
|
||||
|
||||
std::streambuf::pos_type
|
||||
IODeviceOStreambuf::seekpos(std::streambuf::pos_type pos,
|
||||
std::ios_base::openmode /*mode*/)
|
||||
{
|
||||
return seekoff(pos, std::ios_base::beg);
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
IODeviceIStreambuf::IODeviceIStreambuf(QIODevice* dev) : device(dev)
|
||||
{
|
||||
setg (buffer+pbSize, // beginning of putback area
|
||||
buffer+pbSize, // read position
|
||||
buffer+pbSize); // end position
|
||||
}
|
||||
|
||||
IODeviceIStreambuf::~IODeviceIStreambuf()
|
||||
{
|
||||
}
|
||||
|
||||
std::streambuf::int_type
|
||||
IODeviceIStreambuf::underflow()
|
||||
{
|
||||
#ifndef _MSC_VER
|
||||
using std::memcpy;
|
||||
#endif
|
||||
|
||||
// is read position before end of buffer?
|
||||
if (gptr() < egptr()) {
|
||||
return *gptr();
|
||||
}
|
||||
|
||||
/* process size of putback area
|
||||
* - use number of characters read
|
||||
* - but at most size of putback area
|
||||
*/
|
||||
int numPutback;
|
||||
numPutback = gptr() - eback();
|
||||
if (numPutback > pbSize) {
|
||||
numPutback = pbSize;
|
||||
}
|
||||
|
||||
/* copy up to pbSize characters previously read into
|
||||
* the putback area
|
||||
*/
|
||||
memcpy (buffer+(pbSize-numPutback), gptr()-numPutback,
|
||||
numPutback);
|
||||
|
||||
// read at most bufSize new characters
|
||||
int num;
|
||||
num = device->read(buffer+pbSize, bufSize);
|
||||
if (num <= 0) {
|
||||
// ERROR or EOF
|
||||
return EOF;
|
||||
}
|
||||
|
||||
// reset buffer pointers
|
||||
setg (buffer+(pbSize-numPutback), // beginning of putback area
|
||||
buffer+pbSize, // read position
|
||||
buffer+pbSize+num); // end of buffer
|
||||
|
||||
// return next character
|
||||
return *gptr();
|
||||
}
|
||||
|
||||
std::streambuf::pos_type
|
||||
IODeviceIStreambuf::seekoff(std::streambuf::off_type off,
|
||||
std::ios_base::seekdir way,
|
||||
std::ios_base::openmode /*mode*/)
|
||||
{
|
||||
off_type begpos = 0;
|
||||
off_type endpos = 0;
|
||||
off_type curpos = device->pos();
|
||||
switch (way) {
|
||||
case std::ios_base::beg:
|
||||
begpos = 0;
|
||||
endpos = off;
|
||||
break;
|
||||
case std::ios_base::cur:
|
||||
begpos = curpos;
|
||||
endpos = begpos + off;
|
||||
break;
|
||||
case std::ios_base::end:
|
||||
begpos = device->size();
|
||||
endpos = begpos;
|
||||
break;
|
||||
default:
|
||||
return pos_type(off_type(-1));
|
||||
}
|
||||
|
||||
if (endpos != curpos) {
|
||||
if (!device->seek(endpos))
|
||||
endpos = -1;
|
||||
}
|
||||
|
||||
return pos_type(endpos);
|
||||
}
|
||||
|
||||
std::streambuf::pos_type
|
||||
IODeviceIStreambuf::seekpos(std::streambuf::pos_type pos,
|
||||
std::ios_base::openmode /*mode*/)
|
||||
{
|
||||
return seekoff(pos, std::ios_base::beg);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------
|
||||
|
||||
Streambuf::Streambuf(const std::string& data)
|
||||
{
|
||||
_beg = data.begin();
|
||||
_end = data.end();
|
||||
_cur = _beg;
|
||||
}
|
||||
|
||||
Streambuf::~Streambuf()
|
||||
{
|
||||
}
|
||||
|
||||
Streambuf::int_type Streambuf::underflow()
|
||||
{
|
||||
if (_cur == _end)
|
||||
return traits_type::eof();
|
||||
|
||||
return static_cast<Streambuf::int_type>(*_cur) & 0x000000ff;
|
||||
}
|
||||
|
||||
Streambuf::int_type Streambuf::uflow()
|
||||
{
|
||||
if (_cur == _end)
|
||||
return traits_type::eof();
|
||||
|
||||
return static_cast<Streambuf::int_type>(*_cur++) & 0x000000ff;
|
||||
}
|
||||
|
||||
Streambuf::int_type Streambuf::pbackfail( int_type ch )
|
||||
{
|
||||
if (_cur == _beg || (ch != traits_type::eof() && ch != _cur[-1]))
|
||||
return traits_type::eof();
|
||||
|
||||
return static_cast<Streambuf::int_type>(*--_cur) & 0x000000ff;
|
||||
}
|
||||
|
||||
std::streamsize Streambuf::showmanyc()
|
||||
{
|
||||
return _end - _cur;
|
||||
}
|
||||
|
||||
std::streambuf::pos_type
|
||||
Streambuf::seekoff(std::streambuf::off_type off,
|
||||
std::ios_base::seekdir way,
|
||||
std::ios_base::openmode /*mode*/ )
|
||||
{
|
||||
std::string::const_iterator p_pos;
|
||||
if (way == std::ios_base::beg)
|
||||
p_pos = _beg;
|
||||
else if (way == std::ios_base::end)
|
||||
p_pos = _end;
|
||||
else if (way == std::ios_base::cur)
|
||||
p_pos = _cur;
|
||||
|
||||
if (p_pos > _end)
|
||||
return traits_type::eof();
|
||||
|
||||
if (((p_pos + off) > _end) || ((p_pos + off) < _beg))
|
||||
return traits_type::eof();
|
||||
|
||||
_cur = p_pos+ off;
|
||||
|
||||
return ((p_pos+off) - _beg);
|
||||
}
|
||||
|
||||
std::streambuf::pos_type
|
||||
Streambuf::seekpos(std::streambuf::pos_type pos,
|
||||
std::ios_base::openmode which/*mode*/)
|
||||
{
|
||||
return seekoff(pos, std::ios_base::beg);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------
|
||||
|
||||
Base::ofstream::ofstream(const FileInfo& fi, ios_base::openmode mode)
|
||||
#ifdef _MSC_VER
|
||||
: std::ofstream(fi.toStdWString().c_str(), mode)
|
||||
#else
|
||||
: std::ofstream(fi.filePath().c_str(), mode)
|
||||
#endif
|
||||
{
|
||||
}
|
||||
|
||||
Base::ofstream::~ofstream()
|
||||
{
|
||||
}
|
||||
|
||||
Base::ifstream::ifstream(const FileInfo& fi, ios_base::openmode mode)
|
||||
#ifdef _MSC_VER
|
||||
: std::ifstream(fi.toStdWString().c_str(), mode)
|
||||
#else
|
||||
: std::ifstream(fi.filePath().c_str(), mode)
|
||||
#endif
|
||||
{
|
||||
}
|
||||
|
||||
Base::ifstream::~ifstream()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user