aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/eu/olli/cowmoonication/util/PlayerCache.java
blob: 383ca0371ff0b1f24cfdeed984dd9e5322828178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package eu.olli.cowmoonication.util;

import com.google.common.collect.EvictingQueue;
import eu.olli.cowmoonication.Cowmoonication;

import java.util.SortedSet;
import java.util.TreeSet;

public class PlayerCache {
    @SuppressWarnings("UnstableApiUsage")
    private final EvictingQueue<String> nameCache = EvictingQueue.create(50);
    @SuppressWarnings("UnstableApiUsage")
    private final EvictingQueue<String> bestFriendCache = EvictingQueue.create(50);
    private final Cowmoonication main;

    public PlayerCache(Cowmoonication main) {
        this.main = main;
    }

    public void add(String name) {
        // remove old entry (if exists) to 'push' name to the end of the queue
        nameCache.remove(name);
        nameCache.add(name);
    }

    public void addBestFriend(String name) {
        // remove old entry (if exists) to 'push' name to the end of the queue
        bestFriendCache.remove(name);
        bestFriendCache.add(name);
    }

    public void removeBestFriend(String name) {
        bestFriendCache.remove(name);
    }

    public SortedSet<String> getAllNamesSorted() {
        SortedSet<String> nameList = new TreeSet<>(String.CASE_INSENSITIVE_ORDER);
        nameList.addAll(bestFriendCache);
        nameList.addAll(nameCache);
        return nameList;
    }

    public void clearAllCaches() {
        nameCache.clear();
        bestFriendCache.clear();
    }
}