-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
file_util.h
150 lines (130 loc) · 5.76 KB
/
file_util.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
138
139
140
141
142
143
144
145
146
147
148
149
150
// Copyright 2010-2024 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.
#ifndef OR_TOOLS_UTIL_FILE_UTIL_H_
#define OR_TOOLS_UTIL_FILE_UTIL_H_
#include <string>
#include <vector>
#include "absl/log/check.h"
#include "absl/status/statusor.h"
#include "absl/strings/string_view.h"
#include "google/protobuf/message.h"
#include "ortools/base/file.h"
#include "ortools/base/options.h"
#include "ortools/base/recordio.h"
#include "ortools/base/status_macros.h"
namespace operations_research {
// Reads a file, optionally gzipped, to a string.
absl::StatusOr<std::string> ReadFileToString(absl::string_view filename);
// Reads a proto from a file. Supports the following formats: binary, text,
// JSON, all of those optionally gzipped. Returns errors as expected: filesystem
// error, parsing errors, or type error: maybe it was a valid JSON, text proto,
// or binary proto, but not of the right proto message (this is not an exact
// science, but the heuristics used should work well in practice).
absl::Status ReadFileToProto(
absl::string_view filename, google::protobuf::Message* proto,
// If true, unset required fields don't cause errors. This
// boolean doesn't work for JSON inputs.
bool allow_partial = false);
// Exactly like ReadFileToProto(), but directly from the contents.
absl::Status StringToProto(absl::string_view data,
google::protobuf::Message* proto,
bool allow_partial = false);
template <typename Proto>
absl::StatusOr<Proto> ReadFileToProto(absl::string_view filename,
bool allow_partial = false) {
Proto proto;
RETURN_IF_ERROR(ReadFileToProto(filename, &proto, allow_partial))
<< "filename=" << filename;
return proto;
}
// Specifies how the proto should be formatted when writing it to a file.
// kCanonicalJson converts field names to lower camel-case.
enum class ProtoWriteFormat { kProtoText, kProtoBinary, kJson, kCanonicalJson };
// Writes a proto to a file. Supports the following formats: binary, text, JSON,
// all of those optionally gzipped.
// If 'proto_write_format' is kProtoBinary, ".bin" is appended to file_name. If
// 'proto_write_format' is kJson or kCanonicalJson, ".json" is appended to
// file_name. If 'gzipped' is true, ".gz" is appended to file_name.
absl::Status WriteProtoToFile(absl::string_view filename,
const google::protobuf::Message& proto,
ProtoWriteFormat proto_write_format,
bool gzipped = false,
bool append_extension_to_file_name = true);
namespace internal {
// General method to read expected_num_records from a file. If
// expected_num_records is -1, then reads all records from the file. If not,
// dies if the file doesn't contain exactly expected_num_records.
template <typename Proto>
std::vector<Proto> ReadNumRecords(File* file, int expected_num_records) {
recordio::RecordReader reader(file);
std::vector<Proto> protos;
Proto proto;
int num_read = 0;
while (num_read != expected_num_records &&
reader.ReadProtocolMessage(&proto)) {
protos.push_back(proto);
++num_read;
}
CHECK(reader.Close())
<< "File '" << file->filename()
<< "'was not fully read, or something went wrong when closing "
"it. Is it the right format? (RecordIO of Protocol Buffers).";
if (expected_num_records >= 0) {
CHECK_EQ(num_read, expected_num_records)
<< "There were less than the expected " << expected_num_records
<< " in the file.";
}
return protos;
}
// Ditto, taking a filename as argument.
template <typename Proto>
std::vector<Proto> ReadNumRecords(absl::string_view filename,
int expected_num_records) {
return ReadNumRecords<Proto>(file::OpenOrDie(filename, "r", file::Defaults()),
expected_num_records);
}
} // namespace internal
// Reads all records in Proto format in 'file'. Silently does nothing if the
// file is empty. Dies if the file doesn't exist or contains something else than
// protos encoded in RecordIO format.
template <typename Proto>
std::vector<Proto> ReadAllRecordsOrDie(absl::string_view filename) {
return internal::ReadNumRecords<Proto>(filename, -1);
}
template <typename Proto>
std::vector<Proto> ReadAllRecordsOrDie(File* file) {
return internal::ReadNumRecords<Proto>(file, -1);
}
// Reads one record from file, which must be in RecordIO binary proto format.
// Dies if the file can't be read, doesn't contain exactly one record, or
// contains something else than the expected proto in RecordIO format.
template <typename Proto>
Proto ReadOneRecordOrDie(absl::string_view filename) {
Proto p;
p.Swap(&internal::ReadNumRecords<Proto>(filename, 1)[0]);
return p;
}
// Writes all records in Proto format to 'file'. Dies if it is unable to open
// the file or write to it.
template <typename Proto>
void WriteRecordsOrDie(absl::string_view filename,
const std::vector<Proto>& protos) {
recordio::RecordWriter writer(
file::OpenOrDie(filename, "w", file::Defaults()));
for (const Proto& proto : protos) {
CHECK(writer.WriteProtocolMessage(proto));
}
CHECK(writer.Close());
}
} // namespace operations_research
#endif // OR_TOOLS_UTIL_FILE_UTIL_H_