Files
runelite/runescape-client/src/main/java/BufferedSource.java
2022-02-09 13:21:03 +01:00

247 lines
5.9 KiB
Java

import java.io.EOFException;
import java.io.IOException;
import java.io.InputStream;
import net.runelite.mapping.Export;
import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedGetter;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("mv")
@Implements("BufferedSource")
public class BufferedSource implements Runnable {
@ObfuscatedName("c")
@Export("thread")
Thread thread;
@ObfuscatedName("l")
@Export("inputStream")
InputStream inputStream;
@ObfuscatedName("s")
@ObfuscatedGetter(
intValue = -278059203
)
@Export("capacity")
int capacity;
@ObfuscatedName("e")
@Export("buffer")
byte[] buffer;
@ObfuscatedName("r")
@ObfuscatedGetter(
intValue = 1313877129
)
@Export("position")
int position;
@ObfuscatedName("o")
@ObfuscatedGetter(
intValue = 1487831007
)
@Export("limit")
int limit;
@ObfuscatedName("i")
@Export("exception")
IOException exception;
BufferedSource(InputStream var1, int var2) {
this.position = 0; // L: 66
this.limit = 0; // L: 67
this.inputStream = var1; // L: 71
this.capacity = var2 + 1; // L: 72
this.buffer = new byte[this.capacity]; // L: 73
this.thread = new Thread(this); // L: 74
this.thread.setDaemon(true); // L: 75
this.thread.start(); // L: 76
} // L: 77
@ObfuscatedName("c")
@ObfuscatedSignature(
descriptor = "(IB)Z",
garbageValue = "-10"
)
@Export("isAvailable")
boolean isAvailable(int var1) throws IOException {
if (var1 == 0) { // L: 113
return true;
} else if (var1 > 0 && var1 < this.capacity) { // L: 114
synchronized(this) { // L: 115
int var3;
if (this.position <= this.limit) { // L: 117
var3 = this.limit - this.position;
} else {
var3 = this.capacity - this.position + this.limit; // L: 118
}
if (var3 < var1) { // L: 119
if (this.exception != null) { // L: 120
throw new IOException(this.exception.toString());
} else {
this.notifyAll(); // L: 121
return false; // L: 122
}
} else {
return true; // L: 124
}
}
} else {
throw new IOException();
}
}
@ObfuscatedName("l")
@ObfuscatedSignature(
descriptor = "(B)I",
garbageValue = "9"
)
@Export("available")
int available() throws IOException {
synchronized(this) { // L: 129
int var2;
if (this.position <= this.limit) { // L: 131
var2 = this.limit - this.position;
} else {
var2 = this.capacity - this.position + this.limit; // L: 132
}
if (var2 <= 0 && this.exception != null) { // L: 133
throw new IOException(this.exception.toString()); // L: 134
} else {
this.notifyAll(); // L: 136
return var2; // L: 137
}
}
}
@ObfuscatedName("s")
@ObfuscatedSignature(
descriptor = "(I)I",
garbageValue = "-677588890"
)
@Export("readUnsignedByte")
int readUnsignedByte() throws IOException {
synchronized(this) { // L: 142
if (this.position == this.limit) { // L: 143
if (this.exception != null) { // L: 144
throw new IOException(this.exception.toString());
} else {
return -1; // L: 145
}
} else {
int var2 = this.buffer[this.position] & 255; // L: 147
this.position = (this.position + 1) % this.capacity; // L: 148
this.notifyAll(); // L: 149
return var2; // L: 150
}
}
}
@ObfuscatedName("e")
@ObfuscatedSignature(
descriptor = "([BIIS)I",
garbageValue = "-28937"
)
@Export("read")
int read(byte[] var1, int var2, int var3) throws IOException {
if (var3 >= 0 && var2 >= 0 && var3 + var2 <= var1.length) { // L: 155
synchronized(this) { // L: 156
int var5;
if (this.position <= this.limit) { // L: 158
var5 = this.limit - this.position;
} else {
var5 = this.capacity - this.position + this.limit; // L: 159
}
if (var3 > var5) { // L: 160
var3 = var5;
}
if (var3 == 0 && this.exception != null) { // L: 161
throw new IOException(this.exception.toString());
} else {
if (var3 + this.position <= this.capacity) { // L: 162
System.arraycopy(this.buffer, this.position, var1, var2, var3); // L: 163
} else {
int var6 = this.capacity - this.position; // L: 166
System.arraycopy(this.buffer, this.position, var1, var2, var6); // L: 167
System.arraycopy(this.buffer, 0, var1, var6 + var2, var3 - var6); // L: 168
}
this.position = (var3 + this.position) % this.capacity; // L: 170
this.notifyAll(); // L: 171
return var3; // L: 172
}
}
} else {
throw new IOException();
}
}
@ObfuscatedName("r")
@ObfuscatedSignature(
descriptor = "(B)V",
garbageValue = "-14"
)
@Export("close")
void close() {
synchronized(this) { // L: 177
if (this.exception == null) {
this.exception = new IOException(""); // L: 178
}
this.notifyAll(); // L: 179
}
try {
this.thread.join(); // L: 182
} catch (InterruptedException var3) { // L: 184
}
} // L: 185
public void run() {
while (true) {
int var1;
synchronized(this) { // L: 82
while (true) {
if (this.exception != null) { // L: 84
return;
}
if (this.position == 0) { // L: 85
var1 = this.capacity - this.limit - 1;
} else if (this.position <= this.limit) { // L: 86
var1 = this.capacity - this.limit;
} else {
var1 = this.position - this.limit - 1; // L: 87
}
if (var1 > 0) { // L: 88
break;
}
try {
this.wait(); // L: 90
} catch (InterruptedException var10) { // L: 92
}
}
}
int var7;
try {
var7 = this.inputStream.read(this.buffer, this.limit, var1); // L: 97
if (var7 == -1) {
throw new EOFException(); // L: 98
}
} catch (IOException var11) { // L: 100
IOException var3 = var11;
synchronized(this) { // L: 101
this.exception = var3; // L: 102
return; // L: 103
}
}
synchronized(this) { // L: 106
this.limit = (var7 + this.limit) % this.capacity; // L: 107
} // L: 108
}
}
}