blob: 8c519a1a913cd711134af6d8e916f5c5101cb8fc [file] [log] [blame]
Adam Lesinski6f6ceb72014-11-14 14:48:12 -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_CONFIG_DESCRIPTION_H
18#define AAPT_CONFIG_DESCRIPTION_H
19
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080020#include <ostream>
21
Adam Lesinskice5e56e2016-10-21 17:56:45 -070022#include "androidfw/ResourceTypes.h"
Adam Lesinskid5083f62017-01-16 15:07:21 -080023#include "androidfw/StringPiece.h"
Adam Lesinskice5e56e2016-10-21 17:56:45 -070024
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080025namespace aapt {
26
Adam Lesinski5b7337f2017-06-26 14:57:22 -070027// Subclass of ResTable_config that adds convenient
28// initialization and comparison methods.
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080029struct ConfigDescription : public android::ResTable_config {
Adam Lesinski5b7337f2017-06-26 14:57:22 -070030 // Returns an immutable default config.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070031 static const ConfigDescription& DefaultConfig();
Adam Lesinski52364f72016-01-11 13:10:24 -080032
Adam Lesinski5b7337f2017-06-26 14:57:22 -070033 // Parse a string of the form 'fr-sw600dp-land' and fill in the
34 // given ResTable_config with resulting configuration parameters.
35 //
36 // The resulting configuration has the appropriate sdkVersion defined
37 // for backwards compatibility.
Adam Lesinskid5083f62017-01-16 15:07:21 -080038 static bool Parse(const android::StringPiece& str, ConfigDescription* out = nullptr);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080039
Adam Lesinski5b7337f2017-06-26 14:57:22 -070040 // If the configuration uses an axis that was added after
41 // the original Android release, make sure the SDK version
42 // is set accordingly.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070043 static void ApplyVersionForCompatibility(ConfigDescription* config);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080044
Adam Lesinskicacb28f2016-10-19 12:18:14 -070045 ConfigDescription();
46 ConfigDescription(const android::ResTable_config& o); // NOLINT(implicit)
47 ConfigDescription(const ConfigDescription& o);
48 ConfigDescription(ConfigDescription&& o);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080049
Adam Lesinskicacb28f2016-10-19 12:18:14 -070050 ConfigDescription& operator=(const android::ResTable_config& o);
51 ConfigDescription& operator=(const ConfigDescription& o);
52 ConfigDescription& operator=(ConfigDescription&& o);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080053
Adam Lesinskice5e56e2016-10-21 17:56:45 -070054 ConfigDescription CopyWithoutSdkVersion() const;
Alexandria Cornwall77788eb2016-09-06 15:16:49 -070055
Adam Lesinski5b7337f2017-06-26 14:57:22 -070056 // A configuration X dominates another configuration Y, if X has at least the
57 // precedence of Y and X is strictly more general than Y: for any type defined
58 // by X, the same type is defined by Y with a value equal to or, in the case
59 // of ranges, more specific than that of X.
60 //
61 // For example, the configuration 'en-w800dp' dominates 'en-rGB-w1024dp'. It
62 // does not dominate 'fr', 'en-w720dp', or 'mcc001-en-w800dp'.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070063 bool Dominates(const ConfigDescription& o) const;
Alexandria Cornwall77788eb2016-09-06 15:16:49 -070064
Adam Lesinski5b7337f2017-06-26 14:57:22 -070065 // Returns true if this configuration defines a more important configuration
66 // parameter than o. For example, "en" has higher precedence than "v23",
67 // whereas "en" has the same precedence as "en-v23".
Adam Lesinskice5e56e2016-10-21 17:56:45 -070068 bool HasHigherPrecedenceThan(const ConfigDescription& o) const;
Alexandria Cornwall77788eb2016-09-06 15:16:49 -070069
Adam Lesinski5b7337f2017-06-26 14:57:22 -070070 // A configuration conflicts with another configuration if both
71 // configurations define an incompatible configuration parameter. An
72 // incompatible configuration parameter is a non-range, non-density parameter
73 // that is defined in both configurations as a different, non-default value.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070074 bool ConflictsWith(const ConfigDescription& o) const;
Alexandria Cornwall77788eb2016-09-06 15:16:49 -070075
Adam Lesinski5b7337f2017-06-26 14:57:22 -070076 // A configuration is compatible with another configuration if both
77 // configurations can match a common concrete device configuration and are
78 // unrelated by domination. For example, land-v11 conflicts with port-v21
79 // but is compatible with v21 (both land-v11 and v21 would match en-land-v23).
Adam Lesinskice5e56e2016-10-21 17:56:45 -070080 bool IsCompatibleWith(const ConfigDescription& o) const;
Alexandria Cornwall77788eb2016-09-06 15:16:49 -070081
Adam Lesinskice5e56e2016-10-21 17:56:45 -070082 bool MatchWithDensity(const ConfigDescription& o) const;
Alexandria Cornwall77788eb2016-09-06 15:16:49 -070083
Adam Lesinskicacb28f2016-10-19 12:18:14 -070084 bool operator<(const ConfigDescription& o) const;
85 bool operator<=(const ConfigDescription& o) const;
86 bool operator==(const ConfigDescription& o) const;
87 bool operator!=(const ConfigDescription& o) const;
88 bool operator>=(const ConfigDescription& o) const;
89 bool operator>(const ConfigDescription& o) const;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080090};
91
Adam Lesinski5b7337f2017-06-26 14:57:22 -070092::std::ostream& operator<<(::std::ostream& out, const ConfigDescription& o);
93
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080094inline ConfigDescription::ConfigDescription() {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070095 memset(this, 0, sizeof(*this));
96 size = sizeof(android::ResTable_config);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080097}
98
99inline ConfigDescription::ConfigDescription(const android::ResTable_config& o) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700100 *static_cast<android::ResTable_config*>(this) = o;
101 size = sizeof(android::ResTable_config);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800102}
103
104inline ConfigDescription::ConfigDescription(const ConfigDescription& o) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700105 *static_cast<android::ResTable_config*>(this) = o;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800106}
107
108inline ConfigDescription::ConfigDescription(ConfigDescription&& o) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700109 *this = o;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800110}
111
Adam Lesinski5b7337f2017-06-26 14:57:22 -0700112inline ConfigDescription& ConfigDescription::operator=(const android::ResTable_config& o) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700113 *static_cast<android::ResTable_config*>(this) = o;
114 size = sizeof(android::ResTable_config);
115 return *this;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800116}
117
Adam Lesinski5b7337f2017-06-26 14:57:22 -0700118inline ConfigDescription& ConfigDescription::operator=(const ConfigDescription& o) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700119 *static_cast<android::ResTable_config*>(this) = o;
120 return *this;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800121}
122
123inline ConfigDescription& ConfigDescription::operator=(ConfigDescription&& o) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700124 *this = o;
125 return *this;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800126}
127
Adam Lesinski5b7337f2017-06-26 14:57:22 -0700128inline bool ConfigDescription::MatchWithDensity(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700129 return match(o) && (density == 0 || density == o.density);
Alexandria Cornwall77788eb2016-09-06 15:16:49 -0700130}
131
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800132inline bool ConfigDescription::operator<(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700133 return compare(o) < 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800134}
135
136inline bool ConfigDescription::operator<=(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700137 return compare(o) <= 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800138}
139
140inline bool ConfigDescription::operator==(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700141 return compare(o) == 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800142}
143
144inline bool ConfigDescription::operator!=(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700145 return compare(o) != 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800146}
147
148inline bool ConfigDescription::operator>=(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700149 return compare(o) >= 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800150}
151
152inline bool ConfigDescription::operator>(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700153 return compare(o) > 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800154}
155
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700156} // namespace aapt
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800157
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700158#endif // AAPT_CONFIG_DESCRIPTION_H