FormatInformation.cpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * FormatInformation.cpp
  3. * zxing
  4. *
  5. * Created by Christian Brunschen on 18/05/2008.
  6. * Copyright 2008 ZXing authors All rights reserved.
  7. *
  8. * Licensed under the Apache License, Version 2.0 (the "License");
  9. * you may not use this file except in compliance with the License.
  10. * You may obtain a copy of the License at
  11. *
  12. * http://www.apache.org/licenses/LICENSE-2.0
  13. *
  14. * Unless required by applicable law or agreed to in writing, software
  15. * distributed under the License is distributed on an "AS IS" BASIS,
  16. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. * See the License for the specific language governing permissions and
  18. * limitations under the License.
  19. */
  20. #include <zxing/qrcode/FormatInformation.h>
  21. #include <limits>
  22. namespace zxing {
  23. namespace qrcode {
  24. using namespace std;
  25. int FormatInformation::FORMAT_INFO_MASK_QR = 0x5412;
  26. int FormatInformation::FORMAT_INFO_DECODE_LOOKUP[][2] = { { 0x5412, 0x00 }, { 0x5125, 0x01 }, { 0x5E7C, 0x02 }, {
  27. 0x5B4B, 0x03 }, { 0x45F9, 0x04 }, { 0x40CE, 0x05 }, { 0x4F97, 0x06 }, { 0x4AA0, 0x07 }, { 0x77C4, 0x08 }, {
  28. 0x72F3, 0x09 }, { 0x7DAA, 0x0A }, { 0x789D, 0x0B }, { 0x662F, 0x0C }, { 0x6318, 0x0D }, { 0x6C41, 0x0E }, {
  29. 0x6976, 0x0F }, { 0x1689, 0x10 }, { 0x13BE, 0x11 }, { 0x1CE7, 0x12 }, { 0x19D0, 0x13 }, { 0x0762, 0x14 }, {
  30. 0x0255, 0x15 }, { 0x0D0C, 0x16 }, { 0x083B, 0x17 }, { 0x355F, 0x18 }, { 0x3068, 0x19 }, { 0x3F31, 0x1A }, {
  31. 0x3A06, 0x1B }, { 0x24B4, 0x1C }, { 0x2183, 0x1D }, { 0x2EDA, 0x1E }, { 0x2BED, 0x1F },
  32. };
  33. int FormatInformation::N_FORMAT_INFO_DECODE_LOOKUPS = 32;
  34. int FormatInformation::BITS_SET_IN_HALF_BYTE[] = { 0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4 };
  35. FormatInformation::FormatInformation(int formatInfo) :
  36. errorCorrectionLevel_(ErrorCorrectionLevel::forBits((formatInfo >> 3) & 0x03)), dataMask_((char)(formatInfo & 0x07)) {
  37. }
  38. ErrorCorrectionLevel& FormatInformation::getErrorCorrectionLevel() {
  39. return errorCorrectionLevel_;
  40. }
  41. char FormatInformation::getDataMask() {
  42. return dataMask_;
  43. }
  44. int FormatInformation::numBitsDiffering(int a, int b) {
  45. a ^= b;
  46. return BITS_SET_IN_HALF_BYTE[a & 0x0F] + BITS_SET_IN_HALF_BYTE[(a >> 4 & 0x0F)] + BITS_SET_IN_HALF_BYTE[(a >> 8
  47. & 0x0F)] + BITS_SET_IN_HALF_BYTE[(a >> 12 & 0x0F)] + BITS_SET_IN_HALF_BYTE[(a >> 16 & 0x0F)]
  48. + BITS_SET_IN_HALF_BYTE[(a >> 20 & 0x0F)] + BITS_SET_IN_HALF_BYTE[(a >> 24 & 0x0F)]
  49. + BITS_SET_IN_HALF_BYTE[(a >> 28 & 0x0F)];
  50. }
  51. Ref<FormatInformation> FormatInformation::decodeFormatInformation(int maskedFormatInfo1, int maskedFormatInfo2) {
  52. Ref<FormatInformation> result(doDecodeFormatInformation(maskedFormatInfo1, maskedFormatInfo2));
  53. if (result != 0) {
  54. return result;
  55. }
  56. // Should return null, but, some QR codes apparently
  57. // do not mask this info. Try again by actually masking the pattern
  58. // first
  59. return doDecodeFormatInformation(maskedFormatInfo1 ^ FORMAT_INFO_MASK_QR,
  60. maskedFormatInfo2 ^ FORMAT_INFO_MASK_QR);
  61. }
  62. Ref<FormatInformation> FormatInformation::doDecodeFormatInformation(int maskedFormatInfo1, int maskedFormatInfo2) {
  63. // Find the int in FORMAT_INFO_DECODE_LOOKUP with fewest bits differing
  64. int bestDifference = numeric_limits<int>::max();
  65. int bestFormatInfo = 0;
  66. for (int i = 0; i < N_FORMAT_INFO_DECODE_LOOKUPS; i++) {
  67. int* decodeInfo = FORMAT_INFO_DECODE_LOOKUP[i];
  68. int targetInfo = decodeInfo[0];
  69. if (targetInfo == maskedFormatInfo1 || targetInfo == maskedFormatInfo2) {
  70. // Found an exact match
  71. Ref<FormatInformation> result(new FormatInformation(decodeInfo[1]));
  72. return result;
  73. }
  74. int bitsDifference = numBitsDiffering(maskedFormatInfo1, targetInfo);
  75. if (bitsDifference < bestDifference) {
  76. bestFormatInfo = decodeInfo[1];
  77. bestDifference = bitsDifference;
  78. }
  79. if (maskedFormatInfo1 != maskedFormatInfo2) {
  80. // also try the other option
  81. bitsDifference = numBitsDiffering(maskedFormatInfo2, targetInfo);
  82. if (bitsDifference < bestDifference) {
  83. bestFormatInfo = decodeInfo[1];
  84. bestDifference = bitsDifference;
  85. }
  86. }
  87. }
  88. if (bestDifference <= 3) {
  89. Ref<FormatInformation> result(new FormatInformation(bestFormatInfo));
  90. return result;
  91. }
  92. Ref<FormatInformation> result;
  93. return result;
  94. }
  95. bool operator==(const FormatInformation &a, const FormatInformation &b) {
  96. return &(a.errorCorrectionLevel_) == &(b.errorCorrectionLevel_) && a.dataMask_ == b.dataMask_;
  97. }
  98. ostream& operator<<(ostream& out, const FormatInformation& fi) {
  99. const FormatInformation *fip = &fi;
  100. out << "FormatInformation @ " << fip;
  101. return out;
  102. }
  103. }
  104. }