blob: a327c35038a8752cae13ac97bcb37424a5f5b772 (
plain) (
blame)
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
|
// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "AES tools" project.
// For details, see https://github.com/egor-tensin/aes-tools.
// Distributed under the MIT License.
#include <cstddef>
#include <fstream>
#include <iterator>
#include <string>
#include <vector>
namespace file
{
inline std::size_t get_file_size(const std::string& path)
{
std::ifstream ifs;
ifs.exceptions(std::ifstream::badbit | std::ifstream::failbit);
ifs.open(path, std::ifstream::binary | std::ifstream::ate);
return ifs.tellg();
}
inline std::vector<char> read_file(const std::string& path)
{
const auto size = get_file_size(path);
std::ifstream ifs;
ifs.exceptions(std::ifstream::badbit | std::ifstream::failbit);
ifs.open(path, std::ifstream::binary);
std::vector<char> src_buf;
src_buf.reserve(size);
src_buf.assign(
std::istreambuf_iterator<char>(ifs),
std::istreambuf_iterator<char>());
return src_buf;
}
inline void write_file(
const std::string& path,
const std::vector<unsigned char>& src)
{
std::ofstream ofs;
ofs.exceptions(std::ofstream::badbit | std::ofstream::failbit);
ofs.open(path, std::ofstream::binary);
ofs.write(reinterpret_cast<const char*>(src.data()), src.size());
}
}
|