All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.plotsquared.core.uuid.CacheUUIDService Maven / Gradle / Ivy

There is a newer version: 7.4.0
Show newest version
/*
 * PlotSquared, a land and world management plugin for Minecraft.
 * Copyright (C) IntellectualSites 
 * Copyright (C) IntellectualSites team and contributors
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package com.plotsquared.core.uuid;

import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.checkerframework.checker.nullness.qual.Nullable;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.UUID;
import java.util.function.Consumer;

/**
 * UUID service backed by a Guava Cache
 */
public class CacheUUIDService implements UUIDService, Consumer> {

    private final Cache usernameCache;
    private final Cache uuidCache;

    /**
     * Construct a new Cache UUID service with a maximum number of entries.
     * Because it stores the mappings in two ways, the actual number
     * of entries is two times the specified size
     *
     * @param size Maximum number of entries
     */
    public CacheUUIDService(final int size) {
        this.usernameCache = CacheBuilder.newBuilder().maximumSize(size).build();
        this.uuidCache = CacheBuilder.newBuilder().maximumSize(size).build();
    }

    @Override
    public @NonNull List getNames(final @NonNull List<@NonNull UUID> uuids) {
        final List mappings = new ArrayList<>(uuids.size());
        mappings.addAll(this.uuidCache.getAllPresent(uuids).values());
        return mappings;
    }

    @Override
    public @NonNull List getUUIDs(final @NonNull List<@NonNull String> usernames) {
        final List mappings = new ArrayList<>(usernames.size());
        mappings.addAll(this.usernameCache.getAllPresent(usernames).values());
        return mappings;
    }

    @Override
    public void accept(final @NonNull List<@NonNull UUIDMapping> uuidMappings) {
        for (final UUIDMapping mapping : uuidMappings) {
            this.uuidCache.put(mapping.uuid(), mapping);
            this.usernameCache.put(mapping.username(), mapping);
        }
    }

    @Override
    public @NonNull Collection<@NonNull UUIDMapping> getImmediately() {
        return this.usernameCache.asMap().values();
    }

    @Override
    public boolean canBeSynchronous() {
        return true;
    }

    @Override
    public @Nullable UUIDMapping getImmediately(final @NonNull Object object) {
        final List list;
        if (object instanceof String) {
            list = getUUIDs(Collections.singletonList((String) object));
        } else if (object instanceof UUID) {
            list = getNames(Collections.singletonList((UUID) object));
        } else {
            list = Collections.emptyList();
        }
        if (list.isEmpty()) {
            return null;
        }
        return list.get(0);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy