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

com.palantir.atlasdb.http.SynchronousLockClient Maven / Gradle / Ivy

There is a newer version: 0.1152.0
Show newest version
/*
 * (c) Copyright 2018 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.http;

import com.google.common.annotations.VisibleForTesting;
import com.google.common.collect.ImmutableSortedMap;
import com.palantir.atlasdb.util.MetricsManager;
import com.palantir.lock.LockDescriptor;
import com.palantir.lock.LockMode;
import com.palantir.lock.LockRefreshToken;
import com.palantir.lock.LockRequest;
import com.palantir.lock.LockService;
import com.palantir.lock.NamespaceAgnosticLockRpcClient;
import com.palantir.lock.StringLockDescriptor;
import com.palantir.lock.client.NamespaceAgnosticLockClientAdaptor;
import com.palantir.lock.client.RemoteLockServiceAdapter;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

public class SynchronousLockClient implements JepsenLockClient {
    private final LockService lockService;

    @VisibleForTesting
    SynchronousLockClient(LockService lockService) {
        this.lockService = lockService;
    }

    public static JepsenLockClient create(MetricsManager metricsManager, List hosts) {
        NamespaceAgnosticLockRpcClient namespaceAgnosticLockRpcClient = new NamespaceAgnosticLockClientAdaptor(
                TimelockUtils.NAMESPACE,
                TimelockUtils.createServiceProvider(metricsManager, hosts).getLockRpcClient());
        return new SynchronousLockClient(new RemoteLockServiceAdapter(namespaceAgnosticLockRpcClient));
    }

    @Override
    public LockRefreshToken lock(String client, String lockName) throws InterruptedException {
        LockDescriptor descriptor = StringLockDescriptor.of(lockName);
        LockRequest request = LockRequest.builder(ImmutableSortedMap.of(descriptor, LockMode.WRITE))
                .doNotBlock()
                .build();

        return lockService.lock(client, request);
    }

    @Override
    public Set unlock(Set lockRefreshTokens) {
        Set tokensUnlocked = new HashSet<>();
        lockRefreshTokens.forEach(token -> {
            if (lockService.unlock(token)) {
                tokensUnlocked.add(token);
            }
        });
        return tokensUnlocked;
    }

    @Override
    public Set refresh(Set lockRefreshTokens) {
        return lockService.refreshLockRefreshTokens(lockRefreshTokens);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy