aboutsummaryrefslogtreecommitdiffstats
path: root/zkfacade/src/main/java/com/yahoo/vespa/curator/MultiplePathsLock.java
blob: f8128b5ff588d532d172ed88c773c19e25a8a04e (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.curator;

import com.yahoo.transaction.Mutex;

import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 * Class that holds two locks, originally used for transitioning from one lock to
 * another, where you need to hold both the old lock and the new lock in the
 * transition period. Locks are acquired in constructor.
 *
 * @author hmusum
 */
public class MultiplePathsLock implements Mutex {

    private static final Logger log = Logger.getLogger(MultiplePathsLock.class.getName());

    private final List<Lock> locks;

    /** Wrapped locks, in acquisition order. */
    public MultiplePathsLock(Lock... locks) {
        this.locks = List.of(locks);
    }

    @Override
    public void close() {
        close(0);
    }

    private void close(int i) {
        if (i < locks.size())
            try (Lock lock = locks.get(i)) {
                close(i + 1);
                log.log(Level.FINE, "Closing lock " + lock.lockPath());
            }
    }

}