Android-cuttlefish cvd tool
zip_file.h
Go to the documentation of this file.
1//
2// Copyright (C) 2025 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16#pragma once
17
18#include <string>
19#include <string_view>
20
23
24namespace cuttlefish {
25
26Result<ReadableZip> ZipOpenRead(const std::string& fs_path);
27Result<WritableZip> ZipOpenReadWrite(const std::string& fs_path);
28
29Result<void> AddFile(WritableZip& zip, const std::string& fs_path);
30Result<void> AddFileAt(WritableZip& zip, const std::string& fs_path,
31 const std::string& zip_path);
32
33Result<void> ExtractFile(ReadableZip& zip, std::string_view zip_path,
34 const std::string& host_path);
35
36} // namespace cuttlefish
Definition: alloc_driver.h:20
Result< void > AddFile(WritableZip &zip, const std::string &fs_path)
Definition: zip_file.cc:49
Result< void > AddFileAt(WritableZip &zip, const std::string &fs_path, const std::string &zip_path)
Definition: zip_file.cc:54
Result< ReadableZip > ZipOpenRead(const std::string &fs_path)
Definition: zip_file.cc:39
Result< WritableZip > ZipOpenReadWrite(const std::string &fs_path)
Definition: zip_file.cc:43
Result< void > ExtractFile(ReadableZip &zip, std::string_view zip_path, const std::string &host_path)
Definition: zip_file.cc:62