what-the-bank/sources/org/jmrtd/lds/AbstractImageInfo.java

246 lines
7.8 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.jmrtd.lds;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Arrays;
import java.util.logging.Logger;
import org.jmrtd.io.SplittableInputStream;
/* loaded from: classes6.dex */
public abstract class AbstractImageInfo implements ImageInfo {
private static final Logger LOGGER = Logger.getLogger("org.jmrtd");
private static final long serialVersionUID = 2870092217269116309L;
private int height;
private byte[] imageBytes;
int imageLength;
int imagePositionInInputStream;
private String mimeType;
private SplittableInputStream splittableInputStream;
private int type;
private int width;
@Override // org.jmrtd.lds.ImageInfo
public abstract long getRecordLength();
protected abstract void readObject(InputStream inputStream) throws IOException;
protected abstract void writeObject(OutputStream outputStream) throws IOException;
/* JADX INFO: Access modifiers changed from: package-private */
public AbstractImageInfo() {
}
public AbstractImageInfo(int i) {
this.type = i;
}
public AbstractImageInfo(int i, String str) {
this(i);
this.mimeType = str;
}
private AbstractImageInfo(int i, int i2, int i3, String str) {
this(i, str);
this.width = i2;
this.height = i3;
}
public AbstractImageInfo(int i, int i2, int i3, InputStream inputStream, long j, String str) throws IOException {
this(i, i2, i3, str);
readImage(inputStream, j);
}
@Override // org.jmrtd.lds.ImageInfo
public int getImageLength() {
if (this.splittableInputStream != null) {
return this.imageLength;
}
byte[] bArr = this.imageBytes;
if (bArr != null) {
return bArr.length;
}
throw new IllegalStateException("DEBUG");
}
public String toString() {
StringBuffer stringBuffer = new StringBuffer();
stringBuffer.append(getClass().getSimpleName());
stringBuffer.append(" [");
StringBuilder sb = new StringBuilder("type: ");
sb.append(typeToString(this.type));
sb.append(", ");
stringBuffer.append(sb.toString());
StringBuilder sb2 = new StringBuilder("size: ");
sb2.append(getImageLength());
stringBuffer.append(sb2.toString());
stringBuffer.append("]");
return stringBuffer.toString();
}
public int hashCode() {
int i = this.type;
String str = this.mimeType;
return ((i * 5) - 591263623) + ((str == null ? 1337 : str.hashCode()) * 5) + 7 + (getImageLength() * 7) + 11;
}
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (obj == this) {
return true;
}
try {
if (!obj.getClass().equals(getClass())) {
return false;
}
AbstractImageInfo abstractImageInfo = (AbstractImageInfo) obj;
if (!Arrays.equals(getImageBytes(), abstractImageInfo.getImageBytes())) {
return false;
}
String str = this.mimeType;
if (!(str == null && abstractImageInfo.mimeType == null) && (str == null || !str.equals(abstractImageInfo.mimeType))) {
return false;
}
return this.type == abstractImageInfo.type;
} catch (Exception e) {
Logger logger = LOGGER;
StringBuilder sb = new StringBuilder("Exception: ");
sb.append(e.getMessage());
logger.severe(sb.toString());
return false;
}
}
@Override // org.jmrtd.lds.LDSElement
public byte[] getEncoded() {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
try {
writeObject(byteArrayOutputStream);
return byteArrayOutputStream.toByteArray();
} catch (IOException e) {
Logger logger = LOGGER;
StringBuilder sb = new StringBuilder("Exception: ");
sb.append(e.getMessage());
logger.severe(sb.toString());
return null;
}
}
@Override // org.jmrtd.lds.ImageInfo
public InputStream getImageInputStream() {
SplittableInputStream splittableInputStream = this.splittableInputStream;
if (splittableInputStream != null) {
return splittableInputStream.getInputStream(this.imagePositionInInputStream);
}
if (this.imageBytes != null) {
return new ByteArrayInputStream(this.imageBytes);
}
throw new IllegalStateException("DEBUG");
}
/* JADX INFO: Access modifiers changed from: protected */
public void readImage(InputStream inputStream, long j) throws IOException {
if (inputStream instanceof SplittableInputStream) {
this.imageBytes = null;
SplittableInputStream splittableInputStream = (SplittableInputStream) inputStream;
this.splittableInputStream = splittableInputStream;
this.imagePositionInInputStream = splittableInputStream.getPosition();
this.imageLength = (int) j;
long j2 = 0;
while (j2 < j) {
j2 += this.splittableInputStream.skip(j - j2);
}
return;
}
this.splittableInputStream = null;
this.imageBytes = new byte[(int) j];
new DataInputStream(inputStream).readFully(this.imageBytes);
}
/* JADX INFO: Access modifiers changed from: protected */
public void writeImage(OutputStream outputStream) throws IOException {
outputStream.write(getImageBytes());
}
/* JADX INFO: Access modifiers changed from: protected */
public final void setImageBytes(byte[] bArr) {
try {
readImage(new ByteArrayInputStream(bArr), bArr.length);
} catch (IOException e) {
Logger logger = LOGGER;
StringBuilder sb = new StringBuilder("Exception: ");
sb.append(e.getMessage());
logger.severe(sb.toString());
}
}
private byte[] getImageBytes() throws IOException {
byte[] bArr = new byte[getImageLength()];
new DataInputStream(getImageInputStream()).readFully(bArr);
return bArr;
}
private static String typeToString(int i) {
if (i == 0) {
return "Portrait";
}
if (i == 1) {
return "Signature or usual mark";
}
if (i == 2) {
return "Finger";
}
if (i == 3) {
return "Iris";
}
StringBuilder sb = new StringBuilder("Unknown type: ");
sb.append(Integer.toHexString(i));
throw new NumberFormatException(sb.toString());
}
/* JADX INFO: Access modifiers changed from: protected */
public final void setWidth(int i) {
this.width = i;
}
/* JADX INFO: Access modifiers changed from: protected */
public final void setType(int i) {
this.type = i;
}
/* JADX INFO: Access modifiers changed from: protected */
public final void setMimeType(String str) {
this.mimeType = str;
}
/* JADX INFO: Access modifiers changed from: protected */
public final void setHeight(int i) {
this.height = i;
}
@Override // org.jmrtd.lds.ImageInfo
public int getWidth() {
return this.width;
}
@Override // org.jmrtd.lds.ImageInfo
public int getType() {
return this.type;
}
@Override // org.jmrtd.lds.ImageInfo
public String getMimeType() {
return this.mimeType;
}
@Override // org.jmrtd.lds.ImageInfo
public int getHeight() {
return this.height;
}
}