Calin Juravle | c9e7679 | 2018-02-01 14:44:56 +0000 | [diff] [blame] | 1 | /* |
| 2 | ** Copyright 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 OTAPREOPT_PARAMETERS_H_ |
| 18 | #define OTAPREOPT_PARAMETERS_H_ |
| 19 | |
| 20 | #include <string> |
| 21 | #include <sys/types.h> |
| 22 | |
| 23 | namespace android { |
| 24 | namespace installd { |
| 25 | |
| 26 | class OTAPreoptParameters { |
| 27 | public: |
| 28 | bool ReadArguments(int argc, const char** argv); |
| 29 | |
| 30 | private: |
Calin Juravle | 7707aea | 2018-02-01 14:56:14 +0000 | [diff] [blame] | 31 | bool ReadArgumentsV1(const char** argv); |
| 32 | bool ReadArgumentsPostV1(uint32_t version, const char** argv, bool versioned); |
Calin Juravle | c9e7679 | 2018-02-01 14:44:56 +0000 | [diff] [blame] | 33 | |
Calin Juravle | dcccd83 | 2018-02-13 18:31:32 -0800 | [diff] [blame] | 34 | void SetDefaultsForPostV1Arguments(); |
Calin Juravle | c9e7679 | 2018-02-01 14:44:56 +0000 | [diff] [blame] | 35 | const char* apk_path; |
| 36 | uid_t uid; |
| 37 | const char* pkgName; |
| 38 | const char* instruction_set; |
| 39 | int dexopt_needed; |
| 40 | const char* oat_dir; |
| 41 | int dexopt_flags; |
| 42 | const char* compiler_filter; |
| 43 | const char* volume_uuid; |
| 44 | const char* shared_libraries; |
| 45 | const char* se_info; |
| 46 | bool downgrade; |
| 47 | int target_sdk_version; |
| 48 | const char* profile_name; |
Calin Juravle | cc3b8ae | 2018-02-01 17:03:23 +0000 | [diff] [blame] | 49 | const char* dex_metadata_path; |
Calin Juravle | dcccd83 | 2018-02-13 18:31:32 -0800 | [diff] [blame] | 50 | const char* compilation_reason; |
Calin Juravle | c9e7679 | 2018-02-01 14:44:56 +0000 | [diff] [blame] | 51 | |
| 52 | std::string target_slot; |
| 53 | |
| 54 | friend class OTAPreoptService; |
| 55 | friend class OTAPreoptTest; |
| 56 | }; |
| 57 | |
| 58 | } // namespace installd |
| 59 | } // namespace android |
| 60 | |
Calin Juravle | dcccd83 | 2018-02-13 18:31:32 -0800 | [diff] [blame] | 61 | #endif // OTAPREOPT_PARAMETERS_H_ |