Merge changes from topic 'binary-files-size'

* changes:
  Show for binary files the file size increase/decrease as percentage
  FileInfo: Include file size
This commit is contained in:
David Pursehouse 2015-11-11 00:56:21 +00:00 committed by Gerrit Code Review
commit dd3b71d4ee
13 changed files with 107 additions and 24 deletions

View File

@ -414,35 +414,42 @@ default. Optional fields are:
"files": { "files": {
"gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeCache.java": { "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeCache.java": {
"lines_deleted": 8, "lines_deleted": 8,
"size_delta": -412 "size_delta": -412,
"size": 7782
}, },
"gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeDetailCache.java": { "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeDetailCache.java": {
"lines_inserted": 1, "lines_inserted": 1,
"size_delta": 23 "size_delta": 23,
"size": 6762
}, },
"gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeScreen.java": { "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeScreen.java": {
"lines_inserted": 11, "lines_inserted": 11,
"lines_deleted": 19, "lines_deleted": 19,
"size_delta": -298 "size_delta": -298,
"size": 47023
}, },
"gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeTable.java": { "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeTable.java": {
"lines_inserted": 23, "lines_inserted": 23,
"lines_deleted": 20, "lines_deleted": 20,
"size_delta": 132 "size_delta": 132,
"size": 17727
}, },
"gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/StarCache.java": { "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/StarCache.java": {
"status": "D", "status": "D",
"lines_deleted": 139, "lines_deleted": 139,
"size_delta": -5512 "size_delta": -5512,
"size": 13098
}, },
"gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/StarredChanges.java": { "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/StarredChanges.java": {
"status": "A", "status": "A",
"lines_inserted": 204, "lines_inserted": 204,
"size_delta": 8345 "size_delta": 8345,
"size": 8345
}, },
"gerrit-gwtui/src/main/java/com/google/gerrit/client/ui/Screen.java": { "gerrit-gwtui/src/main/java/com/google/gerrit/client/ui/Screen.java": {
"lines_deleted": 9, "lines_deleted": 9,
"size_delta": -343 "size_delta": -343,
"size": 5385
} }
} }
} }
@ -3270,12 +3277,14 @@ sorted by file path.
"/COMMIT_MSG": { "/COMMIT_MSG": {
"status": "A", "status": "A",
"lines_inserted": 7, "lines_inserted": 7,
"size_delta": 551 "size_delta": 551,
"size": 551
}, },
"gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java": { "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java": {
"lines_inserted": 5, "lines_inserted": 5,
"lines_deleted": 3, "lines_deleted": 3,
"size_delta": 98 "size_delta": 98,
"size": 23348
} }
} }
---- ----
@ -4218,6 +4227,8 @@ Number of deleted lines. +
Not set for binary files or if no lines were deleted. Not set for binary files or if no lines were deleted.
|`size_delta` || |`size_delta` ||
Number of bytes by which the file size increased/decreased. Number of bytes by which the file size increased/decreased.
|`size` ||
File size in bytes.
|============================= |=============================
[[fix-input]] [[fix-input]]

View File

@ -21,4 +21,5 @@ public class FileInfo {
public Integer linesInserted; public Integer linesInserted;
public Integer linesDeleted; public Integer linesDeleted;
public long sizeDelta; public long sizeDelta;
public long size;
} }

View File

@ -34,6 +34,11 @@ public class FileInfo extends JavaScriptObject {
// JSNI methods cannot have 'long' as a parameter type or a return type and // JSNI methods cannot have 'long' as a parameter type or a return type and
// it's suggested to use double in this case: // it's suggested to use double in this case:
// http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsJSNI.html#important // http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsJSNI.html#important
public final long size() {
return (long)_size();
}
private final native double _size() /*-{ return this.size || 0; }-*/;
public final long sizeDelta() { public final long sizeDelta() {
return (long)_sizeDelta(); return (long)_sizeDelta();
} }

View File

@ -14,6 +14,7 @@
package com.google.gerrit.client; package com.google.gerrit.client;
import com.google.gerrit.client.change.Resources;
import com.google.gerrit.client.info.AccountInfo; import com.google.gerrit.client.info.AccountInfo;
import com.google.gerrit.client.info.AccountPreferencesInfo; import com.google.gerrit.client.info.AccountPreferencesInfo;
import com.google.gerrit.reviewdb.client.Account; import com.google.gerrit.reviewdb.client.Account;
@ -134,4 +135,19 @@ public class FormatUtil {
+ NumberFormat.getFormat("#.0").format(bytes / Math.pow(1024, exp)) + NumberFormat.getFormat("#.0").format(bytes / Math.pow(1024, exp))
+ " " + "KMGTPE".charAt(exp - 1) + "iB"; + " " + "KMGTPE".charAt(exp - 1) + "iB";
} }
public static String formatPercentage(long size, long delta) {
if (size == 0) {
return Resources.C.notAvailable();
}
return (delta > 0 ? "+" : "-") + formatAbsPercentage(size, delta);
}
public static String formatAbsPercentage(long size, long delta) {
if (size == 0) {
return Resources.C.notAvailable();
}
int p = Math.abs(Math.round(delta * 100 / size));
return p + "%";
}
} }

View File

@ -16,7 +16,7 @@ package com.google.gerrit.client.change;
import com.google.gwt.i18n.client.Constants; import com.google.gwt.i18n.client.Constants;
interface ChangeConstants extends Constants { public interface ChangeConstants extends Constants {
String previousChange(); String previousChange();
String nextChange(); String nextChange();
String openChange(); String openChange();

View File

@ -16,6 +16,8 @@ package com.google.gerrit.client.change;
import static com.google.gerrit.client.FormatUtil.formatAbsBytes; import static com.google.gerrit.client.FormatUtil.formatAbsBytes;
import static com.google.gerrit.client.FormatUtil.formatBytes; import static com.google.gerrit.client.FormatUtil.formatBytes;
import static com.google.gerrit.client.FormatUtil.formatPercentage;
import static com.google.gerrit.client.FormatUtil.formatAbsPercentage;
import com.google.gerrit.client.Dispatcher; import com.google.gerrit.client.Dispatcher;
import com.google.gerrit.client.Gerrit; import com.google.gerrit.client.Gerrit;
@ -464,6 +466,7 @@ public class FileTable extends FlowPanel {
private boolean hasNonBinaryFile; private boolean hasNonBinaryFile;
private int inserted; private int inserted;
private int deleted; private int deleted;
private long binOldSize;
private long bytesInserted; private long bytesInserted;
private long bytesDeleted; private long bytesDeleted;
@ -520,6 +523,7 @@ public class FileTable extends FlowPanel {
private void computeInsertedDeleted() { private void computeInsertedDeleted() {
inserted = 0; inserted = 0;
deleted = 0; deleted = 0;
binOldSize = 0;
bytesInserted = 0; bytesInserted = 0;
bytesDeleted = 0; bytesDeleted = 0;
for (int i = 0; i < list.length(); i++) { for (int i = 0; i < list.length(); i++) {
@ -531,6 +535,7 @@ public class FileTable extends FlowPanel {
deleted += info.linesDeleted(); deleted += info.linesDeleted();
} else { } else {
hasBinaryFile = true; hasBinaryFile = true;
binOldSize += info.size() - info.sizeDelta();
if (info.sizeDelta() >= 0) { if (info.sizeDelta() >= 0) {
bytesInserted += info.sizeDelta(); bytesInserted += info.sizeDelta();
} else { } else {
@ -771,6 +776,12 @@ public class FileTable extends FlowPanel {
} }
} else if (info.binary()) { } else if (info.binary()) {
sb.append(formatBytes(info.sizeDelta())); sb.append(formatBytes(info.sizeDelta()));
long oldSize = info.size() - info.sizeDelta();
if (oldSize != 0) {
sb.append(" (")
.append(formatPercentage(oldSize, info.sizeDelta()))
.append(")");
}
} }
sb.closeTd(); sb.closeTd();
} }
@ -827,8 +838,17 @@ public class FileTable extends FlowPanel {
if (hasNonBinaryFile) { if (hasNonBinaryFile) {
sb.br(); sb.br();
} }
sb.append(Util.M.patchTableSize_ModifyBinaryFiles( if (binOldSize != 0) {
formatAbsBytes(bytesInserted), formatAbsBytes(bytesDeleted))); sb.append(Util.M.patchTableSize_ModifyBinaryFilesWithPercentages(
formatAbsBytes(bytesInserted),
formatAbsPercentage(binOldSize, bytesInserted),
formatAbsBytes(bytesDeleted),
formatAbsPercentage(binOldSize, bytesDeleted)));
} else {
sb.append(Util.M.patchTableSize_ModifyBinaryFiles(
formatAbsBytes(bytesInserted),
formatAbsBytes(bytesDeleted)));
}
} }
sb.closeTh(); sb.closeTh();

View File

@ -36,6 +36,8 @@ public interface ChangeMessages extends Messages {
String patchTableSize_Modify(int insertions, int deletions); String patchTableSize_Modify(int insertions, int deletions);
String patchTableSize_ModifyBinaryFiles(String bytesInserted, String patchTableSize_ModifyBinaryFiles(String bytesInserted,
String bytesDeleted); String bytesDeleted);
String patchTableSize_ModifyBinaryFilesWithPercentages(String bytesInserted,
String percentageInserted, String bytesDeleted, String percentageDeleted);
String patchTableSize_LongModify(int insertions, int deletions); String patchTableSize_LongModify(int insertions, int deletions);
String patchTableSize_Lines(@PluralCount int insertions); String patchTableSize_Lines(@PluralCount int insertions);

View File

@ -18,6 +18,7 @@ patchTableComments = {0} comments
patchTableDrafts = {0} drafts patchTableDrafts = {0} drafts
patchTableSize_Modify = +{0}, -{1} patchTableSize_Modify = +{0}, -{1}
patchTableSize_ModifyBinaryFiles = +{0}, -{1} patchTableSize_ModifyBinaryFiles = +{0}, -{1}
patchTableSize_ModifyBinaryFilesWithPercentages = +{0} (+{1}), -{2} (-{3})
patchTableSize_LongModify = {0} inserted, {1} deleted patchTableSize_LongModify = {0} inserted, {1} deleted
patchTableSize_Lines = {0} lines patchTableSize_Lines = {0} lines

View File

@ -15,6 +15,7 @@
package com.google.gerrit.client; package com.google.gerrit.client;
import static com.google.gerrit.client.FormatUtil.formatBytes; import static com.google.gerrit.client.FormatUtil.formatBytes;
import static com.google.gerrit.client.FormatUtil.formatPercentage;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import com.googlecode.gwt.test.GwtModule; import com.googlecode.gwt.test.GwtModule;
@ -45,4 +46,17 @@ public class FormatUtilTest extends GwtTest {
assertEquals("-27 B", formatBytes(-27)); assertEquals("-27 B", formatBytes(-27));
assertEquals("-1.7 MiB", formatBytes(-1728)); assertEquals("-1.7 MiB", formatBytes(-1728));
} }
@Test
public void testFormatPercentage() {
assertEquals("N/A", formatPercentage(0, 10));
assertEquals("0%", formatPercentage(100, 0));
assertEquals("+25%", formatPercentage(100, 25));
assertEquals("-25%", formatPercentage(100, -25));
assertEquals("+50%", formatPercentage(100, 50));
assertEquals("-50%", formatPercentage(100, -50));
assertEquals("+100%", formatPercentage(100, 100));
assertEquals("-100%", formatPercentage(100, -100));
assertEquals("+500%", formatPercentage(100, 500));
}
} }

View File

@ -64,6 +64,7 @@ public class FileInfoJson {
? e.getChangeType().getCode() : null; ? e.getChangeType().getCode() : null;
d.oldPath = e.getOldName(); d.oldPath = e.getOldName();
d.sizeDelta = e.getSizeDelta(); d.sizeDelta = e.getSizeDelta();
d.size = e.getSize();
if (e.getPatchType() == Patch.PatchType.BINARY) { if (e.getPatchType() == Patch.PatchType.BINARY) {
d.binary = true; d.binary = true;
} else { } else {
@ -78,6 +79,7 @@ public class FileInfoJson {
// a single record with data from both sides. // a single record with data from both sides.
d.status = Patch.ChangeType.REWRITE.getCode(); d.status = Patch.ChangeType.REWRITE.getCode();
d.sizeDelta = o.sizeDelta; d.sizeDelta = o.sizeDelta;
d.size = o.size;
if (o.binary != null && o.binary) { if (o.binary != null && o.binary) {
d.binary = true; d.binary = true;
} }

View File

@ -51,7 +51,7 @@ public class PatchListEntry {
static PatchListEntry empty(final String fileName) { static PatchListEntry empty(final String fileName) {
return new PatchListEntry(ChangeType.MODIFIED, PatchType.UNIFIED, null, return new PatchListEntry(ChangeType.MODIFIED, PatchType.UNIFIED, null,
fileName, EMPTY_HEADER, Collections.<Edit> emptyList(), 0, 0, 0); fileName, EMPTY_HEADER, Collections.<Edit> emptyList(), 0, 0, 0, 0);
} }
private final ChangeType changeType; private final ChangeType changeType;
@ -62,11 +62,13 @@ public class PatchListEntry {
private final List<Edit> edits; private final List<Edit> edits;
private final int insertions; private final int insertions;
private final int deletions; private final int deletions;
private final long size;
private final long sizeDelta; private final long sizeDelta;
// Note: When adding new fields, the serialVersionUID in PatchListKey must be // Note: When adding new fields, the serialVersionUID in PatchListKey must be
// incremented so that entries from the cache are automatically invalidated. // incremented so that entries from the cache are automatically invalidated.
PatchListEntry(FileHeader hdr, List<Edit> editList, long sizeDelta) { PatchListEntry(FileHeader hdr, List<Edit> editList, long size,
long sizeDelta) {
changeType = toChangeType(hdr); changeType = toChangeType(hdr);
patchType = toPatchType(hdr); patchType = toPatchType(hdr);
@ -111,12 +113,13 @@ public class PatchListEntry {
} }
insertions = ins; insertions = ins;
deletions = del; deletions = del;
this.size = size;
this.sizeDelta = sizeDelta; this.sizeDelta = sizeDelta;
} }
private PatchListEntry(ChangeType changeType, PatchType patchType, private PatchListEntry(ChangeType changeType, PatchType patchType,
String oldName, String newName, byte[] header, List<Edit> edits, String oldName, String newName, byte[] header, List<Edit> edits,
int insertions, int deletions, long sizeDelta) { int insertions, int deletions, long size, long sizeDelta) {
this.changeType = changeType; this.changeType = changeType;
this.patchType = patchType; this.patchType = patchType;
this.oldName = oldName; this.oldName = oldName;
@ -125,6 +128,7 @@ public class PatchListEntry {
this.edits = edits; this.edits = edits;
this.insertions = insertions; this.insertions = insertions;
this.deletions = deletions; this.deletions = deletions;
this.size = size;
this.sizeDelta = sizeDelta; this.sizeDelta = sizeDelta;
} }
@ -172,6 +176,10 @@ public class PatchListEntry {
return deletions; return deletions;
} }
public long getSize() {
return size;
}
public long getSizeDelta() { public long getSizeDelta() {
return sizeDelta; return sizeDelta;
} }
@ -208,6 +216,7 @@ public class PatchListEntry {
writeBytes(out, header); writeBytes(out, header);
writeVarInt32(out, insertions); writeVarInt32(out, insertions);
writeVarInt32(out, deletions); writeVarInt32(out, deletions);
writeFixInt64(out, size);
writeFixInt64(out, sizeDelta); writeFixInt64(out, sizeDelta);
writeVarInt32(out, edits.size()); writeVarInt32(out, edits.size());
@ -227,6 +236,7 @@ public class PatchListEntry {
byte[] hdr = readBytes(in); byte[] hdr = readBytes(in);
int ins = readVarInt32(in); int ins = readVarInt32(in);
int del = readVarInt32(in); int del = readVarInt32(in);
long size = readFixInt64(in);
long sizeDelta = readFixInt64(in); long sizeDelta = readFixInt64(in);
int editCount = readVarInt32(in); int editCount = readVarInt32(in);
@ -240,7 +250,7 @@ public class PatchListEntry {
} }
return new PatchListEntry(changeType, patchType, oldName, newName, hdr, return new PatchListEntry(changeType, patchType, oldName, newName, hdr,
toList(editArray), ins, del, sizeDelta); toList(editArray), ins, del, size, sizeDelta);
} }
private static List<Edit> toList(Edit[] l) { private static List<Edit> toList(Edit[] l) {

View File

@ -34,7 +34,7 @@ import java.io.ObjectOutputStream;
import java.io.Serializable; import java.io.Serializable;
public class PatchListKey implements Serializable { public class PatchListKey implements Serializable {
static final long serialVersionUID = 18L; static final long serialVersionUID = 19L;
public static final BiMap<Whitespace, Character> WHITESPACE_TYPES = ImmutableBiMap.of( public static final BiMap<Whitespace, Character> WHITESPACE_TYPES = ImmutableBiMap.of(
Whitespace.IGNORE_NONE, 'N', Whitespace.IGNORE_NONE, 'N',

View File

@ -206,7 +206,7 @@ public class PatchListLoader implements Callable<PatchList> {
getFileSize(repo, reader, e.getOldMode(), e.getOldPath(), aTree); getFileSize(repo, reader, e.getOldMode(), e.getOldPath(), aTree);
long newSize = long newSize =
getFileSize(repo, reader, e.getNewMode(), e.getNewPath(), bTree); getFileSize(repo, reader, e.getNewMode(), e.getNewPath(), bTree);
entries.add(newEntry(aTree, fh, newSize - oldSize)); entries.add(newEntry(aTree, fh, newSize, newSize - oldSize));
} }
} }
return new PatchList(a, b, againstParent, return new PatchList(a, b, againstParent,
@ -301,37 +301,38 @@ public class PatchListLoader implements Callable<PatchList> {
byte[] rawHdr = hdr.toString().getBytes(UTF_8); byte[] rawHdr = hdr.toString().getBytes(UTF_8);
byte[] aContent = aText.getContent(); byte[] aContent = aText.getContent();
byte[] bContent = bText.getContent(); byte[] bContent = bText.getContent();
long size = bContent.length;
long sizeDelta = bContent.length - aContent.length; long sizeDelta = bContent.length - aContent.length;
RawText aRawText = new RawText(aContent); RawText aRawText = new RawText(aContent);
RawText bRawText = new RawText(bContent); RawText bRawText = new RawText(bContent);
EditList edits = new HistogramDiff().diff(cmp, aRawText, bRawText); EditList edits = new HistogramDiff().diff(cmp, aRawText, bRawText);
FileHeader fh = new FileHeader(rawHdr, edits, PatchType.UNIFIED); FileHeader fh = new FileHeader(rawHdr, edits, PatchType.UNIFIED);
return new PatchListEntry(fh, edits, sizeDelta); return new PatchListEntry(fh, edits, size, sizeDelta);
} }
private PatchListEntry newEntry(RevTree aTree, FileHeader fileHeader, private PatchListEntry newEntry(RevTree aTree, FileHeader fileHeader,
long sizeDelta) { long size, long sizeDelta) {
final FileMode oldMode = fileHeader.getOldMode(); final FileMode oldMode = fileHeader.getOldMode();
final FileMode newMode = fileHeader.getNewMode(); final FileMode newMode = fileHeader.getNewMode();
if (oldMode == FileMode.GITLINK || newMode == FileMode.GITLINK) { if (oldMode == FileMode.GITLINK || newMode == FileMode.GITLINK) {
return new PatchListEntry(fileHeader, Collections.<Edit> emptyList(), return new PatchListEntry(fileHeader, Collections.<Edit> emptyList(),
sizeDelta); size, sizeDelta);
} }
if (aTree == null // want combined diff if (aTree == null // want combined diff
|| fileHeader.getPatchType() != PatchType.UNIFIED || fileHeader.getPatchType() != PatchType.UNIFIED
|| fileHeader.getHunks().isEmpty()) { || fileHeader.getHunks().isEmpty()) {
return new PatchListEntry(fileHeader, Collections.<Edit> emptyList(), return new PatchListEntry(fileHeader, Collections.<Edit> emptyList(),
sizeDelta); size, sizeDelta);
} }
List<Edit> edits = fileHeader.toEditList(); List<Edit> edits = fileHeader.toEditList();
if (edits.isEmpty()) { if (edits.isEmpty()) {
return new PatchListEntry(fileHeader, Collections.<Edit> emptyList(), return new PatchListEntry(fileHeader, Collections.<Edit> emptyList(),
sizeDelta); size, sizeDelta);
} else { } else {
return new PatchListEntry(fileHeader, edits, sizeDelta); return new PatchListEntry(fileHeader, edits, size, sizeDelta);
} }
} }