blob: c19538cb0ffd4d6d23962d31a4c9edb1938496df [file] [log] [blame]
// Copyright (C) 2013 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.googlesource.gerrit.plugins.deleteproject.fs;
import com.google.common.io.MoreFiles;
import com.google.gerrit.extensions.api.changes.NotifyHandling;
import com.google.gerrit.extensions.events.ProjectDeletedListener;
import com.google.gerrit.extensions.registration.DynamicSet;
import com.google.gerrit.reviewdb.client.Project;
import com.google.gerrit.server.git.GitRepositoryManager;
import com.google.inject.Inject;
import com.googlesource.gerrit.plugins.deleteproject.TimeMachine;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
import org.eclipse.jgit.errors.RepositoryNotFoundException;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.lib.RepositoryCache;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class FilesystemDeleteHandler {
private static final Logger log = LoggerFactory.getLogger(FilesystemDeleteHandler.class);
private final GitRepositoryManager repoManager;
private final DynamicSet<ProjectDeletedListener> deletedListener;
@Inject
public FilesystemDeleteHandler(
GitRepositoryManager repoManager, DynamicSet<ProjectDeletedListener> deletedListener) {
this.repoManager = repoManager;
this.deletedListener = deletedListener;
}
public void delete(Project project, boolean preserveGitRepository)
throws IOException, RepositoryNotFoundException {
// Remove from the jgit cache
Repository repository = repoManager.openRepository(project.getNameKey());
cleanCache(repository);
if (!preserveGitRepository) {
deleteGitRepository(project.getNameKey(), repository.getDirectory());
}
}
private void cleanCache(Repository repository) {
repository.close();
RepositoryCache.close(repository);
}
private void deleteGitRepository(final Project.NameKey project, final File repoFile)
throws IOException {
// Delete the repository from disk
Path basePath = getBasePath(repoFile.toPath(), project);
Path trash = moveToTrash(repoFile.toPath(), basePath, project);
try {
MoreFiles.deleteRecursively(trash);
recursivelyDeleteEmptyParents(repoFile.getParentFile(), basePath.toFile());
} catch (IOException e) {
// Only log if delete failed - repo already moved to trash.
log.warn("Error trying to delete {} or its parents", trash, e);
} finally {
sendProjectDeletedEvent(project);
}
}
private Path getBasePath(Path repo, Project.NameKey project) {
Path projectPath = Paths.get(project.get());
return repo.getRoot()
.resolve(repo.subpath(0, repo.getNameCount() - projectPath.getNameCount()));
}
private Path moveToTrash(Path directory, Path basePath, Project.NameKey nameKey)
throws IOException {
Path trashRepo =
basePath.resolve(nameKey.get() + "." + TimeMachine.now().toEpochMilli() + ".%deleted%.git");
return Files.move(directory, trashRepo, StandardCopyOption.ATOMIC_MOVE);
}
/**
* Recursively delete the specified file and its parent files until we hit the file {@code Until}
* or the parent file is populated. This is used when we have a tree structure such as a/b/c/d.git
* and a/b/e.git - if we delete a/b/c/d.git, we no longer need a/b/c/.
*/
private void recursivelyDeleteEmptyParents(File file, File until) throws IOException {
if (file.equals(until)) {
return;
}
if (file.listFiles().length == 0) {
File parent = file.getParentFile();
Files.delete(file.toPath());
recursivelyDeleteEmptyParents(parent, until);
}
}
private void sendProjectDeletedEvent(Project.NameKey project) {
ProjectDeletedListener.Event event =
new ProjectDeletedListener.Event() {
@Override
public String getProjectName() {
return project.get();
}
@Override
public NotifyHandling getNotify() {
return NotifyHandling.NONE;
}
};
for (ProjectDeletedListener l : deletedListener) {
try {
l.onProjectDeleted(event);
} catch (RuntimeException e) {
log.warn("Failure in ProjectDeletedListener", e);
}
}
}
}