-
-
Notifications
You must be signed in to change notification settings - Fork 3
Rework HashUtils to support Alder32 and CRC32 and be faster #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
PaintNinja
wants to merge
3
commits into
MinecraftForge:master
Choose a base branch
from
PaintNinja:faster-hashing
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
hash-utils/src/main/java/net/minecraftforge/util/hash/Adler32.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* Copyright (c) Forge Development LLC | ||
* SPDX-License-Identifier: LGPL-2.1-only | ||
*/ | ||
package net.minecraftforge.util.hash; | ||
|
||
import java.util.zip.Checksum; | ||
|
||
final class Adler32 extends ChecksumHashFunction { | ||
static final Adler32 INSTANCE = new Adler32(); | ||
|
||
@Override | ||
protected Checksum getHasher() { | ||
return new java.util.zip.Adler32(); | ||
} | ||
|
||
@Override | ||
public String extension() { | ||
return "alder32"; | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
hash-utils/src/main/java/net/minecraftforge/util/hash/CRC32.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* Copyright (c) Forge Development LLC | ||
* SPDX-License-Identifier: LGPL-2.1-only | ||
*/ | ||
package net.minecraftforge.util.hash; | ||
|
||
import java.util.zip.Checksum; | ||
|
||
final class CRC32 extends ChecksumHashFunction { | ||
static final CRC32 INSTANCE = new CRC32(); | ||
|
||
@Override | ||
protected Checksum getHasher() { | ||
return new java.util.zip.CRC32(); | ||
} | ||
|
||
@Override | ||
public String extension() { | ||
return "crc32"; | ||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
hash-utils/src/main/java/net/minecraftforge/util/hash/ChecksumHashFunction.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* Copyright (c) Forge Development LLC | ||
* SPDX-License-Identifier: LGPL-2.1-only | ||
*/ | ||
package net.minecraftforge.util.hash; | ||
|
||
import java.io.File; | ||
import java.io.FileInputStream; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.util.Locale; | ||
import java.util.zip.Checksum; | ||
|
||
abstract class ChecksumHashFunction extends HashFunction { | ||
private static final String PADDING = String.format(Locale.ENGLISH, "%032d", 0); | ||
|
||
protected abstract Checksum getHasher(); | ||
|
||
@Override | ||
public final String hash(Iterable<File> files) throws IOException { | ||
Checksum hasher = getHasher(); | ||
byte[] buffer = new byte[8192]; | ||
|
||
for (File file : files) { | ||
if (!file.exists()) | ||
continue; | ||
|
||
try (FileInputStream fin = new FileInputStream(file)) { | ||
int count = -1; | ||
while ((count = fin.read(buffer)) != -1) | ||
hasher.update(buffer, 0, count); | ||
} | ||
} | ||
return pad(Long.toHexString(hasher.getValue())); | ||
} | ||
|
||
@Override | ||
public final String hash(InputStream inputStream) throws IOException { | ||
Checksum hasher = getHasher(); | ||
byte[] buffer = new byte[8192]; | ||
int count = -1; | ||
while ((count = inputStream.read(buffer)) != -1) | ||
hasher.update(buffer, 0, count); | ||
return pad(Long.toHexString(hasher.getValue())); | ||
} | ||
|
||
@Override | ||
public final String hash(byte[] bytes) { | ||
Checksum hasher = getHasher(); | ||
hasher.update(bytes, 0, bytes.length); | ||
return pad(Long.toHexString(hasher.getValue())); | ||
} | ||
|
||
@Override | ||
public final String pad(String hash) { | ||
return (PADDING + hash).substring(hash.length()); | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.