summaryrefslogtreecommitdiff
path: root/lib/common/IOStreamGetLine.h
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2011-04-22 13:41:07 +0000
committerChris Wilson <chris+github@qwirx.com>2011-04-22 13:41:07 +0000
commit44999aec110f60912e2d2c6f02afa9591af34569 (patch)
tree627588a72b7999717437acf3a922400065cd11e7 /lib/common/IOStreamGetLine.h
parent48cda1bd70300b09d3e3c81480c851bdc1e10e25 (diff)
Refactor GetLines to share common code, fix whitespace removal at end of line.
Diffstat (limited to 'lib/common/IOStreamGetLine.h')
-rw-r--r--lib/common/IOStreamGetLine.h30
1 files changed, 10 insertions, 20 deletions
diff --git a/lib/common/IOStreamGetLine.h b/lib/common/IOStreamGetLine.h
index 9a5d1818..8e047955 100644
--- a/lib/common/IOStreamGetLine.h
+++ b/lib/common/IOStreamGetLine.h
@@ -12,18 +12,9 @@
#include <string>
+#include "GetLine.h"
#include "IOStream.h"
-#ifdef BOX_RELEASE_BUILD
- #define IOSTREAMGETLINE_BUFFER_SIZE 1024
-#else
- #define IOSTREAMGETLINE_BUFFER_SIZE 4
-#endif
-
-// Just a very large upper bound for line size to avoid
-// people sending lots of data over sockets and causing memory problems.
-#define IOSTREAMGETLINE_MAX_LINE_SIZE (1024*256)
-
// --------------------------------------------------------------------------
//
// Class
@@ -32,7 +23,7 @@
// Created: 2003/07/24
//
// --------------------------------------------------------------------------
-class IOStreamGetLine
+class IOStreamGetLine : public GetLine
{
public:
IOStreamGetLine(IOStream &Stream);
@@ -42,29 +33,28 @@ private:
public:
bool GetLine(std::string &rOutput, bool Preprocess = false, int Timeout = IOStream::TimeOutInfinite);
- bool IsEOF() {return mEOF;}
- int GetLineNumber() {return mLineNumber;}
// Call to detach, setting file pointer correctly to last bit read.
// Only works for lseek-able file descriptors.
void DetachFile();
+ virtual bool IsStreamDataLeft()
+ {
+ return mrStream.StreamDataLeft();
+ }
+
// For doing interesting stuff with the remaining data...
// Be careful with this!
const void *GetBufferedData() const {return mBuffer + mBufferBegin;}
int GetSizeOfBufferedData() const {return mBytesInBuffer - mBufferBegin;}
void IgnoreBufferedData(int BytesToIgnore);
IOStream &GetUnderlyingStream() {return mrStream;}
+
+protected:
+ int ReadMore(int Timeout = IOStream::TimeOutInfinite);
private:
- char mBuffer[IOSTREAMGETLINE_BUFFER_SIZE];
IOStream &mrStream;
- int mLineNumber;
- int mBufferBegin;
- int mBytesInBuffer;
- bool mPendingEOF;
- bool mEOF;
- std::string mPendingString;
};
#endif // IOSTREAMGETLINE__H