mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
77 lines
2.7 KiB
Java
77 lines
2.7 KiB
Java
package com.journeyapps.barcodescanner;
|
|
|
|
import android.content.Intent;
|
|
import com.google.zxing.client.android.Intents;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class ScanIntentResult {
|
|
private final String barcodeImagePath;
|
|
private final String contents;
|
|
private final String errorCorrectionLevel;
|
|
private final String formatName;
|
|
private final Integer orientation;
|
|
private final Intent originalIntent;
|
|
private final byte[] rawBytes;
|
|
|
|
public String getBarcodeImagePath() {
|
|
return this.barcodeImagePath;
|
|
}
|
|
|
|
public String getContents() {
|
|
return this.contents;
|
|
}
|
|
|
|
public String getErrorCorrectionLevel() {
|
|
return this.errorCorrectionLevel;
|
|
}
|
|
|
|
public String getFormatName() {
|
|
return this.formatName;
|
|
}
|
|
|
|
public Integer getOrientation() {
|
|
return this.orientation;
|
|
}
|
|
|
|
public Intent getOriginalIntent() {
|
|
return this.originalIntent;
|
|
}
|
|
|
|
public byte[] getRawBytes() {
|
|
return this.rawBytes;
|
|
}
|
|
|
|
ScanIntentResult() {
|
|
this(null, null, null, null, null, null, null);
|
|
}
|
|
|
|
ScanIntentResult(Intent intent) {
|
|
this(null, null, null, null, null, null, intent);
|
|
}
|
|
|
|
ScanIntentResult(String str, String str2, byte[] bArr, Integer num, String str3, String str4, Intent intent) {
|
|
this.contents = str;
|
|
this.formatName = str2;
|
|
this.rawBytes = bArr;
|
|
this.orientation = num;
|
|
this.errorCorrectionLevel = str3;
|
|
this.barcodeImagePath = str4;
|
|
this.originalIntent = intent;
|
|
}
|
|
|
|
public String toString() {
|
|
byte[] bArr = this.rawBytes;
|
|
return "Format: " + this.formatName + "\nContents: " + this.contents + "\nRaw bytes: (" + (bArr == null ? 0 : bArr.length) + " bytes)\nOrientation: " + this.orientation + "\nEC level: " + this.errorCorrectionLevel + "\nBarcode image: " + this.barcodeImagePath + "\nOriginal intent: " + this.originalIntent + '\n';
|
|
}
|
|
|
|
public static ScanIntentResult parseActivityResult(int i, Intent intent) {
|
|
if (i == -1) {
|
|
String stringExtra = intent.getStringExtra(Intents.Scan.RESULT);
|
|
String stringExtra2 = intent.getStringExtra(Intents.Scan.RESULT_FORMAT);
|
|
byte[] byteArrayExtra = intent.getByteArrayExtra(Intents.Scan.RESULT_BYTES);
|
|
int intExtra = intent.getIntExtra(Intents.Scan.RESULT_ORIENTATION, Integer.MIN_VALUE);
|
|
return new ScanIntentResult(stringExtra, stringExtra2, byteArrayExtra, intExtra == Integer.MIN_VALUE ? null : Integer.valueOf(intExtra), intent.getStringExtra(Intents.Scan.RESULT_ERROR_CORRECTION_LEVEL), intent.getStringExtra(Intents.Scan.RESULT_BARCODE_IMAGE_PATH), intent);
|
|
}
|
|
return new ScanIntentResult(intent);
|
|
}
|
|
}
|