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

com.palantir.atlasdb.lock.SimpleLockResource Maven / Gradle / Ivy

There is a newer version: 0.1152.0
Show newest version
/*
 * (c) Copyright 2019 Palantir Technologies Inc. All rights reserved.
 *
 * 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.palantir.atlasdb.lock;

import com.google.common.collect.ImmutableSet;
import com.google.common.collect.ImmutableSortedMap;
import com.palantir.atlasdb.transaction.api.TransactionManager;
import com.palantir.lock.ByteArrayLockDescriptor;
import com.palantir.lock.HeldLocksToken;
import com.palantir.lock.LockDescriptor;
import com.palantir.lock.LockMode;
import com.palantir.lock.SimpleHeldLocksToken;
import com.palantir.lock.v2.LockRequest;
import com.palantir.lock.v2.LockResponse;
import java.security.SecureRandom;
import java.util.Comparator;
import java.util.Set;
import java.util.SortedMap;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import java.util.stream.Stream;

public class SimpleLockResource implements LockResource {
    private static final SecureRandom GENERATOR = new SecureRandom();
    private final TransactionManager transactionManager;

    public SimpleLockResource(TransactionManager transactionManager) {
        this.transactionManager = transactionManager;
    }

    @Override
    public boolean lockUsingTimelockApi(int numDescriptors, int descriptorSize) {
        Set descriptors =
                generateDescriptors(numDescriptors, descriptorSize).collect(Collectors.toSet());
        LockRequest request = LockRequest.of(descriptors, 1_000);
        LockResponse response = transactionManager.getTimelockService().lock(request);
        if (response.wasSuccessful()) {
            transactionManager.getTimelockService().unlock(ImmutableSet.of(response.getToken()));
            return true;
        }
        return false;
    }

    @Override
    public boolean lockUsingLegacyLockApi(int numDescriptors, int descriptorSize) {
        com.palantir.lock.LockRequest request = com.palantir.lock.LockRequest.builder(
                        generateDescriptorMap(numDescriptors, descriptorSize))
                .build();
        try {
            HeldLocksToken response = transactionManager.getLockService().lockAndGetHeldLocks("test", request);
            if (response != null) {
                transactionManager.getLockService().unlockSimple(SimpleHeldLocksToken.fromHeldLocksToken(response));
                return true;
            }
        } catch (InterruptedException e) {
            throw new RuntimeException(e);
        }
        return false;
    }

    private SortedMap generateDescriptorMap(int numLocks, int descriptorSize) {
        return generateDescriptors(numLocks, descriptorSize)
                .collect(ImmutableSortedMap.toImmutableSortedMap(
                        Comparator.naturalOrder(), descriptor -> descriptor, no -> LockMode.WRITE));
    }

    private Stream generateDescriptors(int numDescriptors, int descriptorSize) {
        return IntStream.range(0, numDescriptors).mapToObj(ignore -> generateDescriptorOfSize(descriptorSize));
    }

    private LockDescriptor generateDescriptorOfSize(int size) {
        byte[] bytes = new byte[size];
        GENERATOR.nextBytes(bytes);
        return ByteArrayLockDescriptor.of(bytes);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy