Remove unused bufSize argument from streams

This commit is contained in:
Pierre Ossman 2020-05-19 19:49:41 +02:00 committed by Lauri Kasanen
parent 281d65292a
commit 25995e2490
17 changed files with 28 additions and 35 deletions

View File

@ -28,8 +28,8 @@ using namespace rdr;
static const size_t DEFAULT_BUF_SIZE = 8192;
BufferedInStream::BufferedInStream(size_t bufSize_)
: bufSize(bufSize_ ? bufSize_ : DEFAULT_BUF_SIZE), offset(0)
BufferedInStream::BufferedInStream()
: bufSize(DEFAULT_BUF_SIZE), offset(0)
{
ptr = end = start = new U8[bufSize];
}

View File

@ -46,7 +46,7 @@ namespace rdr {
U8* start;
protected:
BufferedInStream(size_t bufSize=0);
BufferedInStream();
};
} // end of namespace rdr

View File

@ -30,8 +30,8 @@ using namespace rdr;
static const size_t DEFAULT_BUF_SIZE = 16384;
BufferedOutStream::BufferedOutStream(size_t bufSize_)
: bufSize(bufSize_ ? bufSize_ : DEFAULT_BUF_SIZE), offset(0)
BufferedOutStream::BufferedOutStream()
: bufSize(DEFAULT_BUF_SIZE), offset(0)
{
ptr = start = sentUpTo = new U8[bufSize];
end = start + bufSize;

View File

@ -57,7 +57,7 @@ namespace rdr {
U8* sentUpTo;
protected:
BufferedOutStream(size_t bufSize=0);
BufferedOutStream();
};
}

View File

@ -48,19 +48,16 @@ using namespace rdr;
enum { DEFAULT_BUF_SIZE = 8192 };
FdInStream::FdInStream(int fd_, int timeoutms_, size_t bufSize_,
FdInStream::FdInStream(int fd_, int timeoutms_,
bool closeWhenDone_)
: BufferedInStream(bufSize_),
fd(fd_), closeWhenDone(closeWhenDone_),
: fd(fd_), closeWhenDone(closeWhenDone_),
timeoutms(timeoutms_), blockCallback(0),
timing(false), timeWaitedIn100us(5), timedKbits(0)
{
}
FdInStream::FdInStream(int fd_, FdInStreamBlockCallback* blockCallback_,
size_t bufSize_)
: BufferedInStream(bufSize_),
fd(fd_), timeoutms(0), blockCallback(blockCallback_),
FdInStream::FdInStream(int fd_, FdInStreamBlockCallback* blockCallback_)
: fd(fd_), timeoutms(0), blockCallback(blockCallback_),
timing(false), timeWaitedIn100us(5), timedKbits(0)
{
}

View File

@ -37,10 +37,8 @@ namespace rdr {
public:
FdInStream(int fd, int timeoutms=-1, size_t bufSize=0,
bool closeWhenDone_=false);
FdInStream(int fd, FdInStreamBlockCallback* blockCallback,
size_t bufSize=0);
FdInStream(int fd, int timeoutms=-1, bool closeWhenDone_=false);
FdInStream(int fd, FdInStreamBlockCallback* blockCallback);
virtual ~FdInStream();
void setTimeout(int timeoutms);

View File

@ -49,9 +49,8 @@
using namespace rdr;
FdOutStream::FdOutStream(int fd_, bool blocking_, int timeoutms_, size_t bufSize_)
: BufferedOutStream(bufSize_),
fd(fd_), blocking(blocking_), timeoutms(timeoutms_)
FdOutStream::FdOutStream(int fd_, bool blocking_, int timeoutms_)
: fd(fd_), blocking(blocking_), timeoutms(timeoutms_)
{
gettimeofday(&lastWrite, NULL);
}

View File

@ -34,7 +34,7 @@ namespace rdr {
public:
FdOutStream(int fd, bool blocking=true, int timeoutms=-1, size_t bufSize=0);
FdOutStream(int fd, bool blocking=true, int timeoutms=-1);
virtual ~FdOutStream();
void setTimeout(int timeoutms);

View File

@ -26,8 +26,8 @@ using namespace rdr;
static inline int min(int a, int b) {return a<b ? a : b;}
HexInStream::HexInStream(InStream& is, size_t bufSize_)
: BufferedInStream(bufSize_), in_stream(is)
HexInStream::HexInStream(InStream& is)
: in_stream(is)
{
}

View File

@ -26,7 +26,7 @@ namespace rdr {
class HexInStream : public BufferedInStream {
public:
HexInStream(InStream& is, size_t bufSize=0);
HexInStream(InStream& is);
virtual ~HexInStream();
static bool readHexAndShift(char c, int* v);

View File

@ -25,8 +25,8 @@ const int DEFAULT_BUF_LEN = 16384;
static inline size_t min(size_t a, size_t b) {return a<b ? a : b;}
HexOutStream::HexOutStream(OutStream& os, size_t buflen)
: out_stream(os), offset(0), bufSize(buflen ? buflen : DEFAULT_BUF_LEN)
HexOutStream::HexOutStream(OutStream& os)
: out_stream(os), offset(0), bufSize(DEFAULT_BUF_LEN)
{
if (bufSize % 2)
bufSize--;

View File

@ -26,7 +26,7 @@ namespace rdr {
class HexOutStream : public OutStream {
public:
HexOutStream(OutStream& os, size_t buflen=0);
HexOutStream(OutStream& os);
virtual ~HexOutStream();
void flush();

View File

@ -24,9 +24,8 @@
using namespace rdr;
ZlibInStream::ZlibInStream(size_t bufSize_)
: BufferedInStream(bufSize_),
underlying(0), zs(NULL), bytesIn(0)
ZlibInStream::ZlibInStream()
: underlying(0), zs(NULL), bytesIn(0)
{
init();
}

View File

@ -33,7 +33,7 @@ namespace rdr {
class ZlibInStream : public BufferedInStream {
public:
ZlibInStream(size_t bufSize=0);
ZlibInStream();
virtual ~ZlibInStream();
void setUnderlying(InStream* is, size_t bytesIn);

View File

@ -30,9 +30,9 @@ using namespace rdr;
enum { DEFAULT_BUF_SIZE = 16384 };
ZlibOutStream::ZlibOutStream(OutStream* os, size_t bufSize_, int compressLevel)
ZlibOutStream::ZlibOutStream(OutStream* os, int compressLevel)
: underlying(os), compressionLevel(compressLevel), newLevel(compressLevel),
bufSize(bufSize_ ? bufSize_ : DEFAULT_BUF_SIZE), offset(0)
bufSize(DEFAULT_BUF_SIZE), offset(0)
{
zs = new z_stream;
zs->zalloc = Z_NULL;

View File

@ -35,7 +35,7 @@ namespace rdr {
public:
ZlibOutStream(OutStream* os=0, size_t bufSize=0, int compressionLevel=-1);
ZlibOutStream(OutStream* os=0, int compressionLevel=-1);
virtual ~ZlibOutStream();
void setUnderlying(OutStream* os);

View File

@ -31,7 +31,7 @@ IntParameter zlibLevel("ZlibLevel","Zlib compression level",-1);
ZRLEEncoder::ZRLEEncoder(SConnection* conn)
: Encoder(conn, encodingZRLE, EncoderPlain, 127),
zos(0,0,zlibLevel), mos(129*1024)
zos(0,zlibLevel), mos(129*1024)
{
zos.setUnderlying(&mos);
}