forked from DOMjudge/checktestdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
databuffer.hpp
70 lines (55 loc) · 1.34 KB
/
databuffer.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
Libchecktestdata -- check testdata according to specification.
It's licensed under the 2-clause BSD license, see the file COPYING.
Input data buffer, wraps a string.
*/
#include <string>
#include <cctype>
namespace checktestdata {
int isspace_notnewline(char c) { return isspace(c) && c!='\n'; }
class databuffer {
private:
std::string data;
size_t _pos, _line, _lpos;
public:
databuffer() {}
databuffer(std::string _data): data(_data), _pos(0), _line(0), _lpos(0) {}
bool eof() const { return _pos >= data.size(); }
size_t size() const { return data.size(); }
size_t pos() const { return _pos; }
size_t line() const { return _line; }
size_t lpos() const { return _lpos; }
std::string next(size_t length=1) const
{
size_t end = std::min(size(),_pos+length);
return data.substr(_pos,end-_pos);
}
std::string prev(size_t length=1) const
{
size_t start = std::max(0LL,(long long)_pos-(long long)length);
return data.substr(start,_pos-start);
}
char peek(size_t ahead=0) const
{
if ( _pos+ahead>=size() ) return char();
return data[_pos+ahead];
}
char readchar() {
char c = data[_pos++];
if ( c=='\n' ) {
_line++;
_lpos = 0;
} else {
_lpos++;
}
return c;
}
void readwhitespace()
{
while ( !eof() && isspace_notnewline(data[_pos]) ) {
_pos++;
_lpos++;
}
}
};
} // namespace checktestdata