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,719 @@
1
+ // -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
2
+ /*
3
+ * Copyright 2010, 2012 ZXing authors All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+
18
+ #include <map>
19
+ #include <zxing/pdf417/detector/LinesSampler.h>
20
+ #include <zxing/pdf417/decoder/BitMatrixParser.h>
21
+ #include <zxing/NotFoundException.h>
22
+ #include <zxing/common/Point.h>
23
+ #include <cmath>
24
+ #include <qglobal.h>
25
+
26
+ using std::map;
27
+ using std::vector;
28
+ using std::min;
29
+ using std::abs;
30
+ using zxing::pdf417::detector::LinesSampler;
31
+ using zxing::pdf417::decoder::BitMatrixParser;
32
+ using zxing::Ref;
33
+ using zxing::BitMatrix;
34
+ using zxing::NotFoundException;
35
+ using zxing::Point;
36
+
37
+ // VC++
38
+ using zxing::Line;
39
+
40
+ //favoritas37-22-01-14-change
41
+ #ifndef Q_CC_MSVC
42
+ const int LinesSampler::MODULES_IN_SYMBOL;
43
+ const int LinesSampler::BARS_IN_SYMBOL;
44
+ const int LinesSampler::POSSIBLE_SYMBOLS;
45
+ const int LinesSampler::BARCODE_START_OFFSET;
46
+ #endif //Q_CC_MSVC
47
+
48
+ namespace {
49
+
50
+ class VoteResult {
51
+ private:
52
+ bool indecisive;
53
+ int vote;
54
+ public:
55
+ VoteResult() : indecisive(false), vote(0) {}
56
+ bool isIndecisive() {
57
+ return indecisive;
58
+ }
59
+ void setIndecisive(bool indecisive) {
60
+ this->indecisive = indecisive;
61
+ }
62
+ int getVote() {
63
+ return vote;
64
+ }
65
+ void setVote(int vote) {
66
+ this->vote = vote;
67
+ }
68
+ };
69
+
70
+ VoteResult getValueWithMaxVotes(map<int, int>& votes) {
71
+ VoteResult result;
72
+ int maxVotes = 0;
73
+ for (map<int, int>::iterator i = votes.begin(); i != votes.end(); i++) {
74
+ if (i->second > maxVotes) {
75
+ maxVotes = i->second;
76
+ result.setVote(i->first);
77
+ result.setIndecisive(false);
78
+ } else if (i->second == maxVotes) {
79
+ result.setIndecisive(true);
80
+ }
81
+ }
82
+ return result;
83
+ }
84
+
85
+ }
86
+
87
+ vector<float> LinesSampler::init_ratios_table() {
88
+ // Pre-computes and outputs the symbol ratio table.
89
+ vector<vector<float> > table (BitMatrixParser::SYMBOL_TABLE_LENGTH);
90
+ for(int i=0; i < (int)table.size(); ++i) {
91
+ table[i].resize(LinesSampler::BARS_IN_SYMBOL);
92
+ }
93
+ vector<float> RATIOS_TABLE (BitMatrixParser::SYMBOL_TABLE_LENGTH * LinesSampler::BARS_IN_SYMBOL);
94
+ int x = 0;
95
+ for (int i = 0; i < BitMatrixParser::SYMBOL_TABLE_LENGTH; i++) {
96
+ int currentSymbol = BitMatrixParser::SYMBOL_TABLE[i];
97
+ int currentBit = currentSymbol & 0x1;
98
+ for (int j = 0; j < BARS_IN_SYMBOL; j++) {
99
+ float size = 0.0f;
100
+ while ((currentSymbol & 0x1) == currentBit) {
101
+ size += 1.0f;
102
+ currentSymbol >>= 1;
103
+ }
104
+ currentBit = currentSymbol & 0x1;
105
+ table[i][BARS_IN_SYMBOL - j - 1] = size / MODULES_IN_SYMBOL;
106
+ }
107
+ for (int j = 0; j < BARS_IN_SYMBOL; j++) {
108
+ RATIOS_TABLE[x] = table[i][j];
109
+ x++;
110
+ }
111
+ }
112
+ return RATIOS_TABLE;
113
+ }
114
+
115
+ const vector<float> LinesSampler::RATIOS_TABLE = init_ratios_table();
116
+
117
+ LinesSampler::LinesSampler(Ref<BitMatrix> linesMatrix, int dimension)
118
+ : linesMatrix_(linesMatrix), dimension_(dimension) {}
119
+
120
+ /**
121
+ * Samples a grid from a lines matrix.
122
+ *
123
+ * @return the potentially decodable bit matrix.
124
+ */
125
+ Ref<BitMatrix> LinesSampler::sample() {
126
+ const int symbolsPerLine = dimension_ / MODULES_IN_SYMBOL;
127
+
128
+ // XXX
129
+ vector<float> symbolWidths;
130
+ computeSymbolWidths(symbolWidths, symbolsPerLine, linesMatrix_);
131
+
132
+ // XXX
133
+ vector<vector<int> > codewords(linesMatrix_->getHeight());
134
+ vector<vector<int> > clusterNumbers(linesMatrix_->getHeight());
135
+ linesMatrixToCodewords(clusterNumbers, symbolsPerLine, symbolWidths, linesMatrix_, codewords);
136
+
137
+ // XXX
138
+ vector<vector<map<int, int> > > votes =
139
+ distributeVotes(symbolsPerLine, codewords, clusterNumbers);
140
+
141
+ // XXX
142
+ vector<vector<int> > detectedCodeWords(votes.size());
143
+ for (int i = 0; i < (int)votes.size(); i++) {
144
+ detectedCodeWords[i].resize(votes[i].size(), 0);
145
+ for (int j = 0; j < (int)votes[i].size(); j++) {
146
+ if (!votes[i][j].empty()) {
147
+ detectedCodeWords[i][j] = getValueWithMaxVotes(votes[i][j]).getVote();
148
+ }
149
+ }
150
+ }
151
+
152
+ // XXX
153
+ vector<int> insertLinesAt = findMissingLines(symbolsPerLine, detectedCodeWords);
154
+
155
+ // XXX
156
+ int rowCount = decodeRowCount(symbolsPerLine, detectedCodeWords, insertLinesAt);
157
+ detectedCodeWords.resize(rowCount);
158
+
159
+ // XXX
160
+ Ref<BitMatrix> grid(new BitMatrix(dimension_, detectedCodeWords.size()));
161
+ codewordsToBitMatrix(detectedCodeWords, grid);
162
+
163
+ return grid;
164
+ }
165
+
166
+ /**
167
+ * @brief LinesSampler::codewordsToBitMatrix
168
+ * @param codewords
169
+ * @param matrix
170
+ */
171
+ void LinesSampler::codewordsToBitMatrix(vector<vector<int> > &codewords, Ref<BitMatrix> &matrix) {
172
+ for (int i = 0; i < (int)codewords.size(); i++) {
173
+ for (int j = 0; j < (int)codewords[i].size(); j++) {
174
+ int moduleOffset = j * MODULES_IN_SYMBOL;
175
+ for (int k = 0; k < MODULES_IN_SYMBOL; k++) {
176
+ if ((codewords[i][j] & (1 << (MODULES_IN_SYMBOL - k - 1))) > 0) {
177
+ matrix->set(moduleOffset + k, i);
178
+ }
179
+ }
180
+ }
181
+ }
182
+ }
183
+
184
+ /**
185
+ * @brief LinesSampler::calculateClusterNumber
186
+ * @param codeword
187
+ * @return
188
+ */
189
+ int LinesSampler::calculateClusterNumber(int codeword) {
190
+ if (codeword == 0) {
191
+ return -1;
192
+ }
193
+ int barNumber = 0;
194
+ bool blackBar = true;
195
+ int clusterNumber = 0;
196
+ for (int i = 0; i < MODULES_IN_SYMBOL; i++) {
197
+ if ((codeword & (1 << i)) > 0) {
198
+ if (!blackBar) {
199
+ blackBar = true;
200
+ barNumber++;
201
+ }
202
+ if (barNumber % 2 == 0) {
203
+ clusterNumber++;
204
+ } else {
205
+ clusterNumber--;
206
+ }
207
+ } else {
208
+ if (blackBar) {
209
+ blackBar = false;
210
+ }
211
+ }
212
+ }
213
+ return (clusterNumber + 9) % 9;
214
+ }
215
+
216
+ //#define OUTPUT_SYMBOL_WIDTH 1
217
+ //#define OUTPUT_BAR_WIDTH 1
218
+ //#define OUTPUT_CW_STARTS 1
219
+ //#define OUTPUT_CLUSTER_NUMBERS 1
220
+ //#define OUTPUT_EC_LEVEL 1
221
+
222
+ void LinesSampler::computeSymbolWidths(vector<float> &symbolWidths, const int symbolsPerLine, Ref<BitMatrix> linesMatrix)
223
+ {
224
+ int symbolStart = 0;
225
+ bool lastWasSymbolStart = true;
226
+ const float symbolWidth = symbolsPerLine > 0 ? (float)linesMatrix->getWidth() / (float)symbolsPerLine : (float)linesMatrix->getWidth();
227
+
228
+ // Use the following property of PDF417 barcodes to detect symbols:
229
+ // Every symbol starts with a black module and every symbol is 17 modules wide,
230
+ // therefore there have to be columns in the line matrix that are completely composed of black pixels.
231
+ vector<int> blackCount(linesMatrix->getWidth(), 0);
232
+ for (int x = BARCODE_START_OFFSET; x < linesMatrix->getWidth(); x++) {
233
+ for (int y = 0; y < linesMatrix->getHeight(); y++) {
234
+ if (linesMatrix->get(x, y)) {
235
+ blackCount[x]++;
236
+ }
237
+ }
238
+ if (blackCount[x] == linesMatrix->getHeight()) {
239
+ if (!lastWasSymbolStart) {
240
+ float currentWidth = (float)(x - symbolStart);
241
+ // Make sure we really found a symbol by asserting a minimal size of 75% of the expected symbol width.
242
+ // This might break highly distorted barcodes, but fixes an issue with barcodes where there is a
243
+ // full black column from top to bottom within a symbol.
244
+ if (currentWidth > 0.75 * symbolWidth) {
245
+ // The actual symbol width might be slightly bigger than the expected symbol width,
246
+ // but if we are more than half an expected symbol width bigger, we assume that
247
+ // we missed one or more symbols and assume that they were the expected symbol width.
248
+ while (currentWidth > 1.5 * symbolWidth) {
249
+ symbolWidths.push_back(symbolWidth);
250
+ currentWidth -= symbolWidth;
251
+ }
252
+ symbolWidths.push_back(currentWidth);
253
+ lastWasSymbolStart = true;
254
+ symbolStart = x;
255
+ }
256
+ }
257
+ } else {
258
+ if (lastWasSymbolStart) {
259
+ lastWasSymbolStart = false;
260
+ }
261
+ }
262
+ }
263
+
264
+ // The last symbol ends at the right edge of the matrix, where there usually is no black bar.
265
+ float currentWidth = (float)(linesMatrix->getWidth() - symbolStart);
266
+ while (currentWidth > 1.5 * symbolWidth) {
267
+ symbolWidths.push_back(symbolWidth);
268
+ currentWidth -= symbolWidth;
269
+ }
270
+ symbolWidths.push_back(currentWidth);
271
+
272
+
273
+ #if PDF417_DIAG && OUTPUT_SYMBOL_WIDTH
274
+ {
275
+ cout << "symbols per line: " << symbolsPerLine << endl;
276
+ cout << "symbol width (" << symbolWidths.size() << "): ";
277
+ for (int i = 0; i < symbolWidths.size(); i++) {
278
+ cout << symbolWidths[i] << ", ";
279
+ }
280
+ cout << endl;
281
+ }
282
+ #endif
283
+ }
284
+
285
+ void LinesSampler::linesMatrixToCodewords(vector<vector<int> >& clusterNumbers,
286
+ const int symbolsPerLine,
287
+ const vector<float>& symbolWidths,
288
+ Ref<BitMatrix> linesMatrix,
289
+ vector<vector<int> >& codewords)
290
+ {
291
+ for (int y = 0; y < linesMatrix->getHeight(); y++) {
292
+ // Not sure if this is the right way to handle this but avoids an error:
293
+ if (symbolsPerLine > (int)symbolWidths.size()) {
294
+ throw NotFoundException("Inconsistent number of symbols in this line.");
295
+ }
296
+
297
+ // TODO: use symbolWidths.size() instead of symbolsPerLine to at least decode some codewords
298
+
299
+ codewords[y].resize(symbolsPerLine, 0);
300
+ clusterNumbers[y].resize(symbolsPerLine, -1);
301
+ int line = y;
302
+ vector<int> barWidths(1, 0);
303
+ int barCount = 0;
304
+ // Runlength encode the bars in the scanned linesMatrix.
305
+ // We assume that the first bar is black, as determined by the PDF417 standard.
306
+ bool isSetBar = true;
307
+ // Filter small white bars at the beginning of the barcode.
308
+ // Small white bars may occur due to small deviations in scan line sampling.
309
+ barWidths[0] += BARCODE_START_OFFSET;
310
+ for (int x = BARCODE_START_OFFSET; x < linesMatrix->getWidth(); x++) {
311
+ if (linesMatrix->get(x, line)) {
312
+ if (!isSetBar) {
313
+ isSetBar = true;
314
+ barCount++;
315
+ barWidths.resize(barWidths.size() + 1);
316
+ }
317
+ } else {
318
+ if (isSetBar) {
319
+ isSetBar = false;
320
+ barCount++;
321
+ barWidths.resize(barWidths.size() + 1);
322
+ }
323
+
324
+ }
325
+ barWidths[barCount]++;
326
+ }
327
+ // Don't forget the last bar.
328
+ barCount++;
329
+ barWidths.resize(barWidths.size() + 1);
330
+
331
+ #if PDF417_DIAG && OUTPUT_BAR_WIDTH
332
+ {
333
+ for (int i = 0; i < barWidths.size(); i++) {
334
+ cout << barWidths[i] << ", ";
335
+ }
336
+ cout << endl;
337
+ }
338
+ #endif
339
+
340
+ //////////////////////////////////////////////////
341
+
342
+ // Find the symbols in the line by counting bar lengths until we reach symbolWidth.
343
+ // We make sure, that the last bar of a symbol is always white, as determined by the PDF417 standard.
344
+ // This helps to reduce the amount of errors done during the symbol recognition.
345
+ // The symbolWidth usually is not constant over the width of the barcode.
346
+ int cwWidth = 0;
347
+ int cwCount = 0;
348
+ vector<int> cwStarts(symbolsPerLine, 0);
349
+ cwStarts[0] = 0;
350
+ cwCount++;
351
+ for (int i = 0; i < barCount && cwCount < symbolsPerLine; i++) {
352
+ cwWidth += barWidths[i];
353
+ if ((float)cwWidth > symbolWidths[cwCount - 1]) {
354
+ if ((i % 2) == 1) { // check if bar is white
355
+ i++;
356
+ }
357
+ cwWidth = barWidths[i];
358
+ cwStarts[cwCount] = i;
359
+ cwCount++;
360
+ }
361
+ }
362
+
363
+ #if PDF417_DIAG && OUTPUT_CW_STARTS
364
+ {
365
+ for (int i = 0; i < cwStarts.size(); i++) {
366
+ cout << cwStarts[i] << ", ";
367
+ }
368
+ cout << endl;
369
+ }
370
+ #endif
371
+
372
+ ///////////////////////////////////////////
373
+
374
+ vector<vector<float> > cwRatios(symbolsPerLine);
375
+ // Distribute bar widths to modules of a codeword.
376
+ for (int i = 0; i < symbolsPerLine; i++) {
377
+ cwRatios[i].resize(BARS_IN_SYMBOL, 0.0f);
378
+ const int cwStart = cwStarts[i];
379
+ const int cwEnd = (i == symbolsPerLine - 1) ? barCount : cwStarts[i + 1];
380
+ const int cwLength = cwEnd - cwStart;
381
+
382
+ if (cwLength < 7 || cwLength > 9) {
383
+ // We try to recover smybols with 7 or 9 bars and spaces with heuristics, but everything else is beyond repair.
384
+ continue;
385
+ }
386
+
387
+ float cwWidth = 0;
388
+
389
+ // For symbols with 9 bar length simply ignore the last bar.
390
+ for (int j = 0; j < min(BARS_IN_SYMBOL, cwLength); ++j) {
391
+ cwWidth += (float)barWidths[cwStart + j];
392
+ }
393
+
394
+ // If there were only 7 bars and spaces detected use the following heuristic:
395
+ // Assume the length of the symbol is symbolWidth and the last (unrecognized) bar uses all remaining space.
396
+ if (cwLength == 7) {
397
+ for (int j = 0; j < cwLength; ++j) {
398
+ cwRatios[i][j] = (float)barWidths[cwStart + j] / symbolWidths[i];
399
+ }
400
+ cwRatios[i][7] = (symbolWidths[i] - cwWidth) / symbolWidths[i];
401
+ } else {
402
+ for (int j = 0; j < (int)cwRatios[i].size(); ++j) {
403
+ cwRatios[i][j] = (float)barWidths[cwStart + j] / cwWidth;
404
+ }
405
+ }
406
+
407
+ float bestMatchError = std::numeric_limits<float>::max();
408
+ int bestMatch = 0;
409
+
410
+ // Search for the most possible codeword by comparing the ratios of bar size to symbol width.
411
+ // The sum of the squared differences is used as similarity metric.
412
+ // (Picture it as the square euclidian distance in the space of eight tuples where a tuple represents the bar ratios.)
413
+ for (int j = 0; j < POSSIBLE_SYMBOLS; j++) {
414
+ float error = 0.0f;
415
+ for (int k = 0; k < BARS_IN_SYMBOL; k++) {
416
+ float diff = RATIOS_TABLE[j * BARS_IN_SYMBOL + k] - cwRatios[i][k];
417
+ error += diff * diff;
418
+ if (error >= bestMatchError) {
419
+ break;
420
+ }
421
+ }
422
+ if (error < bestMatchError) {
423
+ bestMatchError = error;
424
+ bestMatch = BitMatrixParser::SYMBOL_TABLE[j];
425
+ }
426
+ }
427
+ codewords[y][i] = bestMatch;
428
+ clusterNumbers[y][i] = calculateClusterNumber(bestMatch);
429
+ }
430
+ }
431
+
432
+
433
+ #if PDF417_DIAG && OUTPUT_CLUSTER_NUMBERS
434
+ {
435
+ for (int i = 0; i < clusterNumbers.size(); i++) {
436
+ for (int j = 0; j < clusterNumbers[i].size(); j++) {
437
+ cout << clusterNumbers[i][j] << ", ";
438
+ }
439
+ cout << endl;
440
+ }
441
+ }
442
+ #endif
443
+
444
+
445
+ #if PDF417_DIAG
446
+ {
447
+ Ref<BitMatrix> bits(new BitMatrix(symbolsPerLine * MODULES_IN_SYMBOL, codewords.size()));
448
+ codewordsToBitMatrix(codewords, bits);
449
+ static int __cnt__ = 0;
450
+ stringstream ss;
451
+ ss << "pdf417-detectedRaw" << __cnt__++ << ".png";
452
+ bits->writePng(ss.str().c_str(), 8, 16);
453
+ }
454
+ #endif
455
+ }
456
+
457
+ vector<vector<map<int, int> > >
458
+ LinesSampler::distributeVotes(const int symbolsPerLine,
459
+ const vector<vector<int> >& codewords,
460
+ const vector<vector<int> >& clusterNumbers)
461
+ {
462
+ // Matrix of votes for codewords which are possible at this position.
463
+ vector<vector<map<int, int> > > votes(1);
464
+ votes[0].resize(symbolsPerLine);
465
+
466
+ int currentRow = 0;
467
+ map<int, int> clusterNumberVotes;
468
+ int lastLineClusterNumber = -1;
469
+
470
+ for (int y = 0; y < (int)codewords.size(); y++) {
471
+ // Vote for the most probable cluster number for this row.
472
+ clusterNumberVotes.clear();
473
+ for (int i = 0; i < (int)codewords[y].size(); i++) {
474
+ if (clusterNumbers[y][i] != -1) {
475
+ clusterNumberVotes[clusterNumbers[y][i]] = clusterNumberVotes[clusterNumbers[y][i]] + 1;
476
+ }
477
+ }
478
+
479
+ // Ignore lines where no codeword could be read.
480
+ if (!clusterNumberVotes.empty()) {
481
+ VoteResult voteResult = getValueWithMaxVotes(clusterNumberVotes);
482
+ bool lineClusterNumberIsIndecisive = voteResult.isIndecisive();
483
+ int lineClusterNumber = voteResult.getVote();
484
+
485
+ // If there are to few votes on the lines cluster number, we keep the old one.
486
+ // This avoids switching lines because of damaged inter line readings, but
487
+ // may cause problems for barcodes with four or less rows.
488
+ if (lineClusterNumberIsIndecisive) {
489
+ lineClusterNumber = lastLineClusterNumber;
490
+ }
491
+
492
+ if ((lineClusterNumber != ((lastLineClusterNumber + 3) % 9)) && (lastLineClusterNumber != -1)) {
493
+ lineClusterNumber = lastLineClusterNumber;
494
+ }
495
+
496
+ // Ignore broken lines at the beginning of the barcode.
497
+ if ((lineClusterNumber == 0 && lastLineClusterNumber == -1) || (lastLineClusterNumber != -1)) {
498
+ if ((lineClusterNumber == ((lastLineClusterNumber + 3) % 9)) && (lastLineClusterNumber != -1)) {
499
+ currentRow++;
500
+ if ((int)votes.size() < currentRow + 1) {
501
+ votes.resize(currentRow + 1);
502
+ votes[currentRow].resize(symbolsPerLine);
503
+ }
504
+ }
505
+
506
+ if ((lineClusterNumber == ((lastLineClusterNumber + 6) % 9)) && (lastLineClusterNumber != -1)) {
507
+ currentRow += 2;
508
+ if ((int)votes.size() < currentRow + 1) {
509
+ votes.resize(currentRow + 1);
510
+ votes[currentRow].resize(symbolsPerLine);
511
+ }
512
+ }
513
+
514
+ for (int i = 0; i < (int)codewords[y].size(); i++) {
515
+ if (clusterNumbers[y][i] != -1) {
516
+ if (clusterNumbers[y][i] == lineClusterNumber) {
517
+ votes[currentRow][i][codewords[y][i]] = votes[currentRow][i][codewords[y][i]] + 1;
518
+ } else if (clusterNumbers[y][i] == ((lineClusterNumber + 3) % 9)) {
519
+ if ((int)votes.size() < currentRow + 2) {
520
+ votes.resize(currentRow + 2);
521
+ votes[currentRow + 1].resize(symbolsPerLine);
522
+ }
523
+ votes[currentRow + 1][i][codewords[y][i]] = votes[currentRow + 1][i][codewords[y][i]] + 1;
524
+ } else if ((clusterNumbers[y][i] == ((lineClusterNumber + 6) % 9)) && (currentRow > 0)) {
525
+ votes[currentRow - 1][i][codewords[y][i]] = votes[currentRow - 1][i][codewords[y][i]] + 1;
526
+ }
527
+ }
528
+ }
529
+ lastLineClusterNumber = lineClusterNumber;
530
+ }
531
+ }
532
+ }
533
+
534
+ return votes;
535
+ }
536
+
537
+
538
+ vector<int>
539
+ LinesSampler::findMissingLines(const int symbolsPerLine, vector<vector<int> > &detectedCodeWords) {
540
+ vector<int> insertLinesAt;
541
+ if (detectedCodeWords.size() > 1) {
542
+ for (int i = 0; i < (int)detectedCodeWords.size() - 1; i++) {
543
+ int clusterNumberRow = -1;
544
+ for (int j = 0; j < (int)detectedCodeWords[i].size() && clusterNumberRow == -1; j++) {
545
+ int clusterNumber = calculateClusterNumber(detectedCodeWords[i][j]);
546
+ if (clusterNumber != -1) {
547
+ clusterNumberRow = clusterNumber;
548
+ }
549
+ }
550
+ if (i == 0) {
551
+ // The first line must have the cluster number 0. Insert empty lines to match this.
552
+ if (clusterNumberRow > 0) {
553
+ insertLinesAt.push_back(0);
554
+ if (clusterNumberRow > 3) {
555
+ insertLinesAt.push_back(0);
556
+ }
557
+ }
558
+ }
559
+ int clusterNumberNextRow = -1;
560
+ for (int j = 0; j < (int)detectedCodeWords[i + 1].size() && clusterNumberNextRow == -1; j++) {
561
+ int clusterNumber = calculateClusterNumber(detectedCodeWords[i + 1][j]);
562
+ if (clusterNumber != -1) {
563
+ clusterNumberNextRow = clusterNumber;
564
+ }
565
+ }
566
+ if ((clusterNumberRow + 3) % 9 != clusterNumberNextRow
567
+ && clusterNumberRow != -1
568
+ && clusterNumberNextRow != -1) {
569
+ // The cluster numbers are not consecutive. Insert an empty line between them.
570
+ insertLinesAt.push_back(i + 1);
571
+ if (clusterNumberRow == clusterNumberNextRow) {
572
+ // There may be two lines missing. This is detected when two consecutive lines have the same cluster number.
573
+ insertLinesAt.push_back(i + 1);
574
+ }
575
+ }
576
+ }
577
+ }
578
+
579
+ for (int i = 0; i < (int)insertLinesAt.size(); i++) {
580
+ detectedCodeWords.insert(detectedCodeWords.begin() + insertLinesAt[i] + i, vector<int>(symbolsPerLine, 0));
581
+ }
582
+
583
+ return insertLinesAt;
584
+ }
585
+
586
+ int LinesSampler::decodeRowCount(const int symbolsPerLine, vector<vector<int> > &detectedCodeWords, vector<int> &insertLinesAt)
587
+ {
588
+ // Use the information in the first and last column to determin the number of rows and find more missing rows.
589
+ // For missing rows insert blank space, so the error correction can try to fill them in.
590
+
591
+ map<int, int> rowCountVotes;
592
+ map<int, int> ecLevelVotes;
593
+ map<int, int> rowNumberVotes;
594
+ int lastRowNumber = -1;
595
+ insertLinesAt.clear();
596
+
597
+ for (int i = 0; i + 2 < (int)detectedCodeWords.size(); i += 3) {
598
+ rowNumberVotes.clear();
599
+ int firstCodewordDecodedLeft = -1;
600
+ int secondCodewordDecodedLeft = -1;
601
+ int thirdCodewordDecodedLeft = -1;
602
+ int firstCodewordDecodedRight = -1;
603
+ int secondCodewordDecodedRight = -1;
604
+ int thirdCodewordDecodedRight = -1;
605
+
606
+ if (detectedCodeWords[i][0] != 0) {
607
+ firstCodewordDecodedLeft = BitMatrixParser::getCodeword(detectedCodeWords[i][0]);
608
+ }
609
+ if (detectedCodeWords[i + 1][0] != 0) {
610
+ secondCodewordDecodedLeft = BitMatrixParser::getCodeword(detectedCodeWords[i + 1][0]);
611
+ }
612
+ if (detectedCodeWords[i + 2][0] != 0) {
613
+ thirdCodewordDecodedLeft = BitMatrixParser::getCodeword(detectedCodeWords[i + 2][0]);
614
+ }
615
+
616
+ if (detectedCodeWords[i][detectedCodeWords[i].size() - 1] != 0) {
617
+ firstCodewordDecodedRight = BitMatrixParser::getCodeword(detectedCodeWords[i][detectedCodeWords[i].size() - 1]);
618
+ }
619
+ if (detectedCodeWords[i + 1][detectedCodeWords[i + 1].size() - 1] != 0) {
620
+ secondCodewordDecodedRight = BitMatrixParser::getCodeword(detectedCodeWords[i + 1][detectedCodeWords[i + 1].size() - 1]);
621
+ }
622
+ if (detectedCodeWords[i + 2][detectedCodeWords[i + 2].size() - 1] != 0) {
623
+ thirdCodewordDecodedRight = BitMatrixParser::getCodeword(detectedCodeWords[i + 2][detectedCodeWords[i + 2].size() - 1]);
624
+ }
625
+
626
+ if (firstCodewordDecodedLeft != -1 && secondCodewordDecodedLeft != -1) {
627
+ int leftRowCount = ((firstCodewordDecodedLeft % 30) * 3) + ((secondCodewordDecodedLeft % 30) % 3);
628
+ int leftECLevel = (secondCodewordDecodedLeft % 30) / 3;
629
+
630
+ rowCountVotes[leftRowCount] = rowCountVotes[leftRowCount] + 1;
631
+ ecLevelVotes[leftECLevel] = ecLevelVotes[leftECLevel] + 1;
632
+ }
633
+
634
+ if (secondCodewordDecodedRight != -1 && thirdCodewordDecodedRight != -1) {
635
+ int rightRowCount = ((secondCodewordDecodedRight % 30) * 3) + ((thirdCodewordDecodedRight % 30) % 3);
636
+ int rightECLevel = (thirdCodewordDecodedRight % 30) / 3;
637
+
638
+ rowCountVotes[rightRowCount] = rowCountVotes[rightRowCount] + 1;
639
+ ecLevelVotes[rightECLevel] = ecLevelVotes[rightECLevel] + 1;
640
+ }
641
+
642
+ if (firstCodewordDecodedLeft != -1) {
643
+ int rowNumber = firstCodewordDecodedLeft / 30;
644
+ rowNumberVotes[rowNumber] = rowNumberVotes[rowNumber] + 1;
645
+ }
646
+ if (secondCodewordDecodedLeft != -1) {
647
+ int rowNumber = secondCodewordDecodedLeft / 30;
648
+ rowNumberVotes[rowNumber] = rowNumberVotes[rowNumber] + 1;
649
+ }
650
+ if (thirdCodewordDecodedLeft != -1) {
651
+ int rowNumber = thirdCodewordDecodedLeft / 30;
652
+ rowNumberVotes[rowNumber] = rowNumberVotes[rowNumber] + 1;
653
+ }
654
+ if (firstCodewordDecodedRight != -1) {
655
+ int rowNumber = firstCodewordDecodedRight / 30;
656
+ rowNumberVotes[rowNumber] = rowNumberVotes[rowNumber] + 1;
657
+ }
658
+ if (secondCodewordDecodedRight != -1) {
659
+ int rowNumber = secondCodewordDecodedRight / 30;
660
+ rowNumberVotes[rowNumber] = rowNumberVotes[rowNumber] + 1;
661
+ }
662
+ if (thirdCodewordDecodedRight != -1) {
663
+ int rowNumber = thirdCodewordDecodedRight / 30;
664
+ rowNumberVotes[rowNumber] = rowNumberVotes[rowNumber] + 1;
665
+ }
666
+ int rowNumber = getValueWithMaxVotes(rowNumberVotes).getVote();
667
+ if (lastRowNumber + 1 < rowNumber) {
668
+ for (int j = lastRowNumber + 1; j < rowNumber; j++) {
669
+ insertLinesAt.push_back(i);
670
+ insertLinesAt.push_back(i);
671
+ insertLinesAt.push_back(i);
672
+ }
673
+ }
674
+ lastRowNumber = rowNumber;
675
+ }
676
+
677
+ for (int i = 0; i < (int)insertLinesAt.size(); i++) {
678
+ detectedCodeWords.insert(detectedCodeWords.begin() + insertLinesAt[i] + i, vector<int>(symbolsPerLine, 0));
679
+ }
680
+
681
+ int rowCount = getValueWithMaxVotes(rowCountVotes).getVote();
682
+ // int ecLevel = getValueWithMaxVotes(ecLevelVotes);
683
+
684
+ #if PDF417_DIAG && OUTPUT_EC_LEVEL
685
+ {
686
+ cout << "EC Level: " << ecLevel << " (" << ((1 << (ecLevel + 1)) - 2) << " EC Codewords)" << endl;
687
+ }
688
+ #endif
689
+ rowCount += 1;
690
+ return rowCount;
691
+ }
692
+
693
+ /**
694
+ * Ends up being a bit faster than Math.round(). This merely rounds its
695
+ * argument to the nearest int, where x.5 rounds up.
696
+ */
697
+ int LinesSampler::round(float d)
698
+ {
699
+ return (int)(d + 0.5f);
700
+ }
701
+
702
+ Point LinesSampler::intersection(Line a, Line b) {
703
+ float dxa = a.start.x - a.end.x;
704
+ float dxb = b.start.x - b.end.x;
705
+ float dya = a.start.y - a.end.y;
706
+ float dyb = b.start.y - b.end.y;
707
+
708
+ float p = a.start.x * a.end.y - a.start.y * a.end.x;
709
+ float q = b.start.x * b.end.y - b.start.y * b.end.x;
710
+ float denom = dxa * dyb - dya * dxb;
711
+ if(abs(denom) < 1e-12) // Lines don't intersect (replaces "denom == 0")
712
+ return Point(std::numeric_limits<float>::infinity(),
713
+ std::numeric_limits<float>::infinity());
714
+
715
+ float x = (p * dxb - dxa * q) / denom;
716
+ float y = (p * dyb - dya * q) / denom;
717
+
718
+ return Point(x, y);
719
+ }