Merge pull request #476 from MihailRis/zip

ZIP Files
This commit is contained in:
MihailRis 2025-02-26 01:21:19 +03:00 committed by GitHub
commit fd59aa4f65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 982 additions and 15 deletions

View File

@ -7,13 +7,13 @@
namespace gzip {
const unsigned char MAGIC[] = "\x1F\x8B";
/* Compress bytes array to GZIP format
@param src source bytes array
@param size length of source bytes array */
/// Compress bytes array to GZIP format
/// @param src source bytes array
/// @param size length of source bytes array
std::vector<ubyte> compress(const ubyte* src, size_t size);
/* Decompress bytes array from GZIP
@param src GZIP data
@param size length of GZIP data */
/// Decompress bytes array from GZIP
/// @param src GZIP data
/// @param size length of GZIP data
std::vector<ubyte> decompress(const ubyte* src, size_t size);
}

View File

@ -0,0 +1,99 @@
#pragma once
#define ZLIB_CONST
#include <zlib.h>
#include <istream>
#include <memory>
#include <array>
#include <stdexcept>
class deflate_istreambuf : public std::streambuf {
public:
explicit deflate_istreambuf(std::istream& src) : src(src) {
zstream.zalloc = Z_NULL;
zstream.zfree = Z_NULL;
zstream.opaque = Z_NULL;
zstream.avail_in = 0;
zstream.next_in = Z_NULL;
int ret = inflateInit2(&zstream, -15);
if (ret != Z_OK) {
throw std::runtime_error("zlib init failed");
}
}
~deflate_istreambuf() {
inflateEnd(&zstream);
}
deflate_istreambuf(const deflate_istreambuf&) = delete;
deflate_istreambuf& operator=(const deflate_istreambuf&) = delete;
protected:
int_type underflow() override {
if (gptr() < egptr()) {
return traits_type::to_int_type(*gptr());
}
if (eof) {
return traits_type::eof();
}
zstream.next_out = reinterpret_cast<Bytef*>(outBuf.data());
zstream.avail_out = outBuf.size();
do {
if (zstream.avail_in == 0) {
src.read(inBuf.data(), inBuf.size());
zstream.avail_in = static_cast<uInt>(src.gcount());
zstream.next_in = reinterpret_cast<Bytef*>(inBuf.data());
if (src.bad()) {
return traits_type::eof();
}
}
int ret = inflate(&zstream, Z_NO_FLUSH);
if (ret == Z_STREAM_END) {
eof = true;
} else if (ret != Z_OK) {
if (ret == Z_BUF_ERROR && zstream.avail_out == outBuf.size()) {
continue;
}
return traits_type::eof();
}
const auto decompressed = outBuf.size() - zstream.avail_out;
if (decompressed > 0) {
setg(outBuf.data(),
outBuf.data(),
outBuf.data() + decompressed);
return traits_type::to_int_type(*gptr());
}
if (eof) {
return traits_type::eof();
}
} while (zstream.avail_in > 0 || !src.eof());
return traits_type::eof();
}
private:
static constexpr size_t BUFFER_SIZE = 16384;
std::istream& src;
z_stream zstream {};
std::array<char, BUFFER_SIZE> inBuf {};
std::array<char, BUFFER_SIZE> outBuf {};
bool eof = false;
};
class deflate_istream : public std::istream {
public:
explicit deflate_istream(std::unique_ptr<std::istream> src)
: std::istream(&buffer), source(std::move(src)), buffer(*source) {}
private:
std::unique_ptr<std::istream> source;
deflate_istreambuf buffer;
};

118
src/io/deflate_ostream.hpp Normal file
View File

@ -0,0 +1,118 @@
#include <iostream>
#include <streambuf>
#include <memory>
#include <zlib.h>
class deflate_ostreambuf : public std::streambuf {
public:
deflate_ostreambuf(std::ostream& dest, int level = Z_DEFAULT_COMPRESSION)
: dest(dest) {
zstream.zalloc = Z_NULL;
zstream.zfree = Z_NULL;
zstream.opaque = Z_NULL;
int ret = deflateInit2(
&zstream, level, Z_DEFLATED, -15, 8, Z_DEFAULT_STRATEGY
);
if (ret != Z_OK) {
throw std::runtime_error("zlib deflate initialization failed");
}
inBuffer = std::make_unique<char[]>(bufferSize);
outBuffer = std::make_unique<char[]>(outBufferSize);
setp(inBuffer.get(), inBuffer.get() + bufferSize - 1);
}
~deflate_ostreambuf() {
try {
close();
} catch (...) {
std::cerr << "error in zlib output stream finalization" << std::endl;
}
}
bool close() {
overflow(EOF);
// Finalize the deflate stream
zstream.avail_in = 0;
zstream.next_in = nullptr;
int ret;
do {
zstream.avail_out = outBufferSize;
zstream.next_out = reinterpret_cast<Bytef*>(outBuffer.get());
ret = deflate(&zstream, Z_FINISH);
if (ret == Z_STREAM_ERROR) {
break;
}
size_t compressed_size = outBufferSize - zstream.avail_out;
dest.write(outBuffer.get(), compressed_size);
} while (ret != Z_STREAM_END);
deflateEnd(&zstream);
return true;
}
protected:
int overflow(int c) override {
if (c != EOF) {
*pptr() = static_cast<char>(c);
pbump(1);
}
if (process_input() == EOF) {
return EOF;
}
return c != EOF ? 0 : EOF;
}
int sync() override {
if (process_input(Z_SYNC_FLUSH) == EOF) {
return -1;
}
dest.flush();
return 0;
}
private:
static const size_t bufferSize = 512;
static const size_t outBufferSize = bufferSize * 2;
std::ostream& dest;
z_stream zstream {};
std::unique_ptr<char[]> inBuffer;
std::unique_ptr<char[]> outBuffer;
int process_input(int flush = Z_NO_FLUSH) {
size_t input_size = pptr() - pbase();
zstream.avail_in = static_cast<uInt>(input_size);
zstream.next_in = reinterpret_cast<Bytef*>(pbase());
int ret;
do {
zstream.avail_out = outBufferSize;
zstream.next_out = reinterpret_cast<Bytef*>(outBuffer.get());
ret = deflate(&zstream, flush);
if (ret == Z_STREAM_ERROR) {
return EOF;
}
size_t compressed_size = outBufferSize - zstream.avail_out;
dest.write(outBuffer.get(), compressed_size);
if (!dest) {
return EOF;
}
} while (zstream.avail_out == 0);
setp(inBuffer.get(), inBuffer.get() + bufferSize - 1);
return 0;
}
};
class deflate_ostream : public std::ostream {
public:
explicit deflate_ostream(std::ostream& dest, int level = Z_DEFAULT_COMPRESSION)
: std::ostream(&buffer), buffer(dest, level) {}
private:
deflate_ostreambuf buffer;
};

View File

@ -8,7 +8,6 @@
#include "../path.hpp"
namespace io {
/// @brief Device interface for file system operations
class Device {
public:
@ -28,6 +27,9 @@ namespace io {
/// @brief Get file size in bytes
virtual size_t size(std::string_view path) = 0;
/// @brief Get file last write timestamp
virtual file_time_type lastWriteTime(std::string_view path) = 0;
/// @brief Check if file or directory exists
virtual bool exists(std::string_view path) = 0;
@ -82,6 +84,10 @@ namespace io {
return parent->size((root / path).pathPart());
}
file_time_type lastWriteTime(std::string_view path) override {
return parent->lastWriteTime((root / path).pathPart());
}
bool exists(std::string_view path) override {
return parent->exists((root / path).pathPart());
}

View File

@ -45,23 +45,23 @@ std::unique_ptr<std::istream> StdfsDevice::read(std::string_view path) {
}
size_t StdfsDevice::size(std::string_view path) {
auto resolved = resolve(path);
return fs::file_size(resolved);
return fs::file_size(resolve(path));
}
file_time_type StdfsDevice::lastWriteTime(std::string_view path) {
return fs::last_write_time(resolve(path));
}
bool StdfsDevice::exists(std::string_view path) {
auto resolved = resolve(path);
return fs::exists(resolved);
return fs::exists(resolve(path));
}
bool StdfsDevice::isdir(std::string_view path) {
auto resolved = resolve(path);
return fs::is_directory(resolved);
return fs::is_directory(resolve(path));
}
bool StdfsDevice::isfile(std::string_view path) {
auto resolved = resolve(path);
return fs::is_regular_file(resolved);
return fs::is_regular_file(resolve(path));
}
bool StdfsDevice::mkdir(std::string_view path) {

View File

@ -10,6 +10,7 @@ namespace io {
std::unique_ptr<std::ostream> write(std::string_view path) override;
std::unique_ptr<std::istream> read(std::string_view path) override;
size_t size(std::string_view path) override;
file_time_type lastWriteTime(std::string_view path) override;
bool exists(std::string_view path) override;
bool isdir(std::string_view path) override;
bool isfile(std::string_view path) override;

View File

@ -0,0 +1,442 @@
#include "ZipFileDevice.hpp"
#include <vector>
#include "debug/Logger.hpp"
#include "io/memory_istream.hpp"
#include "io/memory_ostream.hpp"
#include "io/deflate_istream.hpp"
#include "io/deflate_ostream.hpp"
#include "util/data_io.hpp"
#include "util/Buffer.hpp"
static debug::Logger logger("zip-file");
using namespace io;
using namespace std::chrono;
static constexpr uint32_t EOCD_SIGNATURE = 0x06054b50;
static constexpr uint32_t CENTRAL_DIR_SIGNATURE = 0x02014b50;
static constexpr uint32_t LOCAL_FILE_SIGNATURE = 0x04034b50;
static constexpr uint32_t COMPRESSION_NONE = 0;
static constexpr uint32_t COMPRESSION_DEFLATE = 8;
namespace {
template<typename T>
T read_int(std::unique_ptr<std::istream>& file) {
T value = 0;
file->read(reinterpret_cast<char*>(&value), sizeof(value));
return dataio::le2h(value);
}
template<typename T>
void read_int(std::unique_ptr<std::istream>& file, T& value) {
file->read(reinterpret_cast<char*>(&value), sizeof(value));
value = dataio::le2h(value);
}
file_time_type msdos_to_file_time(uint16_t date, uint16_t time) {
uint16_t year = ((date >> 9) & 0x7F) + 1980;
uint16_t month = (date >> 5) & 0x0F;
uint16_t day = date & 0x1F;
uint16_t hours = (time >> 11) & 0x1F;
uint16_t minutes = (time >> 5) & 0x3F;
uint16_t seconds = (time & 0x1F) * 2;
std::tm time_struct = {};
time_struct.tm_year = year - 1900;
time_struct.tm_mon = month - 1;
time_struct.tm_mday = day;
time_struct.tm_hour = hours;
time_struct.tm_min = minutes;
time_struct.tm_sec = seconds;
time_struct.tm_isdst = -1;
std::time_t time_t_value = std::mktime(&time_struct);
auto time_point = system_clock::from_time_t(time_t_value);
return file_time_type::clock::now() + (time_point - system_clock::now());
}
uint32_t to_ms_dos_timestamp(const file_time_type& fileTime) {
auto timePoint = time_point_cast<system_clock::duration>(
fileTime - file_time_type::clock::now() + system_clock::now()
);
std::time_t timeT = system_clock::to_time_t(timePoint);
std::tm tm = *std::localtime(&timeT);
uint16_t date = (tm.tm_year - 80) << 9 | (tm.tm_mon + 1) << 5 | tm.tm_mday;
uint16_t time = (tm.tm_hour << 11) | (tm.tm_min << 5) | (tm.tm_sec / 2);
return (date << 16) | time;
}
}
ZipFileDevice::Entry ZipFileDevice::readEntry() {
// Read entry info
Entry entry {};
read_int(file, entry.versionMadeBy);
read_int(file, entry.versionNeeded);
read_int(file, entry.flags);
read_int(file, entry.compressionMethod);
read_int(file, entry.modTime);
read_int(file, entry.modDate);
read_int(file, entry.crc32);
read_int(file, entry.compressedSize);
read_int(file, entry.uncompressedSize);
auto filename_len = read_int<uint16_t>(file);
auto extra_field_len = read_int<uint16_t>(file);
auto file_comment_len = read_int<uint16_t>(file);
read_int(file, entry.diskNumberStart);
read_int(file, entry.internalAttributes);
read_int(file, entry.externalAttributes);
read_int(file, entry.localHeaderOffset);
entry.fileName.resize(filename_len, '\0');
file->read(entry.fileName.data(), filename_len);
// Skip extra field and file comment
file->seekg(extra_field_len + file_comment_len, std::ios::cur);
if (entry.diskNumberStart == 0xFF) {
throw std::runtime_error("zip64 is not supported");
}
for (size_t i = 0; i < entry.fileName.length(); i++) {
if (entry.fileName[i] == '\\') {
entry.fileName[i] = '/';
}
}
if (entry.fileName[entry.fileName.length() - 1] == '/') {
entry.isDirectory = true;
entry.fileName = entry.fileName.substr(0, entry.fileName.length() - 1);
}
return entry;
}
void ZipFileDevice::findBlob(Entry& entry) {
file->seekg(entry.localHeaderOffset);
if (read_int<uint32_t>(file) != LOCAL_FILE_SIGNATURE) {
throw std::runtime_error("invalid local file signature");
}
read_int<uint16_t>(file); // version
read_int<uint16_t>(file); // flags
read_int<uint16_t>(file); // compression method
read_int<uint16_t>(file); // last modification time
read_int<uint16_t>(file); // last modification date
read_int<uint32_t>(file); // crc32
read_int<uint32_t>(file); // compressed size
read_int<uint32_t>(file); // uncompressed size
auto name_len = read_int<uint16_t>(file);
auto extra_field_len = read_int<uint16_t>(file);
// Skip extra field and file comment
file->seekg(name_len + extra_field_len, std::ios::cur);
entry.blobOffset = file->tellg();
}
ZipFileDevice::ZipFileDevice(
std::unique_ptr<std::istream> filePtr, FileSeparateFunc separateFunc
)
: file(std::move(filePtr)), separateFunc(std::move(separateFunc)) {
// Searching for EOCD
file->seekg(0, std::ios::end);
std::streampos file_size = file->tellg();
bool foundEOCD = false;
for (int pos = static_cast<int>(file_size)-4; pos >= 0; --pos) {
file->seekg(pos);
if (read_int<uint32_t>(file) == EOCD_SIGNATURE) {
foundEOCD = true;
break;
}
}
if (!foundEOCD) {
throw std::runtime_error("EOCD not found, ZIP file is invalid");
}
// Reading EOCD
read_int<uint16_t>(file); // diskNumber
read_int<uint16_t>(file); // centralDirDisk
read_int<uint16_t>(file); // numEntriesThisDisk
auto total_entries = read_int<uint16_t>(file);
read_int<uint32_t>(file); // centralDirSize
auto central_dir_offset = read_int<uint32_t>(file);
read_int<uint16_t>(file); // commentLength
file->seekg(central_dir_offset);
for (uint16_t i = 0; i < total_entries; i++) {
if (read_int<uint32_t>(file) != CENTRAL_DIR_SIGNATURE) {
logger.error() << "invalid central directory entry";
break;
}
// Read entry info
Entry entry = readEntry();
entries[entry.fileName] = std::move(entry);
}
for (auto& [_, entry] : entries) {
findBlob(entry);
}
}
std::filesystem::path ZipFileDevice::resolve(std::string_view path) {
throw std::runtime_error("unable to resolve filesystem path");
}
std::unique_ptr<std::ostream> ZipFileDevice::write(std::string_view path) {
return nullptr;
}
std::unique_ptr<std::istream> ZipFileDevice::read(std::string_view path) {
const auto& found = entries.find(std::string(path));
if (found == entries.end()) {
throw std::runtime_error("could not to open file zip://" + std::string(path));
}
auto& entry = found->second;
if (entry.isDirectory) {
throw std::runtime_error("zip://" + std::string(path) + " is directory");
}
if (entry.blobOffset == 0) {
findBlob(entry);
}
std::unique_ptr<std::istream> src_stream;
if (separateFunc) {
// Create new istream for concurrent data reading
src_stream = separateFunc();
src_stream->seekg(entry.blobOffset);
} else {
// Read compressed data to memory if istream cannot be separated
file->seekg(entry.blobOffset);
util::Buffer<char> buffer(entry.compressedSize);
file->read(buffer.data(), buffer.size());
src_stream = std::make_unique<memory_istream>(std::move(buffer));
}
if (entry.compressionMethod == COMPRESSION_NONE) {
return src_stream;
} else if (entry.compressionMethod == COMPRESSION_DEFLATE) {
return std::make_unique<deflate_istream>(std::move(src_stream));
} else {
throw std::runtime_error(
"unsupported compression method [" +
std::to_string(entry.compressionMethod) + "]"
);
}
}
size_t ZipFileDevice::size(std::string_view path) {
const auto& found = entries.find(std::string(path));
if (found == entries.end()) {
return false;
}
return found->second.uncompressedSize;
}
file_time_type ZipFileDevice::lastWriteTime(std::string_view path) {
const auto& found = entries.find(std::string(path));
if (found == entries.end()) {
return file_time_type::min();
}
return msdos_to_file_time(found->second.modDate, found->second.modTime);
}
bool ZipFileDevice::exists(std::string_view path) {
return entries.find(std::string(path)) != entries.end();
}
bool ZipFileDevice::isdir(std::string_view path) {
const auto& found = entries.find(std::string(path));
if (found == entries.end()) {
return false;
}
return found->second.isDirectory;
}
bool ZipFileDevice::isfile(std::string_view path) {
const auto& found = entries.find(std::string(path));
if (found == entries.end()) {
return false;
}
return !found->second.isDirectory;
}
bool ZipFileDevice::mkdir(std::string_view path) {
return false;
}
bool ZipFileDevice::mkdirs(std::string_view path) {
return false;
}
bool ZipFileDevice::remove(std::string_view path) {
return false;
}
uint64_t ZipFileDevice::removeAll(std::string_view path) {
return 0;
}
class ListPathsGenerator : public PathsGenerator {
public:
ListPathsGenerator(std::vector<std::string> names)
: names(std::move(names)) {};
bool next(path& dst) override {
if (current == names.size()) {
return false;
}
dst = names[current++];
return true;
}
private:
std::vector<std::string> names;
size_t current = 0;
};
std::unique_ptr<PathsGenerator> ZipFileDevice::list(std::string_view path) {
std::vector<std::string> names;
if (path.empty()) {
for (const auto& [name, entry] : entries) {
if (name.find('/') == std::string::npos) {
names.push_back(name);
}
}
} else {
auto folder = std::string(path) + "/";
size_t folder_len = folder.length();
for (const auto& [name, entry] : entries) {
if (name.find(folder) != 0) {
continue;
}
size_t pos = name.find('/', folder_len);
if (pos == std::string::npos) {
names.push_back(name.substr(folder_len, pos - folder_len));
}
if (pos == name.length() - 1) {
names.push_back(name.substr(folder_len, pos - folder_len));
}
}
}
return std::make_unique<ListPathsGenerator>(std::move(names));
}
#include "io/io.hpp"
#include "coders/byte_utils.hpp"
static void write_headers(
std::ostream& file,
const std::string& name,
size_t source_Size,
size_t compressed_size,
uint32_t crc,
int compression_method,
const file_time_type& last_write_time,
ByteBuilder& central_dir
) {
auto timestamp = to_ms_dos_timestamp(last_write_time);
ByteBuilder header;
header.putInt32(LOCAL_FILE_SIGNATURE);
header.putInt16(10); // version
header.putInt16(0); // flags
header.putInt16(compression_method); // compression method
header.putInt32(timestamp); // last modification datetime
header.putInt32(crc); // crc32
header.putInt32(compressed_size);
header.putInt32(source_Size);
header.putInt16(name.length());
header.putInt16(0); // extra field length
header.put(reinterpret_cast<const ubyte*>(name.data()), name.length());
size_t local_header_offset = file.tellp();
file.write(reinterpret_cast<const char*>(header.data()), header.size());
central_dir.putInt32(CENTRAL_DIR_SIGNATURE);
central_dir.putInt16(10); // version
central_dir.putInt16(0); // version
central_dir.putInt16(0); // flags
central_dir.putInt16(compression_method); // compression method
central_dir.putInt32(timestamp); // last modification datetime
central_dir.putInt32(crc); // crc32
central_dir.putInt32(compressed_size);
central_dir.putInt32(source_Size);
central_dir.putInt16(name.length());
central_dir.putInt16(0); // extra field length
central_dir.putInt16(0); // file comment length
central_dir.putInt16(0); // disk number start
central_dir.putInt16(0); // internal attributes
central_dir.putInt32(0); // external attributes
central_dir.putInt32(local_header_offset); // local header offset
central_dir.put(reinterpret_cast<const ubyte*>(name.data()), name.length());
}
static size_t write_zip(
const std::string& root,
const path& folder,
std::ostream& file,
ByteBuilder& central_dir
) {
size_t entries = 0;
for (const auto& entry : io::directory_iterator(folder)) {
auto name = entry.pathPart().substr(root.length() + 1);
auto last_write_time = io::last_write_time(entry);
if (io::is_directory(entry)) {
name = name + "/";
write_headers(
file,
name,
0,
0,
0,
COMPRESSION_NONE,
last_write_time,
central_dir
);
entries += write_zip(root, entry, file, central_dir) + 1;
} else {
auto uncompressed = io::read_bytes_buffer(entry);
uint32_t crc = crc32(0, uncompressed.data(), uncompressed.size());
memory_ostream memory_stream;
{
deflate_ostream deflate_stream(memory_stream);
deflate_stream.write(
reinterpret_cast<char*>(uncompressed.data()),
uncompressed.size()
);
deflate_stream.flush();
}
auto data = memory_stream.release();
size_t data_size = data.size();
write_headers(
file,
name,
uncompressed.size(),
data_size,
crc,
COMPRESSION_DEFLATE,
last_write_time,
central_dir
);
file.write(reinterpret_cast<const char*>(data.data()), data_size);
entries++;
}
}
return entries;
}
void io::write_zip(const path& folder, const path& file) {
ByteBuilder central_dir;
auto out = io::write(file);
size_t entries = write_zip(folder.pathPart(), folder, *out, central_dir);
size_t central_dir_offset = out->tellp();
out->write(reinterpret_cast<const char*>(central_dir.data()), central_dir.size());
ByteBuilder eocd;
eocd.putInt32(EOCD_SIGNATURE);
eocd.putInt16(0); // disk number
eocd.putInt16(0); // central dir disk
eocd.putInt16(entries); // num entries
eocd.putInt16(entries); // total entries
eocd.putInt32(central_dir.size()); // central dir size
eocd.putInt32(central_dir_offset); // central dir offset
eocd.putInt16(0); // comment length
out->write(reinterpret_cast<const char*>(eocd.data()), eocd.size());
}

View File

@ -0,0 +1,62 @@
#pragma once
#include <functional>
#include <unordered_map>
#include "Device.hpp"
namespace io {
class ZipFileDevice : public Device {
struct Entry {
uint16_t versionMadeBy;
uint16_t versionNeeded;
uint16_t flags;
uint16_t compressionMethod;
uint16_t modTime;
uint16_t modDate;
uint32_t crc32;
uint32_t compressedSize;
uint32_t uncompressedSize;
uint16_t diskNumberStart;
uint16_t internalAttributes;
uint32_t externalAttributes;
uint32_t localHeaderOffset;
std::string fileName;
size_t blobOffset = 0;
bool isDirectory = false;
};
public:
using FileSeparateFunc = std::function<std::unique_ptr<std::istream>()>;
/// @param file ZIP file seekable istream
/// @param separateFunc Optional function that creates new seekable
/// istream for the ZIP file.
ZipFileDevice(
std::unique_ptr<std::istream> file,
FileSeparateFunc separateFunc = nullptr
);
std::filesystem::path resolve(std::string_view path) override;
std::unique_ptr<std::ostream> write(std::string_view path) override;
std::unique_ptr<std::istream> read(std::string_view path) override;
size_t size(std::string_view path) override;
io::file_time_type lastWriteTime(std::string_view path) override;
bool exists(std::string_view path) override;
bool isdir(std::string_view path) override;
bool isfile(std::string_view path) override;
bool mkdir(std::string_view path) override;
bool mkdirs(std::string_view path) override;
bool remove(std::string_view path) override;
uint64_t removeAll(std::string_view path) override;
std::unique_ptr<PathsGenerator> list(std::string_view path) override;
private:
std::unique_ptr<std::istream> file;
FileSeparateFunc separateFunc;
std::unordered_map<std::string, Entry> entries;
Entry readEntry();
void findBlob(Entry& entry);
};
void write_zip(const path& folder, const path& file);
}

View File

@ -107,6 +107,14 @@ bool io::read(const io::path& filename, char* data, size_t size) {
return stream->good();
}
std::unique_ptr<std::ostream> io::write(const io::path& file) {
auto device = io::get_device(file.entryPoint());
if (device == nullptr) {
throw std::runtime_error("io-device not found: " + file.entryPoint());
}
return device->write(file.pathPart());
}
std::unique_ptr<std::istream> io::read(const io::path& filename) {
auto device = io::get_device(filename.entryPoint());
if (device == nullptr) {
@ -252,11 +260,66 @@ uint64_t io::remove_all(const io::path& file) {
return device.removeAll(file.pathPart());
}
bool io::copy(const io::path& src, const io::path& dst) {
auto& srcDevice = io::require_device(src.entryPoint());
auto& dstDevice = io::require_device(dst.entryPoint());
if (!srcDevice.isfile(src.pathPart())) {
return false;
}
auto input = srcDevice.read(src.pathPart());
auto output = dstDevice.write(dst.pathPart());
size_t size = srcDevice.size(src.pathPart());
std::vector<char> buffer(16'384);
while (size > 0) {
size_t read = std::min(size, buffer.size());
input->read(buffer.data(), read);
auto gcount = input->gcount();
output->write(buffer.data(), gcount);
size -= gcount;
if (input->eof()) {
break;
}
if (!input->good() || !output->good()) {
return false;
}
}
return output->good();
}
uint64_t io::copy_all(const io::path& src, const io::path& dst) {
auto& srcDevice = io::require_device(src.entryPoint());
auto& dstDevice = io::require_device(dst.entryPoint());
auto dstPath = dst.pathPart();
if (!dstDevice.isdir(dstPath) && !dstDevice.mkdirs(dstPath)) {
return 0;
}
uint64_t count = 0;
for (auto& srcSubFile : directory_iterator(src)) {
auto dstSubFile = dst / srcSubFile.name();
auto srcSubPath = srcSubFile.pathPart();
auto dstSubPath = dstSubFile.pathPart();
if (srcDevice.isdir(srcSubPath)) {
if (!dstDevice.mkdirs(dstSubPath)) {
continue;
}
count += copy_all(srcSubFile, dstSubFile);
} else if (copy(srcSubFile, dstSubFile)) {
count++;
}
}
return count;
}
size_t io::file_size(const io::path& file) {
auto& device = io::require_device(file.entryPoint());
return device.size(file.pathPart());
}
io::file_time_type io::last_write_time(const io::path& file) {
auto& device = io::require_device(file.entryPoint());
return device.lastWriteTime(file.pathPart());
}
std::filesystem::path io::resolve(const io::path& file) {
auto device = io::get_device(file.entryPoint());
if (device == nullptr) {

View File

@ -142,6 +142,10 @@ namespace io {
bool compressed = false
);
/// @brief Open file for writing
/// @throw std::runtime_error if file cannot be opened
std::unique_ptr<std::ostream> write(const io::path& file);
/// @brief Open file for reading
/// @throw std::runtime_error if file cannot be opened
std::unique_ptr<std::istream> read(const io::path& file);
@ -187,12 +191,24 @@ namespace io {
/// @brief Remove file or empty directory
bool remove(const io::path& file);
/// @brief Copy src file to dst file
/// @param src source file path
/// @param dst destination file path
/// @return true if success
bool copy(const io::path& src, const io::path& dst);
/// @brief Copy all files and directories in the folder recursively
uint64_t copy_all(const io::path& src, const io::path& dst);
/// @brief Remove all files and directories in the folder recursively
uint64_t remove_all(const io::path& file);
/// @brief Get file size in bytes
size_t file_size(const io::path& file);
/// @brief Get file last write time timestamp
file_time_type last_write_time(const io::path& file);
std::filesystem::path resolve(const io::path& file);
/// @brief Check if file is one of the supported data interchange formats

34
src/io/memory_istream.hpp Normal file
View File

@ -0,0 +1,34 @@
#pragma once
#include <istream>
#include "util/Buffer.hpp"
class memory_streambuf : public std::streambuf {
public:
explicit memory_streambuf(util::Buffer<char> buffer)
: buffer(std::move(buffer)) {
char* base = this->buffer.data();
char* end = base + this->buffer.size();
setg(base, base, end);
}
memory_streambuf(const memory_streambuf&) = delete;
memory_streambuf& operator=(const memory_streambuf&) = delete;
protected:
int_type underflow() override {
return traits_type::eof();
}
private:
util::Buffer<char> buffer;
};
class memory_istream : public std::istream {
public:
explicit memory_istream(util::Buffer<char> buffer)
: std::istream(&buf), buf(std::move(buffer)) {}
private:
memory_streambuf buf;
};

105
src/io/memory_ostream.hpp Normal file
View File

@ -0,0 +1,105 @@
#include <iostream>
#include <streambuf>
#include <cstring>
#include <algorithm>
#include <string_view>
#include "util/Buffer.hpp"
class memory_buffer : public std::streambuf {
public:
explicit memory_buffer(size_t initial_size = 64)
: capacity(initial_size),
buffer(std::make_unique<char[]>(initial_size)) {
setp(buffer.get(), buffer.get() + initial_size);
}
std::string_view view() const {
return std::string_view(pbase(), pptr() - pbase());
}
util::Buffer<char> release() {
return {std::move(buffer), size()};
}
size_t size() const {
return pptr() - pbase();
}
protected:
int_type overflow(int_type c) override {
if (c == traits_type::eof())
return traits_type::eof();
const size_t data_size = pptr() - pbase();
const size_t new_capacity = std::max(capacity * 2, data_size + 1);
auto new_buffer = std::make_unique<char[]>(new_capacity);
std::memcpy(new_buffer.get(), pbase(), data_size);
buffer = std::move(new_buffer);
capacity = new_capacity;
setp(buffer.get(), buffer.get() + new_capacity);
pbump(data_size);
*pptr() = traits_type::to_char_type(c);
pbump(1);
return c;
}
std::streamsize xsputn(const char* s, std::streamsize count) override {
const std::streamsize avail = epptr() - pptr();
if (avail >= count) {
std::memcpy(pptr(), s, count);
pbump(count);
return count;
}
std::streamsize written = 0;
if (avail > 0) {
std::memcpy(pptr(), s, avail);
written += avail;
s += avail;
count -= avail;
pbump(avail);
}
const size_t data_size = pptr() - pbase();
const size_t required_capacity = data_size + count;
const size_t new_capacity = std::max(capacity * 2, required_capacity);
auto new_buffer = std::make_unique<char[]>(new_capacity);
std::memcpy(new_buffer.get(), pbase(), data_size);
std::memcpy(new_buffer.get() + data_size, s, count);
buffer = std::move(new_buffer);
capacity = new_capacity;
setp(buffer.get(), buffer.get() + new_capacity);
pbump(data_size + count);
written += count;
return written;
}
private:
std::unique_ptr<char[]> buffer;
size_t capacity;
};
class memory_ostream : public std::ostream {
public:
explicit memory_ostream(size_t initialCapacity = 64)
: std::ostream(&buffer), buffer(initialCapacity) {}
std::string_view view() const {
return buffer.view();
}
util::Buffer<char> release() {
return buffer.release();
}
private:
memory_buffer buffer;
};

View File

@ -5,6 +5,8 @@
#include <filesystem>
namespace io {
using file_time_type = std::filesystem::file_time_type;
/// @brief Access violation error
class access_error : public std::runtime_error {
public:

View File

@ -0,0 +1,19 @@
#include <gtest/gtest.h>
#include "io/memory_istream.hpp"
TEST(io, memory_istream) {
const char data[] = "Hello, world!";
const int n = std::strlen(data);
util::Buffer<char> buffer(data, n);
memory_istream stream(std::move(buffer));
ASSERT_TRUE(stream.good());
std::string text(n, '\0');
stream.read(text.data(), n);
ASSERT_EQ(text, std::string(data));
stream.read(text.data(), 1);
ASSERT_TRUE(stream.eof());
}