Pierre Lecesne | ff759e6 | 2017-02-01 00:29:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 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 AAPT_LOADEDAPK_H |
| 18 | #define AAPT_LOADEDAPK_H |
| 19 | |
| 20 | #include "androidfw/StringPiece.h" |
| 21 | |
Pierre Lecesne | ff759e6 | 2017-02-01 00:29:25 +0000 | [diff] [blame] | 22 | #include "ResourceTable.h" |
Shane Farmer | 5766943 | 2017-06-19 12:52:04 -0700 | [diff] [blame] | 23 | #include "filter/Filter.h" |
Adam Lesinski | 4670805 | 2017-09-29 14:49:15 -0700 | [diff] [blame] | 24 | #include "format/Archive.h" |
| 25 | #include "format/binary/BinaryResourceParser.h" |
| 26 | #include "format/binary/TableFlattener.h" |
Pierre Lecesne | 2599aa4 | 2017-02-01 22:47:03 +0000 | [diff] [blame] | 27 | #include "io/ZipArchive.h" |
Shane Farmer | 3edd472 | 2017-09-01 14:34:22 -0700 | [diff] [blame] | 28 | #include "xml/XmlDom.h" |
Pierre Lecesne | ff759e6 | 2017-02-01 00:29:25 +0000 | [diff] [blame] | 29 | |
Pierre Lecesne | ff759e6 | 2017-02-01 00:29:25 +0000 | [diff] [blame] | 30 | namespace aapt { |
| 31 | |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame] | 32 | constexpr static const char kApkResourceTablePath[] = "resources.arsc"; |
| 33 | constexpr static const char kProtoResourceTablePath[] = "resources.pb"; |
| 34 | constexpr static const char kAndroidManifestPath[] = "AndroidManifest.xml"; |
| 35 | |
Pierre Lecesne | f267a40 | 2017-12-01 11:39:01 +0000 | [diff] [blame] | 36 | enum ApkFormat { |
| 37 | kUnknown, |
| 38 | kBinary, |
| 39 | kProto, |
| 40 | }; |
| 41 | |
Adam Lesinski | 4670805 | 2017-09-29 14:49:15 -0700 | [diff] [blame] | 42 | // Info about an APK loaded in memory. |
Yurii Zubrytskyi | 711edbd | 2023-07-12 14:29:21 -0700 | [diff] [blame] | 43 | class LoadedApk final { |
Pierre Lecesne | ff759e6 | 2017-02-01 00:29:25 +0000 | [diff] [blame] | 44 | public: |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame] | 45 | // Loads both binary and proto APKs from disk. |
Yurii Zubrytskyi | a577514 | 2022-11-02 17:49:49 -0700 | [diff] [blame] | 46 | static std::unique_ptr<LoadedApk> LoadApkFromPath(android::StringPiece path, |
Jeremy Meyer | 56f36e8 | 2022-05-20 20:35:42 +0000 | [diff] [blame] | 47 | android::IDiagnostics* diag); |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame] | 48 | |
| 49 | // Loads a proto APK from the given file collection. |
| 50 | static std::unique_ptr<LoadedApk> LoadProtoApkFromFileCollection( |
Jeremy Meyer | 56f36e8 | 2022-05-20 20:35:42 +0000 | [diff] [blame] | 51 | const android::Source& source, std::unique_ptr<io::IFileCollection> collection, |
| 52 | android::IDiagnostics* diag); |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame] | 53 | |
| 54 | // Loads a binary APK from the given file collection. |
| 55 | static std::unique_ptr<LoadedApk> LoadBinaryApkFromFileCollection( |
Jeremy Meyer | 56f36e8 | 2022-05-20 20:35:42 +0000 | [diff] [blame] | 56 | const android::Source& source, std::unique_ptr<io::IFileCollection> collection, |
| 57 | android::IDiagnostics* diag); |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame] | 58 | |
Jeremy Meyer | 56f36e8 | 2022-05-20 20:35:42 +0000 | [diff] [blame] | 59 | LoadedApk(const android::Source& source, std::unique_ptr<io::IFileCollection> apk, |
corysmith@google.com | f7db43e | 2018-03-13 12:04:10 -0400 | [diff] [blame] | 60 | std::unique_ptr<ResourceTable> table, std::unique_ptr<xml::XmlResource> manifest, |
| 61 | const ApkFormat& format) |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame] | 62 | : source_(source), |
| 63 | apk_(std::move(apk)), |
| 64 | table_(std::move(table)), |
corysmith@google.com | f7db43e | 2018-03-13 12:04:10 -0400 | [diff] [blame] | 65 | manifest_(std::move(manifest)), |
| 66 | format_(format) { |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame] | 67 | } |
Adam Lesinski | 4670805 | 2017-09-29 14:49:15 -0700 | [diff] [blame] | 68 | |
| 69 | io::IFileCollection* GetFileCollection() { |
| 70 | return apk_.get(); |
Shane Farmer | 3edd472 | 2017-09-01 14:34:22 -0700 | [diff] [blame] | 71 | } |
Pierre Lecesne | ff759e6 | 2017-02-01 00:29:25 +0000 | [diff] [blame] | 72 | |
Ryan Mitchell | 5d27551 | 2018-07-19 14:29:00 -0700 | [diff] [blame] | 73 | ApkFormat GetApkFormat() { |
| 74 | return format_; |
| 75 | } |
| 76 | |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame] | 77 | const ResourceTable* GetResourceTable() const { |
| 78 | return table_.get(); |
| 79 | } |
| 80 | |
Adam Lesinski | 4670805 | 2017-09-29 14:49:15 -0700 | [diff] [blame] | 81 | ResourceTable* GetResourceTable() { |
| 82 | return table_.get(); |
| 83 | } |
Pierre Lecesne | ff759e6 | 2017-02-01 00:29:25 +0000 | [diff] [blame] | 84 | |
Jeremy Meyer | 56f36e8 | 2022-05-20 20:35:42 +0000 | [diff] [blame] | 85 | const android::Source& GetSource() { |
Adam Lesinski | 4670805 | 2017-09-29 14:49:15 -0700 | [diff] [blame] | 86 | return source_; |
| 87 | } |
Pierre Lecesne | ff759e6 | 2017-02-01 00:29:25 +0000 | [diff] [blame] | 88 | |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame] | 89 | const xml::XmlResource* GetManifest() const { |
| 90 | return manifest_.get(); |
| 91 | } |
| 92 | |
Pierre Lecesne | 2599aa4 | 2017-02-01 22:47:03 +0000 | [diff] [blame] | 93 | /** |
| 94 | * Writes the APK on disk at the given path, while also removing the resource |
| 95 | * files that are not referenced in the resource table. |
| 96 | */ |
Yurii Zubrytskyi | 711edbd | 2023-07-12 14:29:21 -0700 | [diff] [blame] | 97 | bool WriteToArchive(IAaptContext* context, const TableFlattenerOptions& options, |
| 98 | IArchiveWriter* writer); |
Pierre Lecesne | 2599aa4 | 2017-02-01 22:47:03 +0000 | [diff] [blame] | 99 | |
Shane Farmer | 5766943 | 2017-06-19 12:52:04 -0700 | [diff] [blame] | 100 | /** |
Shane Farmer | 3edd472 | 2017-09-01 14:34:22 -0700 | [diff] [blame] | 101 | * Writes the APK on disk at the given path, while also removing the resource files that are not |
| 102 | * referenced in the resource table. The provided filter chain is applied to each entry in the APK |
| 103 | * file. |
| 104 | * |
| 105 | * If the manifest is also provided, it will be written to the new APK file, otherwise the |
| 106 | * original manifest will be written. The manifest is only required if the contents of the new APK |
| 107 | * have been modified in a way that require the AndroidManifest.xml to also be modified. |
Shane Farmer | 5766943 | 2017-06-19 12:52:04 -0700 | [diff] [blame] | 108 | */ |
Yurii Zubrytskyi | 711edbd | 2023-07-12 14:29:21 -0700 | [diff] [blame] | 109 | bool WriteToArchive(IAaptContext* context, ResourceTable* split_table, |
| 110 | const TableFlattenerOptions& options, FilterChain* filters, |
| 111 | IArchiveWriter* writer, xml::XmlResource* manifest = nullptr); |
Shane Farmer | 3edd472 | 2017-09-01 14:34:22 -0700 | [diff] [blame] | 112 | |
Ryan Mitchell | 5d27551 | 2018-07-19 14:29:00 -0700 | [diff] [blame] | 113 | /** Loads the file as an xml document. */ |
Jeremy Meyer | 56f36e8 | 2022-05-20 20:35:42 +0000 | [diff] [blame] | 114 | std::unique_ptr<xml::XmlResource> LoadXml(const std::string& file_path, |
| 115 | android::IDiagnostics* diag) const; |
Pierre Lecesne | ff759e6 | 2017-02-01 00:29:25 +0000 | [diff] [blame] | 116 | |
| 117 | private: |
Adam Lesinski | 4670805 | 2017-09-29 14:49:15 -0700 | [diff] [blame] | 118 | DISALLOW_COPY_AND_ASSIGN(LoadedApk); |
| 119 | |
Jeremy Meyer | 56f36e8 | 2022-05-20 20:35:42 +0000 | [diff] [blame] | 120 | android::Source source_; |
Pierre Lecesne | ff759e6 | 2017-02-01 00:29:25 +0000 | [diff] [blame] | 121 | std::unique_ptr<io::IFileCollection> apk_; |
| 122 | std::unique_ptr<ResourceTable> table_; |
Adam Lesinski | 8780eb6 | 2017-10-31 17:44:39 -0700 | [diff] [blame] | 123 | std::unique_ptr<xml::XmlResource> manifest_; |
corysmith@google.com | f7db43e | 2018-03-13 12:04:10 -0400 | [diff] [blame] | 124 | ApkFormat format_; |
Pierre Lecesne | ff759e6 | 2017-02-01 00:29:25 +0000 | [diff] [blame] | 125 | }; |
| 126 | |
| 127 | } // namespace aapt |
| 128 | |
| 129 | #endif /* AAPT_LOADEDAPK_H */ |