aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/ThreadSafeDeltaCache.java
blob: 761f77c050aa83306ab267f3b3fd901300073bb2 (plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * Copyright (C) 2010, Google Inc. and others
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0 which is available at
 * https://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package org.eclipse.jgit.internal.storage.pack;

import java.util.concurrent.locks.ReentrantLock;

import org.eclipse.jgit.storage.pack.PackConfig;

class ThreadSafeDeltaCache extends DeltaCache {
	private final ReentrantLock lock;

	ThreadSafeDeltaCache(PackConfig pc) {
		super(pc);
		lock = new ReentrantLock();
	}

	@Override
	boolean canCache(int length, ObjectToPack src, ObjectToPack res) {
		lock.lock();
		try {
			return super.canCache(length, src, res);
		} finally {
			lock.unlock();
		}
	}

	@Override
	void credit(int reservedSize) {
		lock.lock();
		try {
			super.credit(reservedSize);
		} finally {
			lock.unlock();
		}
	}

	@Override
	Ref cache(byte[] data, int actLen, int reservedSize) {
		data = resize(data, actLen);
		lock.lock();
		try {
			return super.cache(data, actLen, reservedSize);
		} finally {
			lock.unlock();
		}
	}
}