blob: 0f7ce0e55deb87006d0f1dafd52902b0066bb377 (
plain)
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
|
#include <mbgl/util/io.hpp>
#include <cstdio>
#include <cerrno>
#include <iostream>
#include <sstream>
#include <fstream>
#include <unistd.h>
namespace mbgl {
namespace util {
void write_file(const std::string &filename, const std::string &data) {
FILE *fd = fopen(filename.c_str(), "wb");
if (fd) {
fwrite(data.data(), sizeof(std::string::value_type), data.size(), fd);
fclose(fd);
} else {
throw std::runtime_error(std::string("Failed to open file ") + filename);
}
}
std::string read_file(const std::string &filename) {
std::ifstream file(filename);
if (file.good()) {
std::stringstream data;
data << file.rdbuf();
return data.str();
} else {
throw std::runtime_error(std::string("Cannot read file ") + filename);
}
}
void deleteFile(const std::string& filename) {
const int ret = unlink(filename.c_str());
if (ret == -1) {
throw IOException(errno, "failed to unlink file");
}
}
}
}
|