blob: 98d06fd776d70775df066e2278acde8350ccd62e [file] [log] [blame]
Adam Lesinski2ae4a872015-11-02 16:10:55 -08001/*
2 * Copyright (C) 2015 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_LINK_MANIFESTFIXER_H
18#define AAPT_LINK_MANIFESTFIXER_H
19
Adam Lesinskice5e56e2016-10-21 17:56:45 -070020#include <string>
21
22#include "android-base/macros.h"
23
Adam Lesinski2ae4a872015-11-02 16:10:55 -080024#include "process/IResourceTableConsumer.h"
Adam Lesinski467f1712015-11-16 17:35:44 -080025#include "util/Maybe.h"
Adam Lesinskicc5609d2016-04-05 12:41:07 -070026#include "xml/XmlActionExecutor.h"
Adam Lesinski467f1712015-11-16 17:35:44 -080027#include "xml/XmlDom.h"
28
Adam Lesinski2ae4a872015-11-02 16:10:55 -080029namespace aapt {
30
31struct ManifestFixerOptions {
Adam Lesinskic6284372017-12-04 13:46:23 -080032 // The minimum SDK version to set if no 'android:minSdkVersion' is defined in a <uses-sdk> tag.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070033 Maybe<std::string> min_sdk_version_default;
Adam Lesinskic6284372017-12-04 13:46:23 -080034
35 // The target SDK version to set if no 'android:targetSdkVersion' is defined in a <uses-sdk> tag.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070036 Maybe<std::string> target_sdk_version_default;
Adam Lesinskic6284372017-12-04 13:46:23 -080037
38 // The Android package to use instead of the one defined in 'package' in <manifest>.
39 // This also renames all relative package/class names in the manifest to fully qualified
40 // Java names.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070041 Maybe<std::string> rename_manifest_package;
Adam Lesinskic6284372017-12-04 13:46:23 -080042
43 // The Android package to use instead of the one defined in 'android:targetPackage' in
44 // <instrumentation>.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070045 Maybe<std::string> rename_instrumentation_target_package;
Adam Lesinskic6284372017-12-04 13:46:23 -080046
Colin Crossda02fea2018-05-25 22:46:35 -070047 // The version name to set if 'android:versionName' is not defined in <manifest> or if
48 // replace_version is set.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070049 Maybe<std::string> version_name_default;
Adam Lesinskic6284372017-12-04 13:46:23 -080050
Colin Crossda02fea2018-05-25 22:46:35 -070051 // The version code to set if 'android:versionCode' is not defined in <manifest> or if
52 // replace_version is set.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070053 Maybe<std::string> version_code_default;
Adam Lesinskic6284372017-12-04 13:46:23 -080054
55 // The version of the framework being compiled against to set for 'android:compileSdkVersion' in
56 // the <manifest> tag.
57 Maybe<std::string> compile_sdk_version;
58
59 // The version codename of the framework being compiled against to set for
60 // 'android:compileSdkVersionCodename' in the <manifest> tag.
61 Maybe<std::string> compile_sdk_version_codename;
Izabela Orlowskaad9e1322017-12-19 16:22:42 +000062
Ryan Mitchelle5b38a62018-03-23 13:35:00 -070063 // Whether validation errors should be treated only as warnings. If this is 'true', then an
Izabela Orlowskaad9e1322017-12-19 16:22:42 +000064 // incorrect node will not result in an error, but only as a warning, and the parsing will
65 // continue.
66 bool warn_validation = false;
Ryan Mitchelle5b38a62018-03-23 13:35:00 -070067
68 // Whether to inject the android:debuggable="true" flag into the manifest
69 bool debug_mode = false;
Colin Crossda02fea2018-05-25 22:46:35 -070070
71 // Whether to replace the manifest version with the the command line version
72 bool replace_version = false;
Adam Lesinski2ae4a872015-11-02 16:10:55 -080073};
74
Adam Lesinskic6284372017-12-04 13:46:23 -080075// Verifies that the manifest is correctly formed and inserts defaults where specified with
76// ManifestFixerOptions.
Adam Lesinskicc5609d2016-04-05 12:41:07 -070077class ManifestFixer : public IXmlResourceConsumer {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070078 public:
Adam Lesinskic6284372017-12-04 13:46:23 -080079 explicit ManifestFixer(const ManifestFixerOptions& options) : options_(options) {
80 }
Adam Lesinski2ae4a872015-11-02 16:10:55 -080081
Adam Lesinskice5e56e2016-10-21 17:56:45 -070082 bool Consume(IAaptContext* context, xml::XmlResource* doc) override;
Adam Lesinskicc5609d2016-04-05 12:41:07 -070083
Adam Lesinskicacb28f2016-10-19 12:18:14 -070084 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -070085 DISALLOW_COPY_AND_ASSIGN(ManifestFixer);
Adam Lesinskicc5609d2016-04-05 12:41:07 -070086
Adam Lesinskice5e56e2016-10-21 17:56:45 -070087 bool BuildRules(xml::XmlActionExecutor* executor, IDiagnostics* diag);
88
89 ManifestFixerOptions options_;
Adam Lesinski2ae4a872015-11-02 16:10:55 -080090};
91
Adam Lesinskicacb28f2016-10-19 12:18:14 -070092} // namespace aapt
Adam Lesinski2ae4a872015-11-02 16:10:55 -080093
94#endif /* AAPT_LINK_MANIFESTFIXER_H */