AUI Framework  master
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
Archive.h
    1// AUI Framework - Declarative UI toolkit for modern C++20
    2// Copyright (C) 2020-2025 Alex2772 and Contributors
    3//
    4// SPDX-License-Identifier: MPL-2.0
    5//
    6// This Source Code Form is subject to the terms of the Mozilla Public
    7// License, v. 2.0. If a copy of the MPL was not distributed with this
    8// file, You can obtain one at http://mozilla.org/MPL/2.0/.
    9
   10#pragma once
   11
   12#include <AUI/IO/APath.h>
   13#include <AUI/IO/ISeekableInputStream.h>
   14
   15namespace aui::archive {
   16
   20struct API_AUI_CORE FileEntry : aui::noncopyable {
   24    std::string_view name;
   25
   31    virtual aui::no_escape<IInputStream> open(const std::string& password = {}) const = 0;
   32
   33};
   34
   39struct API_AUI_CORE ExtractTo {
   44
   48    std::function<APath(APath)> pathProjection = aui::identity{};
   49
   50    void operator()(const FileEntry& zipEntry) const;
   51};
   52
   53namespace zip {
   63void API_AUI_CORE read(aui::no_escape<ISeekableInputStream> stream, const std::function<void(const FileEntry&)>& visitor);
   64}
   65}
An add-on to AString with functions for working with the path.
Definition APath.h:128
void API_AUI_CORE read(aui::no_escape< ISeekableInputStream > stream, const std::function< void(const FileEntry &)> &visitor)
ZIP reader.
Default extracter for aui::zlib::readZip.
Definition Archive.h:39
std::function< APath(APath)> pathProjection
Function to preprocess the destination path (excluding prefix).
Definition Archive.h:48
APath prefix
Destination dir to unpack.
Definition Archive.h:43
Zip file entry.
Definition Archive.h:20
std::string_view name
file path inside ZIP.
Definition Archive.h:24
virtual aui::no_escape< IInputStream > open(const std::string &password={}) const =0
Opens the zip entry for read.
Function object type whose operator() returns its argument unchanged.
Definition callables.h:97
Does not allow escaping, allowing to accept lvalue ref, rvalue ref, shared_ptr and etc without overhe...
Definition values.h:128
Forbids copy of your class.
Definition values.h:45
Iterates multiple containers in parallel.
Definition iterators.h:156