blob: f95741a24b973cca71859403b0fd7ef4c2f2fc95 [file] [log] [blame]
Tao Bao641fa972018-04-25 18:59:40 -07001/*
2 * Copyright (C) 2018 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
17#ifndef _OTAUTIL_PATHS_H_
18#define _OTAUTIL_PATHS_H_
19
20#include <string>
21
22#include <android-base/macros.h>
23
24// A singleton class to maintain the update related paths. The paths should be only set once at the
25// start of the program.
26class Paths {
27 public:
28 static Paths& Get();
29
30 std::string cache_log_directory() const {
31 return cache_log_directory_;
32 }
33 void set_cache_log_directory(const std::string& log_dir) {
34 cache_log_directory_ = log_dir;
35 }
36
37 std::string cache_temp_source() const {
38 return cache_temp_source_;
39 }
40 void set_cache_temp_source(const std::string& temp_source) {
41 cache_temp_source_ = temp_source;
42 }
43
44 std::string last_command_file() const {
45 return last_command_file_;
46 }
47 void set_last_command_file(const std::string& last_command_file) {
48 last_command_file_ = last_command_file;
49 }
50
Tao Bao6cd81682018-05-03 21:53:11 -070051 std::string resource_dir() const {
52 return resource_dir_;
53 }
54 void set_resource_dir(const std::string& resource_dir) {
55 resource_dir_ = resource_dir;
56 }
57
Tao Bao641fa972018-04-25 18:59:40 -070058 std::string stash_directory_base() const {
59 return stash_directory_base_;
60 }
61 void set_stash_directory_base(const std::string& base) {
62 stash_directory_base_ = base;
63 }
64
65 std::string temporary_install_file() const {
66 return temporary_install_file_;
67 }
68 void set_temporary_install_file(const std::string& install_file) {
69 temporary_install_file_ = install_file;
70 }
71
72 std::string temporary_log_file() const {
73 return temporary_log_file_;
74 }
75 void set_temporary_log_file(const std::string& log_file) {
76 temporary_log_file_ = log_file;
77 }
78
Tao Baocf60a442018-06-18 14:56:20 -070079 std::string temporary_update_binary() const {
80 return temporary_update_binary_;
81 }
82 void set_temporary_update_binary(const std::string& update_binary) {
83 temporary_update_binary_ = update_binary;
84 }
85
Tao Bao641fa972018-04-25 18:59:40 -070086 private:
87 Paths();
88 DISALLOW_COPY_AND_ASSIGN(Paths);
89
90 // Path to the directory that contains last_log and last_kmsg log files.
91 std::string cache_log_directory_;
92
93 // Path to the temporary source file on /cache. When there isn't enough room on the target
94 // filesystem to hold the patched version of the file, we copy the original here and delete it to
95 // free up space. If the expected source file doesn't exist, or is corrupted, we look to see if
96 // the cached file contains the bits we want and use it as the source instead.
97 std::string cache_temp_source_;
98
99 // Path to the last command file.
100 std::string last_command_file_;
101
Tao Bao6cd81682018-05-03 21:53:11 -0700102 // Path to the resource dir;
103 std::string resource_dir_;
104
Tao Bao641fa972018-04-25 18:59:40 -0700105 // Path to the base directory to write stashes during update.
106 std::string stash_directory_base_;
107
108 // Path to the temporary file that contains the install result.
109 std::string temporary_install_file_;
110
111 // Path to the temporary log file while under recovery.
112 std::string temporary_log_file_;
Tao Baocf60a442018-06-18 14:56:20 -0700113
114 // Path to the temporary update binary while installing a non-A/B package.
115 std::string temporary_update_binary_;
Tao Bao641fa972018-04-25 18:59:40 -0700116};
117
118#endif // _OTAUTIL_PATHS_H_