mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-02 05:39:48 +01:00
#998 simplify api and use jgit to link new head
This commit is contained in:
@@ -1,53 +0,0 @@
|
||||
package sonia.scm.repository;
|
||||
|
||||
import com.google.common.base.Charsets;
|
||||
import com.google.common.base.Throwables;
|
||||
import com.google.common.io.Files;
|
||||
|
||||
import javax.inject.Inject;
|
||||
import javax.inject.Singleton;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
|
||||
@Singleton
|
||||
public class GitHeadHandler implements GitHeadResolver, GitHeadModifier {
|
||||
|
||||
private final GitRepositoryHandler repositoryHandler;
|
||||
|
||||
@Inject
|
||||
public GitHeadHandler(GitRepositoryHandler repositoryHandler) {
|
||||
this.repositoryHandler = repositoryHandler;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String resolve(Repository repository) {
|
||||
File headFile = findHeadFile(repository);
|
||||
try {
|
||||
String line = Files.readFirstLine(headFile, Charsets.UTF_8);
|
||||
// TODO handle invalid head file
|
||||
int index = line.indexOf(GitUtil.REF_HEAD_PREFIX);
|
||||
return line.substring(index + GitUtil.REF_HEAD_PREFIX.length());
|
||||
} catch (IOException e) {
|
||||
// TODO
|
||||
throw Throwables.propagate(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void modify(Repository repository, String head) {
|
||||
File headFile = findHeadFile(repository);
|
||||
try {
|
||||
String line = "ref: " + GitUtil.REF_HEAD_PREFIX + head + "\n";
|
||||
Files.write(line, headFile, Charsets.UTF_8);
|
||||
} catch (IOException e) {
|
||||
// TODO
|
||||
throw Throwables.propagate(e);
|
||||
}
|
||||
}
|
||||
|
||||
private File findHeadFile(Repository repository) {
|
||||
// TODO handle non bare repositories
|
||||
File directory = repositoryHandler.getDirectory(repository);
|
||||
return new File(directory, "HEAD");
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,101 @@
|
||||
/**
|
||||
* Copyright (c) 2014, Sebastian Sdorra
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice,
|
||||
* this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
* this list of conditions and the following disclaimer in the documentation
|
||||
* and/or other materials provided with the distribution.
|
||||
* 3. Neither the name of SCM-Manager; nor the names of its
|
||||
* contributors may be used to endorse or promote products derived from this
|
||||
* software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* http://bitbucket.org/sdorra/scm-manager
|
||||
*
|
||||
*/
|
||||
package sonia.scm.repository;
|
||||
|
||||
public interface GitHeadModifier {
|
||||
import org.eclipse.jgit.lib.Constants;
|
||||
import org.eclipse.jgit.lib.Ref;
|
||||
import org.eclipse.jgit.lib.RefUpdate;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
void modify(Repository repository, String head);
|
||||
import javax.inject.Inject;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* The GitHeadModifier is able to modify the head of a git repository.
|
||||
*
|
||||
* @author Sebastian Sdorra
|
||||
* @since 1.61
|
||||
*/
|
||||
public class GitHeadModifier {
|
||||
|
||||
private static final Logger LOG = LoggerFactory.getLogger(GitHeadModifier.class);
|
||||
|
||||
private final GitRepositoryHandler repositoryHandler;
|
||||
|
||||
@Inject
|
||||
public GitHeadModifier(GitRepositoryHandler repositoryHandler) {
|
||||
this.repositoryHandler = repositoryHandler;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ensures that the repositories head points to the given branch. The method will return {@code false} if the
|
||||
* repositories head points already to the given branch.
|
||||
*
|
||||
* @param repository repository to modify
|
||||
* @param newHead branch which should be the new head of the repository
|
||||
*
|
||||
* @return {@code true} if the head has changed
|
||||
*/
|
||||
public boolean ensure(Repository repository, String newHead) {
|
||||
try (org.eclipse.jgit.lib.Repository gitRepository = open(repository)) {
|
||||
String currentHead = resolve(gitRepository);
|
||||
if (!Objects.equals(currentHead, newHead)) {
|
||||
return modify(gitRepository, newHead);
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
LOG.warn("failed to change head of repository", ex);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private String resolve(org.eclipse.jgit.lib.Repository gitRepository) throws IOException {
|
||||
Ref ref = gitRepository.getRefDatabase().getRef(Constants.HEAD);
|
||||
if ( ref.isSymbolic() ) {
|
||||
ref = ref.getTarget();
|
||||
}
|
||||
return GitUtil.getBranch(ref);
|
||||
}
|
||||
|
||||
private boolean modify(org.eclipse.jgit.lib.Repository gitRepository, String newHead) throws IOException {
|
||||
RefUpdate refUpdate = gitRepository.getRefDatabase().newUpdate(Constants.HEAD, true);
|
||||
refUpdate.setForceUpdate(true);
|
||||
RefUpdate.Result result = refUpdate.link(Constants.R_HEADS + newHead);
|
||||
return result == RefUpdate.Result.FORCED;
|
||||
}
|
||||
|
||||
private org.eclipse.jgit.lib.Repository open(Repository repository) throws IOException {
|
||||
File directory = repositoryHandler.getDirectory(repository);
|
||||
return GitUtil.open(directory);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
package sonia.scm.repository;
|
||||
|
||||
public interface GitHeadResolver {
|
||||
|
||||
String resolve(Repository repository);
|
||||
|
||||
}
|
||||
@@ -32,7 +32,6 @@ package sonia.scm.repository;
|
||||
|
||||
import com.google.common.annotations.VisibleForTesting;
|
||||
import com.google.common.base.Objects;
|
||||
import com.google.common.base.Strings;
|
||||
import com.google.common.eventbus.Subscribe;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@@ -58,12 +57,10 @@ public class GitRepositoryModifyListener {
|
||||
*/
|
||||
private static final Logger logger = LoggerFactory.getLogger(GitRepositoryModifyListener.class);
|
||||
|
||||
private final GitHeadResolver headResolver;
|
||||
private final GitHeadModifier headModifier;
|
||||
|
||||
@Inject
|
||||
public GitRepositoryModifyListener(GitHeadResolver headResolver, GitHeadModifier headModifier) {
|
||||
this.headResolver = headResolver;
|
||||
public GitRepositoryModifyListener(GitHeadModifier headModifier) {
|
||||
this.headModifier = headModifier;
|
||||
}
|
||||
|
||||
@@ -85,8 +82,8 @@ public class GitRepositoryModifyListener {
|
||||
}
|
||||
|
||||
String defaultBranch = repository.getProperty(GitConstants.PROPERTY_DEFAULT_BRANCH);
|
||||
if (defaultBranch != null && ! defaultBranch.equals(headResolver.resolve(repository))) {
|
||||
headModifier.modify(repository, defaultBranch);
|
||||
if (defaultBranch != null) {
|
||||
headModifier.ensure(repository, defaultBranch);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user