From 7100d6af6d22ade0914fa5f8275401e37ca9610f Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 17 Oct 2016 08:05:40 +0300 Subject: utils: code dedupe --- utils/helpers/file.hpp | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 utils/helpers/file.hpp (limited to 'utils/helpers') diff --git a/utils/helpers/file.hpp b/utils/helpers/file.hpp new file mode 100644 index 0000000..a327c35 --- /dev/null +++ b/utils/helpers/file.hpp @@ -0,0 +1,48 @@ +// Copyright (c) 2016 Egor Tensin +// 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 + +#include +#include +#include +#include + +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 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 src_buf; + src_buf.reserve(size); + src_buf.assign( + std::istreambuf_iterator(ifs), + std::istreambuf_iterator()); + return src_buf; + } + + inline void write_file( + const std::string& path, + const std::vector& src) + { + std::ofstream ofs; + ofs.exceptions(std::ofstream::badbit | std::ofstream::failbit); + ofs.open(path, std::ofstream::binary); + ofs.write(reinterpret_cast(src.data()), src.size()); + } +} -- cgit v1.2.3