blob: 7d6fad2f0918763dd55590109dfecf6cdd80c942 [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
47 // The version name to set if 'android:versionName' is not defined in <manifest>.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070048 Maybe<std::string> version_name_default;
Adam Lesinskic6284372017-12-04 13:46:23 -080049
50 // The version code to set if 'android:versionCode' is not defined in <manifest>.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070051 Maybe<std::string> version_code_default;
Adam Lesinskic6284372017-12-04 13:46:23 -080052
53 // The version of the framework being compiled against to set for 'android:compileSdkVersion' in
54 // the <manifest> tag.
55 Maybe<std::string> compile_sdk_version;
56
57 // The version codename of the framework being compiled against to set for
58 // 'android:compileSdkVersionCodename' in the <manifest> tag.
59 Maybe<std::string> compile_sdk_version_codename;
Izabela Orlowskaad9e1322017-12-19 16:22:42 +000060
Ryan Mitchelle5b38a62018-03-23 13:35:00 -070061 // Whether validation errors should be treated only as warnings. If this is 'true', then an
Izabela Orlowskaad9e1322017-12-19 16:22:42 +000062 // incorrect node will not result in an error, but only as a warning, and the parsing will
63 // continue.
64 bool warn_validation = false;
Ryan Mitchelle5b38a62018-03-23 13:35:00 -070065
66 // Whether to inject the android:debuggable="true" flag into the manifest
67 bool debug_mode = false;
Adam Lesinski2ae4a872015-11-02 16:10:55 -080068};
69
Adam Lesinskic6284372017-12-04 13:46:23 -080070// Verifies that the manifest is correctly formed and inserts defaults where specified with
71// ManifestFixerOptions.
Adam Lesinskicc5609d2016-04-05 12:41:07 -070072class ManifestFixer : public IXmlResourceConsumer {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070073 public:
Adam Lesinskic6284372017-12-04 13:46:23 -080074 explicit ManifestFixer(const ManifestFixerOptions& options) : options_(options) {
75 }
Adam Lesinski2ae4a872015-11-02 16:10:55 -080076
Adam Lesinskice5e56e2016-10-21 17:56:45 -070077 bool Consume(IAaptContext* context, xml::XmlResource* doc) override;
Adam Lesinskicc5609d2016-04-05 12:41:07 -070078
Adam Lesinskicacb28f2016-10-19 12:18:14 -070079 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -070080 DISALLOW_COPY_AND_ASSIGN(ManifestFixer);
Adam Lesinskicc5609d2016-04-05 12:41:07 -070081
Adam Lesinskice5e56e2016-10-21 17:56:45 -070082 bool BuildRules(xml::XmlActionExecutor* executor, IDiagnostics* diag);
83
84 ManifestFixerOptions options_;
Adam Lesinski2ae4a872015-11-02 16:10:55 -080085};
86
Adam Lesinskicacb28f2016-10-19 12:18:14 -070087} // namespace aapt
Adam Lesinski2ae4a872015-11-02 16:10:55 -080088
89#endif /* AAPT_LINK_MANIFESTFIXER_H */