forked from cirosantilli/cpp-cheat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile_io.cpp
More file actions
220 lines (181 loc) · 5.14 KB
/
file_io.cpp
File metadata and controls
220 lines (181 loc) · 5.14 KB
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/*
# file io
# ifstream
# ofstream
# fstream
*/
#include "common.hpp"
void ios_write_fail(std::string path) {
throw std::ios_base::failure("Error: Could not write to file: " + path);
}
void ios_read_fail(std::string path) {
throw std::ios_base::failure("Error: Could not read file: " + path);
}
/**
Read entire file into a string at once.
*/
void read_file(std::ifstream &ifs, std::string &data_read) {
ifs.seekg(0, std::ios::end);
auto size = ifs.tellg();
data_read.resize(size);
ifs.seekg(0);
ifs.read(&data_read[0], size);
ifs.close();
}
int main() {
std::string path("fileio.tmp");
std::string data("ab\n\nc\n");
// Write to file.
{
std::ofstream ofs(path);
if (ofs) {
ofs << data;
ofs.close();
} else {
ios_write_fail(path);
}
}
/*
# Read entire file at once
http://stackoverflow.com/questions/2602013/read-whole-ascii-file-into-c-stdstring
Best way seems to be to get file size, allocate, and read manually.
*/
{
std::ifstream ifs(path);
if (ifs) {
std::string data_read;
read_file(ifs, data_read);
assert(data_read == data);
} else {
ios_read_fail(path);
}
}
/*
# Copy file to another
# cp
# rdbuf
http://stackoverflow.com/questions/2141749/what-does-ifstreamrdbuf-actually-do
*/
{
std::string data = "abc\ndef\n";
std::string src_path = "src.tmp";
std::string dst_path = "dst.tmp";
// Create input file.
{
std::ofstream src(src_path, std::ios::binary);
src << data;
// 2 times 4 Gb.
//for (int i = 0; i < 2; i++) {
//for (int j = 0; j < 0xFFFFFFFF; j++) {
//src << std::hex << j;
//}
//}
src.close();
}
// Copy.
std::ifstream src(src_path, std::ios::binary);
std::ofstream dst(dst_path, std::ios::binary);
dst << src.rdbuf();
src.close();
dst.close();
// Check copy.
{
std::ifstream dst(dst_path, std::ios::binary);
std::string data_read;
read_file(dst, data_read);
assert(data_read == data);
src.close();
}
}
/*
# Compare two files larger than memory.
TODO is there an easier way than reading each?
*/
{
}
// # Append to file
{
std::ofstream ofs(path);
if (ofs) {
ofs << data;
ofs.close();
} else {
ios_write_fail(path);
}
/*
# open
# Reopen
Can be used to reopen ofstream with new properties.
Also consider clearing error flags if there can be any.
*/
//ofs.clear()
ofs.open(path, std::ios::app);
if (ofs) {
ofs << data;
ofs.close();
} else {
ios_write_fail(path);
}
std::ifstream ifs(path);
if (ifs) {
std::string data_read;
read_file(ifs, data_read);
assert(data_read == data + data);
} else {
ios_read_fail(path);
}
}
/*
# binary io
Use ios::binary, and the binary functions write and read.
*/
{
// TODO
//std::string path("binary.tmp");
//std::vector<int> data{0x123, 0x456};
//std::vector<int>::size_type size = data.size();
//std::vector<int> data_read(size);
//std::ofstream ofs(path, std::ios::binary);
//if (ofs) {
//ofs.write(&data[0], size);
//ofs.close();
//} else {
//ios_write_fail(path);
//}
//std::ifstream ifs(path);
//if (ifs) {
//std::string data_read;
//read_file(ifs, data_read);
//assert(data_read == data);
//} else {
//ios_read_fail(path);
//}
}
/*
# error handling
# is_open vs bool cast
`is_open` false implies `operator bool()` false, but the converse is false: `operator bool()` is more strict.
<http://stackoverflow.com/questions/14920457/c-difference-between-casting-ifstream-to-bool-and-using-ifstreamis-open>
IO functions do not raise exceptions by default, but may be turned on.
The best standard exception to raise is probably `std::ios_base::failure`.
Relevant standard exceptions:
http://en.cppreference.com/w/cpp/io/ios_base/failure
SO thread:
http://stackoverflow.com/questions/9670396/exception-handling-and-opening-a-file
*/
{
std::string path("i_dont_exist.tmp");
std::ifstream ifs(path);
if (ifs) {
assert(false);
} else {
try {
//throw std::ios_base::failure("Error: Could not write to file: " + path);
} catch (std::ios_base::failure e) {
std::clog << e.what() << std::endl;
}
}
}
// # ios::in: flag automatically set for ifstream, but not fstream
//http://stackoverflow.com/questions/7463410/is-iosin-needed-for-ifstreams-opened-in-binary-mode
}