InputStreamToXInputStreamAdapter.readBytes() should read...

until the buffer is full, or the file ends. It shouldn't care about
available().

(cherry-picked from f04910427d25ede98b84b90df7cc5a12d1adc695)

Change-Id: I4ad17c614ba336ff21883248715861f6af1fbc2b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147934
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Jenkins
This commit is contained in:
Damjan Jovanovic
2023-02-27 20:19:39 +00:00
committed by Caolán McNamara
parent 4f743219e8
commit f4d147ef95

View File

@@ -79,29 +79,24 @@ public final class InputStreamToXInputStreamAdapter implements XInputStream {
{
try {
long bytesRead;
int totalBytesRead = 0;
if (b[0] == null || b[0].length < len) {
b[0] = new byte[len];
}
if (len >iIn.available()) {
bytesRead = iIn.read(b[0], 0, iIn.available());
}
else{
bytesRead = iIn.read(b[0], 0, len);
}
// Casting bytesRead to an int is okay, since the user can
// only pass in an integer length to read, so the bytesRead
// must <= len.
if (bytesRead < b[0].length) {
int outSize = bytesRead > 0 ? (int)bytesRead : 0;
byte[] out = new byte[outSize];
System.arraycopy(b[0], 0, out, 0, outSize);
while ((len > 0) && ((bytesRead = iIn.read(b[0], totalBytesRead, len)) > 0)) {
totalBytesRead += (int)bytesRead;
len -= (int)bytesRead;
}
if (totalBytesRead < b[0].length) {
byte[] out = new byte[totalBytesRead];
System.arraycopy(b[0], 0, out, 0, totalBytesRead);
b[0] = out;
}
if (bytesRead <= 0) {
return 0;
}
return ((int)bytesRead);
return totalBytesRead;
} catch (IOException e) {
throw new com.sun.star.io.IOException("reader error", e);
}