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

org.gradle.internal.resources.AbstractResourceLockRegistry Maven / Gradle / Ivy

There is a newer version: 8.6
Show newest version
/*
 * Copyright 2017 the original author or authors.
 *
 * 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 org.gradle.internal.resources;

import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import com.google.common.collect.ArrayListMultimap;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Multimap;
import com.google.common.collect.Multimaps;
import org.gradle.api.Action;
import org.gradle.internal.UncheckedException;

import java.util.Collection;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;

public abstract class AbstractResourceLockRegistry implements ResourceLockRegistry {
    private final Cache resourceLocks = CacheBuilder.newBuilder().weakValues().build();
    private final Multimap threadResourceLockMap = Multimaps.synchronizedListMultimap(ArrayListMultimap.create());
    private final ResourceLockCoordinationService coordinationService;

    public AbstractResourceLockRegistry(final ResourceLockCoordinationService coordinationService) {
        this.coordinationService = coordinationService;
    }

    protected T getOrRegisterResourceLock(final K key, final ResourceLockProducer producer) {
        try {
            return resourceLocks.get(key, new Callable() {
                @Override
                public T call() throws Exception {
                    return producer.create(key, coordinationService, getLockAction(), getUnlockAction());
                }
            });
        } catch (ExecutionException e) {
            throw UncheckedException.throwAsUncheckedException(e);
        }
    }

    @Override
    public Collection getResourceLocksByCurrentThread() {
        final Long threadId = Thread.currentThread().getId();
        return ImmutableList.copyOf(threadResourceLockMap.get(threadId));
    }

    @Override
    public boolean hasOpenLocks() {
        for (ResourceLock resourceLock : resourceLocks.asMap().values()) {
            if (resourceLock.isLocked()) {
                return true;
            }
        }
        return false;
    }

    private Action getLockAction() {
        return new Action() {
            @Override
            public void execute(ResourceLock resourceLock) {
                associateResourceLock(resourceLock);
            }
        };
    }

    private Action getUnlockAction() {
        return new Action() {
            @Override
            public void execute(ResourceLock resourceLock) {
                unassociateResourceLock(resourceLock);
            }
        };
    }

    public void associateResourceLock(ResourceLock resourceLock) {
        threadResourceLockMap.put(Thread.currentThread().getId(), resourceLock);
    }

    public void unassociateResourceLock(ResourceLock resourceLock) {
        threadResourceLockMap.remove(Thread.currentThread().getId(), resourceLock);
    }

    public interface ResourceLockProducer {
        T create(K key, ResourceLockCoordinationService coordinationService, Action lockAction, Action unlockAction);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy