blob: 55e52fc868780f00f33d815a564687f2313e0e51 [file] [log] [blame]
Adam Lesinski40e8eef2014-09-16 14:43:29 -07001/*
2 * Copyright (C) 2014 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#include "Grouper.h"
18
Adam Lesinskic3dc0b52014-11-03 12:05:15 -080019#include "aapt/AaptUtil.h"
Adam Lesinski40e8eef2014-09-16 14:43:29 -070020#include "SplitDescription.h"
21
22#include <utils/KeyedVector.h>
23#include <utils/Vector.h>
24
25using namespace android;
Adam Lesinskic3dc0b52014-11-03 12:05:15 -080026using AaptUtil::appendValue;
Adam Lesinski40e8eef2014-09-16 14:43:29 -070027
28namespace split {
29
Adam Lesinski40e8eef2014-09-16 14:43:29 -070030Vector<SortedVector<SplitDescription> >
31groupByMutualExclusivity(const Vector<SplitDescription>& splits) {
32 Vector<SortedVector<SplitDescription> > groups;
33
34 // Find mutually exclusive splits and group them.
35 KeyedVector<SplitDescription, SortedVector<SplitDescription> > densityGroups;
36 KeyedVector<SplitDescription, SortedVector<SplitDescription> > abiGroups;
Adam Lesinskic3dc0b52014-11-03 12:05:15 -080037 const size_t splitCount = splits.size();
38 for (size_t i = 0; i < splitCount; i++) {
39 const SplitDescription& split = splits[i];
Adam Lesinski40e8eef2014-09-16 14:43:29 -070040 if (split.config.density != 0) {
41 SplitDescription key(split);
42 key.config.density = 0;
43 key.config.sdkVersion = 0; // Ignore density so we can support anydpi.
Adam Lesinskic3dc0b52014-11-03 12:05:15 -080044 appendValue(densityGroups, key, split);
45 } else if (split.abi != abi::Variant_none) {
Adam Lesinski40e8eef2014-09-16 14:43:29 -070046 SplitDescription key(split);
Adam Lesinskic3dc0b52014-11-03 12:05:15 -080047 key.abi = abi::Variant_none;
48 appendValue(abiGroups, key, split);
Adam Lesinski40e8eef2014-09-16 14:43:29 -070049 } else {
50 groups.add();
51 groups.editTop().add(split);
52 }
53 }
54
55 const size_t densityCount = densityGroups.size();
56 for (size_t i = 0; i < densityCount; i++) {
57 groups.add(densityGroups[i]);
58 }
59
60 const size_t abiCount = abiGroups.size();
61 for (size_t i = 0; i < abiCount; i++) {
62 groups.add(abiGroups[i]);
63 }
64
Adam Lesinski40e8eef2014-09-16 14:43:29 -070065 return groups;
66}
67
68} // namespace split