Dario Freni | aeb233c | 2018-08-28 12:48:42 +0100 | [diff] [blame] | 1 | /* |
| 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 ANDROID_APEXD_APEX_MANIFEST_H_ |
| 18 | #define ANDROID_APEXD_APEX_MANIFEST_H_ |
| 19 | |
Mohammad Samiul Islam | bd6ab0f | 2019-06-20 15:55:27 +0100 | [diff] [blame] | 20 | #include <android-base/result.h> |
| 21 | |
Abhijeet Kaur | 216e36c | 2019-01-04 10:15:01 +0000 | [diff] [blame] | 22 | #include "apex_manifest.pb.h" |
Dario Freni | aeb233c | 2018-08-28 12:48:42 +0100 | [diff] [blame] | 23 | |
Jiyong Park | 69c0f11 | 2018-11-22 20:38:05 +0900 | [diff] [blame] | 24 | #include <string> |
Andreas Gampe | eae4784 | 2018-10-19 11:53:48 -0700 | [diff] [blame] | 25 | |
Abhijeet Kaur | 216e36c | 2019-01-04 10:15:01 +0000 | [diff] [blame] | 26 | using ::apex::proto::ApexManifest; |
| 27 | |
Dario Freni | aeb233c | 2018-08-28 12:48:42 +0100 | [diff] [blame] | 28 | namespace android { |
| 29 | namespace apex { |
Abhijeet Kaur | 216e36c | 2019-01-04 10:15:01 +0000 | [diff] [blame] | 30 | // Parses and validates APEX manifest. |
Mohammad Samiul Islam | bd6ab0f | 2019-06-20 15:55:27 +0100 | [diff] [blame] | 31 | android::base::Result<ApexManifest> ParseManifest(const std::string& content); |
Abhijeet Kaur | 216e36c | 2019-01-04 10:15:01 +0000 | [diff] [blame] | 32 | // Returns package id of an ApexManifest |
| 33 | std::string GetPackageId(const ApexManifest& apex_manifest); |
Nikita Ioffe | 264c421 | 2019-09-13 16:30:17 +0100 | [diff] [blame] | 34 | // Reads and parses APEX manifest from the file on disk. |
| 35 | android::base::Result<ApexManifest> ReadManifest(const std::string& path); |
Dario Freni | aeb233c | 2018-08-28 12:48:42 +0100 | [diff] [blame] | 36 | } // namespace apex |
| 37 | } // namespace android |
| 38 | |
| 39 | #endif // ANDROID_APEXD_APEX_MANIFEST_H_ |