-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support JNBT string encoding as an option
Fixes #9
- Loading branch information
1 parent
6947c99
commit 893fd1c
Showing
11 changed files
with
659 additions
and
115 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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
102 changes: 102 additions & 0 deletions
102
stream/src/main/java/org/enginehub/linbus/stream/LinReadOptions.java
This file contains 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,102 @@ | ||
/* | ||
* Copyright (c) EngineHub <https://enginehub.org> | ||
* Copyright (c) contributors | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.enginehub.linbus.stream; | ||
|
||
|
||
/** | ||
* Options for reading NBT streams. | ||
*/ | ||
public final class LinReadOptions { | ||
|
||
/** | ||
* Create a new builder. | ||
* | ||
* @return a new builder | ||
*/ | ||
public static Builder builder() { | ||
return new Builder(); | ||
} | ||
|
||
/** | ||
* Builder for {@link LinReadOptions}. | ||
*/ | ||
public static final class Builder { | ||
private boolean allowJnbtStringEncoding = false; | ||
|
||
private Builder() { | ||
} | ||
|
||
/** | ||
* Set whether to allow the string encoding used by JNBT. It is not compliant with the NBT specification and | ||
* uses normal UTF-8 encoding instead of the modified UTF-8 encoding of {@link java.io.DataInput}. | ||
* | ||
* <p> | ||
* Note that this option will force checking the bytes to select the correct encoding, which will be slower. | ||
* </p> | ||
* | ||
* @param allowJnbtStringEncoding whether to allow the string encoding used by JNBT | ||
* @return this builder | ||
*/ | ||
public Builder allowJnbtStringEncoding(boolean allowJnbtStringEncoding) { | ||
this.allowJnbtStringEncoding = allowJnbtStringEncoding; | ||
return this; | ||
} | ||
|
||
/** | ||
* Build the options. | ||
* | ||
* @return the options | ||
*/ | ||
public LinReadOptions build() { | ||
return new LinReadOptions(this); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "LinReadOptions.Builder{" + | ||
"allowJnbtStringEncoding=" + allowJnbtStringEncoding + | ||
'}'; | ||
} | ||
} | ||
|
||
private final boolean allowJnbtStringEncoding; | ||
|
||
private LinReadOptions(Builder builder) { | ||
this.allowJnbtStringEncoding = builder.allowJnbtStringEncoding; | ||
} | ||
|
||
/** | ||
* {@return whether to allow the string encoding used by JNBT} It is not compliant with the NBT specification and | ||
* uses normal UTF-8 encoding instead of the modified UTF-8 encoding of {@link java.io.DataInput}. | ||
* | ||
* <p> | ||
* Note that this option will force checking the bytes to select the correct encoding, which will be slower. | ||
* </p> | ||
*/ | ||
public boolean allowJnbtStringEncoding() { | ||
return allowJnbtStringEncoding; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "LinReadOptions{" + | ||
"allowJnbtStringEncoding=" + allowJnbtStringEncoding + | ||
'}'; | ||
} | ||
} |
Oops, something went wrong.