blob: 60d2d2f1c7a5ab7a28f2cbad051a8651e34e5be6 [file] [log] [blame]
// Copyright (C) 2020 The Android Open Source Project
//
// 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.gerritforge.gerrit.globalrefdb.validation;
import static java.util.Collections.EMPTY_SET;
import com.google.common.base.MoreObjects;
import com.google.gerrit.entities.Project;
import com.google.gerrit.server.git.GitRepositoryManager;
import com.google.gerrit.server.git.LocalDiskRepositoryManager;
import com.google.gerrit.server.git.RepositoryCaseMismatchException;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import com.google.inject.name.Named;
import java.io.IOException;
import java.util.Set;
import java.util.SortedSet;
import javax.annotation.Nullable;
import org.eclipse.jgit.errors.RepositoryNotFoundException;
import org.eclipse.jgit.lib.Repository;
@Singleton
public class SharedRefDbGitRepositoryManager implements GitRepositoryManager {
public static final String IGNORED_REFS = "ignored_refs";
private final GitRepositoryManager gitRepositoryManager;
private final SharedRefDbRepository.Factory sharedRefDbRepoFactory;
private final Set<String> ignoredRefs;
@Inject
public SharedRefDbGitRepositoryManager(
SharedRefDbRepository.Factory sharedRefDbRepoFactory,
LocalDiskRepositoryManager localDiskRepositoryManager,
@Nullable @Named(IGNORED_REFS) Set<String> ignoredRefs) {
this.sharedRefDbRepoFactory = sharedRefDbRepoFactory;
this.gitRepositoryManager = localDiskRepositoryManager;
this.ignoredRefs = MoreObjects.firstNonNull(ignoredRefs, EMPTY_SET);
}
@Override
public Repository openRepository(Project.NameKey name)
throws RepositoryNotFoundException, IOException {
return wrap(name, gitRepositoryManager.openRepository(name));
}
@Override
public Repository createRepository(Project.NameKey name)
throws RepositoryCaseMismatchException, RepositoryNotFoundException, IOException {
return wrap(name, gitRepositoryManager.createRepository(name));
}
@Override
public SortedSet<Project.NameKey> list() {
return gitRepositoryManager.list();
}
private Repository wrap(Project.NameKey projectName, Repository projectRepo) {
return sharedRefDbRepoFactory.create(projectName.get(), projectRepo, ignoredRefs);
}
}