-
Notifications
You must be signed in to change notification settings - Fork 160
/
file_io.cpp
156 lines (129 loc) · 3.91 KB
/
file_io.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
/*
# 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.
https://stackoverflow.com/questions/116038/what-is-the-best-way-to-read-an-entire-file-into-a-stdstring-in-c
*/
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);
}
}
/*
# 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();
}
}
/*
# 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
}