Android-cuttlefish cvd tool
build_api.h
Go to the documentation of this file.
1//
2// Copyright (C) 2019 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
24
25namespace cuttlefish {
26
27class BuildApi {
28 public:
29 virtual ~BuildApi() = default;
30 virtual Result<Build> GetBuild(const BuildString& build_string) = 0;
31
33 const Build& build, const std::string& target_directory,
34 const std::string& artifact_name) = 0;
35
37 const Build& build, const std::string& target_directory,
38 const std::string& artifact_name,
39 const std::string& backup_artifact_name) = 0;
40
42 const Build&, const std::string& artifact_name) = 0;
43};
44
45} // namespace cuttlefish
Definition: expected.h:86
Definition: build_api.h:27
virtual Result< std::string > DownloadFileWithBackup(const Build &build, const std::string &target_directory, const std::string &artifact_name, const std::string &backup_artifact_name)=0
virtual ~BuildApi()=default
virtual Result< SeekableZipSource > FileReader(const Build &, const std::string &artifact_name)=0
virtual Result< std::string > DownloadFile(const Build &build, const std::string &target_directory, const std::string &artifact_name)=0
virtual Result< Build > GetBuild(const BuildString &build_string)=0
Definition: alloc_utils.cpp:23
std::variant< DeviceBuild, DirectoryBuild > Build
Definition: android_build.h:49
std::variant< DeviceBuildString, DirectoryBuildString > BuildString
Definition: android_build_string.h:52