/******************************************************************************* MiniSat -- Copyright (c) 2003-2006, Niklas Een, Niklas Sorensson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *******************************************************************************/ #ifndef STREAMBUFFER_H #define STREAMBUFFER_H static const unsigned chunk_limit = 148576; #include #include #include #include #include #include #ifdef USE_ZLIB #include struct GZ { static inline int read(void* buf, size_t num, size_t count, gzFile f) { return gzread(f, buf, num*count); } }; #endif struct FN { static inline int read(void* buf, size_t num, size_t count, FILE* f) { return fread(buf, num, count, f); } }; template class StreamBuffer { A in; void assureLookahead() { if (pos >= size) { pos = 0; size = B::read(buf.get(), 1, chunk_limit, in); } } int pos; int size; std::unique_ptr buf; void advance() { operator++(); } int value() { return operator*(); } public: StreamBuffer(A i) : in(i) , pos(0) , size(0) , buf(new char[chunk_limit]()) { assureLookahead(); } int operator * () { return (pos >= size) ? EOF : buf[pos]; } void operator ++ () { pos++; assureLookahead(); } void skipWhitespace() { char c = value(); while (c == '\t' || c == '\r' || c == ' ') { advance(); c = value(); } } void skipLine() { for (;;) { if (value() == EOF || value() == '\0') return; if (value() == '\n') { advance(); return; } advance(); } } bool skipEOL(const size_t lineNum) { for (;;) { if (value() == EOF || value() == '\0') return true; if (value() == '\n') { advance(); return true; } if (value() != '\r') { std::cerr << "PARSE ERROR! Unexpected char (hex: " << std::hex << std::setw(2) << std::setfill('0') << "0x" << value() << std::setfill(' ') << std::dec << ")" << " At line " << lineNum+1 << " we expected an end of line character (\\n or \\r + \\n)" << std::endl; return false; } advance(); } exit(-1); } bool parseInt(int32_t& ret, size_t lineNum, bool allow_eol = false) { int32_t val = 0; int32_t mult = 1; skipWhitespace(); if (value() == '-') { mult = -1; advance(); } else if (value() == '+') { advance(); } char c = value(); if (allow_eol && c == '\n') { ret = std::numeric_limits::max(); return true; } if (c < '0' || c > '9') { std::cerr << "PARSE ERROR! Unexpected char (dec: '" << c << ")" << " At line " << lineNum << " we expected a number" << std::endl; return false; } while (c >= '0' && c <= '9') { int32_t val2 = val*10 + (c - '0'); if (val2 < val) { std::cerr << "PARSE ERROR! At line " << lineNum << " the variable number is to high" << std::endl; return false; } val = val2; advance(); c = value(); } ret = mult*val; return true; } void parseString(std::string& str) { str.clear(); skipWhitespace(); while (value() != ' ' && value() != '\n' && value() != EOF) { str.push_back(value()); advance(); } } }; #endif //STREAMBUFFER_H