rhodes 5.5.15 → 5.5.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +48 -13
- data/doc/oss/WM_CE_Installation_And_Build_Guidelines.md +1 -1
- data/lib/commonAPI/barcode/ext.yml +6 -2
- data/lib/commonAPI/barcode/ext/barcode.xml +1 -1
- data/lib/commonAPI/barcode/ext/build.bat +8 -0
- data/lib/commonAPI/barcode/ext/platform/qt/Barcode.pro +90 -0
- data/lib/commonAPI/barcode/ext/platform/qt/Rakefile +35 -0
- data/lib/commonAPI/barcode/ext/platform/qt/resources/barcode.qrc +10 -0
- data/lib/commonAPI/barcode/ext/platform/qt/resources/buttonBack.png +0 -0
- data/lib/commonAPI/barcode/ext/platform/qt/resources/buttonRetry.png +0 -0
- data/lib/commonAPI/barcode/ext/platform/qt/resources/buttonSave.png +0 -0
- data/lib/commonAPI/barcode/ext/platform/qt/resources/scanner_sound.wav +0 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeController.cpp +40 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeController.h +57 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeDialogBuilder.h +52 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeDialogView.cpp +175 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeDialogView.h +68 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/Barcode_impl.cpp +109 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/decoderthread.cpp +39 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/decoderthread.h +29 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/CameraImageWrapper.cpp +131 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/CameraImageWrapper.h +39 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/QZXing.h +173 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/QZXing.pri +277 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/QZXing_global.h +13 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/imagehandler.cpp +45 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/imagehandler.h +23 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/qzxing.cpp +303 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigInteger.cc +405 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigInteger.hh +215 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigIntegerAlgorithms.cc +70 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigIntegerAlgorithms.hh +25 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigIntegerLibrary.hh +8 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigIntegerUtils.cc +50 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigIntegerUtils.hh +72 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigUnsigned.cc +697 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigUnsigned.hh +418 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigUnsignedInABase.cc +125 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigUnsignedInABase.hh +122 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/ChangeLog +146 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/NumberlikeArray.hh +177 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/README +71 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/win32/zxing/iconv.h +14 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/win32/zxing/msvc/stdint.h +247 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/win32/zxing/win_iconv.c +2035 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/BarcodeFormat.cpp +40 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/BarcodeFormat.h +60 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Binarizer.cpp +45 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Binarizer.h +50 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/BinaryBitmap.cpp +70 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/BinaryBitmap.h +56 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ChecksumException.cpp +28 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ChecksumException.h +34 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/DecodeHints.cpp +148 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/DecodeHints.h +85 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Exception.cpp +43 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Exception.h +51 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/FormatException.cpp +41 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/FormatException.h +37 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/IllegalStateException.h +35 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/InvertedLuminanceSource.cpp +68 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/InvertedLuminanceSource.h +48 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/LuminanceSource.cpp +86 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/LuminanceSource.h +59 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/MultiFormatReader.cpp +124 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/MultiFormatReader.h +48 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/NotFoundException.h +35 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Reader.cpp +31 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Reader.h +40 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ReaderException.h +37 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Result.cpp +66 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Result.h +57 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ResultIO.cpp +34 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ResultPoint.cpp +108 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ResultPoint.h +55 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ResultPointCallback.cpp +26 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ResultPointCallback.h +39 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/WriterException.h +17 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ZXing.h +140 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/AztecDetectorResult.cpp +54 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/AztecDetectorResult.h +48 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/AztecReader.cpp +68 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/AztecReader.h +49 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/decoder/AztecDecoder.cpp +495 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/decoder/Decoder.h +69 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/detector/AztecDetector.cpp +548 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/detector/Detector.h +92 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/Array.h +173 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitArray.cpp +237 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitArray.h +97 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitArrayIO.cpp +31 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitMatrix.cpp +143 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitMatrix.h +91 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitSource.cpp +76 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitSource.h +74 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/CharacterSetECI.cpp +104 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/CharacterSetECI.h +53 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/Counted.h +140 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/DecoderResult.cpp +51 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/DecoderResult.h +54 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/DetectorResult.cpp +39 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/DetectorResult.h +43 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GlobalHistogramBinarizer.cpp +212 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GlobalHistogramBinarizer.h +48 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GreyscaleLuminanceSource.cpp +80 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GreyscaleLuminanceSource.h +53 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GreyscaleRotatedLuminanceSource.cpp +81 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GreyscaleRotatedLuminanceSource.h +46 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GridSampler.cpp +122 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GridSampler.h +45 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/HybridBinarizer.cpp +226 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/HybridBinarizer.h +67 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/IllegalArgumentException.cpp +27 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/IllegalArgumentException.h +36 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/PerspectiveTransform.cpp +107 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/PerspectiveTransform.h +49 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/Point.h +47 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/Str.cpp +61 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/Str.h +51 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/StringUtils.cpp +198 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/StringUtils.h +52 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/detector/JavaMath.h +43 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/detector/MathUtils.h +57 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/detector/MonochromeRectangleDetector.cpp +175 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/detector/MonochromeRectangleDetector.h +62 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/detector/WhiteRectangleDetector.cpp +330 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/detector/WhiteRectangleDetector.h +59 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/GenericGF.cpp +150 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/GenericGF.h +73 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/GenericGFPoly.cpp +218 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/GenericGFPoly.h +56 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/ReedSolomonDecoder.cpp +174 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/ReedSolomonDecoder.h +49 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/ReedSolomonException.cpp +30 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/ReedSolomonException.h +33 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/DataMatrixReader.cpp +54 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/DataMatrixReader.h +45 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/DataMatrixVersion.cpp +199 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/Version.h +87 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/BitMatrixParser.h +59 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/DataBlock.h +49 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/DataMatrixBitMatrixParser.cpp +361 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/DataMatrixDataBlock.cpp +113 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/DataMatrixDecodedBitStreamParser.cpp +416 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/DataMatrixDecoder.cpp +93 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/DecodedBitStreamParser.h +104 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/Decoder.h +49 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/detector/CornerPoint.h +43 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/detector/DataMatrixCornerPoint.cpp +46 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/detector/DataMatrixDetector.cpp +447 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/detector/DataMatrixDetectorException.cpp +23 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/detector/Detector.h +94 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/detector/DetectorException.h +23 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/ByQuadrantReader.cpp +75 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/ByQuadrantReader.h +42 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/GenericMultipleBarcodeReader.cpp +137 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/GenericMultipleBarcodeReader.h +51 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/MultipleBarcodeReader.cpp +29 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/MultipleBarcodeReader.h +41 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/qrcode/QRCodeMultiReader.cpp +58 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/qrcode/QRCodeMultiReader.h +36 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/qrcode/detector/MultiDetector.cpp +47 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/qrcode/detector/MultiDetector.h +37 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/qrcode/detector/MultiFinderPatternFinder.cpp +236 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h +47 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/CodaBarReader.cpp +340 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/CodaBarReader.h +57 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/Code128Reader.cpp +497 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/Code128Reader.h +48 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/Code39Reader.cpp +329 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/Code39Reader.h +63 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/Code93Reader.cpp +293 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/Code93Reader.h +58 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/EAN13Reader.cpp +85 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/EAN13Reader.h +49 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/EAN8Reader.cpp +65 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/EAN8Reader.h +47 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/ITFReader.cpp +337 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/ITFReader.h +54 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/MultiFormatOneDReader.cpp +96 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/MultiFormatOneDReader.h +38 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/MultiFormatUPCEANReader.cpp +110 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/MultiFormatUPCEANReader.h +41 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/OneDReader.cpp +228 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/OneDReader.h +81 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/OneDResultPoint.cpp +28 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/OneDResultPoint.h +35 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/UPCAReader.cpp +71 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/UPCAReader.h +50 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/UPCEANReader.cpp +309 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/UPCEANReader.h +88 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/UPCEReader.cpp +146 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/UPCEReader.h +47 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/PDF417Reader.cpp +170 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/PDF417Reader.h +49 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/BitMatrixParser.h +84 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/DecodedBitStreamParser.h +84 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/Decoder.h +62 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/PDF417BitMatrixParser.cpp +997 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/PDF417DecodedBitStreamParser.cpp +563 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/PDF417Decoder.cpp +118 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/ec/ErrorCorrection.cpp +214 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/ec/ErrorCorrection.h +71 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/ec/ModulusGF.cpp +120 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/ec/ModulusGF.h +72 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/ec/ModulusPoly.cpp +284 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/ec/ModulusPoly.h +68 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/detector/Detector.h +106 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/detector/LinesSampler.cpp +719 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/detector/LinesSampler.h +122 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/detector/PDF417Detector.cpp +664 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/ErrorCorrectionLevel.h +55 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/FormatInformation.h +54 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/QRCodeReader.cpp +52 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/QRCodeReader.h +48 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/QRErrorCorrectionLevel.cpp +70 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/QRFormatInformation.cpp +117 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/QRVersion.cpp +566 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/Version.h +86 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/BitMatrixParser.h +56 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/DataBlock.h +50 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/DataMask.h +50 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/DecodedBitStreamParser.h +72 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/Decoder.h +46 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/Mode.h +68 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/QRBitMatrixParser.cpp +183 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/QRDataBlock.cpp +118 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/QRDataMask.cpp +159 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/QRDecodedBitStreamParser.cpp +433 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/QRDecoder.cpp +107 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/QRMode.cpp +118 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/AlignmentPattern.h +45 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/AlignmentPatternFinder.h +68 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/Detector.h +69 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/FinderPattern.h +48 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/FinderPatternFinder.h +80 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/FinderPatternInfo.h +47 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/QRAlignmentPattern.cpp +47 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/QRAlignmentPatternFinder.cpp +208 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/QRDetector.cpp +315 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/QRFinderPattern.cpp +69 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/QRFinderPatternFinder.cpp +638 -0
- data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/QRFinderPatternInfo.cpp +41 -0
- data/lib/commonAPI/coreapi/ext.yml +1 -1
- data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/network/Network.java +21 -7
- data/lib/commonAPI/coreapi/ext/platform/qt/coreapi.pro +10 -0
- data/lib/commonAPI/coreapi/ext/platform/wm/src/Registry.cpp +57 -7
- data/lib/commonAPI/coreapi/ext/shared/SystemImplBase.cpp +11 -0
- data/lib/commonAPI/coreapi/ext/shared/SystemImplBase.h +2 -0
- data/lib/commonAPI/coreapi/ext/shared/qt/NavbarImpl.cpp +1 -1
- data/lib/commonAPI/coreapi/ext/system.xml +3 -0
- data/lib/commonAPI/coreapi/ext/webview.xml +0 -2
- data/lib/commonAPI/coreapi/public/api/rhonodejsapi.js +921 -0
- data/lib/commonAPI/mediacapture/ext.yml +1 -0
- data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraObject.java +3 -2
- data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraRhoListener.java +260 -230
- data/lib/commonAPI/mediacapture/ext/platform/qt/MediaCapture.pro +17 -5
- data/lib/commonAPI/mediacapture/ext/platform/qt/resources/buttonBack.png +0 -0
- data/lib/commonAPI/mediacapture/ext/platform/qt/resources/mediacapture.qrc +1 -0
- data/lib/commonAPI/mediacapture/ext/platform/qt/src/CCameraData.cpp +11 -4
- data/lib/commonAPI/mediacapture/ext/platform/qt/src/CCameraData.h +4 -7
- data/lib/commonAPI/mediacapture/ext/platform/qt/src/CameraDialogView.h +1 -6
- data/lib/commonAPI/mediacapture/ext/platform/qt/src/CameraRefresher.h +54 -0
- data/lib/commonAPI/mediacapture/ext/platform/qt/src/Camera_impl.cpp +15 -21
- data/lib/commonAPI/mediacapture/ext/platform/qt/src/ImageFilenameGetterResult.h +7 -2
- data/lib/commonAPI/mediacapture/ext/platform/qt/src/cameradialogview.cpp +34 -32
- data/lib/extensions/zlib/ext/zlib.pro +11 -0
- data/platform/android/Rhodes/jni/src/fileapi.cpp +36 -22
- data/platform/iphone/Classes/SimpleMainView.m +1 -1
- data/platform/shared/api_generator/MethodResult.cpp +22 -7
- data/platform/shared/api_generator/MethodResult.h +3 -1
- data/platform/shared/api_generator/iphone/CMethodResult.m +6 -2
- data/platform/shared/api_generator/js_helpers.cpp +19 -0
- data/platform/shared/api_generator/js_helpers.h +23 -0
- data/platform/shared/common/RhoConf.cpp +0 -1
- data/platform/shared/common/RhoPort.h +3 -0
- data/platform/shared/common/RhodesApp.cpp +46 -11
- data/platform/shared/common/RhodesApp.h +7 -0
- data/platform/shared/common/RhodesAppBase.cpp +5 -1
- data/platform/shared/common/RhodesAppBase.h +8 -1
- data/platform/shared/common/ThreadQueue.h +1 -1
- data/platform/shared/common/map/BaseMapEngine.cpp +2 -0
- data/platform/shared/net/HttpServer.cpp +0 -1
- data/platform/shared/qt/RhoSimulator.pro +11 -0
- data/platform/shared/qt/RhoSimulator_dev.pro +12 -2
- data/platform/shared/qt/curl/curl.pro +10 -0
- data/platform/shared/qt/rhodes/guithreadfunchelper.h +29 -0
- data/platform/shared/qt/rhodes/iexecutable.h +9 -0
- data/platform/shared/qt/rhodes/impl/MainWindowImpl.cpp +10 -21
- data/platform/shared/qt/rhodes/impl/MainWindowImpl.h +1 -1
- data/platform/shared/qt/rhodes/impl/QtSystemImpl.cpp +15 -1
- data/platform/shared/qt/rhodes/impl/RhoThreadImpl.cpp +7 -7
- data/platform/shared/qt/rhodes/mainwindowinterface.h +12 -0
- data/platform/shared/qt/rhodes/newVersion/DateTimeDialog.cpp +96 -0
- data/platform/shared/qt/rhodes/newVersion/DateTimeDialog.h +54 -0
- data/platform/shared/qt/rhodes/newVersion/ExternalWebView.cpp +45 -0
- data/platform/shared/qt/rhodes/newVersion/ExternalWebView.h +47 -0
- data/platform/shared/qt/rhodes/newVersion/QWebEngineViewSelectionSuppressor.h +103 -0
- data/platform/shared/qt/rhodes/newVersion/QtMainWindow.cpp +1181 -0
- data/platform/shared/qt/rhodes/newVersion/QtMainWindow.h +194 -0
- data/platform/shared/qt/rhodes/newVersion/QtNativeTabBar.cpp +107 -0
- data/platform/shared/qt/rhodes/newVersion/QtNativeTabBar.h +40 -0
- data/platform/shared/qt/rhodes/newVersion/RhoNativeApiCall.cpp +51 -0
- data/platform/shared/qt/rhodes/newVersion/RhoNativeApiCall.h +52 -0
- data/platform/shared/qt/rhodes/newVersion/main.cpp +280 -0
- data/platform/shared/qt/rhodes/newVersion/qtwebenginepage.cpp +19 -0
- data/platform/shared/qt/rhodes/newVersion/qtwebenginepage.h +21 -0
- data/platform/shared/qt/rhodes/newVersion/qtwebengineview.cpp +6 -0
- data/platform/shared/qt/rhodes/newVersion/qtwebengineview.h +18 -0
- data/platform/shared/qt/rhodes/{DateTimeDialog.cpp → oldVersion/DateTimeDialog.cpp} +0 -0
- data/platform/shared/qt/rhodes/{DateTimeDialog.h → oldVersion/DateTimeDialog.h} +0 -0
- data/platform/shared/qt/rhodes/{DateTimeDialog.ui → oldVersion/DateTimeDialog.ui} +0 -0
- data/platform/shared/qt/rhodes/{ExternalWebView.cpp → oldVersion/ExternalWebView.cpp} +0 -0
- data/platform/shared/qt/rhodes/{ExternalWebView.h → oldVersion/ExternalWebView.h} +0 -0
- data/platform/shared/qt/rhodes/{ExternalWebView.ui → oldVersion/ExternalWebView.ui} +0 -0
- data/platform/shared/qt/rhodes/{QtMainWindow.cpp → oldVersion/QtMainWindow.cpp} +4 -1
- data/platform/shared/qt/rhodes/{QtMainWindow.h → oldVersion/QtMainWindow.h} +8 -5
- data/platform/shared/qt/rhodes/{QtMainWindow.ui → oldVersion/QtMainWindow.ui} +0 -0
- data/platform/shared/qt/rhodes/{QtNativeTabBar.cpp → oldVersion/QtNativeTabBar.cpp} +0 -0
- data/platform/shared/qt/rhodes/{QtNativeTabBar.h → oldVersion/QtNativeTabBar.h} +0 -0
- data/platform/shared/qt/rhodes/{QtWebInspector.cpp → oldVersion/QtWebInspector.cpp} +0 -0
- data/platform/shared/qt/rhodes/{QtWebInspector.h → oldVersion/QtWebInspector.h} +0 -0
- data/platform/shared/qt/rhodes/{QtWebInspector.ui → oldVersion/QtWebInspector.ui} +0 -0
- data/platform/shared/qt/rhodes/{QtWebPage.cpp → oldVersion/QtWebPage.cpp} +0 -0
- data/platform/shared/qt/rhodes/{QtWebPage.h → oldVersion/QtWebPage.h} +0 -0
- data/platform/shared/qt/rhodes/{RhoNativeApiCall.cpp → oldVersion/RhoNativeApiCall.cpp} +0 -0
- data/platform/shared/qt/rhodes/{RhoNativeApiCall.h → oldVersion/RhoNativeApiCall.h} +0 -0
- data/platform/shared/qt/rhodes/{main.cpp → oldVersion/main.cpp} +2 -0
- data/platform/shared/qt/rhodes/{qkineticscroller.cpp → oldVersion/qkineticscroller.cpp} +0 -0
- data/platform/shared/qt/rhodes/{qkineticscroller.h → oldVersion/qkineticscroller.h} +0 -0
- data/platform/shared/qt/rhodes/{qkineticscroller_p.h → oldVersion/qkineticscroller_p.h} +0 -0
- data/platform/shared/qt/rhodes/{qtflickgesture.cpp → oldVersion/qtflickgesture.cpp} +0 -0
- data/platform/shared/qt/rhodes/{qtflickgesture_p.h → oldVersion/qtflickgesture_p.h} +0 -0
- data/platform/shared/qt/rhodes/{qtscroller.cpp → oldVersion/qtscroller.cpp} +0 -0
- data/platform/shared/qt/rhodes/{qtscroller.h → oldVersion/qtscroller.h} +0 -0
- data/platform/shared/qt/rhodes/{qtscroller_p.h → oldVersion/qtscroller_p.h} +0 -0
- data/platform/shared/qt/rhodes/{qtscrollerfilter.cpp → oldVersion/qtscrollerfilter.cpp} +0 -0
- data/platform/shared/qt/rhodes/{qtscrollerfilter_p.h → oldVersion/qtscrollerfilter_p.h} +0 -0
- data/platform/shared/qt/rhodes/{qtscrollerproperties.cpp → oldVersion/qtscrollerproperties.cpp} +0 -0
- data/platform/shared/qt/rhodes/{qtscrollerproperties.h → oldVersion/qtscrollerproperties.h} +0 -0
- data/platform/shared/qt/rhodes/{qtscrollerproperties_p.h → oldVersion/qtscrollerproperties_p.h} +0 -0
- data/platform/shared/qt/rhodes/{qtscrollevent.cpp → oldVersion/qtscrollevent.cpp} +0 -0
- data/platform/shared/qt/rhodes/{qtscrollevent.h → oldVersion/qtscrollevent.h} +0 -0
- data/platform/shared/qt/rhodes/{qtscrollevent_p.h → oldVersion/qtscrollevent_p.h} +0 -0
- data/platform/shared/qt/rhodes/{qwebviewkineticscroller.cpp → oldVersion/qwebviewkineticscroller.cpp} +0 -0
- data/platform/shared/qt/rhodes/{qwebviewkineticscroller.h → oldVersion/qwebviewkineticscroller.h} +0 -0
- data/platform/shared/qt/rhodes/{qwebviewselectionsuppressor.h → oldVersion/qwebviewselectionsuppressor.h} +0 -0
- data/platform/shared/qt/rhodes/rhodes.pro +92 -47
- data/platform/shared/qt/rholib/rholib.pro +32 -19
- data/platform/shared/qt/rubylib/rubylib.pro +12 -0
- data/platform/shared/qt/sqlite3/sqlite3.pro +11 -1
- data/platform/shared/qt/syncengine/syncengine.pro +10 -0
- data/platform/shared/ruby/eval.c +2 -4
- data/platform/shared/ruby/eval_intern.h +12 -0
- data/platform/shared/ruby/ext/rho/extensions.c +6 -2
- data/platform/shared/ruby/include/ruby/missing.h +6 -4
- data/platform/shared/ruby/io.c +27 -0
- data/platform/shared/ruby/numeric.c +5 -2
- data/platform/shared/ruby/time.c +4 -0
- data/platform/shared/ruby/win32/win32 backup.c +5808 -0
- data/platform/shared/ruby/win32/win32.c +2254 -2131
- data/platform/shared/unzip/deflate.cpp +6 -1
- data/platform/shared/unzip/gunzip.cpp +1 -1
- data/platform/shared/unzip/unzip.cpp +3 -6
- data/platform/shared/unzip/zip.cpp +1 -25
- data/platform/shared/unzip/zutil.cpp +1 -1
- data/platform/shared/unzip/zutil.h +1 -1
- data/platform/win32/RhoSimulator/rho/Databases/Databases.db +0 -0
- data/platform/win32/RhoSimulator/rho/WebpageIcons.db +0 -0
- data/platform/win32/RhoSimulator/rho/rholog.txt_pos +0 -0
- data/platform/win32/RhoSimulator/rhosimulator/Databases/Databases.db +0 -0
- data/platform/win32/RhoSimulator/rhosimulator/WebpageIcons.db +0 -0
- data/platform/win32/RhoSimulator/rhosimulator/rholog.txt_pos +0 -0
- data/platform/wm/build/build_inf.js +7 -3
- data/platform/wm/build/wm.rake +96 -30
- data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +3 -1
- data/rakefile.rb +48 -13
- data/res/generators/rhogen.rb +87 -8
- data/res/generators/templates/api/cpp/montana_js_wrap.cpp +1 -1
- data/res/generators/templates/application/nodejs/main.js +501 -0
- data/res/generators/templates/application/nodejs/rhoapp.js +71 -0
- data/res/generators/templates/application/nodejs/server/app.js +19 -0
- data/res/generators/templates/application/nodejs/server/package.json +16 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap-theme.css +587 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap-theme.css.map +1 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap-theme.min.css +6 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap-theme.min.css.map +1 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap.css +6757 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap.css.map +1 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap.min.css +6 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap.min.css.map +1 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot +0 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg +288 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff +0 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/js/bootstrap.js +2377 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/js/bootstrap.min.js +7 -0
- data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/js/npm.js +13 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/back_btn.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/back_btn@2x.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/back_btn@3x.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/forward_btn.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/forward_btn@2x.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/forward_btn@3x.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/gears.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/gears@2x.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/gears@3x.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/home_btn.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/home_btn@2x.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/home_btn@3x.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/sync_btn.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/sync_btn@2x.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/images/bar/sync_btn@3x.png +0 -0
- data/res/generators/templates/application/nodejs/server/public/jquery/jquery-3.1.1.min.js +4 -0
- data/res/generators/templates/application/nodejs/server/public/jquery/jquery-3.1.1.min.map +1 -0
- data/res/generators/templates/application/nodejs_build.yml +76 -0
- data/res/generators/templates/application/nodejs_rhoconfig.txt +137 -0
- data/version +1 -1
- metadata +345 -77
- data/platform/win32/RhoSimulator/D3Dcompiler_46.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5Core.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5Gui.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5Multimedia.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5MultimediaWidgets.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5Network.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5OpenGL.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5PrintSupport.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5Qml.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5Quick.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5Sensors.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5Sql.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5V8.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5WebKit.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5WebKitWidgets.dll +0 -0
- data/platform/win32/RhoSimulator/Qt5Widgets.dll +0 -0
- data/platform/win32/RhoSimulator/RhoSimulator.exe +0 -0
- data/platform/win32/RhoSimulator/icudt52.dll +0 -0
- data/platform/win32/RhoSimulator/icuin52.dll +0 -0
- data/platform/win32/RhoSimulator/icuuc52.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qgif.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qico.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qjpeg.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qmng.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qsvg.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qtga.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qtiff.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qwbmp.dll +0 -0
- data/platform/win32/RhoSimulator/libEGL.dll +0 -0
- data/platform/win32/RhoSimulator/libGLESv2.dll +0 -0
- data/platform/win32/RhoSimulator/libeay32.dll +0 -0
- data/platform/win32/RhoSimulator/msvcp110.dll +0 -0
- data/platform/win32/RhoSimulator/msvcr110.dll +0 -0
- data/platform/win32/RhoSimulator/platforms/qwindows.dll +0 -0
- data/platform/win32/RhoSimulator/ssleay32.dll +0 -0
- data/platform/win32/RhoSimulator/vccorlib110.dll +0 -0
- data/platform/win32/RhoSimulator/vcomp110.dll +0 -0
@@ -0,0 +1,418 @@
|
|
1
|
+
#ifndef BIGUNSIGNED_H
|
2
|
+
#define BIGUNSIGNED_H
|
3
|
+
|
4
|
+
#include "NumberlikeArray.hh"
|
5
|
+
|
6
|
+
/* A BigUnsigned object represents a nonnegative integer of size limited only by
|
7
|
+
* available memory. BigUnsigneds support most mathematical operators and can
|
8
|
+
* be converted to and from most primitive integer types.
|
9
|
+
*
|
10
|
+
* The number is stored as a NumberlikeArray of unsigned longs as if it were
|
11
|
+
* written in base 256^sizeof(unsigned long). The least significant block is
|
12
|
+
* first, and the length is such that the most significant block is nonzero. */
|
13
|
+
class BigUnsigned : protected NumberlikeArray<unsigned long> {
|
14
|
+
|
15
|
+
public:
|
16
|
+
// Enumeration for the result of a comparison.
|
17
|
+
enum CmpRes { less = -1, equal = 0, greater = 1 };
|
18
|
+
|
19
|
+
// BigUnsigneds are built with a Blk type of unsigned long.
|
20
|
+
typedef unsigned long Blk;
|
21
|
+
|
22
|
+
typedef NumberlikeArray<Blk>::Index Index;
|
23
|
+
using NumberlikeArray<Blk>::N;
|
24
|
+
|
25
|
+
protected:
|
26
|
+
// Creates a BigUnsigned with a capacity; for internal use.
|
27
|
+
BigUnsigned(int, Index c) : NumberlikeArray<Blk>(0, c) {}
|
28
|
+
|
29
|
+
// Decreases len to eliminate any leading zero blocks.
|
30
|
+
void zapLeadingZeros() {
|
31
|
+
while (len > 0 && blk[len - 1] == 0)
|
32
|
+
len--;
|
33
|
+
}
|
34
|
+
|
35
|
+
public:
|
36
|
+
// Constructs zero.
|
37
|
+
BigUnsigned() : NumberlikeArray<Blk>() {}
|
38
|
+
|
39
|
+
// Copy constructor
|
40
|
+
BigUnsigned(const BigUnsigned &x) : NumberlikeArray<Blk>(x) {}
|
41
|
+
|
42
|
+
// Assignment operator
|
43
|
+
void operator=(const BigUnsigned &x) {
|
44
|
+
NumberlikeArray<Blk>::operator =(x);
|
45
|
+
}
|
46
|
+
|
47
|
+
// Constructor that copies from a given array of blocks.
|
48
|
+
BigUnsigned(const Blk *b, Index blen) : NumberlikeArray<Blk>(b, blen) {
|
49
|
+
// Eliminate any leading zeros we may have been passed.
|
50
|
+
zapLeadingZeros();
|
51
|
+
}
|
52
|
+
|
53
|
+
// Destructor. NumberlikeArray does the delete for us.
|
54
|
+
~BigUnsigned() {}
|
55
|
+
|
56
|
+
// Constructors from primitive integer types
|
57
|
+
BigUnsigned(unsigned long x);
|
58
|
+
BigUnsigned( long x);
|
59
|
+
BigUnsigned(unsigned int x);
|
60
|
+
BigUnsigned( int x);
|
61
|
+
BigUnsigned(unsigned short x);
|
62
|
+
BigUnsigned( short x);
|
63
|
+
protected:
|
64
|
+
// Helpers
|
65
|
+
template <class X> void initFromPrimitive (X x);
|
66
|
+
template <class X> void initFromSignedPrimitive(X x);
|
67
|
+
public:
|
68
|
+
|
69
|
+
/* Converters to primitive integer types
|
70
|
+
* The implicit conversion operators caused trouble, so these are now
|
71
|
+
* named. */
|
72
|
+
unsigned long toUnsignedLong () const;
|
73
|
+
long toLong () const;
|
74
|
+
unsigned int toUnsignedInt () const;
|
75
|
+
int toInt () const;
|
76
|
+
unsigned short toUnsignedShort() const;
|
77
|
+
short toShort () const;
|
78
|
+
protected:
|
79
|
+
// Helpers
|
80
|
+
template <class X> X convertToSignedPrimitive() const;
|
81
|
+
template <class X> X convertToPrimitive () const;
|
82
|
+
public:
|
83
|
+
|
84
|
+
// BIT/BLOCK ACCESSORS
|
85
|
+
|
86
|
+
// Expose these from NumberlikeArray directly.
|
87
|
+
using NumberlikeArray<Blk>::getCapacity;
|
88
|
+
using NumberlikeArray<Blk>::getLength;
|
89
|
+
|
90
|
+
/* Returns the requested block, or 0 if it is beyond the length (as if
|
91
|
+
* the number had 0s infinitely to the left). */
|
92
|
+
Blk getBlock(Index i) const { return i >= len ? 0 : blk[i]; }
|
93
|
+
/* Sets the requested block. The number grows or shrinks as necessary. */
|
94
|
+
void setBlock(Index i, Blk newBlock);
|
95
|
+
|
96
|
+
// The number is zero if and only if the canonical length is zero.
|
97
|
+
bool isZero() const { return NumberlikeArray<Blk>::isEmpty(); }
|
98
|
+
|
99
|
+
/* Returns the length of the number in bits, i.e., zero if the number
|
100
|
+
* is zero and otherwise one more than the largest value of bi for
|
101
|
+
* which getBit(bi) returns true. */
|
102
|
+
Index bitLength() const;
|
103
|
+
/* Get the state of bit bi, which has value 2^bi. Bits beyond the
|
104
|
+
* number's length are considered to be 0. */
|
105
|
+
bool getBit(Index bi) const {
|
106
|
+
return (getBlock(bi / N) & (Blk(1) << (bi % N))) != 0;
|
107
|
+
}
|
108
|
+
/* Sets the state of bit bi to newBit. The number grows or shrinks as
|
109
|
+
* necessary. */
|
110
|
+
void setBit(Index bi, bool newBit);
|
111
|
+
|
112
|
+
// COMPARISONS
|
113
|
+
|
114
|
+
// Compares this to x like Perl's <=>
|
115
|
+
CmpRes compareTo(const BigUnsigned &x) const;
|
116
|
+
|
117
|
+
// Ordinary comparison operators
|
118
|
+
bool operator ==(const BigUnsigned &x) const {
|
119
|
+
return NumberlikeArray<Blk>::operator ==(x);
|
120
|
+
}
|
121
|
+
bool operator !=(const BigUnsigned &x) const {
|
122
|
+
return NumberlikeArray<Blk>::operator !=(x);
|
123
|
+
}
|
124
|
+
bool operator < (const BigUnsigned &x) const { return compareTo(x) == less ; }
|
125
|
+
bool operator <=(const BigUnsigned &x) const { return compareTo(x) != greater; }
|
126
|
+
bool operator >=(const BigUnsigned &x) const { return compareTo(x) != less ; }
|
127
|
+
bool operator > (const BigUnsigned &x) const { return compareTo(x) == greater; }
|
128
|
+
|
129
|
+
/*
|
130
|
+
* BigUnsigned and BigInteger both provide three kinds of operators.
|
131
|
+
* Here ``big-integer'' refers to BigInteger or BigUnsigned.
|
132
|
+
*
|
133
|
+
* (1) Overloaded ``return-by-value'' operators:
|
134
|
+
* +, -, *, /, %, unary -, &, |, ^, <<, >>.
|
135
|
+
* Big-integer code using these operators looks identical to code using
|
136
|
+
* the primitive integer types. These operators take one or two
|
137
|
+
* big-integer inputs and return a big-integer result, which can then
|
138
|
+
* be assigned to a BigInteger variable or used in an expression.
|
139
|
+
* Example:
|
140
|
+
* BigInteger a(1), b = 1;
|
141
|
+
* BigInteger c = a + b;
|
142
|
+
*
|
143
|
+
* (2) Overloaded assignment operators:
|
144
|
+
* +=, -=, *=, /=, %=, flipSign, &=, |=, ^=, <<=, >>=, ++, --.
|
145
|
+
* Again, these are used on big integers just like on ints. They take
|
146
|
+
* one writable big integer that both provides an operand and receives a
|
147
|
+
* result. Most also take a second read-only operand.
|
148
|
+
* Example:
|
149
|
+
* BigInteger a(1), b(1);
|
150
|
+
* a += b;
|
151
|
+
*
|
152
|
+
* (3) Copy-less operations: `add', `subtract', etc.
|
153
|
+
* These named methods take operands as arguments and store the result
|
154
|
+
* in the receiver (*this), avoiding unnecessary copies and allocations.
|
155
|
+
* `divideWithRemainder' is special: it both takes the dividend from and
|
156
|
+
* stores the remainder into the receiver, and it takes a separate
|
157
|
+
* object in which to store the quotient. NOTE: If you are wondering
|
158
|
+
* why these don't return a value, you probably mean to use the
|
159
|
+
* overloaded return-by-value operators instead.
|
160
|
+
*
|
161
|
+
* Examples:
|
162
|
+
* BigInteger a(43), b(7), c, d;
|
163
|
+
*
|
164
|
+
* c = a + b; // Now c == 50.
|
165
|
+
* c.add(a, b); // Same effect but without the two copies.
|
166
|
+
*
|
167
|
+
* c.divideWithRemainder(b, d);
|
168
|
+
* // 50 / 7; now d == 7 (quotient) and c == 1 (remainder).
|
169
|
+
*
|
170
|
+
* // ``Aliased'' calls now do the right thing using a temporary
|
171
|
+
* // copy, but see note on `divideWithRemainder'.
|
172
|
+
* a.add(a, b);
|
173
|
+
*/
|
174
|
+
|
175
|
+
// COPY-LESS OPERATIONS
|
176
|
+
|
177
|
+
// These 8: Arguments are read-only operands, result is saved in *this.
|
178
|
+
void add(const BigUnsigned &a, const BigUnsigned &b);
|
179
|
+
void subtract(const BigUnsigned &a, const BigUnsigned &b);
|
180
|
+
void multiply(const BigUnsigned &a, const BigUnsigned &b);
|
181
|
+
void bitAnd(const BigUnsigned &a, const BigUnsigned &b);
|
182
|
+
void bitOr(const BigUnsigned &a, const BigUnsigned &b);
|
183
|
+
void bitXor(const BigUnsigned &a, const BigUnsigned &b);
|
184
|
+
/* Negative shift amounts translate to opposite-direction shifts,
|
185
|
+
* except for -2^(8*sizeof(int)-1) which is unimplemented. */
|
186
|
+
void bitShiftLeft(const BigUnsigned &a, int b);
|
187
|
+
void bitShiftRight(const BigUnsigned &a, int b);
|
188
|
+
|
189
|
+
/* `a.divideWithRemainder(b, q)' is like `q = a / b, a %= b'.
|
190
|
+
* / and % use semantics similar to Knuth's, which differ from the
|
191
|
+
* primitive integer semantics under division by zero. See the
|
192
|
+
* implementation in BigUnsigned.cc for details.
|
193
|
+
* `a.divideWithRemainder(b, a)' throws an exception: it doesn't make
|
194
|
+
* sense to write quotient and remainder into the same variable. */
|
195
|
+
void divideWithRemainder(const BigUnsigned &b, BigUnsigned &q);
|
196
|
+
|
197
|
+
/* `divide' and `modulo' are no longer offered. Use
|
198
|
+
* `divideWithRemainder' instead. */
|
199
|
+
|
200
|
+
// OVERLOADED RETURN-BY-VALUE OPERATORS
|
201
|
+
BigUnsigned operator +(const BigUnsigned &x) const;
|
202
|
+
BigUnsigned operator -(const BigUnsigned &x) const;
|
203
|
+
BigUnsigned operator *(const BigUnsigned &x) const;
|
204
|
+
BigUnsigned operator /(const BigUnsigned &x) const;
|
205
|
+
BigUnsigned operator %(const BigUnsigned &x) const;
|
206
|
+
/* OK, maybe unary minus could succeed in one case, but it really
|
207
|
+
* shouldn't be used, so it isn't provided. */
|
208
|
+
BigUnsigned operator &(const BigUnsigned &x) const;
|
209
|
+
BigUnsigned operator |(const BigUnsigned &x) const;
|
210
|
+
BigUnsigned operator ^(const BigUnsigned &x) const;
|
211
|
+
BigUnsigned operator <<(int b) const;
|
212
|
+
BigUnsigned operator >>(int b) const;
|
213
|
+
|
214
|
+
// OVERLOADED ASSIGNMENT OPERATORS
|
215
|
+
void operator +=(const BigUnsigned &x);
|
216
|
+
void operator -=(const BigUnsigned &x);
|
217
|
+
void operator *=(const BigUnsigned &x);
|
218
|
+
void operator /=(const BigUnsigned &x);
|
219
|
+
void operator %=(const BigUnsigned &x);
|
220
|
+
void operator &=(const BigUnsigned &x);
|
221
|
+
void operator |=(const BigUnsigned &x);
|
222
|
+
void operator ^=(const BigUnsigned &x);
|
223
|
+
void operator <<=(int b);
|
224
|
+
void operator >>=(int b);
|
225
|
+
|
226
|
+
/* INCREMENT/DECREMENT OPERATORS
|
227
|
+
* To discourage messy coding, these do not return *this, so prefix
|
228
|
+
* and postfix behave the same. */
|
229
|
+
void operator ++( );
|
230
|
+
void operator ++(int);
|
231
|
+
void operator --( );
|
232
|
+
void operator --(int);
|
233
|
+
|
234
|
+
// Helper function that needs access to BigUnsigned internals
|
235
|
+
friend Blk getShiftedBlock(const BigUnsigned &num, Index x,
|
236
|
+
unsigned int y);
|
237
|
+
|
238
|
+
// See BigInteger.cc.
|
239
|
+
template <class X>
|
240
|
+
friend X convertBigUnsignedToPrimitiveAccess(const BigUnsigned &a);
|
241
|
+
};
|
242
|
+
|
243
|
+
/* Implementing the return-by-value and assignment operators in terms of the
|
244
|
+
* copy-less operations. The copy-less operations are responsible for making
|
245
|
+
* any necessary temporary copies to work around aliasing. */
|
246
|
+
|
247
|
+
inline BigUnsigned BigUnsigned::operator +(const BigUnsigned &x) const {
|
248
|
+
BigUnsigned ans;
|
249
|
+
ans.add(*this, x);
|
250
|
+
return ans;
|
251
|
+
}
|
252
|
+
inline BigUnsigned BigUnsigned::operator -(const BigUnsigned &x) const {
|
253
|
+
BigUnsigned ans;
|
254
|
+
ans.subtract(*this, x);
|
255
|
+
return ans;
|
256
|
+
}
|
257
|
+
inline BigUnsigned BigUnsigned::operator *(const BigUnsigned &x) const {
|
258
|
+
BigUnsigned ans;
|
259
|
+
ans.multiply(*this, x);
|
260
|
+
return ans;
|
261
|
+
}
|
262
|
+
inline BigUnsigned BigUnsigned::operator /(const BigUnsigned &x) const {
|
263
|
+
if (x.isZero()) throw "BigUnsigned::operator /: division by zero";
|
264
|
+
BigUnsigned q, r;
|
265
|
+
r = *this;
|
266
|
+
r.divideWithRemainder(x, q);
|
267
|
+
return q;
|
268
|
+
}
|
269
|
+
inline BigUnsigned BigUnsigned::operator %(const BigUnsigned &x) const {
|
270
|
+
if (x.isZero()) throw "BigUnsigned::operator %: division by zero";
|
271
|
+
BigUnsigned q, r;
|
272
|
+
r = *this;
|
273
|
+
r.divideWithRemainder(x, q);
|
274
|
+
return r;
|
275
|
+
}
|
276
|
+
inline BigUnsigned BigUnsigned::operator &(const BigUnsigned &x) const {
|
277
|
+
BigUnsigned ans;
|
278
|
+
ans.bitAnd(*this, x);
|
279
|
+
return ans;
|
280
|
+
}
|
281
|
+
inline BigUnsigned BigUnsigned::operator |(const BigUnsigned &x) const {
|
282
|
+
BigUnsigned ans;
|
283
|
+
ans.bitOr(*this, x);
|
284
|
+
return ans;
|
285
|
+
}
|
286
|
+
inline BigUnsigned BigUnsigned::operator ^(const BigUnsigned &x) const {
|
287
|
+
BigUnsigned ans;
|
288
|
+
ans.bitXor(*this, x);
|
289
|
+
return ans;
|
290
|
+
}
|
291
|
+
inline BigUnsigned BigUnsigned::operator <<(int b) const {
|
292
|
+
BigUnsigned ans;
|
293
|
+
ans.bitShiftLeft(*this, b);
|
294
|
+
return ans;
|
295
|
+
}
|
296
|
+
inline BigUnsigned BigUnsigned::operator >>(int b) const {
|
297
|
+
BigUnsigned ans;
|
298
|
+
ans.bitShiftRight(*this, b);
|
299
|
+
return ans;
|
300
|
+
}
|
301
|
+
|
302
|
+
inline void BigUnsigned::operator +=(const BigUnsigned &x) {
|
303
|
+
add(*this, x);
|
304
|
+
}
|
305
|
+
inline void BigUnsigned::operator -=(const BigUnsigned &x) {
|
306
|
+
subtract(*this, x);
|
307
|
+
}
|
308
|
+
inline void BigUnsigned::operator *=(const BigUnsigned &x) {
|
309
|
+
multiply(*this, x);
|
310
|
+
}
|
311
|
+
inline void BigUnsigned::operator /=(const BigUnsigned &x) {
|
312
|
+
if (x.isZero()) throw "BigUnsigned::operator /=: division by zero";
|
313
|
+
/* The following technique is slightly faster than copying *this first
|
314
|
+
* when x is large. */
|
315
|
+
BigUnsigned q;
|
316
|
+
divideWithRemainder(x, q);
|
317
|
+
// *this contains the remainder, but we overwrite it with the quotient.
|
318
|
+
*this = q;
|
319
|
+
}
|
320
|
+
inline void BigUnsigned::operator %=(const BigUnsigned &x) {
|
321
|
+
if (x.isZero()) throw "BigUnsigned::operator %=: division by zero";
|
322
|
+
BigUnsigned q;
|
323
|
+
// Mods *this by x. Don't care about quotient left in q.
|
324
|
+
divideWithRemainder(x, q);
|
325
|
+
}
|
326
|
+
inline void BigUnsigned::operator &=(const BigUnsigned &x) {
|
327
|
+
bitAnd(*this, x);
|
328
|
+
}
|
329
|
+
inline void BigUnsigned::operator |=(const BigUnsigned &x) {
|
330
|
+
bitOr(*this, x);
|
331
|
+
}
|
332
|
+
inline void BigUnsigned::operator ^=(const BigUnsigned &x) {
|
333
|
+
bitXor(*this, x);
|
334
|
+
}
|
335
|
+
inline void BigUnsigned::operator <<=(int b) {
|
336
|
+
bitShiftLeft(*this, b);
|
337
|
+
}
|
338
|
+
inline void BigUnsigned::operator >>=(int b) {
|
339
|
+
bitShiftRight(*this, b);
|
340
|
+
}
|
341
|
+
|
342
|
+
/* Templates for conversions of BigUnsigned to and from primitive integers.
|
343
|
+
* BigInteger.cc needs to instantiate convertToPrimitive, and the uses in
|
344
|
+
* BigUnsigned.cc didn't do the trick; I think g++ inlined convertToPrimitive
|
345
|
+
* instead of generating linkable instantiations. So for consistency, I put
|
346
|
+
* all the templates here. */
|
347
|
+
|
348
|
+
// CONSTRUCTION FROM PRIMITIVE INTEGERS
|
349
|
+
|
350
|
+
/* Initialize this BigUnsigned from the given primitive integer. The same
|
351
|
+
* pattern works for all primitive integer types, so I put it into a template to
|
352
|
+
* reduce code duplication. (Don't worry: this is protected and we instantiate
|
353
|
+
* it only with primitive integer types.) Type X could be signed, but x is
|
354
|
+
* known to be nonnegative. */
|
355
|
+
template <class X>
|
356
|
+
void BigUnsigned::initFromPrimitive(X x) {
|
357
|
+
if (x == 0)
|
358
|
+
; // NumberlikeArray already initialized us to zero.
|
359
|
+
else {
|
360
|
+
// Create a single block. blk is NULL; no need to delete it.
|
361
|
+
cap = 1;
|
362
|
+
blk = new Blk[1];
|
363
|
+
len = 1;
|
364
|
+
blk[0] = Blk(x);
|
365
|
+
}
|
366
|
+
}
|
367
|
+
|
368
|
+
/* Ditto, but first check that x is nonnegative. I could have put the check in
|
369
|
+
* initFromPrimitive and let the compiler optimize it out for unsigned-type
|
370
|
+
* instantiations, but I wanted to avoid the warning stupidly issued by g++ for
|
371
|
+
* a condition that is constant in *any* instantiation, even if not in all. */
|
372
|
+
template <class X>
|
373
|
+
void BigUnsigned::initFromSignedPrimitive(X x) {
|
374
|
+
if (x < 0)
|
375
|
+
throw "BigUnsigned constructor: "
|
376
|
+
"Cannot construct a BigUnsigned from a negative number";
|
377
|
+
else
|
378
|
+
initFromPrimitive(x);
|
379
|
+
}
|
380
|
+
|
381
|
+
// CONVERSION TO PRIMITIVE INTEGERS
|
382
|
+
|
383
|
+
/* Template with the same idea as initFromPrimitive. This might be slightly
|
384
|
+
* slower than the previous version with the masks, but it's much shorter and
|
385
|
+
* clearer, which is the library's stated goal. */
|
386
|
+
template <class X>
|
387
|
+
X BigUnsigned::convertToPrimitive() const {
|
388
|
+
if (len == 0)
|
389
|
+
// The number is zero; return zero.
|
390
|
+
return 0;
|
391
|
+
else if (len == 1) {
|
392
|
+
// The single block might fit in an X. Try the conversion.
|
393
|
+
X x = X(blk[0]);
|
394
|
+
// Make sure the result accurately represents the block.
|
395
|
+
if (Blk(x) == blk[0])
|
396
|
+
// Successful conversion.
|
397
|
+
return x;
|
398
|
+
// Otherwise fall through.
|
399
|
+
}
|
400
|
+
throw "BigUnsigned::to<Primitive>: "
|
401
|
+
"Value is too big to fit in the requested type";
|
402
|
+
}
|
403
|
+
|
404
|
+
/* Wrap the above in an x >= 0 test to make sure we got a nonnegative result,
|
405
|
+
* not a negative one that happened to convert back into the correct nonnegative
|
406
|
+
* one. (E.g., catch incorrect conversion of 2^31 to the long -2^31.) Again,
|
407
|
+
* separated to avoid a g++ warning. */
|
408
|
+
template <class X>
|
409
|
+
X BigUnsigned::convertToSignedPrimitive() const {
|
410
|
+
X x = convertToPrimitive<X>();
|
411
|
+
if (x >= 0)
|
412
|
+
return x;
|
413
|
+
else
|
414
|
+
throw "BigUnsigned::to(Primitive): "
|
415
|
+
"Value is too big to fit in the requested type";
|
416
|
+
}
|
417
|
+
|
418
|
+
#endif
|
@@ -0,0 +1,125 @@
|
|
1
|
+
#include "BigUnsignedInABase.hh"
|
2
|
+
|
3
|
+
BigUnsignedInABase::BigUnsignedInABase(const Digit *d, Index l, Base base)
|
4
|
+
: NumberlikeArray<Digit>(d, l), base(base) {
|
5
|
+
// Check the base
|
6
|
+
if (base < 2)
|
7
|
+
throw "BigUnsignedInABase::BigUnsignedInABase(const Digit *, Index, Base): The base must be at least 2";
|
8
|
+
|
9
|
+
// Validate the digits.
|
10
|
+
for (Index i = 0; i < l; i++)
|
11
|
+
if (blk[i] >= base)
|
12
|
+
throw "BigUnsignedInABase::BigUnsignedInABase(const Digit *, Index, Base): A digit is too large for the specified base";
|
13
|
+
|
14
|
+
// Eliminate any leading zeros we may have been passed.
|
15
|
+
zapLeadingZeros();
|
16
|
+
}
|
17
|
+
|
18
|
+
namespace {
|
19
|
+
unsigned int bitLen(unsigned int x) {
|
20
|
+
unsigned int len = 0;
|
21
|
+
while (x > 0) {
|
22
|
+
x >>= 1;
|
23
|
+
len++;
|
24
|
+
}
|
25
|
+
return len;
|
26
|
+
}
|
27
|
+
unsigned int ceilingDiv(unsigned int a, unsigned int b) {
|
28
|
+
return (a + b - 1) / b;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
BigUnsignedInABase::BigUnsignedInABase(const BigUnsigned &x, Base base) {
|
33
|
+
// Check the base
|
34
|
+
if (base < 2)
|
35
|
+
throw "BigUnsignedInABase(BigUnsigned, Base): The base must be at least 2";
|
36
|
+
this->base = base;
|
37
|
+
|
38
|
+
// Get an upper bound on how much space we need
|
39
|
+
int maxBitLenOfX = x.getLength() * BigUnsigned::N;
|
40
|
+
int minBitsPerDigit = bitLen(base) - 1;
|
41
|
+
int maxDigitLenOfX = ceilingDiv(maxBitLenOfX, minBitsPerDigit);
|
42
|
+
len = maxDigitLenOfX; // Another change to comply with `staying in bounds'.
|
43
|
+
allocate(len); // Get the space
|
44
|
+
|
45
|
+
BigUnsigned x2(x), buBase(base);
|
46
|
+
Index digitNum = 0;
|
47
|
+
|
48
|
+
while (!x2.isZero()) {
|
49
|
+
// Get last digit. This is like `lastDigit = x2 % buBase, x2 /= buBase'.
|
50
|
+
BigUnsigned lastDigit(x2);
|
51
|
+
lastDigit.divideWithRemainder(buBase, x2);
|
52
|
+
// Save the digit.
|
53
|
+
blk[digitNum] = lastDigit.toUnsignedShort();
|
54
|
+
// Move on. We can't run out of room: we figured it out above.
|
55
|
+
digitNum++;
|
56
|
+
}
|
57
|
+
|
58
|
+
// Save the actual length.
|
59
|
+
len = digitNum;
|
60
|
+
}
|
61
|
+
|
62
|
+
BigUnsignedInABase::operator BigUnsigned() const {
|
63
|
+
BigUnsigned ans(0), buBase(base), temp;
|
64
|
+
Index digitNum = len;
|
65
|
+
while (digitNum > 0) {
|
66
|
+
digitNum--;
|
67
|
+
temp.multiply(ans, buBase);
|
68
|
+
ans.add(temp, BigUnsigned(blk[digitNum]));
|
69
|
+
}
|
70
|
+
return ans;
|
71
|
+
}
|
72
|
+
|
73
|
+
BigUnsignedInABase::BigUnsignedInABase(const std::string &s, Base base) {
|
74
|
+
// Check the base.
|
75
|
+
if (base > 36)
|
76
|
+
throw "BigUnsignedInABase(std::string, Base): The default string conversion routines use the symbol set 0-9, A-Z and therefore support only up to base 36. You tried a conversion with a base over 36; write your own string conversion routine.";
|
77
|
+
// Save the base.
|
78
|
+
// This pattern is seldom seen in C++, but the analogous ``this.'' is common in Java.
|
79
|
+
this->base = base;
|
80
|
+
|
81
|
+
// `s.length()' is a `size_t', while `len' is a `NumberlikeArray::Index',
|
82
|
+
// also known as an `unsigned int'. Some compilers warn without this cast.
|
83
|
+
len = Index(s.length());
|
84
|
+
allocate(len);
|
85
|
+
|
86
|
+
Index digitNum, symbolNumInString;
|
87
|
+
for (digitNum = 0; digitNum < len; digitNum++) {
|
88
|
+
symbolNumInString = len - 1 - digitNum;
|
89
|
+
char theSymbol = s[symbolNumInString];
|
90
|
+
if (theSymbol >= '0' && theSymbol <= '9')
|
91
|
+
blk[digitNum] = theSymbol - '0';
|
92
|
+
else if (theSymbol >= 'A' && theSymbol <= 'Z')
|
93
|
+
blk[digitNum] = theSymbol - 'A' + 10;
|
94
|
+
else if (theSymbol >= 'a' && theSymbol <= 'z')
|
95
|
+
blk[digitNum] = theSymbol - 'a' + 10;
|
96
|
+
else
|
97
|
+
throw "BigUnsignedInABase(std::string, Base): Bad symbol in input. Only 0-9, A-Z, a-z are accepted.";
|
98
|
+
|
99
|
+
if (blk[digitNum] >= base)
|
100
|
+
throw "BigUnsignedInABase::BigUnsignedInABase(const Digit *, Index, Base): A digit is too large for the specified base";
|
101
|
+
}
|
102
|
+
zapLeadingZeros();
|
103
|
+
}
|
104
|
+
|
105
|
+
BigUnsignedInABase::operator std::string() const {
|
106
|
+
if (base > 36)
|
107
|
+
throw "BigUnsignedInABase ==> std::string: The default string conversion routines use the symbol set 0-9, A-Z and therefore support only up to base 36. You tried a conversion with a base over 36; write your own string conversion routine.";
|
108
|
+
if (len == 0)
|
109
|
+
return std::string("0");
|
110
|
+
// Some compilers don't have push_back, so use a char * buffer instead.
|
111
|
+
char *s = new char[len + 1];
|
112
|
+
s[len] = '\0';
|
113
|
+
Index digitNum, symbolNumInString;
|
114
|
+
for (symbolNumInString = 0; symbolNumInString < len; symbolNumInString++) {
|
115
|
+
digitNum = len - 1 - symbolNumInString;
|
116
|
+
Digit theDigit = blk[digitNum];
|
117
|
+
if (theDigit < 10)
|
118
|
+
s[symbolNumInString] = char('0' + theDigit);
|
119
|
+
else
|
120
|
+
s[symbolNumInString] = char('A' + theDigit - 10);
|
121
|
+
}
|
122
|
+
std::string s2(s);
|
123
|
+
delete [] s;
|
124
|
+
return s2;
|
125
|
+
}
|