zxing_cpp_mac_big_sur 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (332) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +13 -0
  3. data/.gitmodules +3 -0
  4. data/CHANGELOG.rdoc +6 -0
  5. data/Gemfile +3 -0
  6. data/Manifest.txt +331 -0
  7. data/README.rdoc +137 -0
  8. data/Rakefile +28 -0
  9. data/bin/zxd +87 -0
  10. data/bin/zxe +53 -0
  11. data/ext/zxing/extconf.rb +27 -0
  12. data/ext/zxing/zxing-cpp/.gitignore +4 -0
  13. data/ext/zxing/zxing-cpp/AUTHORS +115 -0
  14. data/ext/zxing/zxing-cpp/CMakeLists.txt +89 -0
  15. data/ext/zxing/zxing-cpp/COPYING +201 -0
  16. data/ext/zxing/zxing-cpp/NOTICE +65 -0
  17. data/ext/zxing/zxing-cpp/README.md +45 -0
  18. data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.cpp +113 -0
  19. data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.h +40 -0
  20. data/ext/zxing/zxing-cpp/cli/src/jpgd.cpp +3174 -0
  21. data/ext/zxing/zxing-cpp/cli/src/jpgd.h +319 -0
  22. data/ext/zxing/zxing-cpp/cli/src/lodepng.cpp +6261 -0
  23. data/ext/zxing/zxing-cpp/cli/src/lodepng.h +1695 -0
  24. data/ext/zxing/zxing-cpp/cli/src/main.cpp +297 -0
  25. data/ext/zxing/zxing-cpp/cmake/FindCPPUNIT.cmake +54 -0
  26. data/ext/zxing/zxing-cpp/cmake/FindIconv.cmake +57 -0
  27. data/ext/zxing/zxing-cpp/core/src/bigint/.gitignore +6 -0
  28. data/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.cc +405 -0
  29. data/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.hh +215 -0
  30. data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.cc +70 -0
  31. data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.hh +25 -0
  32. data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerLibrary.hh +8 -0
  33. data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.cc +50 -0
  34. data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.hh +72 -0
  35. data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.cc +697 -0
  36. data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.hh +418 -0
  37. data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.cc +125 -0
  38. data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.hh +122 -0
  39. data/ext/zxing/zxing-cpp/core/src/bigint/ChangeLog +146 -0
  40. data/ext/zxing/zxing-cpp/core/src/bigint/Makefile +73 -0
  41. data/ext/zxing/zxing-cpp/core/src/bigint/NumberlikeArray.hh +177 -0
  42. data/ext/zxing/zxing-cpp/core/src/bigint/README +71 -0
  43. data/ext/zxing/zxing-cpp/core/src/win32/zxing/iconv.h +14 -0
  44. data/ext/zxing/zxing-cpp/core/src/win32/zxing/stdint.h +247 -0
  45. data/ext/zxing/zxing-cpp/core/src/win32/zxing/win_iconv.c +2035 -0
  46. data/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.cpp +40 -0
  47. data/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.h +60 -0
  48. data/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.cpp +45 -0
  49. data/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.h +50 -0
  50. data/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.cpp +70 -0
  51. data/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.h +56 -0
  52. data/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.cpp +28 -0
  53. data/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.h +34 -0
  54. data/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.cpp +142 -0
  55. data/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.h +85 -0
  56. data/ext/zxing/zxing-cpp/core/src/zxing/Exception.cpp +43 -0
  57. data/ext/zxing/zxing-cpp/core/src/zxing/Exception.h +51 -0
  58. data/ext/zxing/zxing-cpp/core/src/zxing/FormatException.cpp +41 -0
  59. data/ext/zxing/zxing-cpp/core/src/zxing/FormatException.h +37 -0
  60. data/ext/zxing/zxing-cpp/core/src/zxing/IllegalStateException.h +35 -0
  61. data/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.cpp +68 -0
  62. data/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.h +48 -0
  63. data/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.cpp +86 -0
  64. data/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.h +59 -0
  65. data/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.cpp +124 -0
  66. data/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.h +48 -0
  67. data/ext/zxing/zxing-cpp/core/src/zxing/NotFoundException.h +35 -0
  68. data/ext/zxing/zxing-cpp/core/src/zxing/Reader.cpp +31 -0
  69. data/ext/zxing/zxing-cpp/core/src/zxing/Reader.h +40 -0
  70. data/ext/zxing/zxing-cpp/core/src/zxing/ReaderException.h +37 -0
  71. data/ext/zxing/zxing-cpp/core/src/zxing/Result.cpp +61 -0
  72. data/ext/zxing/zxing-cpp/core/src/zxing/Result.h +55 -0
  73. data/ext/zxing/zxing-cpp/core/src/zxing/ResultIO.cpp +34 -0
  74. data/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.cpp +108 -0
  75. data/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.h +55 -0
  76. data/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.cpp +26 -0
  77. data/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.h +39 -0
  78. data/ext/zxing/zxing-cpp/core/src/zxing/ZXing.h +133 -0
  79. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.cpp +54 -0
  80. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.h +48 -0
  81. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.cpp +68 -0
  82. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.h +49 -0
  83. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.cpp +489 -0
  84. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.h +69 -0
  85. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.cpp +548 -0
  86. data/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.h +92 -0
  87. data/ext/zxing/zxing-cpp/core/src/zxing/common/Array.h +170 -0
  88. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.cpp +155 -0
  89. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.h +81 -0
  90. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArrayIO.cpp +31 -0
  91. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.cpp +143 -0
  92. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.h +91 -0
  93. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.cpp +76 -0
  94. data/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.h +74 -0
  95. data/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.cpp +105 -0
  96. data/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.h +53 -0
  97. data/ext/zxing/zxing-cpp/core/src/zxing/common/Counted.h +140 -0
  98. data/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.cpp +46 -0
  99. data/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.h +51 -0
  100. data/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.cpp +39 -0
  101. data/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.h +43 -0
  102. data/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.cpp +212 -0
  103. data/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.h +48 -0
  104. data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.cpp +80 -0
  105. data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.h +53 -0
  106. data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.cpp +81 -0
  107. data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.h +46 -0
  108. data/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.cpp +122 -0
  109. data/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.h +45 -0
  110. data/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.cpp +226 -0
  111. data/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.h +67 -0
  112. data/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.cpp +27 -0
  113. data/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.h +36 -0
  114. data/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.cpp +107 -0
  115. data/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.h +49 -0
  116. data/ext/zxing/zxing-cpp/core/src/zxing/common/Point.h +47 -0
  117. data/ext/zxing/zxing-cpp/core/src/zxing/common/Str.cpp +61 -0
  118. data/ext/zxing/zxing-cpp/core/src/zxing/common/Str.h +51 -0
  119. data/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.cpp +198 -0
  120. data/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.h +52 -0
  121. data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/JavaMath.h +43 -0
  122. data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MathUtils.h +57 -0
  123. data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.cpp +175 -0
  124. data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.h +62 -0
  125. data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.cpp +330 -0
  126. data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.h +59 -0
  127. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.cpp +150 -0
  128. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.h +73 -0
  129. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.cpp +218 -0
  130. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.h +56 -0
  131. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.cpp +174 -0
  132. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.h +49 -0
  133. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.cpp +30 -0
  134. data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.h +33 -0
  135. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.cpp +54 -0
  136. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.h +45 -0
  137. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.cpp +199 -0
  138. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.h +87 -0
  139. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.cpp +361 -0
  140. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.h +59 -0
  141. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.cpp +113 -0
  142. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.h +49 -0
  143. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.cpp +415 -0
  144. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.h +104 -0
  145. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.cpp +93 -0
  146. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.h +49 -0
  147. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.cpp +46 -0
  148. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.h +43 -0
  149. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.cpp +447 -0
  150. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.h +94 -0
  151. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.cpp +23 -0
  152. data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.h +23 -0
  153. data/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.cpp +75 -0
  154. data/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.h +42 -0
  155. data/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.cpp +137 -0
  156. data/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.h +51 -0
  157. data/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.cpp +29 -0
  158. data/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.h +41 -0
  159. data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.cpp +58 -0
  160. data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.h +36 -0
  161. data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.cpp +47 -0
  162. data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.h +37 -0
  163. data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.cpp +236 -0
  164. data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h +47 -0
  165. data/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.cpp +340 -0
  166. data/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.h +57 -0
  167. data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.cpp +497 -0
  168. data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.h +48 -0
  169. data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.cpp +329 -0
  170. data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.h +63 -0
  171. data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.cpp +303 -0
  172. data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.h +58 -0
  173. data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.cpp +85 -0
  174. data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.h +49 -0
  175. data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.cpp +65 -0
  176. data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.h +47 -0
  177. data/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.cpp +337 -0
  178. data/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.h +54 -0
  179. data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.cpp +96 -0
  180. data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.h +38 -0
  181. data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.cpp +110 -0
  182. data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.h +41 -0
  183. data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.cpp +228 -0
  184. data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.h +81 -0
  185. data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.cpp +28 -0
  186. data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.h +35 -0
  187. data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.cpp +70 -0
  188. data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.h +50 -0
  189. data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.cpp +309 -0
  190. data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.h +88 -0
  191. data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.cpp +146 -0
  192. data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.h +47 -0
  193. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.cpp +170 -0
  194. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.h +49 -0
  195. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.cpp +997 -0
  196. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.h +84 -0
  197. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.cpp +563 -0
  198. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.h +84 -0
  199. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.cpp +118 -0
  200. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.h +62 -0
  201. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.cpp +214 -0
  202. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.h +71 -0
  203. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.cpp +120 -0
  204. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.h +72 -0
  205. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.cpp +284 -0
  206. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.h +68 -0
  207. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.cpp +665 -0
  208. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.h +106 -0
  209. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.cpp +715 -0
  210. data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.h +122 -0
  211. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.cpp +65 -0
  212. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.h +52 -0
  213. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.cpp +117 -0
  214. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.h +54 -0
  215. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.cpp +52 -0
  216. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.h +48 -0
  217. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.cpp +560 -0
  218. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.h +85 -0
  219. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.cpp +183 -0
  220. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.h +56 -0
  221. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.cpp +118 -0
  222. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.h +50 -0
  223. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.cpp +159 -0
  224. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.h +50 -0
  225. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.cpp +428 -0
  226. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.h +72 -0
  227. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.cpp +107 -0
  228. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.h +46 -0
  229. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.cpp +90 -0
  230. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.h +57 -0
  231. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.cpp +47 -0
  232. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.h +45 -0
  233. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.cpp +208 -0
  234. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.h +68 -0
  235. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.cpp +315 -0
  236. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.h +69 -0
  237. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.cpp +69 -0
  238. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.h +48 -0
  239. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.cpp +559 -0
  240. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.h +76 -0
  241. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.cpp +41 -0
  242. data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.h +47 -0
  243. data/ext/zxing/zxing-cpp/core/tests/src/TestRunner.cpp +30 -0
  244. data/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.cpp +216 -0
  245. data/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.h +61 -0
  246. data/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.cpp +106 -0
  247. data/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.h +55 -0
  248. data/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.cpp +49 -0
  249. data/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.h +42 -0
  250. data/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.cpp +58 -0
  251. data/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.h +46 -0
  252. data/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.cpp +69 -0
  253. data/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.h +47 -0
  254. data/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp +129 -0
  255. data/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.h +62 -0
  256. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp +47 -0
  257. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.h +45 -0
  258. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.cpp +88 -0
  259. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.h +47 -0
  260. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.cpp +88 -0
  261. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.h +49 -0
  262. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.cpp +132 -0
  263. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.h +91 -0
  264. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.cpp +52 -0
  265. data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.h +47 -0
  266. data/ext/zxing/zxing.cc +224 -0
  267. data/lib/zxing.rb +50 -0
  268. data/lib/zxing/.gitignore +2 -0
  269. data/lib/zxing/aztec.rb +5 -0
  270. data/lib/zxing/aztec/aztec_reader.rb +14 -0
  271. data/lib/zxing/bad_image_exception.rb +4 -0
  272. data/lib/zxing/binarizer.rb +8 -0
  273. data/lib/zxing/binary_bitmap.rb +15 -0
  274. data/lib/zxing/checksum_exception.rb +4 -0
  275. data/lib/zxing/common.rb +7 -0
  276. data/lib/zxing/common/bit_matrix.rb +9 -0
  277. data/lib/zxing/common/hybrid_binarizer.rb +17 -0
  278. data/lib/zxing/common/illegal_argument_exception.rb +4 -0
  279. data/lib/zxing/datamatrix.rb +5 -0
  280. data/lib/zxing/datamatrix/data_matrix_reader.rb +14 -0
  281. data/lib/zxing/decodable.rb +11 -0
  282. data/lib/zxing/exception.rb +4 -0
  283. data/lib/zxing/ffi.rb +20 -0
  284. data/lib/zxing/ffi/aztec.rb +6 -0
  285. data/lib/zxing/ffi/aztec/aztec_reader.rb +9 -0
  286. data/lib/zxing/ffi/binarizer.rb +25 -0
  287. data/lib/zxing/ffi/binary_bitmap.rb +15 -0
  288. data/lib/zxing/ffi/common.rb +8 -0
  289. data/lib/zxing/ffi/common/bit_matrix.rb +12 -0
  290. data/lib/zxing/ffi/common/greyscale_luminance_source.rb +30 -0
  291. data/lib/zxing/ffi/common/hybrid_binarizer.rb +10 -0
  292. data/lib/zxing/ffi/datamatrix.rb +6 -0
  293. data/lib/zxing/ffi/datamatrix/data_matrix_reader.rb +9 -0
  294. data/lib/zxing/ffi/library.rb +102 -0
  295. data/lib/zxing/ffi/luminance_source.rb +18 -0
  296. data/lib/zxing/ffi/multi_format_reader.rb +9 -0
  297. data/lib/zxing/ffi/oned.rb +6 -0
  298. data/lib/zxing/ffi/oned/code_39_reader.rb +10 -0
  299. data/lib/zxing/ffi/qrcode.rb +8 -0
  300. data/lib/zxing/ffi/qrcode/decoder.rb +10 -0
  301. data/lib/zxing/ffi/qrcode/detector.rb +10 -0
  302. data/lib/zxing/ffi/reader.rb +58 -0
  303. data/lib/zxing/ffi/result.rb +23 -0
  304. data/lib/zxing/format_exception.rb +4 -0
  305. data/lib/zxing/illegal_argument_exception.rb +4 -0
  306. data/lib/zxing/image.rb +15 -0
  307. data/lib/zxing/luminance_source.rb +18 -0
  308. data/lib/zxing/multi_format_reader.rb +11 -0
  309. data/lib/zxing/not_found_exception.rb +4 -0
  310. data/lib/zxing/oned.rb +5 -0
  311. data/lib/zxing/oned/code_39_reader.rb +15 -0
  312. data/lib/zxing/qrcode.rb +8 -0
  313. data/lib/zxing/qrcode/decoder.rb +14 -0
  314. data/lib/zxing/qrcode/detector.rb +14 -0
  315. data/lib/zxing/qrcode/encoder.rb +8 -0
  316. data/lib/zxing/qrcode/encoder/byte_matrix.rb +18 -0
  317. data/lib/zxing/qrcode/encoder/encoder.rb +9 -0
  318. data/lib/zxing/qrcode/encoder/qrcode.rb +18 -0
  319. data/lib/zxing/reader.rb +8 -0
  320. data/lib/zxing/reader_exception.rb +4 -0
  321. data/lib/zxing/reed_solomon_exception.rb +2 -0
  322. data/lib/zxing/result.rb +18 -0
  323. data/lib/zxing/rmagick.rb +5 -0
  324. data/lib/zxing/rmagick/image.rb +109 -0
  325. data/lib/zxing/version.rb +33 -0
  326. data/test/qrcode.png +0 -0
  327. data/test/test_helper.rb +5 -0
  328. data/test/test_zxing.rb +58 -0
  329. data/test/vendor.rb +360 -0
  330. data/test/zxing/test_decodable.rb +38 -0
  331. data/zxing_cpp.gemspec +48 -0
  332. metadata +472 -0
@@ -0,0 +1,159 @@
1
+ /*
2
+ * DataMask.cpp
3
+ * zxing
4
+ *
5
+ * Created by Christian Brunschen on 19/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
+
21
+ #include <zxing/qrcode/decoder/DataMask.h>
22
+
23
+ #include <zxing/common/IllegalArgumentException.h>
24
+
25
+ namespace zxing {
26
+ namespace qrcode {
27
+
28
+ using namespace std;
29
+
30
+ DataMask::DataMask() {
31
+ }
32
+
33
+ DataMask::~DataMask() {
34
+ }
35
+
36
+ vector<Ref<DataMask> > DataMask::DATA_MASKS;
37
+ static int N_DATA_MASKS = DataMask::buildDataMasks();
38
+
39
+ DataMask &DataMask::forReference(int reference) {
40
+ if (reference < 0 || reference > 7) {
41
+ throw IllegalArgumentException("reference must be between 0 and 7");
42
+ }
43
+ return *DATA_MASKS[reference];
44
+ }
45
+
46
+ void DataMask::unmaskBitMatrix(BitMatrix& bits, size_t dimension) {
47
+ for (size_t y = 0; y < dimension; y++) {
48
+ for (size_t x = 0; x < dimension; x++) {
49
+ // TODO: check why the coordinates have to be swapped
50
+ if (isMasked(y, x)) {
51
+ bits.flip(x, y);
52
+ }
53
+ }
54
+ }
55
+ }
56
+
57
+ /**
58
+ * 000: mask bits for which (x + y) mod 2 == 0
59
+ */
60
+ class DataMask000 : public DataMask {
61
+ public:
62
+ bool isMasked(size_t x, size_t y) {
63
+ // return ((x + y) & 0x01) == 0;
64
+ return ((x + y) % 2) == 0;
65
+ }
66
+ };
67
+
68
+ /**
69
+ * 001: mask bits for which x mod 2 == 0
70
+ */
71
+ class DataMask001 : public DataMask {
72
+ public:
73
+ bool isMasked(size_t x, size_t) {
74
+ // return (x & 0x01) == 0;
75
+ return (x % 2) == 0;
76
+ }
77
+ };
78
+
79
+ /**
80
+ * 010: mask bits for which y mod 3 == 0
81
+ */
82
+ class DataMask010 : public DataMask {
83
+ public:
84
+ bool isMasked(size_t, size_t y) {
85
+ return y % 3 == 0;
86
+ }
87
+ };
88
+
89
+ /**
90
+ * 011: mask bits for which (x + y) mod 3 == 0
91
+ */
92
+ class DataMask011 : public DataMask {
93
+ public:
94
+ bool isMasked(size_t x, size_t y) {
95
+ return (x + y) % 3 == 0;
96
+ }
97
+ };
98
+
99
+ /**
100
+ * 100: mask bits for which (x/2 + y/3) mod 2 == 0
101
+ */
102
+ class DataMask100 : public DataMask {
103
+ public:
104
+ bool isMasked(size_t x, size_t y) {
105
+ // return (((x >> 1) + (y / 3)) & 0x01) == 0;
106
+ return (((x >> 1) + (y / 3)) % 2) == 0;
107
+ }
108
+ };
109
+
110
+ /**
111
+ * 101: mask bits for which xy mod 2 + xy mod 3 == 0
112
+ */
113
+ class DataMask101 : public DataMask {
114
+ public:
115
+ bool isMasked(size_t x, size_t y) {
116
+ size_t temp = x * y;
117
+ // return (temp & 0x01) + (temp % 3) == 0;
118
+ return (temp % 2) + (temp % 3) == 0;
119
+
120
+ }
121
+ };
122
+
123
+ /**
124
+ * 110: mask bits for which (xy mod 2 + xy mod 3) mod 2 == 0
125
+ */
126
+ class DataMask110 : public DataMask {
127
+ public:
128
+ bool isMasked(size_t x, size_t y) {
129
+ size_t temp = x * y;
130
+ // return (((temp & 0x01) + (temp % 3)) & 0x01) == 0;
131
+ return (((temp % 2) + (temp % 3)) % 2) == 0;
132
+ }
133
+ };
134
+
135
+ /**
136
+ * 111: mask bits for which ((x+y)mod 2 + xy mod 3) mod 2 == 0
137
+ */
138
+ class DataMask111 : public DataMask {
139
+ public:
140
+ bool isMasked(size_t x, size_t y) {
141
+ // return ((((x + y) & 0x01) + ((x * y) % 3)) & 0x01) == 0;
142
+ return ((((x + y) % 2) + ((x * y) % 3)) % 2) == 0;
143
+ }
144
+ };
145
+
146
+ int DataMask::buildDataMasks() {
147
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask000()));
148
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask001()));
149
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask010()));
150
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask011()));
151
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask100()));
152
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask101()));
153
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask110()));
154
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask111()));
155
+ return DATA_MASKS.size();
156
+ }
157
+
158
+ }
159
+ }
@@ -0,0 +1,50 @@
1
+ #ifndef __DATA_MASK_H__
2
+ #define __DATA_MASK_H__
3
+
4
+ /*
5
+ * DataMask.h
6
+ * zxing
7
+ *
8
+ * Copyright 2010 ZXing authors All rights reserved.
9
+ *
10
+ * Licensed under the Apache License, Version 2.0 (the "License");
11
+ * you may not use this file except in compliance with the License.
12
+ * You may obtain a copy of the License at
13
+ *
14
+ * http://www.apache.org/licenses/LICENSE-2.0
15
+ *
16
+ * Unless required by applicable law or agreed to in writing, software
17
+ * distributed under the License is distributed on an "AS IS" BASIS,
18
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ * See the License for the specific language governing permissions and
20
+ * limitations under the License.
21
+ */
22
+
23
+ #include <zxing/common/Array.h>
24
+ #include <zxing/common/Counted.h>
25
+ #include <zxing/common/BitMatrix.h>
26
+
27
+ #include <vector>
28
+
29
+ namespace zxing {
30
+ namespace qrcode {
31
+
32
+ class DataMask : public Counted {
33
+ private:
34
+ static std::vector<Ref<DataMask> > DATA_MASKS;
35
+
36
+ protected:
37
+
38
+ public:
39
+ static int buildDataMasks();
40
+ DataMask();
41
+ virtual ~DataMask();
42
+ void unmaskBitMatrix(BitMatrix& matrix, size_t dimension);
43
+ virtual bool isMasked(size_t x, size_t y) = 0;
44
+ static DataMask& forReference(int reference);
45
+ };
46
+
47
+ }
48
+ }
49
+
50
+ #endif // __DATA_MASK_H__
@@ -0,0 +1,428 @@
1
+ // -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
2
+ /*
3
+ * DecodedBitStreamParser.cpp
4
+ * zxing
5
+ *
6
+ * Created by Christian Brunschen on 20/05/2008.
7
+ * Copyright 2008 ZXing authors All rights reserved.
8
+ *
9
+ * Licensed under the Apache License, Version 2.0 (the "License");
10
+ * you may not use this file except in compliance with the License.
11
+ * You may obtain a copy of the License at
12
+ *
13
+ * http://www.apache.org/licenses/LICENSE-2.0
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
21
+
22
+ #include <zxing/qrcode/decoder/DecodedBitStreamParser.h>
23
+ #include <zxing/common/CharacterSetECI.h>
24
+ #include <zxing/FormatException.h>
25
+ #include <zxing/common/StringUtils.h>
26
+ #include <iostream>
27
+ #ifndef NO_ICONV
28
+ #include <iconv.h>
29
+ #endif
30
+
31
+ // Required for compatibility. TODO: test on Symbian
32
+ #ifdef ZXING_ICONV_CONST
33
+ #undef ICONV_CONST
34
+ #define ICONV_CONST const
35
+ #endif
36
+
37
+ #ifndef ICONV_CONST
38
+ #define ICONV_CONST /**/
39
+ #endif
40
+
41
+ using namespace std;
42
+ using namespace zxing;
43
+ using namespace zxing::qrcode;
44
+ using namespace zxing::common;
45
+
46
+ const char DecodedBitStreamParser::ALPHANUMERIC_CHARS[] =
47
+ { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B',
48
+ 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N',
49
+ 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
50
+ 'Y', 'Z', ' ', '$', '%', '*', '+', '-', '.', '/', ':'
51
+ };
52
+
53
+ namespace {int GB2312_SUBSET = 1;}
54
+
55
+ void DecodedBitStreamParser::append(std::string &result,
56
+ string const& in,
57
+ const char *src) {
58
+ append(result, (char const*)in.c_str(), in.length(), src);
59
+ }
60
+
61
+ void DecodedBitStreamParser::append(std::string &result,
62
+ const char *bufIn,
63
+ size_t nIn,
64
+ const char *src) {
65
+ #ifndef NO_ICONV
66
+ if (nIn == 0) {
67
+ return;
68
+ }
69
+
70
+ iconv_t cd = iconv_open(StringUtils::UTF8, src);
71
+ if (cd == (iconv_t)-1) {
72
+ result.append((const char *)bufIn, nIn);
73
+ return;
74
+ }
75
+
76
+ const int maxOut = 4 * nIn + 1;
77
+ char* bufOut = new char[maxOut];
78
+
79
+ ICONV_CONST char *fromPtr = (ICONV_CONST char *)bufIn;
80
+ size_t nFrom = nIn;
81
+ char *toPtr = (char *)bufOut;
82
+ size_t nTo = maxOut;
83
+
84
+ while (nFrom > 0) {
85
+ size_t oneway = iconv(cd, &fromPtr, &nFrom, &toPtr, &nTo);
86
+ if (oneway == (size_t)(-1)) {
87
+ iconv_close(cd);
88
+ delete[] bufOut;
89
+ throw ReaderException("error converting characters");
90
+ }
91
+ }
92
+ iconv_close(cd);
93
+
94
+ int nResult = maxOut - nTo;
95
+ bufOut[nResult] = '\0';
96
+ result.append((const char *)bufOut);
97
+ delete[] bufOut;
98
+ #else
99
+ result.append((const char *)bufIn, nIn);
100
+ #endif
101
+ }
102
+
103
+ void DecodedBitStreamParser::decodeHanziSegment(Ref<BitSource> bits_,
104
+ string& result,
105
+ int count) {
106
+ BitSource& bits (*bits_);
107
+ // Don't crash trying to read more bits than we have available.
108
+ if (count * 13 > bits.available()) {
109
+ throw FormatException();
110
+ }
111
+
112
+ // Each character will require 2 bytes. Read the characters as 2-byte pairs
113
+ // and decode as GB2312 afterwards
114
+ size_t nBytes = 2 * count;
115
+ char* buffer = new char[nBytes];
116
+ int offset = 0;
117
+ while (count > 0) {
118
+ // Each 13 bits encodes a 2-byte character
119
+ int twoBytes = bits.readBits(13);
120
+ int assembledTwoBytes = ((twoBytes / 0x060) << 8) | (twoBytes % 0x060);
121
+ if (assembledTwoBytes < 0x003BF) {
122
+ // In the 0xA1A1 to 0xAAFE range
123
+ assembledTwoBytes += 0x0A1A1;
124
+ } else {
125
+ // In the 0xB0A1 to 0xFAFE range
126
+ assembledTwoBytes += 0x0A6A1;
127
+ }
128
+ buffer[offset] = (char) ((assembledTwoBytes >> 8) & 0xFF);
129
+ buffer[offset + 1] = (char) (assembledTwoBytes & 0xFF);
130
+ offset += 2;
131
+ count--;
132
+ }
133
+
134
+ try {
135
+ append(result, buffer, nBytes, StringUtils::GB2312);
136
+ } catch (ReaderException const& ignored) {
137
+ (void)ignored;
138
+ delete [] buffer;
139
+ throw FormatException();
140
+ }
141
+
142
+ delete [] buffer;
143
+ }
144
+
145
+ void DecodedBitStreamParser::decodeKanjiSegment(Ref<BitSource> bits, std::string &result, int count) {
146
+ // Each character will require 2 bytes. Read the characters as 2-byte pairs
147
+ // and decode as Shift_JIS afterwards
148
+ size_t nBytes = 2 * count;
149
+ char* buffer = new char[nBytes];
150
+ int offset = 0;
151
+ while (count > 0) {
152
+ // Each 13 bits encodes a 2-byte character
153
+
154
+ int twoBytes = bits->readBits(13);
155
+ int assembledTwoBytes = ((twoBytes / 0x0C0) << 8) | (twoBytes % 0x0C0);
156
+ if (assembledTwoBytes < 0x01F00) {
157
+ // In the 0x8140 to 0x9FFC range
158
+ assembledTwoBytes += 0x08140;
159
+ } else {
160
+ // In the 0xE040 to 0xEBBF range
161
+ assembledTwoBytes += 0x0C140;
162
+ }
163
+ buffer[offset] = (char)(assembledTwoBytes >> 8);
164
+ buffer[offset + 1] = (char)assembledTwoBytes;
165
+ offset += 2;
166
+ count--;
167
+ }
168
+ try {
169
+ append(result, buffer, nBytes, StringUtils::SHIFT_JIS);
170
+ } catch (ReaderException const& ignored) {
171
+ (void)ignored;
172
+ delete [] buffer;
173
+ throw FormatException();
174
+ }
175
+ delete[] buffer;
176
+ }
177
+
178
+ void DecodedBitStreamParser::decodeByteSegment(Ref<BitSource> bits_,
179
+ string& result,
180
+ int count,
181
+ CharacterSetECI* currentCharacterSetECI,
182
+ ArrayRef< ArrayRef<char> >& byteSegments,
183
+ Hashtable const& hints) {
184
+ int nBytes = count;
185
+ BitSource& bits (*bits_);
186
+ // Don't crash trying to read more bits than we have available.
187
+ if (count << 3 > bits.available()) {
188
+ throw FormatException();
189
+ }
190
+
191
+ ArrayRef<char> bytes_ (count);
192
+ char* readBytes = &(*bytes_)[0];
193
+ for (int i = 0; i < count; i++) {
194
+ readBytes[i] = (char) bits.readBits(8);
195
+ }
196
+ string encoding;
197
+ if (currentCharacterSetECI == 0) {
198
+ // The spec isn't clear on this mode; see
199
+ // section 6.4.5: t does not say which encoding to assuming
200
+ // upon decoding. I have seen ISO-8859-1 used as well as
201
+ // Shift_JIS -- without anything like an ECI designator to
202
+ // give a hint.
203
+ encoding = StringUtils::guessEncoding(readBytes, count, hints);
204
+ } else {
205
+ encoding = currentCharacterSetECI->name();
206
+ }
207
+ try {
208
+ append(result, readBytes, nBytes, encoding.c_str());
209
+ } catch (ReaderException const& ignored) {
210
+ (void)ignored;
211
+ throw FormatException();
212
+ }
213
+ byteSegments->values().push_back(bytes_);
214
+ }
215
+
216
+ void DecodedBitStreamParser::decodeNumericSegment(Ref<BitSource> bits, std::string &result, int count) {
217
+ int nBytes = count;
218
+ char* bytes = new char[nBytes];
219
+ int i = 0;
220
+ // Read three digits at a time
221
+ while (count >= 3) {
222
+ // Each 10 bits encodes three digits
223
+ if (bits->available() < 10) {
224
+ delete[] bytes;
225
+ throw ReaderException("format exception");
226
+ }
227
+ int threeDigitsBits = bits->readBits(10);
228
+ if (threeDigitsBits >= 1000) {
229
+ ostringstream s;
230
+ s << "Illegal value for 3-digit unit: " << threeDigitsBits;
231
+ delete[] bytes;
232
+ throw ReaderException(s.str().c_str());
233
+ }
234
+ bytes[i++] = ALPHANUMERIC_CHARS[threeDigitsBits / 100];
235
+ bytes[i++] = ALPHANUMERIC_CHARS[(threeDigitsBits / 10) % 10];
236
+ bytes[i++] = ALPHANUMERIC_CHARS[threeDigitsBits % 10];
237
+ count -= 3;
238
+ }
239
+ if (count == 2) {
240
+ if (bits->available() < 7) {
241
+ delete[] bytes;
242
+ throw ReaderException("format exception");
243
+ }
244
+ // Two digits left over to read, encoded in 7 bits
245
+ int twoDigitsBits = bits->readBits(7);
246
+ if (twoDigitsBits >= 100) {
247
+ ostringstream s;
248
+ s << "Illegal value for 2-digit unit: " << twoDigitsBits;
249
+ delete[] bytes;
250
+ throw ReaderException(s.str().c_str());
251
+ }
252
+ bytes[i++] = ALPHANUMERIC_CHARS[twoDigitsBits / 10];
253
+ bytes[i++] = ALPHANUMERIC_CHARS[twoDigitsBits % 10];
254
+ } else if (count == 1) {
255
+ if (bits->available() < 4) {
256
+ delete[] bytes;
257
+ throw ReaderException("format exception");
258
+ }
259
+ // One digit left over to read
260
+ int digitBits = bits->readBits(4);
261
+ if (digitBits >= 10) {
262
+ ostringstream s;
263
+ s << "Illegal value for digit unit: " << digitBits;
264
+ delete[] bytes;
265
+ throw ReaderException(s.str().c_str());
266
+ }
267
+ bytes[i++] = ALPHANUMERIC_CHARS[digitBits];
268
+ }
269
+ append(result, bytes, nBytes, StringUtils::ASCII);
270
+ delete[] bytes;
271
+ }
272
+
273
+ char DecodedBitStreamParser::toAlphaNumericChar(size_t value) {
274
+ if (value >= sizeof(DecodedBitStreamParser::ALPHANUMERIC_CHARS)) {
275
+ throw FormatException();
276
+ }
277
+ return ALPHANUMERIC_CHARS[value];
278
+ }
279
+
280
+ void DecodedBitStreamParser::decodeAlphanumericSegment(Ref<BitSource> bits_,
281
+ string& result,
282
+ int count,
283
+ bool fc1InEffect) {
284
+ BitSource& bits (*bits_);
285
+ ostringstream bytes;
286
+ // Read two characters at a time
287
+ while (count > 1) {
288
+ if (bits.available() < 11) {
289
+ throw FormatException();
290
+ }
291
+ int nextTwoCharsBits = bits.readBits(11);
292
+ bytes << toAlphaNumericChar(nextTwoCharsBits / 45);
293
+ bytes << toAlphaNumericChar(nextTwoCharsBits % 45);
294
+ count -= 2;
295
+ }
296
+ if (count == 1) {
297
+ // special case: one character left
298
+ if (bits.available() < 6) {
299
+ throw FormatException();
300
+ }
301
+ bytes << toAlphaNumericChar(bits.readBits(6));
302
+ }
303
+ // See section 6.4.8.1, 6.4.8.2
304
+ string s = bytes.str();
305
+ if (fc1InEffect) {
306
+ // We need to massage the result a bit if in an FNC1 mode:
307
+ ostringstream r;
308
+ for (size_t i = 0; i < s.length(); i++) {
309
+ if (s[i] != '%') {
310
+ r << s[i];
311
+ } else {
312
+ if (i < s.length() - 1 && s[i + 1] == '%') {
313
+ // %% is rendered as %
314
+ r << s[i++];
315
+ } else {
316
+ // In alpha mode, % should be converted to FNC1 separator 0x1D
317
+ r << (char)0x1D;
318
+ }
319
+ }
320
+ }
321
+ s = r.str();
322
+ }
323
+ append(result, s, StringUtils::ASCII);
324
+ }
325
+
326
+ namespace {
327
+ int parseECIValue(BitSource& bits) {
328
+ int firstByte = bits.readBits(8);
329
+ if ((firstByte & 0x80) == 0) {
330
+ // just one byte
331
+ return firstByte & 0x7F;
332
+ }
333
+ if ((firstByte & 0xC0) == 0x80) {
334
+ // two bytes
335
+ int secondByte = bits.readBits(8);
336
+ return ((firstByte & 0x3F) << 8) | secondByte;
337
+ }
338
+ if ((firstByte & 0xE0) == 0xC0) {
339
+ // three bytes
340
+ int secondThirdBytes = bits.readBits(16);
341
+ return ((firstByte & 0x1F) << 16) | secondThirdBytes;
342
+ }
343
+ throw FormatException();
344
+ }
345
+ }
346
+
347
+ Ref<DecoderResult>
348
+ DecodedBitStreamParser::decode(ArrayRef<char> bytes,
349
+ Version* version,
350
+ ErrorCorrectionLevel const& ecLevel,
351
+ Hashtable const& hints) {
352
+ Ref<BitSource> bits_ (new BitSource(bytes));
353
+ BitSource& bits (*bits_);
354
+ string result;
355
+ result.reserve(50);
356
+ ArrayRef< ArrayRef<char> > byteSegments (0);
357
+ try {
358
+ CharacterSetECI* currentCharacterSetECI = 0;
359
+ bool fc1InEffect = false;
360
+ Mode* mode = 0;
361
+ do {
362
+ // While still another segment to read...
363
+ if (bits.available() < 4) {
364
+ // OK, assume we're done. Really, a TERMINATOR mode should have been recorded here
365
+ mode = &Mode::TERMINATOR;
366
+ } else {
367
+ try {
368
+ mode = &Mode::forBits(bits.readBits(4)); // mode is encoded by 4 bits
369
+ } catch (IllegalArgumentException const& iae) {
370
+ throw iae;
371
+ // throw FormatException.getFormatInstance();
372
+ }
373
+ }
374
+ if (mode != &Mode::TERMINATOR) {
375
+ if ((mode == &Mode::FNC1_FIRST_POSITION) || (mode == &Mode::FNC1_SECOND_POSITION)) {
376
+ // We do little with FNC1 except alter the parsed result a bit according to the spec
377
+ fc1InEffect = true;
378
+ } else if (mode == &Mode::STRUCTURED_APPEND) {
379
+ if (bits.available() < 16) {
380
+ throw FormatException();
381
+ }
382
+ // not really supported; all we do is ignore it
383
+ // Read next 8 bits (symbol sequence #) and 8 bits (parity data), then continue
384
+ bits.readBits(16);
385
+ } else if (mode == &Mode::ECI) {
386
+ // Count doesn't apply to ECI
387
+ int value = parseECIValue(bits);
388
+ currentCharacterSetECI = CharacterSetECI::getCharacterSetECIByValue(value);
389
+ if (currentCharacterSetECI == 0) {
390
+ throw FormatException();
391
+ }
392
+ } else {
393
+ // First handle Hanzi mode which does not start with character count
394
+ if (mode == &Mode::HANZI) {
395
+ //chinese mode contains a sub set indicator right after mode indicator
396
+ int subset = bits.readBits(4);
397
+ int countHanzi = bits.readBits(mode->getCharacterCountBits(version));
398
+ if (subset == GB2312_SUBSET) {
399
+ decodeHanziSegment(bits_, result, countHanzi);
400
+ }
401
+ } else {
402
+ // "Normal" QR code modes:
403
+ // How many characters will follow, encoded in this mode?
404
+ int count = bits.readBits(mode->getCharacterCountBits(version));
405
+ if (mode == &Mode::NUMERIC) {
406
+ decodeNumericSegment(bits_, result, count);
407
+ } else if (mode == &Mode::ALPHANUMERIC) {
408
+ decodeAlphanumericSegment(bits_, result, count, fc1InEffect);
409
+ } else if (mode == &Mode::BYTE) {
410
+ decodeByteSegment(bits_, result, count, currentCharacterSetECI, byteSegments, hints);
411
+ } else if (mode == &Mode::KANJI) {
412
+ decodeKanjiSegment(bits_, result, count);
413
+ } else {
414
+ throw FormatException();
415
+ }
416
+ }
417
+ }
418
+ }
419
+ } while (mode != &Mode::TERMINATOR);
420
+ } catch (IllegalArgumentException const& iae) {
421
+ (void)iae;
422
+ // from readBits() calls
423
+ throw FormatException();
424
+ }
425
+
426
+ return Ref<DecoderResult>(new DecoderResult(bytes, Ref<String>(new String(result)), byteSegments, (string)ecLevel));
427
+ }
428
+