mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Some style and related stuff I found in code inspection
git-svn-id: https://zxing.googlecode.com/svn/trunk@1921 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
e1aab01022
commit
a035285f2f
|
@ -34,7 +34,6 @@ public interface Writer {
|
||||||
* @param format The barcode format to generate
|
* @param format The barcode format to generate
|
||||||
* @param width The preferred width in pixels
|
* @param width The preferred width in pixels
|
||||||
* @param height The preferred height in pixels
|
* @param height The preferred height in pixels
|
||||||
* @return The generated barcode as a Matrix of unsigned bytes (0 == black, 255 == white)
|
|
||||||
*/
|
*/
|
||||||
BitMatrix encode(String contents, BarcodeFormat format, int width, int height)
|
BitMatrix encode(String contents, BarcodeFormat format, int width, int height)
|
||||||
throws WriterException;
|
throws WriterException;
|
||||||
|
@ -46,7 +45,6 @@ public interface Writer {
|
||||||
* @param width The preferred width in pixels
|
* @param width The preferred width in pixels
|
||||||
* @param height The preferred height in pixels
|
* @param height The preferred height in pixels
|
||||||
* @param hints Additional parameters to supply to the encoder
|
* @param hints Additional parameters to supply to the encoder
|
||||||
* @return The generated barcode as a Matrix of unsigned bytes (0 == black, 255 == white)
|
|
||||||
*/
|
*/
|
||||||
BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Hashtable hints)
|
BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Hashtable hints)
|
||||||
throws WriterException;
|
throws WriterException;
|
||||||
|
|
|
@ -53,29 +53,20 @@ public class ExpandedProductParsedResult extends ParsedResult {
|
||||||
// For AIS that not exist in this object
|
// For AIS that not exist in this object
|
||||||
private final Hashtable uncommonAIs;
|
private final Hashtable uncommonAIs;
|
||||||
|
|
||||||
ExpandedProductParsedResult() {
|
public ExpandedProductParsedResult(String productID,
|
||||||
super(ParsedResultType.PRODUCT);
|
String sscc,
|
||||||
this.productID = "";
|
String lotNumber,
|
||||||
this.sscc = "";
|
String productionDate,
|
||||||
this.lotNumber = "";
|
String packagingDate,
|
||||||
this.productionDate = "";
|
String bestBeforeDate,
|
||||||
this.packagingDate = "";
|
String expirationDate,
|
||||||
this.bestBeforeDate = "";
|
String weight,
|
||||||
this.expirationDate = "";
|
String weightType,
|
||||||
this.weight = "";
|
String weightIncrement,
|
||||||
this.weightType = "";
|
String price,
|
||||||
this.weightIncrement = "";
|
String priceIncrement,
|
||||||
this.price = "";
|
String priceCurrency,
|
||||||
this.priceIncrement = "";
|
Hashtable uncommonAIs) {
|
||||||
this.priceCurrency = "";
|
|
||||||
this.uncommonAIs = new Hashtable();
|
|
||||||
}
|
|
||||||
|
|
||||||
public ExpandedProductParsedResult(String productID, String sscc,
|
|
||||||
String lotNumber, String productionDate, String packagingDate,
|
|
||||||
String bestBeforeDate, String expirationDate, String weight,
|
|
||||||
String weightType, String weightIncrement, String price,
|
|
||||||
String priceIncrement, String priceCurrency, Hashtable uncommonAIs) {
|
|
||||||
super(ParsedResultType.PRODUCT);
|
super(ParsedResultType.PRODUCT);
|
||||||
this.productID = productID;
|
this.productID = productID;
|
||||||
this.sscc = sscc;
|
this.sscc = sscc;
|
||||||
|
@ -100,37 +91,45 @@ public class ExpandedProductParsedResult extends ParsedResult {
|
||||||
|
|
||||||
ExpandedProductParsedResult other = (ExpandedProductParsedResult)o;
|
ExpandedProductParsedResult other = (ExpandedProductParsedResult)o;
|
||||||
|
|
||||||
return this.productID.equals( other.productID)
|
return equalsOrNull(productID, other.productID)
|
||||||
&& this.sscc.equals( other.sscc)
|
&& equalsOrNull(sscc, other.sscc)
|
||||||
&& this.lotNumber.equals( other.lotNumber)
|
&& equalsOrNull(lotNumber, other.lotNumber)
|
||||||
&& this.productionDate.equals( other.productionDate)
|
&& equalsOrNull(productionDate, other.productionDate)
|
||||||
&& this.bestBeforeDate.equals( other.bestBeforeDate)
|
&& equalsOrNull(bestBeforeDate, other.bestBeforeDate)
|
||||||
&& this.expirationDate.equals( other.expirationDate)
|
&& equalsOrNull(expirationDate, other.expirationDate)
|
||||||
&& this.weight.equals( other.weight)
|
&& equalsOrNull(weight, other.weight)
|
||||||
&& this.weightType.equals( other.weightType)
|
&& equalsOrNull(weightType, other.weightType)
|
||||||
&& this.weightIncrement.equals( other.weightIncrement)
|
&& equalsOrNull(weightIncrement, other.weightIncrement)
|
||||||
&& this.price.equals( other.price)
|
&& equalsOrNull(price, other.price)
|
||||||
&& this.priceIncrement.equals( other.priceIncrement)
|
&& equalsOrNull(priceIncrement, other.priceIncrement)
|
||||||
&& this.priceCurrency.equals( other.priceCurrency)
|
&& equalsOrNull(priceCurrency, other.priceCurrency)
|
||||||
&& this.uncommonAIs.equals( other.uncommonAIs);
|
&& equalsOrNull(uncommonAIs, other.uncommonAIs);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static boolean equalsOrNull(Object o1, Object o2) {
|
||||||
|
return o1 == null ? o2 == null : o1.equals(o2);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int hashCode(){
|
public int hashCode(){
|
||||||
int hash1 = this.productID.hashCode();
|
int hash = 0;
|
||||||
hash1 = 31 * hash1 + this.sscc.hashCode();
|
hash ^= hashNotNull(productID);
|
||||||
hash1 = 31 * hash1 + this.lotNumber.hashCode();
|
hash ^= hashNotNull(sscc);
|
||||||
hash1 = 31 * hash1 + this.productionDate.hashCode();
|
hash ^= hashNotNull(lotNumber);
|
||||||
hash1 = 31 * hash1 + this.bestBeforeDate.hashCode();
|
hash ^= hashNotNull(productionDate);
|
||||||
hash1 = 31 * hash1 + this.expirationDate.hashCode();
|
hash ^= hashNotNull(bestBeforeDate);
|
||||||
hash1 = 31 * hash1 + this.weight.hashCode();
|
hash ^= hashNotNull(expirationDate);
|
||||||
|
hash ^= hashNotNull(weight);
|
||||||
|
hash ^= hashNotNull(weightType);
|
||||||
|
hash ^= hashNotNull(weightIncrement);
|
||||||
|
hash ^= hashNotNull(price);
|
||||||
|
hash ^= hashNotNull(priceIncrement);
|
||||||
|
hash ^= hashNotNull(priceCurrency);
|
||||||
|
hash ^= hashNotNull(uncommonAIs);
|
||||||
|
return hash;
|
||||||
|
}
|
||||||
|
|
||||||
int hash2 = this.weightType.hashCode();
|
private static int hashNotNull(Object o) {
|
||||||
hash2 = 31 * hash2 + this.weightIncrement.hashCode();
|
return o == null ? 0 : o.hashCode();
|
||||||
hash2 = 31 * hash2 + this.price.hashCode();
|
|
||||||
hash2 = 31 * hash2 + this.priceIncrement.hashCode();
|
|
||||||
hash2 = 31 * hash2 + this.priceCurrency.hashCode();
|
|
||||||
hash2 = 31 * hash2 + this.uncommonAIs.hashCode();
|
|
||||||
return hash1 ^ hash2;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getProductID() {
|
public String getProductID() {
|
||||||
|
|
|
@ -57,26 +57,26 @@ final class ExpandedProductResultParser extends ResultParser {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
String productID = "-";
|
String productID = null;
|
||||||
String sscc = "-";
|
String sscc = null;
|
||||||
String lotNumber = "-";
|
String lotNumber = null;
|
||||||
String productionDate = "-";
|
String productionDate = null;
|
||||||
String packagingDate = "-";
|
String packagingDate = null;
|
||||||
String bestBeforeDate = "-";
|
String bestBeforeDate = null;
|
||||||
String expirationDate = "-";
|
String expirationDate = null;
|
||||||
String weight = "-";
|
String weight = null;
|
||||||
String weightType = "-";
|
String weightType = null;
|
||||||
String weightIncrement = "-";
|
String weightIncrement = null;
|
||||||
String price = "-";
|
String price = null;
|
||||||
String priceIncrement = "-";
|
String priceIncrement = null;
|
||||||
String priceCurrency = "-";
|
String priceCurrency = null;
|
||||||
Hashtable uncommonAIs = new Hashtable();
|
Hashtable uncommonAIs = new Hashtable();
|
||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
||||||
while (i < rawText.length()) {
|
while (i < rawText.length()) {
|
||||||
String ai = findAIvalue(i, rawText);
|
String ai = findAIvalue(i, rawText);
|
||||||
if ("ERROR".equals(ai)) {
|
if (ai == null) {
|
||||||
// Error. Code doesn't match with RSS expanded pattern
|
// Error. Code doesn't match with RSS expanded pattern
|
||||||
// ExtendedProductParsedResult NOT created. Not match with RSS Expanded pattern
|
// ExtendedProductParsedResult NOT created. Not match with RSS Expanded pattern
|
||||||
return null;
|
return null;
|
||||||
|
@ -136,10 +136,20 @@ final class ExpandedProductResultParser extends ResultParser {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return new ExpandedProductParsedResult(productID, sscc, lotNumber,
|
return new ExpandedProductParsedResult(productID,
|
||||||
productionDate, packagingDate, bestBeforeDate, expirationDate,
|
sscc,
|
||||||
weight, weightType, weightIncrement, price, priceIncrement,
|
lotNumber,
|
||||||
priceCurrency, uncommonAIs);
|
productionDate,
|
||||||
|
packagingDate,
|
||||||
|
bestBeforeDate,
|
||||||
|
expirationDate,
|
||||||
|
weight,
|
||||||
|
weightType,
|
||||||
|
weightIncrement,
|
||||||
|
price,
|
||||||
|
priceIncrement,
|
||||||
|
priceCurrency,
|
||||||
|
uncommonAIs);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String findAIvalue(int i, String rawText) {
|
private static String findAIvalue(int i, String rawText) {
|
||||||
|
@ -147,30 +157,19 @@ final class ExpandedProductResultParser extends ResultParser {
|
||||||
char c = rawText.charAt(i);
|
char c = rawText.charAt(i);
|
||||||
// First character must be a open parenthesis.If not, ERROR
|
// First character must be a open parenthesis.If not, ERROR
|
||||||
if (c != '(') {
|
if (c != '(') {
|
||||||
return "ERROR";
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
String rawTextAux = rawText.substring(i + 1);
|
String rawTextAux = rawText.substring(i + 1);
|
||||||
|
|
||||||
for (int index = 0; index < rawTextAux.length(); index++) {
|
for (int index = 0; index < rawTextAux.length(); index++) {
|
||||||
char currentChar = rawTextAux.charAt(index);
|
char currentChar = rawTextAux.charAt(index);
|
||||||
switch (currentChar){
|
if (currentChar == ')') {
|
||||||
case '0':
|
return buf.toString();
|
||||||
case '1':
|
} else if (currentChar >= '0' && currentChar <= '9') {
|
||||||
case '2':
|
buf.append(currentChar);
|
||||||
case '3':
|
} else {
|
||||||
case '4':
|
return null;
|
||||||
case '5':
|
|
||||||
case '6':
|
|
||||||
case '7':
|
|
||||||
case '8':
|
|
||||||
case '9':
|
|
||||||
buf.append(currentChar);
|
|
||||||
break;
|
|
||||||
case ')':
|
|
||||||
return buf.toString();
|
|
||||||
default:
|
|
||||||
return "ERROR";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return buf.toString();
|
return buf.toString();
|
||||||
|
@ -185,7 +184,7 @@ final class ExpandedProductResultParser extends ResultParser {
|
||||||
if (c == '(') {
|
if (c == '(') {
|
||||||
// We look for a new AI. If it doesn't exist (ERROR), we coninue
|
// We look for a new AI. If it doesn't exist (ERROR), we coninue
|
||||||
// with the iteration
|
// with the iteration
|
||||||
if ("ERROR".equals(findAIvalue(index, rawTextAux))) {
|
if (findAIvalue(index, rawTextAux) == null) {
|
||||||
buf.append('(');
|
buf.append('(');
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -30,7 +30,7 @@ import java.util.Hashtable;
|
||||||
*/
|
*/
|
||||||
public final class EAN13Writer extends UPCEANWriter {
|
public final class EAN13Writer extends UPCEANWriter {
|
||||||
|
|
||||||
private static final int codeWidth = 3 + // start guard
|
private static final int CODE_WIDTH = 3 + // start guard
|
||||||
(7 * 6) + // left bars
|
(7 * 6) + // left bars
|
||||||
5 + // middle guard
|
5 + // middle guard
|
||||||
(7 * 6) + // right bars
|
(7 * 6) + // right bars
|
||||||
|
@ -53,7 +53,7 @@ public final class EAN13Writer extends UPCEANWriter {
|
||||||
|
|
||||||
int firstDigit = Integer.parseInt(contents.substring(0, 1));
|
int firstDigit = Integer.parseInt(contents.substring(0, 1));
|
||||||
int parities = EAN13Reader.FIRST_DIGIT_ENCODINGS[firstDigit];
|
int parities = EAN13Reader.FIRST_DIGIT_ENCODINGS[firstDigit];
|
||||||
byte[] result = new byte[codeWidth];
|
byte[] result = new byte[CODE_WIDTH];
|
||||||
int pos = 0;
|
int pos = 0;
|
||||||
|
|
||||||
pos += appendPattern(result, pos, UPCEANReader.START_END_PATTERN, 1);
|
pos += appendPattern(result, pos, UPCEANReader.START_END_PATTERN, 1);
|
||||||
|
|
|
@ -29,7 +29,7 @@ import java.util.Hashtable;
|
||||||
*/
|
*/
|
||||||
public final class EAN8Writer extends UPCEANWriter {
|
public final class EAN8Writer extends UPCEANWriter {
|
||||||
|
|
||||||
private static final int codeWidth = 3 + // start guard
|
private static final int CODE_WIDTH = 3 + // start guard
|
||||||
(7 * 4) + // left bars
|
(7 * 4) + // left bars
|
||||||
5 + // middle guard
|
5 + // middle guard
|
||||||
(7 * 4) + // right bars
|
(7 * 4) + // right bars
|
||||||
|
@ -52,7 +52,7 @@ public final class EAN8Writer extends UPCEANWriter {
|
||||||
"Requested contents should be 8 digits long, but got " + contents.length());
|
"Requested contents should be 8 digits long, but got " + contents.length());
|
||||||
}
|
}
|
||||||
|
|
||||||
byte[] result = new byte[codeWidth];
|
byte[] result = new byte[CODE_WIDTH];
|
||||||
int pos = 0;
|
int pos = 0;
|
||||||
|
|
||||||
pos += appendPattern(result, pos, UPCEANReader.START_END_PATTERN, 1);
|
pos += appendPattern(result, pos, UPCEANReader.START_END_PATTERN, 1);
|
||||||
|
|
|
@ -35,16 +35,16 @@ public abstract class AbstractRSSReader extends OneDReader {
|
||||||
protected final int[] evenCounts;
|
protected final int[] evenCounts;
|
||||||
|
|
||||||
protected AbstractRSSReader(){
|
protected AbstractRSSReader(){
|
||||||
decodeFinderCounters = new int[4];
|
decodeFinderCounters = new int[4];
|
||||||
dataCharacterCounters = new int[8];
|
dataCharacterCounters = new int[8];
|
||||||
oddRoundingErrors = new float[4];
|
oddRoundingErrors = new float[4];
|
||||||
evenRoundingErrors = new float[4];
|
evenRoundingErrors = new float[4];
|
||||||
oddCounts = new int[dataCharacterCounters.length / 2];
|
oddCounts = new int[dataCharacterCounters.length / 2];
|
||||||
evenCounts = new int[dataCharacterCounters.length / 2];
|
evenCounts = new int[dataCharacterCounters.length / 2];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
protected static int parseFinderValue(int[] counters, int [][] finderPatterns) throws NotFoundException {
|
protected static int parseFinderValue(int[] counters, int[][] finderPatterns) throws NotFoundException {
|
||||||
for (int value = 0; value < finderPatterns.length; value++) {
|
for (int value = 0; value < finderPatterns.length; value++) {
|
||||||
if (patternMatchVariance(counters, finderPatterns[value], MAX_INDIVIDUAL_VARIANCE) <
|
if (patternMatchVariance(counters, finderPatterns[value], MAX_INDIVIDUAL_VARIANCE) <
|
||||||
MAX_AVG_VARIANCE) {
|
MAX_AVG_VARIANCE) {
|
||||||
|
|
|
@ -34,30 +34,30 @@ import com.google.zxing.common.BitArray;
|
||||||
*/
|
*/
|
||||||
final class AI01392xDecoder extends AI01decoder {
|
final class AI01392xDecoder extends AI01decoder {
|
||||||
|
|
||||||
private static final int headerSize = 5 + 1 + 2;
|
private static final int HEADER_SIZE = 5 + 1 + 2;
|
||||||
private static final int lastDigitSize = 2;
|
private static final int LAST_DIGIT_SIZE = 2;
|
||||||
|
|
||||||
AI01392xDecoder(BitArray information) {
|
AI01392xDecoder(BitArray information) {
|
||||||
super(information);
|
super(information);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String parseInformation() throws NotFoundException {
|
public String parseInformation() throws NotFoundException {
|
||||||
if (this.information.size < headerSize + gtinSize) {
|
if (this.information.size < HEADER_SIZE + GTIN_SIZE) {
|
||||||
throw NotFoundException.getNotFoundInstance();
|
throw NotFoundException.getNotFoundInstance();
|
||||||
}
|
}
|
||||||
|
|
||||||
StringBuffer buf = new StringBuffer();
|
StringBuffer buf = new StringBuffer();
|
||||||
|
|
||||||
encodeCompressedGtin(buf, headerSize);
|
encodeCompressedGtin(buf, HEADER_SIZE);
|
||||||
|
|
||||||
int lastAIdigit =
|
int lastAIdigit =
|
||||||
this.generalDecoder.extractNumericValueFromBitArray(headerSize + gtinSize, lastDigitSize);
|
this.generalDecoder.extractNumericValueFromBitArray(HEADER_SIZE + GTIN_SIZE, LAST_DIGIT_SIZE);
|
||||||
buf.append("(392");
|
buf.append("(392");
|
||||||
buf.append(lastAIdigit);
|
buf.append(lastAIdigit);
|
||||||
buf.append(')');
|
buf.append(')');
|
||||||
|
|
||||||
DecodedInformation decodedInformation =
|
DecodedInformation decodedInformation =
|
||||||
this.generalDecoder.decodeGeneralPurposeField(headerSize + gtinSize + lastDigitSize, null);
|
this.generalDecoder.decodeGeneralPurposeField(HEADER_SIZE + GTIN_SIZE + LAST_DIGIT_SIZE, null);
|
||||||
buf.append(decodedInformation.getNewString());
|
buf.append(decodedInformation.getNewString());
|
||||||
|
|
||||||
return buf.toString();
|
return buf.toString();
|
||||||
|
|
|
@ -33,32 +33,32 @@ import com.google.zxing.common.BitArray;
|
||||||
*/
|
*/
|
||||||
final class AI01393xDecoder extends AI01decoder {
|
final class AI01393xDecoder extends AI01decoder {
|
||||||
|
|
||||||
private static final int headerSize = 5 + 1 + 2;
|
private static final int HEADER_SIZE = 5 + 1 + 2;
|
||||||
private static final int lastDigitSize = 2;
|
private static final int LAST_DIGIT_SIZE = 2;
|
||||||
private static final int firstThreeDigitsSize = 10;
|
private static final int FIRST_THREE_DIGITS_SIZE = 10;
|
||||||
|
|
||||||
AI01393xDecoder(BitArray information) {
|
AI01393xDecoder(BitArray information) {
|
||||||
super(information);
|
super(information);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String parseInformation() throws NotFoundException {
|
public String parseInformation() throws NotFoundException {
|
||||||
if(this.information.size < headerSize + gtinSize) {
|
if(this.information.size < HEADER_SIZE + GTIN_SIZE) {
|
||||||
throw NotFoundException.getNotFoundInstance();
|
throw NotFoundException.getNotFoundInstance();
|
||||||
}
|
}
|
||||||
|
|
||||||
StringBuffer buf = new StringBuffer();
|
StringBuffer buf = new StringBuffer();
|
||||||
|
|
||||||
encodeCompressedGtin(buf, headerSize);
|
encodeCompressedGtin(buf, HEADER_SIZE);
|
||||||
|
|
||||||
int lastAIdigit =
|
int lastAIdigit =
|
||||||
this.generalDecoder.extractNumericValueFromBitArray(headerSize + gtinSize, lastDigitSize);
|
this.generalDecoder.extractNumericValueFromBitArray(HEADER_SIZE + GTIN_SIZE, LAST_DIGIT_SIZE);
|
||||||
|
|
||||||
buf.append("(393");
|
buf.append("(393");
|
||||||
buf.append(lastAIdigit);
|
buf.append(lastAIdigit);
|
||||||
buf.append(')');
|
buf.append(')');
|
||||||
|
|
||||||
int firstThreeDigits =
|
int firstThreeDigits =
|
||||||
this.generalDecoder.extractNumericValueFromBitArray(headerSize + gtinSize + lastDigitSize, firstThreeDigitsSize);
|
this.generalDecoder.extractNumericValueFromBitArray(HEADER_SIZE + GTIN_SIZE + LAST_DIGIT_SIZE, FIRST_THREE_DIGITS_SIZE);
|
||||||
if(firstThreeDigits / 100 == 0) {
|
if(firstThreeDigits / 100 == 0) {
|
||||||
buf.append('0');
|
buf.append('0');
|
||||||
}
|
}
|
||||||
|
@ -68,7 +68,7 @@ final class AI01393xDecoder extends AI01decoder {
|
||||||
buf.append(firstThreeDigits);
|
buf.append(firstThreeDigits);
|
||||||
|
|
||||||
DecodedInformation generalInformation =
|
DecodedInformation generalInformation =
|
||||||
this.generalDecoder.decodeGeneralPurposeField(headerSize + gtinSize + lastDigitSize + firstThreeDigitsSize, null);
|
this.generalDecoder.decodeGeneralPurposeField(HEADER_SIZE + GTIN_SIZE + LAST_DIGIT_SIZE + FIRST_THREE_DIGITS_SIZE, null);
|
||||||
buf.append(generalInformation.getNewString());
|
buf.append(generalInformation.getNewString());
|
||||||
|
|
||||||
return buf.toString();
|
return buf.toString();
|
||||||
|
|
|
@ -35,9 +35,9 @@ import com.google.zxing.common.BitArray;
|
||||||
*/
|
*/
|
||||||
final class AI013x0x1xDecoder extends AI01weightDecoder {
|
final class AI013x0x1xDecoder extends AI01weightDecoder {
|
||||||
|
|
||||||
private static final int headerSize = 7 + 1;
|
private static final int HEADER_SIZE = 7 + 1;
|
||||||
private static final int weightSize = 20;
|
private static final int WEIGHT_SIZE = 20;
|
||||||
private static final int dateSize = 16;
|
private static final int DATE_SIZE = 16;
|
||||||
|
|
||||||
private final String dateCode;
|
private final String dateCode;
|
||||||
private final String firstAIdigits;
|
private final String firstAIdigits;
|
||||||
|
@ -49,21 +49,21 @@ final class AI013x0x1xDecoder extends AI01weightDecoder {
|
||||||
}
|
}
|
||||||
|
|
||||||
public String parseInformation() throws NotFoundException {
|
public String parseInformation() throws NotFoundException {
|
||||||
if (this.information.size != headerSize + gtinSize + weightSize + dateSize) {
|
if (this.information.size != HEADER_SIZE + GTIN_SIZE + WEIGHT_SIZE + DATE_SIZE) {
|
||||||
throw NotFoundException.getNotFoundInstance();
|
throw NotFoundException.getNotFoundInstance();
|
||||||
}
|
}
|
||||||
|
|
||||||
StringBuffer buf = new StringBuffer();
|
StringBuffer buf = new StringBuffer();
|
||||||
|
|
||||||
encodeCompressedGtin(buf, headerSize);
|
encodeCompressedGtin(buf, HEADER_SIZE);
|
||||||
encodeCompressedWeight(buf, headerSize + gtinSize, weightSize);
|
encodeCompressedWeight(buf, HEADER_SIZE + GTIN_SIZE, WEIGHT_SIZE);
|
||||||
encodeCompressedDate(buf, headerSize + gtinSize + weightSize);
|
encodeCompressedDate(buf, HEADER_SIZE + GTIN_SIZE + WEIGHT_SIZE);
|
||||||
|
|
||||||
return buf.toString();
|
return buf.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void encodeCompressedDate(StringBuffer buf, int currentPos) {
|
private void encodeCompressedDate(StringBuffer buf, int currentPos) {
|
||||||
int numericDate = this.generalDecoder.extractNumericValueFromBitArray(currentPos, dateSize);
|
int numericDate = this.generalDecoder.extractNumericValueFromBitArray(currentPos, DATE_SIZE);
|
||||||
if(numericDate == 38400) {
|
if(numericDate == 38400) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,22 +34,22 @@ import com.google.zxing.common.BitArray;
|
||||||
*/
|
*/
|
||||||
abstract class AI013x0xDecoder extends AI01weightDecoder {
|
abstract class AI013x0xDecoder extends AI01weightDecoder {
|
||||||
|
|
||||||
private static final int headerSize = 4 + 1;
|
private static final int HEADER_SIZE = 4 + 1;
|
||||||
private static final int weightSize = 15;
|
private static final int WEIGHT_SIZE = 15;
|
||||||
|
|
||||||
AI013x0xDecoder(BitArray information) {
|
AI013x0xDecoder(BitArray information) {
|
||||||
super(information);
|
super(information);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String parseInformation() throws NotFoundException {
|
public String parseInformation() throws NotFoundException {
|
||||||
if (this.information.size != headerSize + gtinSize + weightSize) {
|
if (this.information.size != HEADER_SIZE + GTIN_SIZE + WEIGHT_SIZE) {
|
||||||
throw NotFoundException.getNotFoundInstance();
|
throw NotFoundException.getNotFoundInstance();
|
||||||
}
|
}
|
||||||
|
|
||||||
StringBuffer buf = new StringBuffer();
|
StringBuffer buf = new StringBuffer();
|
||||||
|
|
||||||
encodeCompressedGtin(buf, headerSize);
|
encodeCompressedGtin(buf, HEADER_SIZE);
|
||||||
encodeCompressedWeight(buf, headerSize + gtinSize, weightSize);
|
encodeCompressedWeight(buf, HEADER_SIZE + GTIN_SIZE, WEIGHT_SIZE);
|
||||||
|
|
||||||
return buf.toString();
|
return buf.toString();
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@ import com.google.zxing.common.BitArray;
|
||||||
*/
|
*/
|
||||||
abstract class AI01decoder extends AbstractExpandedDecoder {
|
abstract class AI01decoder extends AbstractExpandedDecoder {
|
||||||
|
|
||||||
protected static final int gtinSize = 40;
|
protected static final int GTIN_SIZE = 40;
|
||||||
|
|
||||||
AI01decoder(BitArray information) {
|
AI01decoder(BitArray information) {
|
||||||
super(information);
|
super(information);
|
||||||
|
|
|
@ -35,14 +35,8 @@ final class BlockParsedResult {
|
||||||
private final DecodedInformation decodedInformation;
|
private final DecodedInformation decodedInformation;
|
||||||
private final boolean finished;
|
private final boolean finished;
|
||||||
|
|
||||||
BlockParsedResult() {
|
|
||||||
this.finished = true;
|
|
||||||
this.decodedInformation = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
BlockParsedResult(boolean finished) {
|
BlockParsedResult(boolean finished) {
|
||||||
this.finished = finished;
|
this(null, finished);
|
||||||
this.decodedInformation = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BlockParsedResult(DecodedInformation information, boolean finished) {
|
BlockParsedResult(DecodedInformation information, boolean finished) {
|
||||||
|
|
|
@ -191,7 +191,7 @@ final class FieldParser {
|
||||||
|
|
||||||
static String parseFieldsInGeneralPurpose(String rawInformation) throws NotFoundException{
|
static String parseFieldsInGeneralPurpose(String rawInformation) throws NotFoundException{
|
||||||
if(rawInformation.length() == 0) {
|
if(rawInformation.length() == 0) {
|
||||||
return "";
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Processing 2-digit AIs
|
// Processing 2-digit AIs
|
||||||
|
@ -267,7 +267,9 @@ final class FieldParser {
|
||||||
|
|
||||||
String field = rawInformation.substring(aiSize, aiSize + fieldSize);
|
String field = rawInformation.substring(aiSize, aiSize + fieldSize);
|
||||||
String remaining = rawInformation.substring(aiSize + fieldSize);
|
String remaining = rawInformation.substring(aiSize + fieldSize);
|
||||||
return '(' + ai + ')' + field + parseFieldsInGeneralPurpose(remaining);
|
String result = '(' + ai + ')' + field;
|
||||||
|
String parsedAI = parseFieldsInGeneralPurpose(remaining);
|
||||||
|
return parsedAI == null ? result : result + parsedAI;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String processVariableAI(int aiSize, int variableFieldSize, String rawInformation) throws NotFoundException {
|
private static String processVariableAI(int aiSize, int variableFieldSize, String rawInformation) throws NotFoundException {
|
||||||
|
@ -280,6 +282,8 @@ final class FieldParser {
|
||||||
}
|
}
|
||||||
String field = rawInformation.substring(aiSize, maxSize);
|
String field = rawInformation.substring(aiSize, maxSize);
|
||||||
String remaining = rawInformation.substring(maxSize);
|
String remaining = rawInformation.substring(maxSize);
|
||||||
return '(' + ai + ')' + field + parseFieldsInGeneralPurpose(remaining);
|
String result = '(' + ai + ')' + field;
|
||||||
|
String parsedAI = parseFieldsInGeneralPurpose(remaining);
|
||||||
|
return parsedAI == null ? result : result + parsedAI;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,7 +49,9 @@ final class GeneralAppIdDecoder {
|
||||||
do{
|
do{
|
||||||
DecodedInformation info = this.decodeGeneralPurposeField(currentPosition, remaining);
|
DecodedInformation info = this.decodeGeneralPurposeField(currentPosition, remaining);
|
||||||
String parsedFields = FieldParser.parseFieldsInGeneralPurpose(info.getNewString());
|
String parsedFields = FieldParser.parseFieldsInGeneralPurpose(info.getNewString());
|
||||||
buff.append(parsedFields);
|
if (parsedFields != null) {
|
||||||
|
buff.append(parsedFields);
|
||||||
|
}
|
||||||
if(info.isRemaining()) {
|
if(info.isRemaining()) {
|
||||||
remaining = String.valueOf(info.getRemainingValue());
|
remaining = String.valueOf(info.getRemainingValue());
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -29,6 +29,8 @@ import com.google.zxing.common.BitMatrix;
|
||||||
*/
|
*/
|
||||||
final class BitMatrixParser {
|
final class BitMatrixParser {
|
||||||
|
|
||||||
|
private static final int[] NO_ERRORS = new int[0];
|
||||||
|
|
||||||
private static final int MAX_ROW_DIFFERENCE = 6;
|
private static final int MAX_ROW_DIFFERENCE = 6;
|
||||||
private static final int MAX_ROWS = 90;
|
private static final int MAX_ROWS = 90;
|
||||||
//private static final int MAX_COLUMNS = 30;
|
//private static final int MAX_COLUMNS = 30;
|
||||||
|
@ -43,7 +45,7 @@ final class BitMatrixParser {
|
||||||
private int leftColumnECData = 0;
|
private int leftColumnECData = 0;
|
||||||
private int rightColumnECData = 0;
|
private int rightColumnECData = 0;
|
||||||
private int eraseCount = 0;
|
private int eraseCount = 0;
|
||||||
private int[] erasures = null;
|
private int[] erasures;
|
||||||
private int ecLevel = -1;
|
private int ecLevel = -1;
|
||||||
|
|
||||||
BitMatrixParser(BitMatrix bitMatrix) {
|
BitMatrixParser(BitMatrix bitMatrix) {
|
||||||
|
@ -80,8 +82,7 @@ final class BitMatrixParser {
|
||||||
if (rowNumber >= MAX_ROWS) {
|
if (rowNumber >= MAX_ROWS) {
|
||||||
// Something is wrong, since we have exceeded
|
// Something is wrong, since we have exceeded
|
||||||
// the maximum rows in the specification.
|
// the maximum rows in the specification.
|
||||||
// TODO Maybe return error code
|
throw FormatException.getFormatInstance();
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
int rowDifference = 0;
|
int rowDifference = 0;
|
||||||
// Scan a line of modules and check the
|
// Scan a line of modules and check the
|
||||||
|
@ -117,8 +118,7 @@ final class BitMatrixParser {
|
||||||
if (next == -1) {
|
if (next == -1) {
|
||||||
// Something is wrong, since we have exceeded
|
// Something is wrong, since we have exceeded
|
||||||
// the maximum columns in the specification.
|
// the maximum columns in the specification.
|
||||||
// TODO Maybe return error code
|
throw FormatException.getFormatInstance();
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
// Reinitialize the row counters.
|
// Reinitialize the row counters.
|
||||||
for (int j = 0; j < rowCounters.length; j++) {
|
for (int j = 0; j < rowCounters.length; j++) {
|
||||||
|
@ -138,8 +138,7 @@ final class BitMatrixParser {
|
||||||
if (rowNumber >= MAX_ROWS) {
|
if (rowNumber >= MAX_ROWS) {
|
||||||
// Something is wrong, since we have exceeded
|
// Something is wrong, since we have exceeded
|
||||||
// the maximum rows in the specification.
|
// the maximum rows in the specification.
|
||||||
// TODO Maybe return error code
|
throw FormatException.getFormatInstance();
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
next = processRow(rowCounters, rowNumber, rowHeight, codewords, next);
|
next = processRow(rowCounters, rowNumber, rowHeight, codewords, next);
|
||||||
rowNumber++;
|
rowNumber++;
|
||||||
|
@ -157,15 +156,15 @@ final class BitMatrixParser {
|
||||||
* @return the new trimmed array
|
* @return the new trimmed array
|
||||||
*/
|
*/
|
||||||
private static int[] trimArray(int[] array, int size) {
|
private static int[] trimArray(int[] array, int size) {
|
||||||
if (size > 0) {
|
if (size < 0) {
|
||||||
int[] a = new int[size];
|
throw new IllegalArgumentException();
|
||||||
for (int i = 0; i < size; i++) {
|
|
||||||
a[i] = array[i];
|
|
||||||
}
|
|
||||||
return a;
|
|
||||||
} else {
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
if (size == 0) {
|
||||||
|
return NO_ERRORS;
|
||||||
|
}
|
||||||
|
int[] a = new int[size];
|
||||||
|
System.arraycopy(array, 0, a, 0, size);
|
||||||
|
return a;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -311,8 +310,7 @@ final class BitMatrixParser {
|
||||||
* @return the codeword corresponding to the symbol.
|
* @return the codeword corresponding to the symbol.
|
||||||
*/
|
*/
|
||||||
private static int getCodeword(long symbol) {
|
private static int getCodeword(long symbol) {
|
||||||
long sym = symbol;
|
long sym = symbol & 0x3FFFF;
|
||||||
sym &= 0x3ffff;
|
|
||||||
int i = findCodewordIndex(sym);
|
int i = findCodewordIndex(sym);
|
||||||
if (i == -1) {
|
if (i == -1) {
|
||||||
return -1;
|
return -1;
|
||||||
|
|
|
@ -31,10 +31,10 @@ public final class Mode {
|
||||||
public static final Mode ALPHANUMERIC = new Mode(new int[]{9, 11, 13}, 0x02, "ALPHANUMERIC");
|
public static final Mode ALPHANUMERIC = new Mode(new int[]{9, 11, 13}, 0x02, "ALPHANUMERIC");
|
||||||
public static final Mode STRUCTURED_APPEND = new Mode(new int[]{0, 0, 0}, 0x03, "STRUCTURED_APPEND"); // Not supported
|
public static final Mode STRUCTURED_APPEND = new Mode(new int[]{0, 0, 0}, 0x03, "STRUCTURED_APPEND"); // Not supported
|
||||||
public static final Mode BYTE = new Mode(new int[]{8, 16, 16}, 0x04, "BYTE");
|
public static final Mode BYTE = new Mode(new int[]{8, 16, 16}, 0x04, "BYTE");
|
||||||
public static final Mode ECI = new Mode(null, 0x07, "ECI"); // character counts don't apply
|
public static final Mode ECI = new Mode(new int[]{0, 0, 0}, 0x07, "ECI"); // character counts don't apply
|
||||||
public static final Mode KANJI = new Mode(new int[]{8, 10, 12}, 0x08, "KANJI");
|
public static final Mode KANJI = new Mode(new int[]{8, 10, 12}, 0x08, "KANJI");
|
||||||
public static final Mode FNC1_FIRST_POSITION = new Mode(null, 0x05, "FNC1_FIRST_POSITION");
|
public static final Mode FNC1_FIRST_POSITION = new Mode(new int[]{0, 0, 0}, 0x05, "FNC1_FIRST_POSITION");
|
||||||
public static final Mode FNC1_SECOND_POSITION = new Mode(null, 0x09, "FNC1_SECOND_POSITION");
|
public static final Mode FNC1_SECOND_POSITION = new Mode(new int[]{0, 0, 0}, 0x09, "FNC1_SECOND_POSITION");
|
||||||
/** See GBT 18284-2000; "Hanzi" is a transliteration of this mode name. */
|
/** See GBT 18284-2000; "Hanzi" is a transliteration of this mode name. */
|
||||||
public static final Mode HANZI = new Mode(new int[]{8, 10, 12}, 0x0D, "HANZI");
|
public static final Mode HANZI = new Mode(new int[]{8, 10, 12}, 0x0D, "HANZI");
|
||||||
|
|
||||||
|
|
|
@ -43,12 +43,12 @@ public final class ExpandedProductParsedResultTestCase extends Assert {
|
||||||
public void test_RSSExpanded() {
|
public void test_RSSExpanded() {
|
||||||
String text = "(01)66546(13)001205(3932)4455(3102)6544(123)544654";
|
String text = "(01)66546(13)001205(3932)4455(3102)6544(123)544654";
|
||||||
String productID = "66546";
|
String productID = "66546";
|
||||||
String sscc = "-";
|
String sscc = null;
|
||||||
String lotNumber = "-";
|
String lotNumber = null;
|
||||||
String productionDate = "-";
|
String productionDate = null;
|
||||||
String packagingDate = "001205";
|
String packagingDate = "001205";
|
||||||
String bestBeforeDate = "-";
|
String bestBeforeDate = null;
|
||||||
String expirationDate = "-";
|
String expirationDate = null;
|
||||||
String weight = "6544";
|
String weight = "6544";
|
||||||
String weightType = "KG";
|
String weightType = "KG";
|
||||||
String weightIncrement = "2";
|
String weightIncrement = "2";
|
||||||
|
|
|
@ -63,7 +63,9 @@ public final class RSSExpandedImage2resultTestCase extends Assert {
|
||||||
// (01)90012345678908(3103)001750
|
// (01)90012345678908(3103)001750
|
||||||
String path = "test/data/blackbox/rssexpanded-1/2.jpg";
|
String path = "test/data/blackbox/rssexpanded-1/2.jpg";
|
||||||
ExpandedProductParsedResult expected =
|
ExpandedProductParsedResult expected =
|
||||||
new ExpandedProductParsedResult("90012345678908", "-", "-", "-", "-", "-", "-", "001750", ExpandedProductParsedResult.KILOGRAM, "3", "-", "-", "-", new Hashtable());
|
new ExpandedProductParsedResult("90012345678908", null, null, null, null, null, null,
|
||||||
|
"001750", ExpandedProductParsedResult.KILOGRAM, "3",
|
||||||
|
null, null, null, new Hashtable());
|
||||||
|
|
||||||
assertCorrectImage2result(path, expected);
|
assertCorrectImage2result(path, expected);
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,18 +38,14 @@ public final class QRCodeWriterTestCase extends Assert {
|
||||||
|
|
||||||
private static final String BASE_IMAGE_PATH = "test/data/golden/qrcode/";
|
private static final String BASE_IMAGE_PATH = "test/data/golden/qrcode/";
|
||||||
|
|
||||||
private static BufferedImage loadImage(String fileName) {
|
private static BufferedImage loadImage(String fileName) throws IOException {
|
||||||
try {
|
File file = new File(BASE_IMAGE_PATH + fileName);
|
||||||
File file = new File(BASE_IMAGE_PATH + fileName);
|
if (!file.exists()) {
|
||||||
if (!file.exists()) {
|
// try starting with 'core' since the test base is often given as the project root
|
||||||
// try starting with 'core' since the test base is often given as the project root
|
file = new File("core/" + BASE_IMAGE_PATH + fileName);
|
||||||
file = new File("core/" + BASE_IMAGE_PATH + fileName);
|
|
||||||
}
|
|
||||||
assertTrue("Please run from the 'core' directory", file.exists());
|
|
||||||
return ImageIO.read(file);
|
|
||||||
} catch (IOException e) {
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
assertTrue("Please run from the 'core' directory", file.exists());
|
||||||
|
return ImageIO.read(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
// In case the golden images are not monochromatic, convert the RGB values to greyscale.
|
// In case the golden images are not monochromatic, convert the RGB values to greyscale.
|
||||||
|
@ -104,7 +100,7 @@ public final class QRCodeWriterTestCase extends Assert {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void compareToGoldenFile(String contents, ErrorCorrectionLevel ecLevel,
|
private static void compareToGoldenFile(String contents, ErrorCorrectionLevel ecLevel,
|
||||||
int resolution, String fileName) throws WriterException {
|
int resolution, String fileName) throws WriterException, IOException {
|
||||||
|
|
||||||
BufferedImage image = loadImage(fileName);
|
BufferedImage image = loadImage(fileName);
|
||||||
assertNotNull(image);
|
assertNotNull(image);
|
||||||
|
@ -126,7 +122,7 @@ public final class QRCodeWriterTestCase extends Assert {
|
||||||
// and cell phones. We expect pixel-perfect results, because the error correction level is known,
|
// and cell phones. We expect pixel-perfect results, because the error correction level is known,
|
||||||
// and the pixel dimensions matches exactly.
|
// and the pixel dimensions matches exactly.
|
||||||
@Test
|
@Test
|
||||||
public void testRegressionTest() throws WriterException {
|
public void testRegressionTest() throws Exception {
|
||||||
compareToGoldenFile("http://www.google.com/", ErrorCorrectionLevel.M, 99,
|
compareToGoldenFile("http://www.google.com/", ErrorCorrectionLevel.M, 99,
|
||||||
"renderer-test-01.png");
|
"renderer-test-01.png");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue