rhodes 5.5.15 → 5.5.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (458) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +48 -13
  3. data/doc/oss/WM_CE_Installation_And_Build_Guidelines.md +1 -1
  4. data/lib/commonAPI/barcode/ext.yml +6 -2
  5. data/lib/commonAPI/barcode/ext/barcode.xml +1 -1
  6. data/lib/commonAPI/barcode/ext/build.bat +8 -0
  7. data/lib/commonAPI/barcode/ext/platform/qt/Barcode.pro +90 -0
  8. data/lib/commonAPI/barcode/ext/platform/qt/Rakefile +35 -0
  9. data/lib/commonAPI/barcode/ext/platform/qt/resources/barcode.qrc +10 -0
  10. data/lib/commonAPI/barcode/ext/platform/qt/resources/buttonBack.png +0 -0
  11. data/lib/commonAPI/barcode/ext/platform/qt/resources/buttonRetry.png +0 -0
  12. data/lib/commonAPI/barcode/ext/platform/qt/resources/buttonSave.png +0 -0
  13. data/lib/commonAPI/barcode/ext/platform/qt/resources/scanner_sound.wav +0 -0
  14. data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeController.cpp +40 -0
  15. data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeController.h +57 -0
  16. data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeDialogBuilder.h +52 -0
  17. data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeDialogView.cpp +175 -0
  18. data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeDialogView.h +68 -0
  19. data/lib/commonAPI/barcode/ext/platform/qt/src/Barcode_impl.cpp +109 -0
  20. data/lib/commonAPI/barcode/ext/platform/qt/src/decoderthread.cpp +39 -0
  21. data/lib/commonAPI/barcode/ext/platform/qt/src/decoderthread.h +29 -0
  22. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/CameraImageWrapper.cpp +131 -0
  23. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/CameraImageWrapper.h +39 -0
  24. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/QZXing.h +173 -0
  25. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/QZXing.pri +277 -0
  26. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/QZXing_global.h +13 -0
  27. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/imagehandler.cpp +45 -0
  28. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/imagehandler.h +23 -0
  29. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/qzxing.cpp +303 -0
  30. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigInteger.cc +405 -0
  31. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigInteger.hh +215 -0
  32. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigIntegerAlgorithms.cc +70 -0
  33. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigIntegerAlgorithms.hh +25 -0
  34. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigIntegerLibrary.hh +8 -0
  35. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigIntegerUtils.cc +50 -0
  36. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigIntegerUtils.hh +72 -0
  37. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigUnsigned.cc +697 -0
  38. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigUnsigned.hh +418 -0
  39. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigUnsignedInABase.cc +125 -0
  40. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/BigUnsignedInABase.hh +122 -0
  41. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/ChangeLog +146 -0
  42. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/NumberlikeArray.hh +177 -0
  43. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/bigint/README +71 -0
  44. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/win32/zxing/iconv.h +14 -0
  45. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/win32/zxing/msvc/stdint.h +247 -0
  46. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/win32/zxing/win_iconv.c +2035 -0
  47. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/BarcodeFormat.cpp +40 -0
  48. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/BarcodeFormat.h +60 -0
  49. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Binarizer.cpp +45 -0
  50. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Binarizer.h +50 -0
  51. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/BinaryBitmap.cpp +70 -0
  52. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/BinaryBitmap.h +56 -0
  53. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ChecksumException.cpp +28 -0
  54. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ChecksumException.h +34 -0
  55. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/DecodeHints.cpp +148 -0
  56. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/DecodeHints.h +85 -0
  57. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Exception.cpp +43 -0
  58. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Exception.h +51 -0
  59. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/FormatException.cpp +41 -0
  60. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/FormatException.h +37 -0
  61. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/IllegalStateException.h +35 -0
  62. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/InvertedLuminanceSource.cpp +68 -0
  63. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/InvertedLuminanceSource.h +48 -0
  64. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/LuminanceSource.cpp +86 -0
  65. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/LuminanceSource.h +59 -0
  66. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/MultiFormatReader.cpp +124 -0
  67. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/MultiFormatReader.h +48 -0
  68. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/NotFoundException.h +35 -0
  69. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Reader.cpp +31 -0
  70. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Reader.h +40 -0
  71. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ReaderException.h +37 -0
  72. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Result.cpp +66 -0
  73. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/Result.h +57 -0
  74. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ResultIO.cpp +34 -0
  75. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ResultPoint.cpp +108 -0
  76. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ResultPoint.h +55 -0
  77. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ResultPointCallback.cpp +26 -0
  78. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ResultPointCallback.h +39 -0
  79. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/WriterException.h +17 -0
  80. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ZXing.h +140 -0
  81. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/AztecDetectorResult.cpp +54 -0
  82. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/AztecDetectorResult.h +48 -0
  83. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/AztecReader.cpp +68 -0
  84. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/AztecReader.h +49 -0
  85. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/decoder/AztecDecoder.cpp +495 -0
  86. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/decoder/Decoder.h +69 -0
  87. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/detector/AztecDetector.cpp +548 -0
  88. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/aztec/detector/Detector.h +92 -0
  89. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/Array.h +173 -0
  90. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitArray.cpp +237 -0
  91. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitArray.h +97 -0
  92. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitArrayIO.cpp +31 -0
  93. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitMatrix.cpp +143 -0
  94. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitMatrix.h +91 -0
  95. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitSource.cpp +76 -0
  96. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/BitSource.h +74 -0
  97. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/CharacterSetECI.cpp +104 -0
  98. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/CharacterSetECI.h +53 -0
  99. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/Counted.h +140 -0
  100. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/DecoderResult.cpp +51 -0
  101. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/DecoderResult.h +54 -0
  102. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/DetectorResult.cpp +39 -0
  103. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/DetectorResult.h +43 -0
  104. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GlobalHistogramBinarizer.cpp +212 -0
  105. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GlobalHistogramBinarizer.h +48 -0
  106. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GreyscaleLuminanceSource.cpp +80 -0
  107. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GreyscaleLuminanceSource.h +53 -0
  108. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GreyscaleRotatedLuminanceSource.cpp +81 -0
  109. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GreyscaleRotatedLuminanceSource.h +46 -0
  110. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GridSampler.cpp +122 -0
  111. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/GridSampler.h +45 -0
  112. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/HybridBinarizer.cpp +226 -0
  113. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/HybridBinarizer.h +67 -0
  114. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/IllegalArgumentException.cpp +27 -0
  115. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/IllegalArgumentException.h +36 -0
  116. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/PerspectiveTransform.cpp +107 -0
  117. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/PerspectiveTransform.h +49 -0
  118. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/Point.h +47 -0
  119. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/Str.cpp +61 -0
  120. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/Str.h +51 -0
  121. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/StringUtils.cpp +198 -0
  122. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/StringUtils.h +52 -0
  123. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/detector/JavaMath.h +43 -0
  124. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/detector/MathUtils.h +57 -0
  125. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/detector/MonochromeRectangleDetector.cpp +175 -0
  126. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/detector/MonochromeRectangleDetector.h +62 -0
  127. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/detector/WhiteRectangleDetector.cpp +330 -0
  128. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/detector/WhiteRectangleDetector.h +59 -0
  129. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/GenericGF.cpp +150 -0
  130. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/GenericGF.h +73 -0
  131. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/GenericGFPoly.cpp +218 -0
  132. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/GenericGFPoly.h +56 -0
  133. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/ReedSolomonDecoder.cpp +174 -0
  134. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/ReedSolomonDecoder.h +49 -0
  135. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/ReedSolomonException.cpp +30 -0
  136. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/common/reedsolomon/ReedSolomonException.h +33 -0
  137. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/DataMatrixReader.cpp +54 -0
  138. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/DataMatrixReader.h +45 -0
  139. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/DataMatrixVersion.cpp +199 -0
  140. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/Version.h +87 -0
  141. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/BitMatrixParser.h +59 -0
  142. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/DataBlock.h +49 -0
  143. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/DataMatrixBitMatrixParser.cpp +361 -0
  144. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/DataMatrixDataBlock.cpp +113 -0
  145. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/DataMatrixDecodedBitStreamParser.cpp +416 -0
  146. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/DataMatrixDecoder.cpp +93 -0
  147. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/DecodedBitStreamParser.h +104 -0
  148. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/decoder/Decoder.h +49 -0
  149. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/detector/CornerPoint.h +43 -0
  150. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/detector/DataMatrixCornerPoint.cpp +46 -0
  151. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/detector/DataMatrixDetector.cpp +447 -0
  152. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/detector/DataMatrixDetectorException.cpp +23 -0
  153. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/detector/Detector.h +94 -0
  154. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/datamatrix/detector/DetectorException.h +23 -0
  155. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/ByQuadrantReader.cpp +75 -0
  156. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/ByQuadrantReader.h +42 -0
  157. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/GenericMultipleBarcodeReader.cpp +137 -0
  158. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/GenericMultipleBarcodeReader.h +51 -0
  159. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/MultipleBarcodeReader.cpp +29 -0
  160. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/MultipleBarcodeReader.h +41 -0
  161. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/qrcode/QRCodeMultiReader.cpp +58 -0
  162. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/qrcode/QRCodeMultiReader.h +36 -0
  163. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/qrcode/detector/MultiDetector.cpp +47 -0
  164. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/qrcode/detector/MultiDetector.h +37 -0
  165. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/qrcode/detector/MultiFinderPatternFinder.cpp +236 -0
  166. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h +47 -0
  167. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/CodaBarReader.cpp +340 -0
  168. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/CodaBarReader.h +57 -0
  169. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/Code128Reader.cpp +497 -0
  170. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/Code128Reader.h +48 -0
  171. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/Code39Reader.cpp +329 -0
  172. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/Code39Reader.h +63 -0
  173. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/Code93Reader.cpp +293 -0
  174. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/Code93Reader.h +58 -0
  175. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/EAN13Reader.cpp +85 -0
  176. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/EAN13Reader.h +49 -0
  177. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/EAN8Reader.cpp +65 -0
  178. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/EAN8Reader.h +47 -0
  179. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/ITFReader.cpp +337 -0
  180. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/ITFReader.h +54 -0
  181. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/MultiFormatOneDReader.cpp +96 -0
  182. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/MultiFormatOneDReader.h +38 -0
  183. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/MultiFormatUPCEANReader.cpp +110 -0
  184. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/MultiFormatUPCEANReader.h +41 -0
  185. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/OneDReader.cpp +228 -0
  186. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/OneDReader.h +81 -0
  187. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/OneDResultPoint.cpp +28 -0
  188. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/OneDResultPoint.h +35 -0
  189. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/UPCAReader.cpp +71 -0
  190. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/UPCAReader.h +50 -0
  191. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/UPCEANReader.cpp +309 -0
  192. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/UPCEANReader.h +88 -0
  193. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/UPCEReader.cpp +146 -0
  194. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/oned/UPCEReader.h +47 -0
  195. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/PDF417Reader.cpp +170 -0
  196. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/PDF417Reader.h +49 -0
  197. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/BitMatrixParser.h +84 -0
  198. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/DecodedBitStreamParser.h +84 -0
  199. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/Decoder.h +62 -0
  200. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/PDF417BitMatrixParser.cpp +997 -0
  201. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/PDF417DecodedBitStreamParser.cpp +563 -0
  202. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/PDF417Decoder.cpp +118 -0
  203. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/ec/ErrorCorrection.cpp +214 -0
  204. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/ec/ErrorCorrection.h +71 -0
  205. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/ec/ModulusGF.cpp +120 -0
  206. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/ec/ModulusGF.h +72 -0
  207. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/ec/ModulusPoly.cpp +284 -0
  208. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/decoder/ec/ModulusPoly.h +68 -0
  209. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/detector/Detector.h +106 -0
  210. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/detector/LinesSampler.cpp +719 -0
  211. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/detector/LinesSampler.h +122 -0
  212. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/pdf417/detector/PDF417Detector.cpp +664 -0
  213. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/ErrorCorrectionLevel.h +55 -0
  214. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/FormatInformation.h +54 -0
  215. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/QRCodeReader.cpp +52 -0
  216. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/QRCodeReader.h +48 -0
  217. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/QRErrorCorrectionLevel.cpp +70 -0
  218. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/QRFormatInformation.cpp +117 -0
  219. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/QRVersion.cpp +566 -0
  220. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/Version.h +86 -0
  221. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/BitMatrixParser.h +56 -0
  222. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/DataBlock.h +50 -0
  223. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/DataMask.h +50 -0
  224. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/DecodedBitStreamParser.h +72 -0
  225. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/Decoder.h +46 -0
  226. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/Mode.h +68 -0
  227. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/QRBitMatrixParser.cpp +183 -0
  228. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/QRDataBlock.cpp +118 -0
  229. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/QRDataMask.cpp +159 -0
  230. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/QRDecodedBitStreamParser.cpp +433 -0
  231. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/QRDecoder.cpp +107 -0
  232. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/decoder/QRMode.cpp +118 -0
  233. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/AlignmentPattern.h +45 -0
  234. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/AlignmentPatternFinder.h +68 -0
  235. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/Detector.h +69 -0
  236. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/FinderPattern.h +48 -0
  237. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/FinderPatternFinder.h +80 -0
  238. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/FinderPatternInfo.h +47 -0
  239. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/QRAlignmentPattern.cpp +47 -0
  240. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/QRAlignmentPatternFinder.cpp +208 -0
  241. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/QRDetector.cpp +315 -0
  242. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/QRFinderPattern.cpp +69 -0
  243. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/QRFinderPatternFinder.cpp +638 -0
  244. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/qrcode/detector/QRFinderPatternInfo.cpp +41 -0
  245. data/lib/commonAPI/coreapi/ext.yml +1 -1
  246. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/network/Network.java +21 -7
  247. data/lib/commonAPI/coreapi/ext/platform/qt/coreapi.pro +10 -0
  248. data/lib/commonAPI/coreapi/ext/platform/wm/src/Registry.cpp +57 -7
  249. data/lib/commonAPI/coreapi/ext/shared/SystemImplBase.cpp +11 -0
  250. data/lib/commonAPI/coreapi/ext/shared/SystemImplBase.h +2 -0
  251. data/lib/commonAPI/coreapi/ext/shared/qt/NavbarImpl.cpp +1 -1
  252. data/lib/commonAPI/coreapi/ext/system.xml +3 -0
  253. data/lib/commonAPI/coreapi/ext/webview.xml +0 -2
  254. data/lib/commonAPI/coreapi/public/api/rhonodejsapi.js +921 -0
  255. data/lib/commonAPI/mediacapture/ext.yml +1 -0
  256. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraObject.java +3 -2
  257. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraRhoListener.java +260 -230
  258. data/lib/commonAPI/mediacapture/ext/platform/qt/MediaCapture.pro +17 -5
  259. data/lib/commonAPI/mediacapture/ext/platform/qt/resources/buttonBack.png +0 -0
  260. data/lib/commonAPI/mediacapture/ext/platform/qt/resources/mediacapture.qrc +1 -0
  261. data/lib/commonAPI/mediacapture/ext/platform/qt/src/CCameraData.cpp +11 -4
  262. data/lib/commonAPI/mediacapture/ext/platform/qt/src/CCameraData.h +4 -7
  263. data/lib/commonAPI/mediacapture/ext/platform/qt/src/CameraDialogView.h +1 -6
  264. data/lib/commonAPI/mediacapture/ext/platform/qt/src/CameraRefresher.h +54 -0
  265. data/lib/commonAPI/mediacapture/ext/platform/qt/src/Camera_impl.cpp +15 -21
  266. data/lib/commonAPI/mediacapture/ext/platform/qt/src/ImageFilenameGetterResult.h +7 -2
  267. data/lib/commonAPI/mediacapture/ext/platform/qt/src/cameradialogview.cpp +34 -32
  268. data/lib/extensions/zlib/ext/zlib.pro +11 -0
  269. data/platform/android/Rhodes/jni/src/fileapi.cpp +36 -22
  270. data/platform/iphone/Classes/SimpleMainView.m +1 -1
  271. data/platform/shared/api_generator/MethodResult.cpp +22 -7
  272. data/platform/shared/api_generator/MethodResult.h +3 -1
  273. data/platform/shared/api_generator/iphone/CMethodResult.m +6 -2
  274. data/platform/shared/api_generator/js_helpers.cpp +19 -0
  275. data/platform/shared/api_generator/js_helpers.h +23 -0
  276. data/platform/shared/common/RhoConf.cpp +0 -1
  277. data/platform/shared/common/RhoPort.h +3 -0
  278. data/platform/shared/common/RhodesApp.cpp +46 -11
  279. data/platform/shared/common/RhodesApp.h +7 -0
  280. data/platform/shared/common/RhodesAppBase.cpp +5 -1
  281. data/platform/shared/common/RhodesAppBase.h +8 -1
  282. data/platform/shared/common/ThreadQueue.h +1 -1
  283. data/platform/shared/common/map/BaseMapEngine.cpp +2 -0
  284. data/platform/shared/net/HttpServer.cpp +0 -1
  285. data/platform/shared/qt/RhoSimulator.pro +11 -0
  286. data/platform/shared/qt/RhoSimulator_dev.pro +12 -2
  287. data/platform/shared/qt/curl/curl.pro +10 -0
  288. data/platform/shared/qt/rhodes/guithreadfunchelper.h +29 -0
  289. data/platform/shared/qt/rhodes/iexecutable.h +9 -0
  290. data/platform/shared/qt/rhodes/impl/MainWindowImpl.cpp +10 -21
  291. data/platform/shared/qt/rhodes/impl/MainWindowImpl.h +1 -1
  292. data/platform/shared/qt/rhodes/impl/QtSystemImpl.cpp +15 -1
  293. data/platform/shared/qt/rhodes/impl/RhoThreadImpl.cpp +7 -7
  294. data/platform/shared/qt/rhodes/mainwindowinterface.h +12 -0
  295. data/platform/shared/qt/rhodes/newVersion/DateTimeDialog.cpp +96 -0
  296. data/platform/shared/qt/rhodes/newVersion/DateTimeDialog.h +54 -0
  297. data/platform/shared/qt/rhodes/newVersion/ExternalWebView.cpp +45 -0
  298. data/platform/shared/qt/rhodes/newVersion/ExternalWebView.h +47 -0
  299. data/platform/shared/qt/rhodes/newVersion/QWebEngineViewSelectionSuppressor.h +103 -0
  300. data/platform/shared/qt/rhodes/newVersion/QtMainWindow.cpp +1181 -0
  301. data/platform/shared/qt/rhodes/newVersion/QtMainWindow.h +194 -0
  302. data/platform/shared/qt/rhodes/newVersion/QtNativeTabBar.cpp +107 -0
  303. data/platform/shared/qt/rhodes/newVersion/QtNativeTabBar.h +40 -0
  304. data/platform/shared/qt/rhodes/newVersion/RhoNativeApiCall.cpp +51 -0
  305. data/platform/shared/qt/rhodes/newVersion/RhoNativeApiCall.h +52 -0
  306. data/platform/shared/qt/rhodes/newVersion/main.cpp +280 -0
  307. data/platform/shared/qt/rhodes/newVersion/qtwebenginepage.cpp +19 -0
  308. data/platform/shared/qt/rhodes/newVersion/qtwebenginepage.h +21 -0
  309. data/platform/shared/qt/rhodes/newVersion/qtwebengineview.cpp +6 -0
  310. data/platform/shared/qt/rhodes/newVersion/qtwebengineview.h +18 -0
  311. data/platform/shared/qt/rhodes/{DateTimeDialog.cpp → oldVersion/DateTimeDialog.cpp} +0 -0
  312. data/platform/shared/qt/rhodes/{DateTimeDialog.h → oldVersion/DateTimeDialog.h} +0 -0
  313. data/platform/shared/qt/rhodes/{DateTimeDialog.ui → oldVersion/DateTimeDialog.ui} +0 -0
  314. data/platform/shared/qt/rhodes/{ExternalWebView.cpp → oldVersion/ExternalWebView.cpp} +0 -0
  315. data/platform/shared/qt/rhodes/{ExternalWebView.h → oldVersion/ExternalWebView.h} +0 -0
  316. data/platform/shared/qt/rhodes/{ExternalWebView.ui → oldVersion/ExternalWebView.ui} +0 -0
  317. data/platform/shared/qt/rhodes/{QtMainWindow.cpp → oldVersion/QtMainWindow.cpp} +4 -1
  318. data/platform/shared/qt/rhodes/{QtMainWindow.h → oldVersion/QtMainWindow.h} +8 -5
  319. data/platform/shared/qt/rhodes/{QtMainWindow.ui → oldVersion/QtMainWindow.ui} +0 -0
  320. data/platform/shared/qt/rhodes/{QtNativeTabBar.cpp → oldVersion/QtNativeTabBar.cpp} +0 -0
  321. data/platform/shared/qt/rhodes/{QtNativeTabBar.h → oldVersion/QtNativeTabBar.h} +0 -0
  322. data/platform/shared/qt/rhodes/{QtWebInspector.cpp → oldVersion/QtWebInspector.cpp} +0 -0
  323. data/platform/shared/qt/rhodes/{QtWebInspector.h → oldVersion/QtWebInspector.h} +0 -0
  324. data/platform/shared/qt/rhodes/{QtWebInspector.ui → oldVersion/QtWebInspector.ui} +0 -0
  325. data/platform/shared/qt/rhodes/{QtWebPage.cpp → oldVersion/QtWebPage.cpp} +0 -0
  326. data/platform/shared/qt/rhodes/{QtWebPage.h → oldVersion/QtWebPage.h} +0 -0
  327. data/platform/shared/qt/rhodes/{RhoNativeApiCall.cpp → oldVersion/RhoNativeApiCall.cpp} +0 -0
  328. data/platform/shared/qt/rhodes/{RhoNativeApiCall.h → oldVersion/RhoNativeApiCall.h} +0 -0
  329. data/platform/shared/qt/rhodes/{main.cpp → oldVersion/main.cpp} +2 -0
  330. data/platform/shared/qt/rhodes/{qkineticscroller.cpp → oldVersion/qkineticscroller.cpp} +0 -0
  331. data/platform/shared/qt/rhodes/{qkineticscroller.h → oldVersion/qkineticscroller.h} +0 -0
  332. data/platform/shared/qt/rhodes/{qkineticscroller_p.h → oldVersion/qkineticscroller_p.h} +0 -0
  333. data/platform/shared/qt/rhodes/{qtflickgesture.cpp → oldVersion/qtflickgesture.cpp} +0 -0
  334. data/platform/shared/qt/rhodes/{qtflickgesture_p.h → oldVersion/qtflickgesture_p.h} +0 -0
  335. data/platform/shared/qt/rhodes/{qtscroller.cpp → oldVersion/qtscroller.cpp} +0 -0
  336. data/platform/shared/qt/rhodes/{qtscroller.h → oldVersion/qtscroller.h} +0 -0
  337. data/platform/shared/qt/rhodes/{qtscroller_p.h → oldVersion/qtscroller_p.h} +0 -0
  338. data/platform/shared/qt/rhodes/{qtscrollerfilter.cpp → oldVersion/qtscrollerfilter.cpp} +0 -0
  339. data/platform/shared/qt/rhodes/{qtscrollerfilter_p.h → oldVersion/qtscrollerfilter_p.h} +0 -0
  340. data/platform/shared/qt/rhodes/{qtscrollerproperties.cpp → oldVersion/qtscrollerproperties.cpp} +0 -0
  341. data/platform/shared/qt/rhodes/{qtscrollerproperties.h → oldVersion/qtscrollerproperties.h} +0 -0
  342. data/platform/shared/qt/rhodes/{qtscrollerproperties_p.h → oldVersion/qtscrollerproperties_p.h} +0 -0
  343. data/platform/shared/qt/rhodes/{qtscrollevent.cpp → oldVersion/qtscrollevent.cpp} +0 -0
  344. data/platform/shared/qt/rhodes/{qtscrollevent.h → oldVersion/qtscrollevent.h} +0 -0
  345. data/platform/shared/qt/rhodes/{qtscrollevent_p.h → oldVersion/qtscrollevent_p.h} +0 -0
  346. data/platform/shared/qt/rhodes/{qwebviewkineticscroller.cpp → oldVersion/qwebviewkineticscroller.cpp} +0 -0
  347. data/platform/shared/qt/rhodes/{qwebviewkineticscroller.h → oldVersion/qwebviewkineticscroller.h} +0 -0
  348. data/platform/shared/qt/rhodes/{qwebviewselectionsuppressor.h → oldVersion/qwebviewselectionsuppressor.h} +0 -0
  349. data/platform/shared/qt/rhodes/rhodes.pro +92 -47
  350. data/platform/shared/qt/rholib/rholib.pro +32 -19
  351. data/platform/shared/qt/rubylib/rubylib.pro +12 -0
  352. data/platform/shared/qt/sqlite3/sqlite3.pro +11 -1
  353. data/platform/shared/qt/syncengine/syncengine.pro +10 -0
  354. data/platform/shared/ruby/eval.c +2 -4
  355. data/platform/shared/ruby/eval_intern.h +12 -0
  356. data/platform/shared/ruby/ext/rho/extensions.c +6 -2
  357. data/platform/shared/ruby/include/ruby/missing.h +6 -4
  358. data/platform/shared/ruby/io.c +27 -0
  359. data/platform/shared/ruby/numeric.c +5 -2
  360. data/platform/shared/ruby/time.c +4 -0
  361. data/platform/shared/ruby/win32/win32 backup.c +5808 -0
  362. data/platform/shared/ruby/win32/win32.c +2254 -2131
  363. data/platform/shared/unzip/deflate.cpp +6 -1
  364. data/platform/shared/unzip/gunzip.cpp +1 -1
  365. data/platform/shared/unzip/unzip.cpp +3 -6
  366. data/platform/shared/unzip/zip.cpp +1 -25
  367. data/platform/shared/unzip/zutil.cpp +1 -1
  368. data/platform/shared/unzip/zutil.h +1 -1
  369. data/platform/win32/RhoSimulator/rho/Databases/Databases.db +0 -0
  370. data/platform/win32/RhoSimulator/rho/WebpageIcons.db +0 -0
  371. data/platform/win32/RhoSimulator/rho/rholog.txt_pos +0 -0
  372. data/platform/win32/RhoSimulator/rhosimulator/Databases/Databases.db +0 -0
  373. data/platform/win32/RhoSimulator/rhosimulator/WebpageIcons.db +0 -0
  374. data/platform/win32/RhoSimulator/rhosimulator/rholog.txt_pos +0 -0
  375. data/platform/wm/build/build_inf.js +7 -3
  376. data/platform/wm/build/wm.rake +96 -30
  377. data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +3 -1
  378. data/rakefile.rb +48 -13
  379. data/res/generators/rhogen.rb +87 -8
  380. data/res/generators/templates/api/cpp/montana_js_wrap.cpp +1 -1
  381. data/res/generators/templates/application/nodejs/main.js +501 -0
  382. data/res/generators/templates/application/nodejs/rhoapp.js +71 -0
  383. data/res/generators/templates/application/nodejs/server/app.js +19 -0
  384. data/res/generators/templates/application/nodejs/server/package.json +16 -0
  385. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap-theme.css +587 -0
  386. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap-theme.css.map +1 -0
  387. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap-theme.min.css +6 -0
  388. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap-theme.min.css.map +1 -0
  389. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap.css +6757 -0
  390. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap.css.map +1 -0
  391. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap.min.css +6 -0
  392. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/css/bootstrap.min.css.map +1 -0
  393. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot +0 -0
  394. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg +288 -0
  395. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf +0 -0
  396. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff +0 -0
  397. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2 +0 -0
  398. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/js/bootstrap.js +2377 -0
  399. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/js/bootstrap.min.js +7 -0
  400. data/res/generators/templates/application/nodejs/server/public/bootstrap-3.3.7/js/npm.js +13 -0
  401. data/res/generators/templates/application/nodejs/server/public/images/bar/back_btn.png +0 -0
  402. data/res/generators/templates/application/nodejs/server/public/images/bar/back_btn@2x.png +0 -0
  403. data/res/generators/templates/application/nodejs/server/public/images/bar/back_btn@3x.png +0 -0
  404. data/res/generators/templates/application/nodejs/server/public/images/bar/forward_btn.png +0 -0
  405. data/res/generators/templates/application/nodejs/server/public/images/bar/forward_btn@2x.png +0 -0
  406. data/res/generators/templates/application/nodejs/server/public/images/bar/forward_btn@3x.png +0 -0
  407. data/res/generators/templates/application/nodejs/server/public/images/bar/gears.png +0 -0
  408. data/res/generators/templates/application/nodejs/server/public/images/bar/gears@2x.png +0 -0
  409. data/res/generators/templates/application/nodejs/server/public/images/bar/gears@3x.png +0 -0
  410. data/res/generators/templates/application/nodejs/server/public/images/bar/home_btn.png +0 -0
  411. data/res/generators/templates/application/nodejs/server/public/images/bar/home_btn@2x.png +0 -0
  412. data/res/generators/templates/application/nodejs/server/public/images/bar/home_btn@3x.png +0 -0
  413. data/res/generators/templates/application/nodejs/server/public/images/bar/sync_btn.png +0 -0
  414. data/res/generators/templates/application/nodejs/server/public/images/bar/sync_btn@2x.png +0 -0
  415. data/res/generators/templates/application/nodejs/server/public/images/bar/sync_btn@3x.png +0 -0
  416. data/res/generators/templates/application/nodejs/server/public/jquery/jquery-3.1.1.min.js +4 -0
  417. data/res/generators/templates/application/nodejs/server/public/jquery/jquery-3.1.1.min.map +1 -0
  418. data/res/generators/templates/application/nodejs_build.yml +76 -0
  419. data/res/generators/templates/application/nodejs_rhoconfig.txt +137 -0
  420. data/version +1 -1
  421. metadata +345 -77
  422. data/platform/win32/RhoSimulator/D3Dcompiler_46.dll +0 -0
  423. data/platform/win32/RhoSimulator/Qt5Core.dll +0 -0
  424. data/platform/win32/RhoSimulator/Qt5Gui.dll +0 -0
  425. data/platform/win32/RhoSimulator/Qt5Multimedia.dll +0 -0
  426. data/platform/win32/RhoSimulator/Qt5MultimediaWidgets.dll +0 -0
  427. data/platform/win32/RhoSimulator/Qt5Network.dll +0 -0
  428. data/platform/win32/RhoSimulator/Qt5OpenGL.dll +0 -0
  429. data/platform/win32/RhoSimulator/Qt5PrintSupport.dll +0 -0
  430. data/platform/win32/RhoSimulator/Qt5Qml.dll +0 -0
  431. data/platform/win32/RhoSimulator/Qt5Quick.dll +0 -0
  432. data/platform/win32/RhoSimulator/Qt5Sensors.dll +0 -0
  433. data/platform/win32/RhoSimulator/Qt5Sql.dll +0 -0
  434. data/platform/win32/RhoSimulator/Qt5V8.dll +0 -0
  435. data/platform/win32/RhoSimulator/Qt5WebKit.dll +0 -0
  436. data/platform/win32/RhoSimulator/Qt5WebKitWidgets.dll +0 -0
  437. data/platform/win32/RhoSimulator/Qt5Widgets.dll +0 -0
  438. data/platform/win32/RhoSimulator/RhoSimulator.exe +0 -0
  439. data/platform/win32/RhoSimulator/icudt52.dll +0 -0
  440. data/platform/win32/RhoSimulator/icuin52.dll +0 -0
  441. data/platform/win32/RhoSimulator/icuuc52.dll +0 -0
  442. data/platform/win32/RhoSimulator/imageformats/qgif.dll +0 -0
  443. data/platform/win32/RhoSimulator/imageformats/qico.dll +0 -0
  444. data/platform/win32/RhoSimulator/imageformats/qjpeg.dll +0 -0
  445. data/platform/win32/RhoSimulator/imageformats/qmng.dll +0 -0
  446. data/platform/win32/RhoSimulator/imageformats/qsvg.dll +0 -0
  447. data/platform/win32/RhoSimulator/imageformats/qtga.dll +0 -0
  448. data/platform/win32/RhoSimulator/imageformats/qtiff.dll +0 -0
  449. data/platform/win32/RhoSimulator/imageformats/qwbmp.dll +0 -0
  450. data/platform/win32/RhoSimulator/libEGL.dll +0 -0
  451. data/platform/win32/RhoSimulator/libGLESv2.dll +0 -0
  452. data/platform/win32/RhoSimulator/libeay32.dll +0 -0
  453. data/platform/win32/RhoSimulator/msvcp110.dll +0 -0
  454. data/platform/win32/RhoSimulator/msvcr110.dll +0 -0
  455. data/platform/win32/RhoSimulator/platforms/qwindows.dll +0 -0
  456. data/platform/win32/RhoSimulator/ssleay32.dll +0 -0
  457. data/platform/win32/RhoSimulator/vccorlib110.dll +0 -0
  458. data/platform/win32/RhoSimulator/vcomp110.dll +0 -0
@@ -0,0 +1,118 @@
1
+ /*
2
+ * DataBlock.cpp
3
+ * zxing
4
+ *
5
+ * Created by Christian Brunschen on 19/05/2008.
6
+ * Copyright 2008 ZXing authors All rights reserved.
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+
21
+ #include <zxing/qrcode/decoder/DataBlock.h>
22
+ #include <zxing/common/IllegalArgumentException.h>
23
+
24
+ namespace zxing {
25
+ namespace qrcode {
26
+
27
+ using namespace std;
28
+
29
+ DataBlock::DataBlock(int numDataCodewords, ArrayRef<char> codewords) :
30
+ numDataCodewords_(numDataCodewords), codewords_(codewords) {
31
+ }
32
+
33
+ int DataBlock::getNumDataCodewords() {
34
+ return numDataCodewords_;
35
+ }
36
+
37
+ ArrayRef<char> DataBlock::getCodewords() {
38
+ return codewords_;
39
+ }
40
+
41
+
42
+ std::vector<Ref<DataBlock> > DataBlock::getDataBlocks(ArrayRef<char> rawCodewords, Version *version,
43
+ ErrorCorrectionLevel &ecLevel) {
44
+
45
+
46
+ // Figure out the number and size of data blocks used by this version and
47
+ // error correction level
48
+ ECBlocks &ecBlocks = version->getECBlocksForLevel(ecLevel);
49
+
50
+
51
+ // First count the total number of data blocks
52
+ int totalBlocks = 0;
53
+ vector<ECB*> ecBlockArray = ecBlocks.getECBlocks();
54
+ for (size_t i = 0; i < ecBlockArray.size(); i++) {
55
+ totalBlocks += ecBlockArray[i]->getCount();
56
+ }
57
+
58
+ // Now establish DataBlocks of the appropriate size and number of data codewords
59
+ std::vector<Ref<DataBlock> > result(totalBlocks);
60
+ int numResultBlocks = 0;
61
+ for (size_t j = 0; j < ecBlockArray.size(); j++) {
62
+ ECB *ecBlock = ecBlockArray[j];
63
+ for (int i = 0; i < ecBlock->getCount(); i++) {
64
+ int numDataCodewords = ecBlock->getDataCodewords();
65
+ int numBlockCodewords = ecBlocks.getECCodewordsPerBloc() + numDataCodewords;
66
+ ArrayRef<char> buffer(numBlockCodewords);
67
+ Ref<DataBlock> blockRef(new DataBlock(numDataCodewords, buffer));
68
+ result[numResultBlocks++] = blockRef;
69
+ }
70
+ }
71
+
72
+ // All blocks have the same amount of data, except that the last n
73
+ // (where n may be 0) have 1 more byte. Figure out where these start.
74
+ int shorterBlocksTotalCodewords = result[0]->codewords_->size();
75
+ int longerBlocksStartAt = result.size() - 1;
76
+ while (longerBlocksStartAt >= 0) {
77
+ int numCodewords = result[longerBlocksStartAt]->codewords_->size();
78
+ if (numCodewords == shorterBlocksTotalCodewords) {
79
+ break;
80
+ }
81
+ if (numCodewords != shorterBlocksTotalCodewords + 1) {
82
+ throw IllegalArgumentException("Data block sizes differ by more than 1");
83
+ }
84
+ longerBlocksStartAt--;
85
+ }
86
+ longerBlocksStartAt++;
87
+
88
+ int shorterBlocksNumDataCodewords = shorterBlocksTotalCodewords - ecBlocks.getECCodewordsPerBloc();
89
+ // The last elements of result may be 1 element longer;
90
+ // first fill out as many elements as all of them have
91
+ int rawCodewordsOffset = 0;
92
+ for (int i = 0; i < shorterBlocksNumDataCodewords; i++) {
93
+ for (int j = 0; j < numResultBlocks; j++) {
94
+ result[j]->codewords_[i] = rawCodewords[rawCodewordsOffset++];
95
+ }
96
+ }
97
+ // Fill out the last data block in the longer ones
98
+ for (int j = longerBlocksStartAt; j < numResultBlocks; j++) {
99
+ result[j]->codewords_[shorterBlocksNumDataCodewords] = rawCodewords[rawCodewordsOffset++];
100
+ }
101
+ // Now add in error correction blocks
102
+ int max = result[0]->codewords_->size();
103
+ for (int i = shorterBlocksNumDataCodewords; i < max; i++) {
104
+ for (int j = 0; j < numResultBlocks; j++) {
105
+ int iOffset = j < longerBlocksStartAt ? i : i + 1;
106
+ result[j]->codewords_[iOffset] = rawCodewords[rawCodewordsOffset++];
107
+ }
108
+ }
109
+
110
+ if (rawCodewordsOffset != rawCodewords->size()) {
111
+ throw IllegalArgumentException("rawCodewordsOffset != rawCodewords.length");
112
+ }
113
+
114
+ return result;
115
+ }
116
+
117
+ }
118
+ }
@@ -0,0 +1,159 @@
1
+ /*
2
+ * DataMask.cpp
3
+ * zxing
4
+ *
5
+ * Created by Christian Brunschen on 19/05/2008.
6
+ * Copyright 2008 ZXing authors All rights reserved.
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+
21
+ #include <zxing/qrcode/decoder/DataMask.h>
22
+
23
+ #include <zxing/common/IllegalArgumentException.h>
24
+
25
+ namespace zxing {
26
+ namespace qrcode {
27
+
28
+ using namespace std;
29
+
30
+ DataMask::DataMask() {
31
+ }
32
+
33
+ DataMask::~DataMask() {
34
+ }
35
+
36
+ vector<Ref<DataMask> > DataMask::DATA_MASKS;
37
+ static int N_DATA_MASKS = DataMask::buildDataMasks();
38
+
39
+ DataMask &DataMask::forReference(int reference) {
40
+ if (reference < 0 || reference > 7) {
41
+ throw IllegalArgumentException("reference must be between 0 and 7");
42
+ }
43
+ return *DATA_MASKS[reference];
44
+ }
45
+
46
+ void DataMask::unmaskBitMatrix(BitMatrix& bits, size_t dimension) {
47
+ for (size_t y = 0; y < dimension; y++) {
48
+ for (size_t x = 0; x < dimension; x++) {
49
+ // TODO: check why the coordinates have to be swapped
50
+ if (isMasked(y, x)) {
51
+ bits.flip(x, y);
52
+ }
53
+ }
54
+ }
55
+ }
56
+
57
+ /**
58
+ * 000: mask bits for which (x + y) mod 2 == 0
59
+ */
60
+ class DataMask000 : public DataMask {
61
+ public:
62
+ bool isMasked(size_t x, size_t y) {
63
+ // return ((x + y) & 0x01) == 0;
64
+ return ((x + y) % 2) == 0;
65
+ }
66
+ };
67
+
68
+ /**
69
+ * 001: mask bits for which x mod 2 == 0
70
+ */
71
+ class DataMask001 : public DataMask {
72
+ public:
73
+ bool isMasked(size_t x, size_t) {
74
+ // return (x & 0x01) == 0;
75
+ return (x % 2) == 0;
76
+ }
77
+ };
78
+
79
+ /**
80
+ * 010: mask bits for which y mod 3 == 0
81
+ */
82
+ class DataMask010 : public DataMask {
83
+ public:
84
+ bool isMasked(size_t, size_t y) {
85
+ return y % 3 == 0;
86
+ }
87
+ };
88
+
89
+ /**
90
+ * 011: mask bits for which (x + y) mod 3 == 0
91
+ */
92
+ class DataMask011 : public DataMask {
93
+ public:
94
+ bool isMasked(size_t x, size_t y) {
95
+ return (x + y) % 3 == 0;
96
+ }
97
+ };
98
+
99
+ /**
100
+ * 100: mask bits for which (x/2 + y/3) mod 2 == 0
101
+ */
102
+ class DataMask100 : public DataMask {
103
+ public:
104
+ bool isMasked(size_t x, size_t y) {
105
+ // return (((x >> 1) + (y / 3)) & 0x01) == 0;
106
+ return (((x >> 1) + (y / 3)) % 2) == 0;
107
+ }
108
+ };
109
+
110
+ /**
111
+ * 101: mask bits for which xy mod 2 + xy mod 3 == 0
112
+ */
113
+ class DataMask101 : public DataMask {
114
+ public:
115
+ bool isMasked(size_t x, size_t y) {
116
+ size_t temp = x * y;
117
+ // return (temp & 0x01) + (temp % 3) == 0;
118
+ return (temp % 2) + (temp % 3) == 0;
119
+
120
+ }
121
+ };
122
+
123
+ /**
124
+ * 110: mask bits for which (xy mod 2 + xy mod 3) mod 2 == 0
125
+ */
126
+ class DataMask110 : public DataMask {
127
+ public:
128
+ bool isMasked(size_t x, size_t y) {
129
+ size_t temp = x * y;
130
+ // return (((temp & 0x01) + (temp % 3)) & 0x01) == 0;
131
+ return (((temp % 2) + (temp % 3)) % 2) == 0;
132
+ }
133
+ };
134
+
135
+ /**
136
+ * 111: mask bits for which ((x+y)mod 2 + xy mod 3) mod 2 == 0
137
+ */
138
+ class DataMask111 : public DataMask {
139
+ public:
140
+ bool isMasked(size_t x, size_t y) {
141
+ // return ((((x + y) & 0x01) + ((x * y) % 3)) & 0x01) == 0;
142
+ return ((((x + y) % 2) + ((x * y) % 3)) % 2) == 0;
143
+ }
144
+ };
145
+
146
+ int DataMask::buildDataMasks() {
147
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask000()));
148
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask001()));
149
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask010()));
150
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask011()));
151
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask100()));
152
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask101()));
153
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask110()));
154
+ DATA_MASKS.push_back(Ref<DataMask> (new DataMask111()));
155
+ return DATA_MASKS.size();
156
+ }
157
+
158
+ }
159
+ }
@@ -0,0 +1,433 @@
1
+ // -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
2
+ /*
3
+ * DecodedBitStreamParser.cpp
4
+ * zxing
5
+ *
6
+ * Created by Christian Brunschen on 20/05/2008.
7
+ * Copyright 2008 ZXing authors All rights reserved.
8
+ *
9
+ * Licensed under the Apache License, Version 2.0 (the "License");
10
+ * you may not use this file except in compliance with the License.
11
+ * You may obtain a copy of the License at
12
+ *
13
+ * http://www.apache.org/licenses/LICENSE-2.0
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
21
+
22
+ #include <zxing/qrcode/decoder/DecodedBitStreamParser.h>
23
+ #include <zxing/common/CharacterSetECI.h>
24
+ #include <zxing/FormatException.h>
25
+ #include <zxing/common/StringUtils.h>
26
+ #include <iostream>
27
+ #ifndef NO_ICONV
28
+ #include <iconv.h>
29
+ #endif
30
+
31
+ // Required for compatibility. TODO : test on Symbian
32
+ #ifdef ZXING_ICONV_CONST
33
+ #undef ICONV_CONST
34
+ #define ICONV_CONST const
35
+ #endif
36
+
37
+ #ifndef ICONV_CONST
38
+ #define ICONV_CONST /**/
39
+ #endif
40
+ #include <qglobal.h>
41
+
42
+
43
+ using namespace std;
44
+ using namespace zxing;
45
+ using namespace zxing::qrcode;
46
+ using namespace zxing::common;
47
+
48
+ const char DecodedBitStreamParser::ALPHANUMERIC_CHARS[] =
49
+ { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B',
50
+ 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N',
51
+ 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
52
+ 'Y', 'Z', ' ', '$', '%', '*', '+', '-', '.', '/', ':'
53
+ };
54
+
55
+ namespace {int GB2312_SUBSET = 1;}
56
+
57
+ void DecodedBitStreamParser::append(std::string &result,
58
+ string const& in,
59
+ const char *src) {
60
+ append(result, (char const*)in.c_str(), in.length(), src);
61
+ }
62
+
63
+ void DecodedBitStreamParser::append(std::string &result,
64
+ const char *bufIn,
65
+ size_t nIn,
66
+ const char *src) {
67
+ #ifndef NO_ICONV
68
+ if (nIn == 0) {
69
+ return;
70
+ }
71
+
72
+ iconv_t cd = iconv_open(StringUtils::UTF8, src);
73
+ if (cd == (iconv_t)-1) {
74
+ result.append((const char *)bufIn, nIn);
75
+ return;
76
+ }
77
+
78
+ const int maxOut = 4 * nIn + 1;
79
+ char* bufOut = new char[maxOut];
80
+
81
+ ICONV_CONST char *fromPtr = (ICONV_CONST char *)bufIn;
82
+ size_t nFrom = nIn;
83
+ char *toPtr = (char *)bufOut;
84
+ size_t nTo = maxOut;
85
+
86
+ while (nFrom > 0) {
87
+ #if defined(Q_OS_SYMBIAN)
88
+ size_t oneway = iconv(cd,(const char**) &fromPtr, &nFrom, &toPtr, &nTo);
89
+ #else
90
+ size_t oneway = iconv(cd,(char**) &fromPtr, &nFrom, &toPtr, &nTo);
91
+ #endif
92
+ if (oneway == (size_t)(-1)) {
93
+ iconv_close(cd);
94
+ delete[] bufOut;
95
+ throw ReaderException("error converting characters");
96
+ }
97
+ }
98
+ iconv_close(cd);
99
+
100
+ int nResult = maxOut - nTo;
101
+ bufOut[nResult] = '\0';
102
+ result.append((const char *)bufOut);
103
+ delete[] bufOut;
104
+ #else
105
+ Q_UNUSED(src);
106
+ result.append((const char *)bufIn, nIn);
107
+ #endif
108
+ }
109
+
110
+ void DecodedBitStreamParser::decodeHanziSegment(Ref<BitSource> bits_,
111
+ string& result,
112
+ int count) {
113
+ BitSource& bits (*bits_);
114
+ // Don't crash trying to read more bits than we have available.
115
+ if (count * 13 > bits.available()) {
116
+ throw FormatException();
117
+ }
118
+
119
+ // Each character will require 2 bytes. Read the characters as 2-byte pairs
120
+ // and decode as GB2312 afterwards
121
+ size_t nBytes = 2 * count;
122
+ char* buffer = new char[nBytes];
123
+ int offset = 0;
124
+ while (count > 0) {
125
+ // Each 13 bits encodes a 2-byte character
126
+ int twoBytes = bits.readBits(13);
127
+ int assembledTwoBytes = ((twoBytes / 0x060) << 8) | (twoBytes % 0x060);
128
+ if (assembledTwoBytes < 0x003BF) {
129
+ // In the 0xA1A1 to 0xAAFE range
130
+ assembledTwoBytes += 0x0A1A1;
131
+ } else {
132
+ // In the 0xB0A1 to 0xFAFE range
133
+ assembledTwoBytes += 0x0A6A1;
134
+ }
135
+ buffer[offset] = (char) ((assembledTwoBytes >> 8) & 0xFF);
136
+ buffer[offset + 1] = (char) (assembledTwoBytes & 0xFF);
137
+ offset += 2;
138
+ count--;
139
+ }
140
+
141
+ try {
142
+ append(result, buffer, nBytes, StringUtils::GB2312);
143
+ } catch (ReaderException const& ignored) {
144
+ (void)ignored;
145
+ delete [] buffer;
146
+ throw FormatException();
147
+ }
148
+
149
+ delete [] buffer;
150
+ }
151
+
152
+ void DecodedBitStreamParser::decodeKanjiSegment(Ref<BitSource> bits, std::string &result, int count) {
153
+ // Each character will require 2 bytes. Read the characters as 2-byte pairs
154
+ // and decode as Shift_JIS afterwards
155
+ size_t nBytes = 2 * count;
156
+ char* buffer = new char[nBytes];
157
+ int offset = 0;
158
+ while (count > 0) {
159
+ // Each 13 bits encodes a 2-byte character
160
+
161
+ int twoBytes = bits->readBits(13);
162
+ int assembledTwoBytes = ((twoBytes / 0x0C0) << 8) | (twoBytes % 0x0C0);
163
+ if (assembledTwoBytes < 0x01F00) {
164
+ // In the 0x8140 to 0x9FFC range
165
+ assembledTwoBytes += 0x08140;
166
+ } else {
167
+ // In the 0xE040 to 0xEBBF range
168
+ assembledTwoBytes += 0x0C140;
169
+ }
170
+ buffer[offset] = (char)(assembledTwoBytes >> 8);
171
+ buffer[offset + 1] = (char)assembledTwoBytes;
172
+ offset += 2;
173
+ count--;
174
+ }
175
+ try {
176
+ append(result, buffer, nBytes, StringUtils::SHIFT_JIS);
177
+ } catch (ReaderException const& ignored) {
178
+ (void)ignored;
179
+ delete [] buffer;
180
+ throw FormatException();
181
+ }
182
+ delete[] buffer;
183
+ }
184
+
185
+ std::string DecodedBitStreamParser::decodeByteSegment(Ref<BitSource> bits_,
186
+ string& result,
187
+ int count,
188
+ CharacterSetECI* currentCharacterSetECI,
189
+ ArrayRef< ArrayRef<char> >& byteSegments,
190
+ Hashtable const& hints) {
191
+ int nBytes = count;
192
+ BitSource& bits (*bits_);
193
+ // Don't crash trying to read more bits than we have available.
194
+ if (count << 3 > bits.available()) {
195
+ throw FormatException();
196
+ }
197
+
198
+ ArrayRef<char> bytes_ (count);
199
+ char* readBytes = &(*bytes_)[0];
200
+ for (int i = 0; i < count; i++) {
201
+ readBytes[i] = (char) bits.readBits(8);
202
+ }
203
+ string encoding;
204
+ if (currentCharacterSetECI == 0) {
205
+ // The spec isn't clear on this mode; see
206
+ // section 6.4.5: t does not say which encoding to assuming
207
+ // upon decoding. I have seen ISO-8859-1 used as well as
208
+ // Shift_JIS -- without anything like an ECI designator to
209
+ // give a hint.
210
+ encoding = StringUtils::guessEncoding(readBytes, count, hints);
211
+ } else {
212
+ encoding = currentCharacterSetECI->name();
213
+ }
214
+ try {
215
+ append(result, readBytes, nBytes, encoding.c_str());
216
+ } catch (ReaderException const& ignored) {
217
+ (void)ignored;
218
+ throw FormatException();
219
+ }
220
+ byteSegments->values().push_back(bytes_);
221
+ return encoding;
222
+ }
223
+
224
+ void DecodedBitStreamParser::decodeNumericSegment(Ref<BitSource> bits, std::string &result, int count) {
225
+ int nBytes = count;
226
+ char* bytes = new char[nBytes];
227
+ int i = 0;
228
+ // Read three digits at a time
229
+ while (count >= 3) {
230
+ // Each 10 bits encodes three digits
231
+ if (bits->available() < 10) {
232
+ throw ReaderException("format exception");
233
+ }
234
+ int threeDigitsBits = bits->readBits(10);
235
+ if (threeDigitsBits >= 1000) {
236
+ ostringstream s;
237
+ s << "Illegal value for 3-digit unit: " << threeDigitsBits;
238
+ delete[] bytes;
239
+ throw ReaderException(s.str().c_str());
240
+ }
241
+ bytes[i++] = ALPHANUMERIC_CHARS[threeDigitsBits / 100];
242
+ bytes[i++] = ALPHANUMERIC_CHARS[(threeDigitsBits / 10) % 10];
243
+ bytes[i++] = ALPHANUMERIC_CHARS[threeDigitsBits % 10];
244
+ count -= 3;
245
+ }
246
+ if (count == 2) {
247
+ if (bits->available() < 7) {
248
+ throw ReaderException("format exception");
249
+ }
250
+ // Two digits left over to read, encoded in 7 bits
251
+ int twoDigitsBits = bits->readBits(7);
252
+ if (twoDigitsBits >= 100) {
253
+ ostringstream s;
254
+ s << "Illegal value for 2-digit unit: " << twoDigitsBits;
255
+ delete[] bytes;
256
+ throw ReaderException(s.str().c_str());
257
+ }
258
+ bytes[i++] = ALPHANUMERIC_CHARS[twoDigitsBits / 10];
259
+ bytes[i++] = ALPHANUMERIC_CHARS[twoDigitsBits % 10];
260
+ } else if (count == 1) {
261
+ if (bits->available() < 4) {
262
+ throw ReaderException("format exception");
263
+ }
264
+ // One digit left over to read
265
+ int digitBits = bits->readBits(4);
266
+ if (digitBits >= 10) {
267
+ ostringstream s;
268
+ s << "Illegal value for digit unit: " << digitBits;
269
+ delete[] bytes;
270
+ throw ReaderException(s.str().c_str());
271
+ }
272
+ bytes[i++] = ALPHANUMERIC_CHARS[digitBits];
273
+ }
274
+ append(result, bytes, nBytes, StringUtils::ASCII);
275
+ delete[] bytes;
276
+ }
277
+
278
+ char DecodedBitStreamParser::toAlphaNumericChar(size_t value) {
279
+ if (value >= sizeof(DecodedBitStreamParser::ALPHANUMERIC_CHARS)) {
280
+ throw FormatException();
281
+ }
282
+ return ALPHANUMERIC_CHARS[value];
283
+ }
284
+
285
+ void DecodedBitStreamParser::decodeAlphanumericSegment(Ref<BitSource> bits_,
286
+ string& result,
287
+ int count,
288
+ bool fc1InEffect) {
289
+ BitSource& bits (*bits_);
290
+ ostringstream bytes;
291
+ // Read two characters at a time
292
+ while (count > 1) {
293
+ if (bits.available() < 11) {
294
+ throw FormatException();
295
+ }
296
+ int nextTwoCharsBits = bits.readBits(11);
297
+ bytes << toAlphaNumericChar(nextTwoCharsBits / 45);
298
+ bytes << toAlphaNumericChar(nextTwoCharsBits % 45);
299
+ count -= 2;
300
+ }
301
+ if (count == 1) {
302
+ // special case: one character left
303
+ if (bits.available() < 6) {
304
+ throw FormatException();
305
+ }
306
+ bytes << toAlphaNumericChar(bits.readBits(6));
307
+ }
308
+ // See section 6.4.8.1, 6.4.8.2
309
+ string s = bytes.str();
310
+ if (fc1InEffect) {
311
+ // We need to massage the result a bit if in an FNC1 mode:
312
+ ostringstream r;
313
+ for (size_t i = 0; i < s.length(); i++) {
314
+ if (s[i] != '%') {
315
+ r << s[i];
316
+ } else {
317
+ if (i < s.length() - 1 && s[i + 1] == '%') {
318
+ // %% is rendered as %
319
+ r << s[i++];
320
+ } else {
321
+ // In alpha mode, % should be converted to FNC1 separator 0x1D
322
+ r << (char)0x1D;
323
+ }
324
+ }
325
+ }
326
+ s = r.str();
327
+ }
328
+ append(result, s, StringUtils::ASCII);
329
+ }
330
+
331
+ namespace {
332
+ int parseECIValue(BitSource& bits) {
333
+ int firstByte = bits.readBits(8);
334
+ if ((firstByte & 0x80) == 0) {
335
+ // just one byte
336
+ return firstByte & 0x7F;
337
+ }
338
+ if ((firstByte & 0xC0) == 0x80) {
339
+ // two bytes
340
+ int secondByte = bits.readBits(8);
341
+ return ((firstByte & 0x3F) << 8) | secondByte;
342
+ }
343
+ if ((firstByte & 0xE0) == 0xC0) {
344
+ // three bytes
345
+ int secondThirdBytes = bits.readBits(16);
346
+ return ((firstByte & 0x1F) << 16) | secondThirdBytes;
347
+ }
348
+ throw FormatException();
349
+ }
350
+ }
351
+
352
+ Ref<DecoderResult>
353
+ DecodedBitStreamParser::decode(ArrayRef<char> bytes,
354
+ Version* version,
355
+ ErrorCorrectionLevel const& ecLevel,
356
+ Hashtable const& hints) {
357
+ Ref<BitSource> bits_ (new BitSource(bytes));
358
+ BitSource& bits (*bits_);
359
+ string result;
360
+ result.reserve(50);
361
+ ArrayRef< ArrayRef<char> > byteSegments (0);
362
+ CharacterSetECI* currentCharacterSetECI = 0;
363
+ string charSet = "";
364
+ try {
365
+ bool fc1InEffect = false;
366
+ Mode* mode = 0;
367
+ do {
368
+ // While still another segment to read...
369
+ if (bits.available() < 4) {
370
+ // OK, assume we're done. Really, a TERMINATOR mode should have been recorded here
371
+ mode = &Mode::TERMINATOR;
372
+ } else {
373
+ try {
374
+ mode = &Mode::forBits(bits.readBits(4)); // mode is encoded by 4 bits
375
+ } catch (IllegalArgumentException const& iae) {
376
+ throw iae;
377
+ // throw FormatException.getFormatInstance();
378
+ }
379
+ }
380
+ if (mode != &Mode::TERMINATOR) {
381
+ if ((mode == &Mode::FNC1_FIRST_POSITION) || (mode == &Mode::FNC1_SECOND_POSITION)) {
382
+ // We do little with FNC1 except alter the parsed result a bit according to the spec
383
+ fc1InEffect = true;
384
+ } else if (mode == &Mode::STRUCTURED_APPEND) {
385
+ if (bits.available() < 16) {
386
+ throw FormatException();
387
+ }
388
+ // not really supported; all we do is ignore it
389
+ // Read next 8 bits (symbol sequence #) and 8 bits (parity data), then continue
390
+ bits.readBits(16);
391
+ } else if (mode == &Mode::ECI) {
392
+ // Count doesn't apply to ECI
393
+ int value = parseECIValue(bits);
394
+ currentCharacterSetECI = CharacterSetECI::getCharacterSetECIByValue(value);
395
+ if (currentCharacterSetECI == 0) {
396
+ throw FormatException();
397
+ }
398
+ } else {
399
+ // First handle Hanzi mode which does not start with character count
400
+ if (mode == &Mode::HANZI) {
401
+ //chinese mode contains a sub set indicator right after mode indicator
402
+ int subset = bits.readBits(4);
403
+ int countHanzi = bits.readBits(mode->getCharacterCountBits(version));
404
+ if (subset == GB2312_SUBSET) {
405
+ decodeHanziSegment(bits_, result, countHanzi);
406
+ }
407
+ } else {
408
+ // "Normal" QR code modes:
409
+ // How many characters will follow, encoded in this mode?
410
+ int count = bits.readBits(mode->getCharacterCountBits(version));
411
+ if (mode == &Mode::NUMERIC) {
412
+ decodeNumericSegment(bits_, result, count);
413
+ } else if (mode == &Mode::ALPHANUMERIC) {
414
+ decodeAlphanumericSegment(bits_, result, count, fc1InEffect);
415
+ } else if (mode == &Mode::BYTE) {
416
+ charSet = decodeByteSegment(bits_, result, count, currentCharacterSetECI, byteSegments, hints);
417
+ } else if (mode == &Mode::KANJI) {
418
+ decodeKanjiSegment(bits_, result, count);
419
+ } else {
420
+ throw FormatException();
421
+ }
422
+ }
423
+ }
424
+ }
425
+ } while (mode != &Mode::TERMINATOR);
426
+ } catch (IllegalArgumentException const& iae) {
427
+ (void)iae;
428
+ // from readBits() calls
429
+ throw FormatException();
430
+ }
431
+ return Ref<DecoderResult>(new DecoderResult(bytes, Ref<String>(new String(result)), byteSegments, (string)ecLevel, charSet));
432
+ }
433
+