2019-11-29 21:47:29 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2019 The Android Open Source Project
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
package com.android.launcher3.model;
|
|
|
|
|
|
|
|
|
|
import com.android.launcher3.LauncherSettings;
|
2020-04-06 15:11:17 -07:00
|
|
|
import com.android.launcher3.model.data.ItemInfo;
|
2020-05-04 11:14:52 -07:00
|
|
|
import com.android.launcher3.util.IntArray;
|
2019-11-29 21:47:29 -08:00
|
|
|
import com.android.launcher3.util.IntSet;
|
|
|
|
|
|
|
|
|
|
import java.util.Collections;
|
2020-05-04 11:14:52 -07:00
|
|
|
import java.util.List;
|
2020-08-22 02:09:42 -07:00
|
|
|
import java.util.Objects;
|
2020-05-04 11:14:52 -07:00
|
|
|
import java.util.stream.IntStream;
|
2019-11-29 21:47:29 -08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Utils class for {@link com.android.launcher3.LauncherModel}.
|
|
|
|
|
*/
|
|
|
|
|
public class ModelUtils {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Filters the set of items who are directly or indirectly (via another container) on the
|
|
|
|
|
* specified screen.
|
|
|
|
|
*/
|
2021-05-14 12:21:30 +02:00
|
|
|
public static <T extends ItemInfo> void filterCurrentWorkspaceItems(
|
2022-05-13 09:01:14 -07:00
|
|
|
final IntSet currentScreenIds,
|
2024-02-14 12:32:59 -08:00
|
|
|
List<? extends T> allWorkspaceItems,
|
|
|
|
|
List<T> currentScreenItems,
|
|
|
|
|
List<T> otherScreenItems) {
|
2019-11-29 21:47:29 -08:00
|
|
|
// Purge any null ItemInfos
|
2020-08-22 02:09:42 -07:00
|
|
|
allWorkspaceItems.removeIf(Objects::isNull);
|
2019-11-29 21:47:29 -08:00
|
|
|
// Order the set of items by their containers first, this allows use to walk through the
|
|
|
|
|
// list sequentially, build up a list of containers that are in the specified screen,
|
|
|
|
|
// as well as all items in those containers.
|
|
|
|
|
IntSet itemsOnScreen = new IntSet();
|
|
|
|
|
Collections.sort(allWorkspaceItems,
|
|
|
|
|
(lhs, rhs) -> Integer.compare(lhs.container, rhs.container));
|
|
|
|
|
for (T info : allWorkspaceItems) {
|
|
|
|
|
if (info.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
|
2021-05-14 12:21:30 +02:00
|
|
|
if (currentScreenIds.contains(info.screenId)) {
|
2019-11-29 21:47:29 -08:00
|
|
|
currentScreenItems.add(info);
|
|
|
|
|
itemsOnScreen.add(info.id);
|
|
|
|
|
} else {
|
|
|
|
|
otherScreenItems.add(info);
|
|
|
|
|
}
|
|
|
|
|
} else if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
|
|
|
|
|
currentScreenItems.add(info);
|
|
|
|
|
itemsOnScreen.add(info.id);
|
|
|
|
|
} else {
|
|
|
|
|
if (itemsOnScreen.contains(info.container)) {
|
|
|
|
|
currentScreenItems.add(info);
|
|
|
|
|
itemsOnScreen.add(info.id);
|
|
|
|
|
} else {
|
|
|
|
|
otherScreenItems.add(info);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-04 11:14:52 -07:00
|
|
|
/**
|
|
|
|
|
* Iterates though current workspace items and returns available hotseat ranks for prediction.
|
|
|
|
|
*/
|
|
|
|
|
public static IntArray getMissingHotseatRanks(List<ItemInfo> items, int len) {
|
|
|
|
|
IntSet seen = new IntSet();
|
|
|
|
|
items.stream().filter(
|
|
|
|
|
info -> info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT)
|
|
|
|
|
.forEach(i -> seen.add(i.screenId));
|
|
|
|
|
IntArray result = new IntArray(len);
|
|
|
|
|
IntStream.range(0, len).filter(i -> !seen.contains(i)).forEach(result::add);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2019-11-29 21:47:29 -08:00
|
|
|
}
|