zxing_cpp 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.gitmodules +3 -0
- data/CHANGELOG.rdoc +6 -0
- data/Gemfile +3 -0
- data/Manifest.txt +331 -0
- data/README.rdoc +138 -0
- data/Rakefile +28 -0
- data/bin/zxd +87 -0
- data/bin/zxe +53 -0
- data/ext/zxing/extconf.rb +27 -0
- data/ext/zxing/zxing-cpp/.gitignore +4 -0
- data/ext/zxing/zxing-cpp/AUTHORS +115 -0
- data/ext/zxing/zxing-cpp/CMakeLists.txt +84 -0
- data/ext/zxing/zxing-cpp/COPYING +201 -0
- data/ext/zxing/zxing-cpp/NOTICE +65 -0
- data/ext/zxing/zxing-cpp/README.md +50 -0
- data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.cpp +112 -0
- data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.h +40 -0
- data/ext/zxing/zxing-cpp/cli/src/jpgd.cpp +3174 -0
- data/ext/zxing/zxing-cpp/cli/src/jpgd.h +319 -0
- data/ext/zxing/zxing-cpp/cli/src/lodepng.cpp +6261 -0
- data/ext/zxing/zxing-cpp/cli/src/lodepng.h +1695 -0
- data/ext/zxing/zxing-cpp/cli/src/main.cpp +297 -0
- data/ext/zxing/zxing-cpp/cmake/FindCPPUNIT.cmake +54 -0
- data/ext/zxing/zxing-cpp/cmake/FindIconv.cmake +57 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/.gitignore +6 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.cc +405 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.hh +215 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.cc +70 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.hh +25 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerLibrary.hh +8 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.cc +50 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.hh +72 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.cc +697 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.hh +418 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.cc +125 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.hh +122 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/ChangeLog +146 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/Makefile +73 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/NumberlikeArray.hh +177 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/README +71 -0
- data/ext/zxing/zxing-cpp/core/src/win32/zxing/iconv.h +14 -0
- data/ext/zxing/zxing-cpp/core/src/win32/zxing/stdint.h +247 -0
- data/ext/zxing/zxing-cpp/core/src/win32/zxing/win_iconv.c +2035 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.cpp +40 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.h +60 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.cpp +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.cpp +70 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.h +56 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.cpp +28 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.h +34 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.cpp +142 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.h +85 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Exception.cpp +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Exception.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/FormatException.cpp +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/FormatException.h +37 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/IllegalStateException.h +35 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.cpp +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.cpp +86 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.h +59 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.cpp +124 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/NotFoundException.h +35 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Reader.cpp +31 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Reader.h +40 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ReaderException.h +37 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Result.cpp +61 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Result.h +55 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultIO.cpp +34 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.cpp +108 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.h +55 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.cpp +26 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.h +39 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ZXing.h +133 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.cpp +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.cpp +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.cpp +489 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.h +69 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.cpp +548 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.h +92 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Array.h +170 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.cpp +155 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.h +81 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArrayIO.cpp +31 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.cpp +143 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.h +91 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.cpp +76 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.h +74 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.cpp +104 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.h +53 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Counted.h +140 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.cpp +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.cpp +39 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.h +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.cpp +212 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.cpp +80 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.h +53 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.cpp +81 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.h +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.cpp +122 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.h +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.cpp +226 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.h +67 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.cpp +27 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.h +36 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.cpp +107 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Point.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Str.cpp +61 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Str.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.cpp +198 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.h +52 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/JavaMath.h +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MathUtils.h +57 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.cpp +174 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.h +62 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.cpp +330 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.h +59 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.cpp +150 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.h +73 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.cpp +218 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.h +56 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.cpp +174 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.cpp +30 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.h +33 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.cpp +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.h +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.cpp +199 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.h +87 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.cpp +361 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.h +59 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.cpp +113 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.cpp +416 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.h +104 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.cpp +93 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.cpp +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.h +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.cpp +446 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.h +94 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.cpp +23 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.h +23 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.cpp +75 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.h +42 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.cpp +137 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.cpp +29 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.h +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.cpp +58 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.h +36 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.cpp +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.h +37 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.cpp +236 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.cpp +340 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.h +57 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.cpp +496 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.cpp +328 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.h +63 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.cpp +293 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.h +58 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.cpp +85 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.cpp +65 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.cpp +337 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.h +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.cpp +96 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.h +38 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.cpp +110 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.h +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.cpp +227 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.h +81 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.cpp +28 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.h +35 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.cpp +71 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.cpp +309 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.h +88 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.cpp +146 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.cpp +170 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.cpp +997 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.h +84 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.cpp +563 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.h +84 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.cpp +118 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.h +62 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.cpp +214 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.h +71 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.cpp +120 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.h +72 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.cpp +284 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.h +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.cpp +664 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.h +106 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.cpp +714 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.h +122 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.cpp +65 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.h +52 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.cpp +117 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.h +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.cpp +52 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.cpp +560 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.h +85 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.cpp +183 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.h +56 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.cpp +118 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.cpp +159 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.cpp +425 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.h +72 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.cpp +107 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.h +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.cpp +90 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.h +57 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.cpp +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.h +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.cpp +208 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.h +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.cpp +314 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.h +69 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.cpp +69 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.cpp +559 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.h +76 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.cpp +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.h +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/TestRunner.cpp +30 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.cpp +216 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.h +61 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.cpp +106 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.h +55 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.cpp +49 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.h +42 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.cpp +58 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.h +46 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.cpp +69 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.h +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp +129 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.h +62 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.h +45 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.cpp +88 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.h +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.cpp +88 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.h +49 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.cpp +132 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.h +91 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.cpp +52 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.h +47 -0
- data/ext/zxing/zxing.cc +224 -0
- data/lib/zxing.rb +50 -0
- data/lib/zxing/.gitignore +2 -0
- data/lib/zxing/aztec.rb +5 -0
- data/lib/zxing/aztec/aztec_reader.rb +14 -0
- data/lib/zxing/bad_image_exception.rb +4 -0
- data/lib/zxing/binarizer.rb +8 -0
- data/lib/zxing/binary_bitmap.rb +15 -0
- data/lib/zxing/checksum_exception.rb +4 -0
- data/lib/zxing/common.rb +7 -0
- data/lib/zxing/common/bit_matrix.rb +9 -0
- data/lib/zxing/common/hybrid_binarizer.rb +17 -0
- data/lib/zxing/common/illegal_argument_exception.rb +4 -0
- data/lib/zxing/datamatrix.rb +5 -0
- data/lib/zxing/datamatrix/data_matrix_reader.rb +14 -0
- data/lib/zxing/decodable.rb +11 -0
- data/lib/zxing/exception.rb +4 -0
- data/lib/zxing/ffi.rb +20 -0
- data/lib/zxing/ffi/aztec.rb +6 -0
- data/lib/zxing/ffi/aztec/aztec_reader.rb +9 -0
- data/lib/zxing/ffi/binarizer.rb +25 -0
- data/lib/zxing/ffi/binary_bitmap.rb +15 -0
- data/lib/zxing/ffi/common.rb +8 -0
- data/lib/zxing/ffi/common/bit_matrix.rb +12 -0
- data/lib/zxing/ffi/common/greyscale_luminance_source.rb +30 -0
- data/lib/zxing/ffi/common/hybrid_binarizer.rb +10 -0
- data/lib/zxing/ffi/datamatrix.rb +6 -0
- data/lib/zxing/ffi/datamatrix/data_matrix_reader.rb +9 -0
- data/lib/zxing/ffi/library.rb +102 -0
- data/lib/zxing/ffi/luminance_source.rb +18 -0
- data/lib/zxing/ffi/multi_format_reader.rb +9 -0
- data/lib/zxing/ffi/oned.rb +6 -0
- data/lib/zxing/ffi/oned/code_39_reader.rb +10 -0
- data/lib/zxing/ffi/qrcode.rb +8 -0
- data/lib/zxing/ffi/qrcode/decoder.rb +10 -0
- data/lib/zxing/ffi/qrcode/detector.rb +10 -0
- data/lib/zxing/ffi/reader.rb +58 -0
- data/lib/zxing/ffi/result.rb +23 -0
- data/lib/zxing/format_exception.rb +4 -0
- data/lib/zxing/illegal_argument_exception.rb +4 -0
- data/lib/zxing/image.rb +15 -0
- data/lib/zxing/luminance_source.rb +18 -0
- data/lib/zxing/multi_format_reader.rb +11 -0
- data/lib/zxing/not_found_exception.rb +4 -0
- data/lib/zxing/oned.rb +5 -0
- data/lib/zxing/oned/code_39_reader.rb +15 -0
- data/lib/zxing/qrcode.rb +8 -0
- data/lib/zxing/qrcode/decoder.rb +14 -0
- data/lib/zxing/qrcode/detector.rb +14 -0
- data/lib/zxing/qrcode/encoder.rb +8 -0
- data/lib/zxing/qrcode/encoder/byte_matrix.rb +18 -0
- data/lib/zxing/qrcode/encoder/encoder.rb +9 -0
- data/lib/zxing/qrcode/encoder/qrcode.rb +18 -0
- data/lib/zxing/reader.rb +8 -0
- data/lib/zxing/reader_exception.rb +4 -0
- data/lib/zxing/reed_solomon_exception.rb +2 -0
- data/lib/zxing/result.rb +18 -0
- data/lib/zxing/rmagick.rb +5 -0
- data/lib/zxing/rmagick/image.rb +104 -0
- data/lib/zxing/version.rb +33 -0
- data/test/qrcode.png +0 -0
- data/test/test_helper.rb +5 -0
- data/test/test_zxing.rb +58 -0
- data/test/vendor.rb +360 -0
- data/test/zxing/test_decodable.rb +38 -0
- data/zxing_cpp.gemspec +48 -0
- metadata +473 -0
@@ -0,0 +1,92 @@
|
|
1
|
+
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
2
|
+
/*
|
3
|
+
* Detector.h
|
4
|
+
* zxing
|
5
|
+
*
|
6
|
+
* Created by Lukas Stabe on 08/02/2012.
|
7
|
+
* Copyright 2012 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
|
+
#ifndef __ZXING_AZTEC_DETECTOR_DETECTOR_H__
|
23
|
+
#define __ZXING_AZTEC_DETECTOR_DETECTOR_H__
|
24
|
+
|
25
|
+
#include <vector>
|
26
|
+
|
27
|
+
#include <zxing/common/BitArray.h>
|
28
|
+
#include <zxing/ResultPoint.h>
|
29
|
+
#include <zxing/common/BitMatrix.h>
|
30
|
+
#include <zxing/DecodeHints.h>
|
31
|
+
#include <zxing/aztec/AztecDetectorResult.h>
|
32
|
+
|
33
|
+
namespace zxing {
|
34
|
+
namespace aztec {
|
35
|
+
|
36
|
+
class Point : public Counted {
|
37
|
+
private:
|
38
|
+
const int x;
|
39
|
+
const int y;
|
40
|
+
|
41
|
+
public:
|
42
|
+
Ref<ResultPoint> toResultPoint() {
|
43
|
+
return Ref<ResultPoint>(new ResultPoint(float(x), float(y)));
|
44
|
+
}
|
45
|
+
|
46
|
+
Point(int ax, int ay) : x(ax), y(ay) {}
|
47
|
+
|
48
|
+
int getX() const { return x; }
|
49
|
+
int getY() const { return y; }
|
50
|
+
};
|
51
|
+
|
52
|
+
class Detector : public Counted {
|
53
|
+
|
54
|
+
private:
|
55
|
+
Ref<BitMatrix> image_;
|
56
|
+
|
57
|
+
bool compact_;
|
58
|
+
int nbLayers_;
|
59
|
+
int nbDataBlocks_;
|
60
|
+
int nbCenterLayers_;
|
61
|
+
int shift_;
|
62
|
+
|
63
|
+
void extractParameters(std::vector<Ref<Point> > bullEyeCornerPoints);
|
64
|
+
ArrayRef< Ref<ResultPoint> > getMatrixCornerPoints(std::vector<Ref<Point> > bullEyeCornerPoints);
|
65
|
+
static void correctParameterData(Ref<BitArray> parameterData, bool compact);
|
66
|
+
std::vector<Ref<Point> > getBullEyeCornerPoints(Ref<Point> pCenter);
|
67
|
+
Ref<Point> getMatrixCenter();
|
68
|
+
Ref<BitMatrix> sampleGrid(Ref<BitMatrix> image,
|
69
|
+
Ref<ResultPoint> topLeft,
|
70
|
+
Ref<ResultPoint> bottomLeft,
|
71
|
+
Ref<ResultPoint> bottomRight,
|
72
|
+
Ref<ResultPoint> topRight);
|
73
|
+
void getParameters(Ref<BitArray> parameterData);
|
74
|
+
Ref<BitArray> sampleLine(Ref<Point> p1, Ref<Point> p2, int size);
|
75
|
+
bool isWhiteOrBlackRectangle(Ref<Point> p1,
|
76
|
+
Ref<Point> p2,
|
77
|
+
Ref<Point> p3,
|
78
|
+
Ref<Point> p4);
|
79
|
+
int getColor(Ref<Point> p1, Ref<Point> p2);
|
80
|
+
Ref<Point> getFirstDifferent(Ref<Point> init, bool color, int dx, int dy);
|
81
|
+
bool isValid(int x, int y);
|
82
|
+
static float distance(Ref<Point> a, Ref<Point> b);
|
83
|
+
|
84
|
+
public:
|
85
|
+
Detector(Ref<BitMatrix> image);
|
86
|
+
Ref<AztecDetectorResult> detect();
|
87
|
+
};
|
88
|
+
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
#endif
|
@@ -0,0 +1,170 @@
|
|
1
|
+
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
2
|
+
#ifndef __ARRAY_H__
|
3
|
+
#define __ARRAY_H__
|
4
|
+
|
5
|
+
/*
|
6
|
+
* Array.h
|
7
|
+
* zxing
|
8
|
+
*
|
9
|
+
* Copyright 2010 ZXing authors All rights reserved.
|
10
|
+
*
|
11
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
12
|
+
* you may not use this file except in compliance with the License.
|
13
|
+
* You may obtain a copy of the License at
|
14
|
+
*
|
15
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
16
|
+
*
|
17
|
+
* Unless required by applicable law or agreed to in writing, software
|
18
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
19
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
20
|
+
* See the License for the specific language governing permissions and
|
21
|
+
* limitations under the License.
|
22
|
+
*/
|
23
|
+
|
24
|
+
#include <vector>
|
25
|
+
|
26
|
+
#include <zxing/common/Counted.h>
|
27
|
+
|
28
|
+
namespace zxing {
|
29
|
+
|
30
|
+
template<typename T> class Array : public Counted {
|
31
|
+
protected:
|
32
|
+
public:
|
33
|
+
std::vector<T> values_;
|
34
|
+
Array() {}
|
35
|
+
Array(int n) :
|
36
|
+
Counted(), values_(n, T()) {
|
37
|
+
}
|
38
|
+
Array(T const* ts, int n) :
|
39
|
+
Counted(), values_(ts, ts+n) {
|
40
|
+
}
|
41
|
+
Array(T const* ts, T const* te) :
|
42
|
+
Counted(), values_(ts, te) {
|
43
|
+
}
|
44
|
+
Array(T v, int n) :
|
45
|
+
Counted(), values_(n, v) {
|
46
|
+
}
|
47
|
+
Array(std::vector<T> &v) :
|
48
|
+
Counted(), values_(v) {
|
49
|
+
}
|
50
|
+
Array(Array<T> &other) :
|
51
|
+
Counted(), values_(other.values_) {
|
52
|
+
}
|
53
|
+
Array(Array<T> *other) :
|
54
|
+
Counted(), values_(other->values_) {
|
55
|
+
}
|
56
|
+
virtual ~Array() {
|
57
|
+
}
|
58
|
+
Array<T>& operator=(const Array<T> &other) {
|
59
|
+
values_ = other.values_;
|
60
|
+
return *this;
|
61
|
+
}
|
62
|
+
Array<T>& operator=(const std::vector<T> &array) {
|
63
|
+
values_ = array;
|
64
|
+
return *this;
|
65
|
+
}
|
66
|
+
T const& operator[](int i) const {
|
67
|
+
return values_[i];
|
68
|
+
}
|
69
|
+
T& operator[](int i) {
|
70
|
+
return values_[i];
|
71
|
+
}
|
72
|
+
int size() const {
|
73
|
+
return values_.size();
|
74
|
+
}
|
75
|
+
bool empty() const {
|
76
|
+
return values_.size() == 0;
|
77
|
+
}
|
78
|
+
std::vector<T> const& values() const {
|
79
|
+
return values_;
|
80
|
+
}
|
81
|
+
std::vector<T>& values() {
|
82
|
+
return values_;
|
83
|
+
}
|
84
|
+
};
|
85
|
+
|
86
|
+
template<typename T> class ArrayRef : public Counted {
|
87
|
+
private:
|
88
|
+
public:
|
89
|
+
Array<T> *array_;
|
90
|
+
ArrayRef() :
|
91
|
+
array_(0) {
|
92
|
+
}
|
93
|
+
explicit ArrayRef(int n) :
|
94
|
+
array_(0) {
|
95
|
+
reset(new Array<T> (n));
|
96
|
+
}
|
97
|
+
ArrayRef(T *ts, int n) :
|
98
|
+
array_(0) {
|
99
|
+
reset(new Array<T> (ts, n));
|
100
|
+
}
|
101
|
+
ArrayRef(Array<T> *a) :
|
102
|
+
array_(0) {
|
103
|
+
reset(a);
|
104
|
+
}
|
105
|
+
ArrayRef(const ArrayRef &other) :
|
106
|
+
Counted(), array_(0) {
|
107
|
+
reset(other.array_);
|
108
|
+
}
|
109
|
+
|
110
|
+
template<class Y>
|
111
|
+
ArrayRef(const ArrayRef<Y> &other) :
|
112
|
+
array_(0) {
|
113
|
+
reset(static_cast<const Array<T> *>(other.array_));
|
114
|
+
}
|
115
|
+
|
116
|
+
~ArrayRef() {
|
117
|
+
if (array_) {
|
118
|
+
array_->release();
|
119
|
+
}
|
120
|
+
array_ = 0;
|
121
|
+
}
|
122
|
+
|
123
|
+
T const& operator[](int i) const {
|
124
|
+
return (*array_)[i];
|
125
|
+
}
|
126
|
+
|
127
|
+
T& operator[](int i) {
|
128
|
+
return (*array_)[i];
|
129
|
+
}
|
130
|
+
|
131
|
+
void reset(Array<T> *a) {
|
132
|
+
if (a) {
|
133
|
+
a->retain();
|
134
|
+
}
|
135
|
+
if (array_) {
|
136
|
+
array_->release();
|
137
|
+
}
|
138
|
+
array_ = a;
|
139
|
+
}
|
140
|
+
void reset(const ArrayRef<T> &other) {
|
141
|
+
reset(other.array_);
|
142
|
+
}
|
143
|
+
ArrayRef<T>& operator=(const ArrayRef<T> &other) {
|
144
|
+
reset(other);
|
145
|
+
return *this;
|
146
|
+
}
|
147
|
+
ArrayRef<T>& operator=(Array<T> *a) {
|
148
|
+
reset(a);
|
149
|
+
return *this;
|
150
|
+
}
|
151
|
+
|
152
|
+
Array<T>& operator*() const {
|
153
|
+
return *array_;
|
154
|
+
}
|
155
|
+
|
156
|
+
Array<T>* operator->() const {
|
157
|
+
return array_;
|
158
|
+
}
|
159
|
+
|
160
|
+
operator bool () const {
|
161
|
+
return array_ != 0;
|
162
|
+
}
|
163
|
+
bool operator ! () const {
|
164
|
+
return array_ == 0;
|
165
|
+
}
|
166
|
+
};
|
167
|
+
|
168
|
+
} // namespace zxing
|
169
|
+
|
170
|
+
#endif // __ARRAY_H__
|
@@ -0,0 +1,155 @@
|
|
1
|
+
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
2
|
+
/*
|
3
|
+
* Copyright 2010 ZXing authors. All rights reserved.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*/
|
17
|
+
|
18
|
+
#include <zxing/common/BitArray.h>
|
19
|
+
|
20
|
+
using std::vector;
|
21
|
+
using zxing::BitArray;
|
22
|
+
|
23
|
+
// VC++
|
24
|
+
using zxing::Ref;
|
25
|
+
|
26
|
+
int BitArray::makeArraySize(int size) {
|
27
|
+
return (size + bitsPerWord-1) >> logBits;
|
28
|
+
}
|
29
|
+
|
30
|
+
BitArray::BitArray(int size_)
|
31
|
+
: size(size_), bits(makeArraySize(size)) {}
|
32
|
+
|
33
|
+
BitArray::~BitArray() {
|
34
|
+
}
|
35
|
+
|
36
|
+
int BitArray::getSize() const {
|
37
|
+
return size;
|
38
|
+
}
|
39
|
+
|
40
|
+
void BitArray::setBulk(int i, int newBits) {
|
41
|
+
bits[i >> logBits] = newBits;
|
42
|
+
}
|
43
|
+
|
44
|
+
void BitArray::clear() {
|
45
|
+
int max = bits->size();
|
46
|
+
for (int i = 0; i < max; i++) {
|
47
|
+
bits[i] = 0;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
bool BitArray::isRange(int start, int end, bool value) {
|
52
|
+
if (end < start) {
|
53
|
+
throw IllegalArgumentException();
|
54
|
+
}
|
55
|
+
if (end == start) {
|
56
|
+
return true; // empty range matches
|
57
|
+
}
|
58
|
+
end--; // will be easier to treat this as the last actually set bit -- inclusive
|
59
|
+
int firstInt = start >> logBits;
|
60
|
+
int lastInt = end >> logBits;
|
61
|
+
for (int i = firstInt; i <= lastInt; i++) {
|
62
|
+
int firstBit = i > firstInt ? 0 : start & bitsMask;
|
63
|
+
int lastBit = i < lastInt ? (bitsPerWord-1) : end & bitsMask;
|
64
|
+
int mask;
|
65
|
+
if (firstBit == 0 && lastBit == (bitsPerWord-1)) {
|
66
|
+
mask = -1;
|
67
|
+
} else {
|
68
|
+
mask = 0;
|
69
|
+
for (int j = firstBit; j <= lastBit; j++) {
|
70
|
+
mask |= 1 << j;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
// Return false if we're looking for 1s and the masked bits[i] isn't all 1s (that is,
|
75
|
+
// equals the mask, or we're looking for 0s and the masked portion is not all 0s
|
76
|
+
if ((bits[i] & mask) != (value ? mask : 0)) {
|
77
|
+
return false;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
return true;
|
81
|
+
}
|
82
|
+
|
83
|
+
vector<int>& BitArray::getBitArray() {
|
84
|
+
return bits->values();
|
85
|
+
}
|
86
|
+
|
87
|
+
void BitArray::reverse() {
|
88
|
+
ArrayRef<int> newBits(bits->size());
|
89
|
+
int size = this->size;
|
90
|
+
for (int i = 0; i < size; i++) {
|
91
|
+
if (get(size - i - 1)) {
|
92
|
+
newBits[i >> logBits] |= 1 << (i & bitsMask);
|
93
|
+
}
|
94
|
+
}
|
95
|
+
bits = newBits;
|
96
|
+
}
|
97
|
+
|
98
|
+
BitArray::Reverse::Reverse(Ref<BitArray> array_) : array(array_) {
|
99
|
+
array->reverse();
|
100
|
+
}
|
101
|
+
|
102
|
+
BitArray::Reverse::~Reverse() {
|
103
|
+
array->reverse();
|
104
|
+
}
|
105
|
+
|
106
|
+
namespace {
|
107
|
+
// N.B.: This only works for 32 bit ints ...
|
108
|
+
int numberOfTrailingZeros(int i) {
|
109
|
+
// HD, Figure 5-14
|
110
|
+
int y;
|
111
|
+
if (i == 0) return 32;
|
112
|
+
int n = 31;
|
113
|
+
y = i <<16; if (y != 0) { n = n -16; i = y; }
|
114
|
+
y = i << 8; if (y != 0) { n = n - 8; i = y; }
|
115
|
+
y = i << 4; if (y != 0) { n = n - 4; i = y; }
|
116
|
+
y = i << 2; if (y != 0) { n = n - 2; i = y; }
|
117
|
+
return n - (((unsigned int)(i << 1)) >> 31);
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
int BitArray::getNextSet(int from) {
|
122
|
+
if (from >= size) {
|
123
|
+
return size;
|
124
|
+
}
|
125
|
+
int bitsOffset = from >> logBits;
|
126
|
+
int currentBits = bits[bitsOffset];
|
127
|
+
// mask off lesser bits first
|
128
|
+
currentBits &= ~((1 << (from & bitsMask)) - 1);
|
129
|
+
while (currentBits == 0) {
|
130
|
+
if (++bitsOffset == (int)bits->size()) {
|
131
|
+
return size;
|
132
|
+
}
|
133
|
+
currentBits = bits[bitsOffset];
|
134
|
+
}
|
135
|
+
int result = (bitsOffset << logBits) + numberOfTrailingZeros(currentBits);
|
136
|
+
return result > size ? size : result;
|
137
|
+
}
|
138
|
+
|
139
|
+
int BitArray::getNextUnset(int from) {
|
140
|
+
if (from >= size) {
|
141
|
+
return size;
|
142
|
+
}
|
143
|
+
int bitsOffset = from >> logBits;
|
144
|
+
int currentBits = ~bits[bitsOffset];
|
145
|
+
// mask off lesser bits first
|
146
|
+
currentBits &= ~((1 << (from & bitsMask)) - 1);
|
147
|
+
while (currentBits == 0) {
|
148
|
+
if (++bitsOffset == (int)bits->size()) {
|
149
|
+
return size;
|
150
|
+
}
|
151
|
+
currentBits = ~bits[bitsOffset];
|
152
|
+
}
|
153
|
+
int result = (bitsOffset << logBits) + numberOfTrailingZeros(currentBits);
|
154
|
+
return result > size ? size : result;
|
155
|
+
}
|
@@ -0,0 +1,81 @@
|
|
1
|
+
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
|
2
|
+
#ifndef __BIT_ARRAY_H__
|
3
|
+
#define __BIT_ARRAY_H__
|
4
|
+
|
5
|
+
/*
|
6
|
+
* Copyright 2010 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/ZXing.h>
|
22
|
+
#include <zxing/common/Counted.h>
|
23
|
+
#include <zxing/common/IllegalArgumentException.h>
|
24
|
+
#include <zxing/common/Array.h>
|
25
|
+
#include <vector>
|
26
|
+
#include <limits>
|
27
|
+
#include <iostream>
|
28
|
+
|
29
|
+
namespace zxing {
|
30
|
+
|
31
|
+
class BitArray : public Counted {
|
32
|
+
public:
|
33
|
+
static const int bitsPerWord = std::numeric_limits<unsigned int>::digits;
|
34
|
+
|
35
|
+
private:
|
36
|
+
int size;
|
37
|
+
ArrayRef<int> bits;
|
38
|
+
static const int logBits = ZX_LOG_DIGITS(bitsPerWord);
|
39
|
+
static const int bitsMask = (1 << logBits) - 1;
|
40
|
+
|
41
|
+
public:
|
42
|
+
BitArray(int size);
|
43
|
+
~BitArray();
|
44
|
+
int getSize() const;
|
45
|
+
|
46
|
+
bool get(int i) const {
|
47
|
+
return (bits[i >> logBits] & (1 << (i & bitsMask))) != 0;
|
48
|
+
}
|
49
|
+
|
50
|
+
void set(int i) {
|
51
|
+
bits[i >> logBits] |= 1 << (i & bitsMask);
|
52
|
+
}
|
53
|
+
|
54
|
+
int getNextSet(int from);
|
55
|
+
int getNextUnset(int from);
|
56
|
+
|
57
|
+
void setBulk(int i, int newBits);
|
58
|
+
void setRange(int start, int end);
|
59
|
+
void clear();
|
60
|
+
bool isRange(int start, int end, bool value);
|
61
|
+
std::vector<int>& getBitArray();
|
62
|
+
|
63
|
+
void reverse();
|
64
|
+
|
65
|
+
class Reverse {
|
66
|
+
private:
|
67
|
+
Ref<BitArray> array;
|
68
|
+
public:
|
69
|
+
Reverse(Ref<BitArray> array);
|
70
|
+
~Reverse();
|
71
|
+
};
|
72
|
+
|
73
|
+
private:
|
74
|
+
static int makeArraySize(int size);
|
75
|
+
};
|
76
|
+
|
77
|
+
std::ostream& operator << (std::ostream&, BitArray const&);
|
78
|
+
|
79
|
+
}
|
80
|
+
|
81
|
+
#endif // __BIT_ARRAY_H__
|