This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 123
/
file_utility.cpp
201 lines (183 loc) · 3.66 KB
/
file_utility.cpp
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#include "file_utility.hpp"
#include "base.hpp"
#include "kconfig_parser_exception.hpp"
namespace kconfig
{
FileUtility::FileUtility (std::string filenameParam, std::unique_ptr<std::istream> fileParam)
: file{ std::move (fileParam) }, stringBuffer{}, currentLine{ 1 }, filename{ std::move (filenameParam) }
{
}
char FileUtility::peekNextChar ()
{
return static_cast<char> (this->file->peek ());
}
bool FileUtility::isNextCharEOF ()
{
return this->file->eof ();
}
bool FileUtility::isNextCharNewline ()
{
char nextChar = peekNextChar ();
return nextChar == character_newline || nextChar == character_carriage_return;
}
bool FileUtility::isNextCharNewlineOrEOF ()
{
return isNextCharNewline () || isNextCharEOF ();
}
bool FileUtility::isNextCharToken ()
{
switch (peekNextChar ())
{
case character_dollar_sign:
case character_open_bracket:
case character_newline:
case character_carriage_return:
case character_equals_sign:
case character_hash_sign:
case character_close_bracket:
case EOF:
return true;
default:
return false;
}
}
void FileUtility::skipChar ()
{
this->file->get ();
}
void FileUtility::skipCharsIfBlank ()
{
while (isblank (peekNextChar ()))
{
skipChar ();
}
}
void FileUtility::skipLine ()
{
++currentLine;
while (true)
{
switch (static_cast<char> (this->file->get ()))
{
case character_newline:
return;
case character_carriage_return:
if (peekNextChar () == character_newline) skipChar ();
return;
case EOF:
if (isNextCharEOF ())
{
return;
}
}
}
}
void FileUtility::skipLineIfEmptyOrComment ()
{
while (true)
{
switch (peekNextChar ())
{
case character_newline:
case character_carriage_return:
case character_hash_sign:
skipLine ();
break;
default:
return;
}
}
}
inline void FileUtility::readEscapedChar (std::ostream & str)
{
switch (static_cast<char> (this->file->get ()))
{
case 'n':
str << '\n';
break;
case 't':
str << '\t';
break;
case 'r':
str << '\r';
break;
case '\\':
str << '\\';
break;
default:
throw KConfigParserException::expect (*this, "valid escape character code ('n', 't', 'r' or '\\')");
}
}
void FileUtility::readUntilChar (std::ostream & str, const char & delimiter)
{
char c;
while (true)
{
c = static_cast<char> (this->file->get ());
if (c == EOF && isNextCharEOF ())
{
break;
}
else if (c == character_newline || c == character_carriage_return || c == delimiter)
{
this->file->putback (c);
break;
}
else if (c == character_escape)
{
readEscapedChar (str);
}
else
{
str << c;
}
}
}
void FileUtility::readUntilChar (std::ostream & str, const char & delimiterA, const char & delimiterB)
{
char c;
while (true)
{
c = static_cast<char> (this->file->get ());
if (c == EOF && isNextCharEOF ())
{
break;
}
else if (c == character_newline || c == character_carriage_return || c == delimiterA || c == delimiterB)
{
this->file->putback (c);
break;
}
else if (c == character_escape)
{
readEscapedChar (str);
}
else
{
str << c;
}
}
}
std::string FileUtility::getUntilChar (const char & delimiter)
{
// Empty the stringBuffer before re-using it
(this->stringBuffer).str (std::string ());
readUntilChar (this->stringBuffer, delimiter);
return (this->stringBuffer).str ();
}
std::string FileUtility::getUntilChar (const char & delimiterA, const char & delimiterB)
{
// Empty the stringBuffer before re-using it
(this->stringBuffer).str (std::string ());
readUntilChar (this->stringBuffer, delimiterA, delimiterB);
return (this->stringBuffer).str ();
}
int FileUtility::getCurrentLineNumber () const
{
return currentLine;
}
std::string FileUtility::getFilename () const
{
return filename;
}
}