blob: bb54886739753322fd834d896a98a93ff3dc83a8 [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 Lesinski1ab598f2015-08-14 14:26:04 -070020#include "util/StringPiece.h"
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080021
22#include <androidfw/ResourceTypes.h>
23#include <ostream>
24
25namespace aapt {
26
27/*
28 * Subclass of ResTable_config that adds convenient
29 * initialization and comparison methods.
30 */
31struct ConfigDescription : public android::ResTable_config {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070032 /**
33 * Returns an immutable default config.
34 */
35 static const ConfigDescription& defaultConfig();
Adam Lesinski52364f72016-01-11 13:10:24 -080036
Adam Lesinskicacb28f2016-10-19 12:18:14 -070037 /*
38 * Parse a string of the form 'fr-sw600dp-land' and fill in the
39 * given ResTable_config with resulting configuration parameters.
40 *
41 * The resulting configuration has the appropriate sdkVersion defined
42 * for backwards compatibility.
43 */
44 static bool parse(const StringPiece& str, ConfigDescription* out = nullptr);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080045
Adam Lesinskicacb28f2016-10-19 12:18:14 -070046 /**
47 * If the configuration uses an axis that was added after
48 * the original Android release, make sure the SDK version
49 * is set accordingly.
50 */
51 static void applyVersionForCompatibility(ConfigDescription* config);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080052
Adam Lesinskicacb28f2016-10-19 12:18:14 -070053 ConfigDescription();
54 ConfigDescription(const android::ResTable_config& o); // NOLINT(implicit)
55 ConfigDescription(const ConfigDescription& o);
56 ConfigDescription(ConfigDescription&& o);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080057
Adam Lesinskicacb28f2016-10-19 12:18:14 -070058 ConfigDescription& operator=(const android::ResTable_config& o);
59 ConfigDescription& operator=(const ConfigDescription& o);
60 ConfigDescription& operator=(ConfigDescription&& o);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080061
Adam Lesinskicacb28f2016-10-19 12:18:14 -070062 ConfigDescription copyWithoutSdkVersion() const;
Alexandria Cornwall77788eb2016-09-06 15:16:49 -070063
Adam Lesinskicacb28f2016-10-19 12:18:14 -070064 /**
65 * A configuration X dominates another configuration Y, if X has at least the
66 * precedence of Y and X is strictly more general than Y: for any type defined
67 * by X, the same type is defined by Y with a value equal to or, in the case
68 * of ranges, more specific than that of X.
69 *
70 * For example, the configuration 'en-w800dp' dominates 'en-rGB-w1024dp'. It
71 * does not dominate 'fr', 'en-w720dp', or 'mcc001-en-w800dp'.
72 */
73 bool dominates(const ConfigDescription& o) const;
Alexandria Cornwall77788eb2016-09-06 15:16:49 -070074
Adam Lesinskicacb28f2016-10-19 12:18:14 -070075 /**
76 * Returns true if this configuration defines a more important configuration
77 * parameter than o. For example, "en" has higher precedence than "v23",
78 * whereas "en" has the same precedence as "en-v23".
79 */
80 bool hasHigherPrecedenceThan(const ConfigDescription& o) const;
Alexandria Cornwall77788eb2016-09-06 15:16:49 -070081
Adam Lesinskicacb28f2016-10-19 12:18:14 -070082 /**
83 * A configuration conflicts with another configuration if both
84 * configurations define an incompatible configuration parameter. An
85 * incompatible configuration parameter is a non-range, non-density parameter
86 * that is defined in both configurations as a different, non-default value.
87 */
88 bool conflictsWith(const ConfigDescription& o) const;
Alexandria Cornwall77788eb2016-09-06 15:16:49 -070089
Adam Lesinskicacb28f2016-10-19 12:18:14 -070090 /**
91 * A configuration is compatible with another configuration if both
92 * configurations can match a common concrete device configuration and are
93 * unrelated by domination. For example, land-v11 conflicts with port-v21
94 * but is compatible with v21 (both land-v11 and v21 would match en-land-v23).
95 */
96 bool isCompatibleWith(const ConfigDescription& o) const;
Alexandria Cornwall77788eb2016-09-06 15:16:49 -070097
Adam Lesinskicacb28f2016-10-19 12:18:14 -070098 bool matchWithDensity(const ConfigDescription& o) const;
Alexandria Cornwall77788eb2016-09-06 15:16:49 -070099
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700100 bool operator<(const ConfigDescription& o) const;
101 bool operator<=(const ConfigDescription& o) const;
102 bool operator==(const ConfigDescription& o) const;
103 bool operator!=(const ConfigDescription& o) const;
104 bool operator>=(const ConfigDescription& o) const;
105 bool operator>(const ConfigDescription& o) const;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800106};
107
108inline ConfigDescription::ConfigDescription() {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700109 memset(this, 0, sizeof(*this));
110 size = sizeof(android::ResTable_config);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800111}
112
113inline ConfigDescription::ConfigDescription(const android::ResTable_config& o) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700114 *static_cast<android::ResTable_config*>(this) = o;
115 size = sizeof(android::ResTable_config);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800116}
117
118inline ConfigDescription::ConfigDescription(const ConfigDescription& o) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700119 *static_cast<android::ResTable_config*>(this) = o;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800120}
121
122inline ConfigDescription::ConfigDescription(ConfigDescription&& o) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700123 *this = o;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800124}
125
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700126inline ConfigDescription& ConfigDescription::operator=(
127 const android::ResTable_config& o) {
128 *static_cast<android::ResTable_config*>(this) = o;
129 size = sizeof(android::ResTable_config);
130 return *this;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800131}
132
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700133inline ConfigDescription& ConfigDescription::operator=(
134 const ConfigDescription& o) {
135 *static_cast<android::ResTable_config*>(this) = o;
136 return *this;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800137}
138
139inline ConfigDescription& ConfigDescription::operator=(ConfigDescription&& o) {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700140 *this = o;
141 return *this;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800142}
143
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700144inline bool ConfigDescription::matchWithDensity(
145 const ConfigDescription& o) const {
146 return match(o) && (density == 0 || density == o.density);
Alexandria Cornwall77788eb2016-09-06 15:16:49 -0700147}
148
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800149inline bool ConfigDescription::operator<(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700150 return compare(o) < 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800151}
152
153inline bool ConfigDescription::operator<=(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700154 return compare(o) <= 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800155}
156
157inline bool ConfigDescription::operator==(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700158 return compare(o) == 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800159}
160
161inline bool ConfigDescription::operator!=(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700162 return compare(o) != 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800163}
164
165inline bool ConfigDescription::operator>=(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700166 return compare(o) >= 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800167}
168
169inline bool ConfigDescription::operator>(const ConfigDescription& o) const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700170 return compare(o) > 0;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800171}
172
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700173inline ::std::ostream& operator<<(::std::ostream& out,
174 const ConfigDescription& o) {
175 return out << o.toString().string();
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800176}
177
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700178} // namespace aapt
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800179
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700180#endif // AAPT_CONFIG_DESCRIPTION_H