Browse Source

ReflogWriter: Minor cleanup

Remove unnecessary finals, use consistent punctuation in Javadoc, reflow
some lines, etc.

Change-Id: Ic64db41c86917725ac649022290621406156bcc4
stable-4.9
Dave Borowitz 7 years ago
parent
commit
8bbe34f27c
  1. 77
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/ReflogWriter.java

77
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/ReflogWriter.java

@ -72,20 +72,18 @@ import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.util.FS; import org.eclipse.jgit.util.FS;
import org.eclipse.jgit.util.FileUtils; import org.eclipse.jgit.util.FileUtils;
/** /** Utility for writing reflog entries. */
* Utility for writing reflog entries
*/
public class ReflogWriter { public class ReflogWriter {
/** /**
* Get the ref name to be used for when locking a ref's log for rewriting * Get the ref name to be used for when locking a ref's log for rewriting.
* *
* @param name * @param name
* name of the ref, relative to the Git repository top level * name of the ref, relative to the Git repository top level
* directory (so typically starts with refs/). * directory (so typically starts with refs/).
* @return the name of the ref's lock ref * @return the name of the ref's lock ref.
*/ */
public static String refLockFor(final String name) { public static String refLockFor(String name) {
return name + LockFile.SUFFIX; return name + LockFile.SUFFIX;
} }
@ -98,24 +96,24 @@ public class ReflogWriter {
private final boolean forceWrite; private final boolean forceWrite;
/** /**
* Create write for repository * Create writer for repository.
* *
* @param repository * @param repository
*/ */
public ReflogWriter(final Repository repository) { public ReflogWriter(Repository repository) {
this(repository, false); this(repository, false);
} }
/** /**
* Create write for repository * Create writer for repository.
* *
* @param repository * @param repository
* @param forceWrite * @param forceWrite
* true to write to disk all entries logged, false to respect the * true to write to disk all entries logged, false to respect the
* repository's config and current log file status * repository's config and current log file status.
*/ */
public ReflogWriter(final Repository repository, final boolean forceWrite) { public ReflogWriter(Repository repository, boolean forceWrite) {
final FS fs = repository.getFS(); FS fs = repository.getFS();
parent = repository; parent = repository;
File gitDir = repository.getDirectory(); File gitDir = repository.getDirectory();
logsDir = fs.resolve(gitDir, LOGS); logsDir = fs.resolve(gitDir, LOGS);
@ -124,19 +122,19 @@ public class ReflogWriter {
} }
/** /**
* Get repository that reflog is being written for * Get repository that reflog is being written for.
* *
* @return file repository * @return file repository.
*/ */
public Repository getRepository() { public Repository getRepository() {
return parent; return parent;
} }
/** /**
* Create the log directories * Create the log directories.
* *
* @throws IOException * @throws IOException
* @return this writer * @return this writer.
*/ */
public ReflogWriter create() throws IOException { public ReflogWriter create() throws IOException {
FileUtils.mkdir(logsDir); FileUtils.mkdir(logsDir);
@ -163,15 +161,14 @@ public class ReflogWriter {
} }
/** /**
* Write the given {@link ReflogEntry} entry to the ref's log * Write the given entry to the ref's log.
* *
* @param refName * @param refName
*
* @param entry * @param entry
* @return this writer * @return this writer
* @throws IOException * @throws IOException
*/ */
public ReflogWriter log(final String refName, final ReflogEntry entry) public ReflogWriter log(String refName, ReflogEntry entry)
throws IOException { throws IOException {
return log(refName, entry.getOldId(), entry.getNewId(), entry.getWho(), return log(refName, entry.getOldId(), entry.getNewId(), entry.getWho(),
entry.getComment()); entry.getComment());
@ -188,15 +185,14 @@ public class ReflogWriter {
* @return this writer * @return this writer
* @throws IOException * @throws IOException
*/ */
public ReflogWriter log(final String refName, final ObjectId oldId, public ReflogWriter log(String refName, ObjectId oldId,
final ObjectId newId, final PersonIdent ident, final String message) ObjectId newId, PersonIdent ident, String message) throws IOException {
throws IOException {
byte[] encoded = encode(oldId, newId, ident, message); byte[] encoded = encode(oldId, newId, ident, message);
return log(refName, encoded); return log(refName, encoded);
} }
/** /**
* Write the given ref update to the ref's log * Write the given ref update to the ref's log.
* *
* @param update * @param update
* @param msg * @param msg
@ -204,11 +200,11 @@ public class ReflogWriter {
* @return this writer * @return this writer
* @throws IOException * @throws IOException
*/ */
public ReflogWriter log(final RefUpdate update, final String msg, public ReflogWriter log(RefUpdate update, String msg,
final boolean deref) throws IOException { boolean deref) throws IOException {
final ObjectId oldId = update.getOldObjectId(); ObjectId oldId = update.getOldObjectId();
final ObjectId newId = update.getNewObjectId(); ObjectId newId = update.getNewObjectId();
final Ref ref = update.getRef(); Ref ref = update.getRef();
PersonIdent ident = update.getRefLogIdent(); PersonIdent ident = update.getRefLogIdent();
if (ident == null) if (ident == null)
@ -216,7 +212,7 @@ public class ReflogWriter {
else else
ident = new PersonIdent(ident); ident = new PersonIdent(ident);
final byte[] rec = encode(oldId, newId, ident, msg); byte[] rec = encode(oldId, newId, ident, msg);
if (deref && ref.isSymbolic()) { if (deref && ref.isSymbolic()) {
log(ref.getName(), rec); log(ref.getName(), rec);
log(ref.getLeaf().getName(), rec); log(ref.getLeaf().getName(), rec);
@ -228,22 +224,23 @@ public class ReflogWriter {
private byte[] encode(ObjectId oldId, ObjectId newId, PersonIdent ident, private byte[] encode(ObjectId oldId, ObjectId newId, PersonIdent ident,
String message) { String message) {
final StringBuilder r = new StringBuilder(); StringBuilder r = new StringBuilder();
r.append(ObjectId.toString(oldId)); r.append(ObjectId.toString(oldId));
r.append(' '); r.append(' ');
r.append(ObjectId.toString(newId)); r.append(ObjectId.toString(newId));
r.append(' '); r.append(' ');
r.append(ident.toExternalString()); r.append(ident.toExternalString());
r.append('\t'); r.append('\t');
r.append(message.replace("\r\n", " ").replace("\n", " ")); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ r.append(
message.replace("\r\n", " ") //$NON-NLS-1$ //$NON-NLS-2$
.replace("\n", " ")); //$NON-NLS-1$ //$NON-NLS-2$
r.append('\n'); r.append('\n');
return Constants.encode(r.toString()); return Constants.encode(r.toString());
} }
private ReflogWriter log(final String refName, final byte[] rec) private ReflogWriter log(String refName, byte[] rec) throws IOException {
throws IOException { File log = logFor(refName);
final File log = logFor(refName); boolean write = forceWrite
final boolean write = forceWrite
|| (isLogAllRefUpdates() && shouldAutoCreateLog(refName)) || (isLogAllRefUpdates() && shouldAutoCreateLog(refName))
|| log.isFile(); || log.isFile();
if (!write) if (!write)
@ -254,7 +251,7 @@ public class ReflogWriter {
try { try {
out = new FileOutputStream(log, true); out = new FileOutputStream(log, true);
} catch (FileNotFoundException err) { } catch (FileNotFoundException err) {
final File dir = log.getParentFile(); File dir = log.getParentFile();
if (dir.exists()) if (dir.exists())
throw err; throw err;
if (!dir.mkdirs() && !dir.isDirectory()) if (!dir.mkdirs() && !dir.isDirectory())
@ -281,10 +278,10 @@ public class ReflogWriter {
return parent.getConfig().get(CoreConfig.KEY).isLogAllRefUpdates(); return parent.getConfig().get(CoreConfig.KEY).isLogAllRefUpdates();
} }
private boolean shouldAutoCreateLog(final String refName) { private boolean shouldAutoCreateLog(String refName) {
return refName.equals(HEAD) // return refName.equals(HEAD)
|| refName.startsWith(R_HEADS) // || refName.startsWith(R_HEADS)
|| refName.startsWith(R_REMOTES) // || refName.startsWith(R_REMOTES)
|| refName.equals(R_STASH); || refName.equals(R_STASH);
} }
} }

Loading…
Cancel
Save