Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 1 | /* |
| 2 | ** |
| 3 | ** Copyright 2008, The Android Open Source Project |
| 4 | ** |
| 5 | ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ** you may not use this file except in compliance with the License. |
| 7 | ** You may obtain a copy of the License at |
| 8 | ** |
| 9 | ** http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ** |
| 11 | ** Unless required by applicable law or agreed to in writing, software |
| 12 | ** distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ** See the License for the specific language governing permissions and |
| 15 | ** limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #ifndef GLOBALS_H_ |
| 19 | #define GLOBALS_H_ |
| 20 | |
| 21 | #include <inttypes.h> |
Jeff Sharkey | c1149c9 | 2017-09-21 14:51:09 -0600 | [diff] [blame] | 22 | #include <string> |
| 23 | #include <vector> |
Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 24 | |
| 25 | namespace android { |
| 26 | namespace installd { |
| 27 | |
Andreas Gampe | d089ca1 | 2016-06-27 14:25:30 -0700 | [diff] [blame] | 28 | // Name of the environment variable that contains the asec mountpoint. |
| 29 | static constexpr const char* ASEC_MOUNTPOINT_ENV_NAME = "ASEC_MOUNTPOINT"; |
| 30 | |
Jeff Sharkey | c1149c9 | 2017-09-21 14:51:09 -0600 | [diff] [blame] | 31 | extern std::string android_app_dir; |
| 32 | extern std::string android_app_ephemeral_dir; |
| 33 | extern std::string android_app_lib_dir; |
| 34 | extern std::string android_app_private_dir; |
| 35 | extern std::string android_asec_dir; |
| 36 | extern std::string android_data_dir; |
| 37 | extern std::string android_media_dir; |
| 38 | extern std::string android_mnt_expand_dir; |
| 39 | extern std::string android_profiles_dir; |
| 40 | extern std::string android_root_dir; |
shafik | b43faa9 | 2019-02-19 12:19:48 +0000 | [diff] [blame] | 41 | extern std::string android_staging_dir; |
Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 42 | |
Jeff Sharkey | c1149c9 | 2017-09-21 14:51:09 -0600 | [diff] [blame] | 43 | extern std::vector<std::string> android_system_dirs; |
Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 44 | |
Jeff Sharkey | c1149c9 | 2017-09-21 14:51:09 -0600 | [diff] [blame] | 45 | bool init_globals_from_data_and_root(); |
Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 46 | bool init_globals_from_data_and_root(const char* data, const char* root); |
| 47 | |
| 48 | } // namespace installd |
| 49 | } // namespace android |
| 50 | |
| 51 | #endif // GLOBALS_H_ |