1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with
// this file, You can obtain one at https://mozilla.org/MPL/2.0/.
use errors::Result;
use std::io::Read;
use std::io::Write;
use std::path::Path;
/// An abstraction over possible Zip implementations.
///
/// The actual implementations are `ZipCommand` (uses the system command zip) or
/// `ZipLibrary` (uses the [Rust zip library](https://crates.io/crates/zip)).
pub trait Zip {
/// Write the source content to a file in the archive
fn write_file<P: AsRef<Path>, R: Read>(&mut self, file: P, content: R) -> Result<()>;
/// Generate the ZIP file
fn generate<W: Write>(&mut self, _: W) -> Result<()>;
}