forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filelineiter.h
137 lines (122 loc) · 4.27 KB
/
filelineiter.h
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
// Copyright 2010-2018 Google LLC
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Allows to read a text file line by line with:
// for (const std::string& line : FileLines("myfile.txt")) { ... }
//
// More details:
// * The lines are separated by '\n' (which is removed by default) and have no
// size limits.
// * Consecutive '\n' result in empty lines being produced.
// * If not empty, the string after the last '\n' is produced as the last line.
// * Options are available to keep the trailing '\n' for each line, to remove
// carriage-return chararters ('\r'), and to remove blank lines.
//
#ifndef OR_TOOLS_UTIL_FILELINEITER_H_
#define OR_TOOLS_UTIL_FILELINEITER_H_
#include "absl/strings/match.h"
#include "ortools/base/file.h"
#include "ortools/base/logging.h"
// Implements the minimum interface for a range-based for loop iterator.
class FileLineIterator {
public:
enum {
DEFAULT = 0x0000,
REMOVE_LINEFEED = DEFAULT,
KEEP_LINEFEED = 0x0001, // Terminating \n in result.
REMOVE_INLINE_CR = 0x0002, // Remove \r characters.
REMOVE_BLANK_LINES = 0x0004, // Remove empty or \n-only lines.
};
FileLineIterator(File* file, int options)
: next_position_after_eol_(0),
buffer_size_(0),
file_(file),
options_(options) {
ReadNextLine();
}
const std::string& operator*() const { return line_; }
bool operator!=(const FileLineIterator& other) const {
return file_ != other.file_;
}
void operator++() { ReadNextLine(); }
private:
bool HasOption(int option) const { return options_ & option; }
void ReadNextLine() {
line_.clear();
if (file_ == nullptr) return;
do {
while (true) {
int i = next_position_after_eol_;
for (; i < buffer_size_; ++i) {
if (buffer_[i] == '\n') break;
}
if (i == buffer_size_) {
line_.append(&buffer_[next_position_after_eol_],
i - next_position_after_eol_);
buffer_size_ = file_->Read(&buffer_, kBufferSize);
if (buffer_size_ < 0) {
LOG(WARNING) << "Error while reading file.";
file_ = nullptr;
break;
}
next_position_after_eol_ = 0;
if (buffer_size_ == 0) {
if (line_.empty()) {
file_ = nullptr;
}
break;
}
} else {
line_.append(&buffer_[next_position_after_eol_],
i - next_position_after_eol_ + 1);
next_position_after_eol_ = i + 1;
break;
}
}
PostProcessLine();
} while (file_ != nullptr && HasOption(REMOVE_BLANK_LINES) &&
(line_.empty() || line_ == "\n"));
}
void PostProcessLine() {
if (HasOption(REMOVE_INLINE_CR)) {
line_.erase(std::remove(line_.begin(), line_.end(), '\r'), line_.end());
}
const auto eol = std::find(line_.begin(), line_.end(), '\n');
if (!HasOption(KEEP_LINEFEED) && eol != line_.end()) {
line_.erase(eol);
}
}
static constexpr int kBufferSize = 5 * 1024;
char buffer_[kBufferSize];
int next_position_after_eol_;
int64 buffer_size_;
File* file_;
std::string line_;
const int options_;
};
class FileLines {
public:
FileLines(const std::string& filename, int options) : options_(options) {
if (!file::Open(filename, "r", &file_, file::Defaults()).ok()) return;
}
explicit FileLines(const std::string& filename)
: FileLines(filename, FileLineIterator::DEFAULT) {}
~FileLines() {
if (file_ != nullptr) file_->Close(file::Defaults()).IgnoreError();
}
FileLineIterator begin() { return FileLineIterator(file_, options_); }
FileLineIterator end() const { return FileLineIterator(nullptr, options_); }
private:
File* file_;
const int options_;
};
#endif // OR_TOOLS_UTIL_FILELINEITER_H_