// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_ZLIB_GOOGLE_ZIP_H_ #define THIRD_PARTY_ZLIB_GOOGLE_ZIP_H_ #include <cstdint> #include <ostream> #include <utility> #include <vector> #include "base/containers/span.h" #include "base/files/file_path.h" #include "base/files/platform_file.h" #include "base/functional/callback.h" #include "base/time/time.h" #include "build/build_config.h" namespace base { class File; } namespace zip { class WriterDelegate; // Paths passed as span to avoid copying them. Paths; // Abstraction for file access operation required by Zip(). // // Can be passed to the ZipParams for providing custom access to the files, // for example over IPC. // // All parameters paths are expected to be relative to the source directory. class FileAccessor { … }; // Progress of a ZIP creation operation. struct Progress { … }; // Prints Progress to output stream. std::ostream& operator<<(std::ostream& out, const Progress& progress); // Callback reporting the progress of a ZIP creation operation. // // This callback returns a boolean indicating whether the ZIP creation operation // should continue. If it returns false once, then the ZIP creation operation is // immediately cancelled and the callback won't be called again. ProgressCallback; FilterCallback; // ZIP creation parameters and options. struct ZipParams { … }; // Zip files specified into a ZIP archives. The source files and ZIP destination // files (as well as other settings) are specified in |params|. bool Zip(const ZipParams& params); // Zip the contents of src_dir into dest_file. src_path must be a directory. // An entry will *not* be created in the zip for the root folder -- children // of src_dir will be at the root level of the created zip. For each file in // src_dir, include it only if the callback |filter_cb| returns true. Otherwise // omit it. bool ZipWithFilterCallback(const base::FilePath& src_dir, const base::FilePath& dest_file, FilterCallback filter_cb); // Convenience method for callers who don't need to set up the filter callback. // If |include_hidden_files| is true, files starting with "." are included. // Otherwise they are omitted. bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file, bool include_hidden_files); #if defined(OS_POSIX) || defined(OS_FUCHSIA) // Zips files listed in |src_relative_paths| to destination specified by file // descriptor |dest_fd|, without taking ownership of |dest_fd|. The paths listed // in |src_relative_paths| are relative to the |src_dir| and will be used as the // file names in the created zip file. All source paths must be under |src_dir| // in the file system hierarchy. bool ZipFiles(const base::FilePath& src_dir, Paths src_relative_paths, int dest_fd); #endif // defined(OS_POSIX) || defined(OS_FUCHSIA) // Callback reporting the number of bytes written during Unzip. UnzipProgressCallback; // Options of the Unzip function, with valid default values. struct UnzipOptions { … }; WriterFactory; DirectoryCreator; // Unzips the contents of |zip_file|, using the writers provided by // |writer_factory|. bool Unzip(const base::PlatformFile& zip_file, WriterFactory writer_factory, DirectoryCreator directory_creator, UnzipOptions options = { … }; // Unzips the contents of |zip_file| into |dest_dir|. // This function does not overwrite any existing file. // A filename collision will result in an error. // Therefore, |dest_dir| should initially be an empty directory. bool Unzip(const base::FilePath& zip_file, const base::FilePath& dest_dir, UnzipOptions options = { … }; } // namespace zip #endif // THIRD_PARTY_ZLIB_GOOGLE_ZIP_H_