HeadWriter returns Result<T> values

This commit is contained in:
Paul Campbell 2018-06-30 21:05:38 +01:00
parent c4034a291f
commit d1acd4a0dc

View file

@ -22,11 +22,11 @@
package net.kemitix.gitdb.impl; package net.kemitix.gitdb.impl;
import lombok.RequiredArgsConstructor; import lombok.RequiredArgsConstructor;
import net.kemitix.mon.result.Result;
import org.eclipse.jgit.lib.ObjectId; import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.lib.Ref; import org.eclipse.jgit.lib.Ref;
import org.eclipse.jgit.lib.Repository; import org.eclipse.jgit.lib.Repository;
import java.io.IOException;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
import java.nio.file.Files; import java.nio.file.Files;
import java.nio.file.Path; import java.nio.file.Path;
@ -47,16 +47,17 @@ class HeadWriter {
* @param branchName the branch name * @param branchName the branch name
* @param commitId the commit to point the branch at * @param commitId the commit to point the branch at
* @return the Ref of the new branch * @return the Ref of the new branch
* @throws IOException error writing branch head
*/ */
Ref write(final String branchName, final ObjectId commitId) throws IOException { Result<Ref> write(final String branchName, final ObjectId commitId) {
final Path branchRefPath = repository final Path branchRefPath = repository
.getDirectory() .getDirectory()
.toPath() .toPath()
.resolve(branchName) .resolve(branchName)
.toAbsolutePath(); .toAbsolutePath();
final byte[] commitIdBytes = commitId.name().getBytes(StandardCharsets.UTF_8); final byte[] commitIdBytes = commitId.name().getBytes(StandardCharsets.UTF_8);
Files.write(branchRefPath, commitIdBytes); return Result.of(() -> {
return repository.findRef(branchName); Files.write(branchRefPath, commitIdBytes);
return repository.findRef(branchName);
});
} }
} }