hints)
- {
- Version version = parser.readVersion();
- if (version == null)
- return null;
- var formatinfo = parser.readFormatInformation();
- if (formatinfo == null)
- return null;
- ErrorCorrectionLevel ecLevel = formatinfo.ErrorCorrectionLevel;
-
- // Read codewords
- byte[] codewords = parser.readCodewords();
- if (codewords == null)
- return null;
- // Separate into data blocks
- DataBlock[] dataBlocks = DataBlock.getDataBlocks(codewords, version, ecLevel);
-
- // Count total number of data bytes
- int totalBytes = 0;
- foreach (var dataBlock in dataBlocks)
- {
- totalBytes += dataBlock.NumDataCodewords;
- }
- byte[] resultBytes = new byte[totalBytes];
- int resultOffset = 0;
-
- // Error-correct and copy data blocks together into a stream of bytes
- foreach (var dataBlock in dataBlocks)
- {
- byte[] codewordBytes = dataBlock.Codewords;
- int numDataCodewords = dataBlock.NumDataCodewords;
- if (!correctErrors(codewordBytes, numDataCodewords))
- return null;
- for (int i = 0; i < numDataCodewords; i++)
- {
- resultBytes[resultOffset++] = codewordBytes[i];
- }
- }
-
- // Decode the contents of that stream of bytes
- return DecodedBitStreamParser.decode(resultBytes, version, ecLevel, hints);
- }
-
- ///
- /// Given data and error-correction codewords received, possibly corrupted by errors, attempts to
- /// correct the errors in-place using Reed-Solomon error correction.
- ///
- /// data and error correction codewords
- /// number of codewords that are data bytes
- ///
- private bool correctErrors(byte[] codewordBytes, int numDataCodewords)
- {
- int numCodewords = codewordBytes.Length;
- // First read into an array of ints
- int[] codewordsInts = new int[numCodewords];
- for (int i = 0; i < numCodewords; i++)
- {
- codewordsInts[i] = codewordBytes[i] & 0xFF;
- }
- int numECCodewords = codewordBytes.Length - numDataCodewords;
-
- if (!rsDecoder.decode(codewordsInts, numECCodewords))
- return false;
-
- // Copy back into array of bytes -- only need to worry about the bytes that were data
- // We don't care about errors in the error-correction codewords
- for (int i = 0; i < numDataCodewords; i++)
- {
- codewordBytes[i] = (byte)codewordsInts[i];
- }
-
- return true;
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/decoder/ErrorCorrectionLevel.cs b/shadowsocks-csharp/3rd/zxing/qrcode/decoder/ErrorCorrectionLevel.cs
deleted file mode 100755
index f3b49347..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/decoder/ErrorCorrectionLevel.cs
+++ /dev/null
@@ -1,109 +0,0 @@
-/*
-* Copyright 2007 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using System;
-
-namespace ZXing.QrCode.Internal
-{
- ///
- /// See ISO 18004:2006, 6.5.1. This enum encapsulates the four error correction levels
- /// defined by the QR code standard.
- ///
- /// Sean Owen
- public sealed class ErrorCorrectionLevel
- {
- /// L = ~7% correction
- public static readonly ErrorCorrectionLevel L = new ErrorCorrectionLevel(0, 0x01, "L");
- /// M = ~15% correction
- public static readonly ErrorCorrectionLevel M = new ErrorCorrectionLevel(1, 0x00, "M");
- /// Q = ~25% correction
- public static readonly ErrorCorrectionLevel Q = new ErrorCorrectionLevel(2, 0x03, "Q");
- /// H = ~30% correction
- public static readonly ErrorCorrectionLevel H = new ErrorCorrectionLevel(3, 0x02, "H");
-
- private static readonly ErrorCorrectionLevel[] FOR_BITS = new [] { M, L, H, Q };
-
- private readonly int bits;
-
- private ErrorCorrectionLevel(int ordinal, int bits, String name)
- {
- this.ordinal_Renamed_Field = ordinal;
- this.bits = bits;
- this.name = name;
- }
-
- ///
- /// Gets the bits.
- ///
- public int Bits
- {
- get
- {
- return bits;
- }
- }
-
- ///
- /// Gets the name.
- ///
- public String Name
- {
- get
- {
- return name;
- }
- }
-
- private readonly int ordinal_Renamed_Field;
- private readonly String name;
-
- ///
- /// Ordinals this instance.
- ///
- ///
- public int ordinal()
- {
- return ordinal_Renamed_Field;
- }
-
- ///
- /// Returns a that represents this instance.
- ///
- ///
- /// A that represents this instance.
- ///
- public override String ToString()
- {
- return name;
- }
-
- ///
- /// Fors the bits.
- ///
- /// int containing the two bits encoding a QR Code's error correction level
- ///
- /// representing the encoded error correction level
- ///
- public static ErrorCorrectionLevel forBits(int bits)
- {
- if (bits < 0 || bits >= FOR_BITS.Length)
- {
- throw new ArgumentException();
- }
- return FOR_BITS[bits];
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/decoder/FormatInformation.cs b/shadowsocks-csharp/3rd/zxing/qrcode/decoder/FormatInformation.cs
deleted file mode 100755
index 88b5045e..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/decoder/FormatInformation.cs
+++ /dev/null
@@ -1,197 +0,0 @@
-/*
-* Copyright 2007 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using System;
-
-namespace ZXing.QrCode.Internal
-{
-
- /// Encapsulates a QR Code's format information, including the data mask used and
- /// error correction level.
- ///
- ///
- /// Sean Owen
- ///
- /// www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source
- ///
- ///
- ///
- ///
- ///
- sealed class FormatInformation
- {
- private const int FORMAT_INFO_MASK_QR = 0x5412;
-
- /// See ISO 18004:2006, Annex C, Table C.1
- private static readonly int[][] FORMAT_INFO_DECODE_LOOKUP = new int[][]
- {
- new [] { 0x5412, 0x00 },
- new [] { 0x5125, 0x01 },
- new [] { 0x5E7C, 0x02 },
- new [] { 0x5B4B, 0x03 },
- new [] { 0x45F9, 0x04 },
- new [] { 0x40CE, 0x05 },
- new [] { 0x4F97, 0x06 },
- new [] { 0x4AA0, 0x07 },
- new [] { 0x77C4, 0x08 },
- new [] { 0x72F3, 0x09 },
- new [] { 0x7DAA, 0x0A },
- new [] { 0x789D, 0x0B },
- new [] { 0x662F, 0x0C },
- new [] { 0x6318, 0x0D },
- new [] { 0x6C41, 0x0E },
- new [] { 0x6976, 0x0F },
- new [] { 0x1689, 0x10 },
- new [] { 0x13BE, 0x11 },
- new [] { 0x1CE7, 0x12 },
- new [] { 0x19D0, 0x13 },
- new [] { 0x0762, 0x14 },
- new [] { 0x0255, 0x15 },
- new [] { 0x0D0C, 0x16 },
- new [] { 0x083B, 0x17 },
- new [] { 0x355F, 0x18 },
- new [] { 0x3068, 0x19 },
- new [] { 0x3F31, 0x1A },
- new [] { 0x3A06, 0x1B },
- new [] { 0x24B4, 0x1C },
- new [] { 0x2183, 0x1D },
- new [] { 0x2EDA, 0x1E },
- new [] { 0x2BED, 0x1F }
- };
-
- /// Offset i holds the number of 1 bits in the binary representation of i
- private static readonly int[] BITS_SET_IN_HALF_BYTE = new []
- { 0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4 };
-
- private readonly ErrorCorrectionLevel errorCorrectionLevel;
- private readonly byte dataMask;
-
- private FormatInformation(int formatInfo)
- {
- // Bits 3,4
- errorCorrectionLevel = ErrorCorrectionLevel.forBits((formatInfo >> 3) & 0x03);
- // Bottom 3 bits
- dataMask = (byte)(formatInfo & 0x07);
- }
-
- internal static int numBitsDiffering(int a, int b)
- {
- a ^= b; // a now has a 1 bit exactly where its bit differs with b's
- // Count bits set quickly with a series of lookups:
- return BITS_SET_IN_HALF_BYTE[a & 0x0F] +
- BITS_SET_IN_HALF_BYTE[(((int)((uint)a >> 4)) & 0x0F)] +
- BITS_SET_IN_HALF_BYTE[(((int)((uint)a >> 8)) & 0x0F)] +
- BITS_SET_IN_HALF_BYTE[(((int)((uint)a >> 12)) & 0x0F)] +
- BITS_SET_IN_HALF_BYTE[(((int)((uint)a >> 16)) & 0x0F)] +
- BITS_SET_IN_HALF_BYTE[(((int)((uint)a >> 20)) & 0x0F)] +
- BITS_SET_IN_HALF_BYTE[(((int)((uint)a >> 24)) & 0x0F)] +
- BITS_SET_IN_HALF_BYTE[(((int)((uint)a >> 28)) & 0x0F)];
- }
-
- ///
- /// Decodes the format information.
- ///
- /// format info indicator, with mask still applied
- /// The masked format info2.
- ///
- /// information about the format it specifies, or null
- /// if doesn't seem to match any known pattern
- ///
- internal static FormatInformation decodeFormatInformation(int maskedFormatInfo1, int maskedFormatInfo2)
- {
- FormatInformation formatInfo = doDecodeFormatInformation(maskedFormatInfo1, maskedFormatInfo2);
- if (formatInfo != null)
- {
- return formatInfo;
- }
- // Should return null, but, some QR codes apparently
- // do not mask this info. Try again by actually masking the pattern
- // first
- return doDecodeFormatInformation(maskedFormatInfo1 ^ FORMAT_INFO_MASK_QR,
- maskedFormatInfo2 ^ FORMAT_INFO_MASK_QR);
- }
-
- private static FormatInformation doDecodeFormatInformation(int maskedFormatInfo1, int maskedFormatInfo2)
- {
- // Find the int in FORMAT_INFO_DECODE_LOOKUP with fewest bits differing
- int bestDifference = Int32.MaxValue;
- int bestFormatInfo = 0;
- foreach (var decodeInfo in FORMAT_INFO_DECODE_LOOKUP)
- {
- int targetInfo = decodeInfo[0];
- if (targetInfo == maskedFormatInfo1 || targetInfo == maskedFormatInfo2)
- {
- // Found an exact match
- return new FormatInformation(decodeInfo[1]);
- }
- int bitsDifference = numBitsDiffering(maskedFormatInfo1, targetInfo);
- if (bitsDifference < bestDifference)
- {
- bestFormatInfo = decodeInfo[1];
- bestDifference = bitsDifference;
- }
- if (maskedFormatInfo1 != maskedFormatInfo2)
- {
- // also try the other option
- bitsDifference = numBitsDiffering(maskedFormatInfo2, targetInfo);
- if (bitsDifference < bestDifference)
- {
- bestFormatInfo = decodeInfo[1];
- bestDifference = bitsDifference;
- }
- }
- }
- // Hamming distance of the 32 masked codes is 7, by construction, so <= 3 bits
- // differing means we found a match
- if (bestDifference <= 3)
- {
- return new FormatInformation(bestFormatInfo);
- }
- return null;
- }
-
- internal ErrorCorrectionLevel ErrorCorrectionLevel
- {
- get
- {
- return errorCorrectionLevel;
- }
- }
-
- internal byte DataMask
- {
- get
- {
- return dataMask;
- }
- }
-
- public override int GetHashCode()
- {
- return (errorCorrectionLevel.ordinal() << 3) | dataMask;
- }
-
- public override bool Equals(Object o)
- {
- if (!(o is FormatInformation))
- {
- return false;
- }
- var other = (FormatInformation)o;
- return errorCorrectionLevel == other.errorCorrectionLevel && dataMask == other.dataMask;
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/decoder/Mode.cs b/shadowsocks-csharp/3rd/zxing/qrcode/decoder/Mode.cs
deleted file mode 100755
index 548ea6d7..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/decoder/Mode.cs
+++ /dev/null
@@ -1,179 +0,0 @@
-/*
-* Copyright 2007 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using System;
-
-namespace ZXing.QrCode.Internal
-{
- ///
- /// See ISO 18004:2006, 6.4.1, Tables 2 and 3. This enum encapsulates the various modes in which
- /// data can be encoded to bits in the QR code standard.
- ///
- /// Sean Owen
- public sealed class Mode
- {
- ///
- /// Gets the name.
- ///
- public String Name
- {
- get
- {
- return name;
- }
- }
-
- // No, we can't use an enum here. J2ME doesn't support it.
-
- ///
- ///
- ///
- public static readonly Mode TERMINATOR = new Mode(new int[] { 0, 0, 0 }, 0x00, "TERMINATOR"); // Not really a mode...
- ///
- ///
- ///
- public static readonly Mode NUMERIC = new Mode(new int[] { 10, 12, 14 }, 0x01, "NUMERIC");
- ///
- ///
- ///
- public static readonly Mode ALPHANUMERIC = new Mode(new int[] { 9, 11, 13 }, 0x02, "ALPHANUMERIC");
- ///
- ///
- ///
- public static readonly Mode STRUCTURED_APPEND = new Mode(new int[] { 0, 0, 0 }, 0x03, "STRUCTURED_APPEND"); // Not supported
- ///
- ///
- ///
- public static readonly Mode BYTE = new Mode(new int[] { 8, 16, 16 }, 0x04, "BYTE");
- ///
- ///
- ///
- public static readonly Mode ECI = new Mode(null, 0x07, "ECI"); // character counts don't apply
- ///
- ///
- ///
- public static readonly Mode KANJI = new Mode(new int[] { 8, 10, 12 }, 0x08, "KANJI");
- ///
- ///
- ///
- public static readonly Mode FNC1_FIRST_POSITION = new Mode(null, 0x05, "FNC1_FIRST_POSITION");
- ///
- ///
- ///
- public static readonly Mode FNC1_SECOND_POSITION = new Mode(null, 0x09, "FNC1_SECOND_POSITION");
- /// See GBT 18284-2000; "Hanzi" is a transliteration of this mode name.
- public static readonly Mode HANZI = new Mode(new int[] { 8, 10, 12 }, 0x0D, "HANZI");
-
- private readonly int[] characterCountBitsForVersions;
- private readonly int bits;
- private readonly String name;
-
- private Mode(int[] characterCountBitsForVersions, int bits, System.String name)
- {
- this.characterCountBitsForVersions = characterCountBitsForVersions;
- this.bits = bits;
- this.name = name;
- }
-
- ///
- /// Fors the bits.
- ///
- /// four bits encoding a QR Code data mode
- ///
- /// encoded by these bits
- ///
- /// if bits do not correspond to a known mode
- public static Mode forBits(int bits)
- {
- switch (bits)
- {
- case 0x0:
- return TERMINATOR;
- case 0x1:
- return NUMERIC;
- case 0x2:
- return ALPHANUMERIC;
- case 0x3:
- return STRUCTURED_APPEND;
- case 0x4:
- return BYTE;
- case 0x5:
- return FNC1_FIRST_POSITION;
- case 0x7:
- return ECI;
- case 0x8:
- return KANJI;
- case 0x9:
- return FNC1_SECOND_POSITION;
- case 0xD:
- // 0xD is defined in GBT 18284-2000, may not be supported in foreign country
- return HANZI;
- default:
- throw new ArgumentException();
- }
- }
-
- /// version in question
- ///
- /// number of bits used, in this QR Code symbol {@link Version}, to encode the
- /// count of characters that will follow encoded in this {@link Mode}
- ///
- public int getCharacterCountBits(Version version)
- {
- if (characterCountBitsForVersions == null)
- {
- throw new ArgumentException("Character count doesn't apply to this mode");
- }
- int number = version.VersionNumber;
- int offset;
- if (number <= 9)
- {
- offset = 0;
- }
- else if (number <= 26)
- {
- offset = 1;
- }
- else
- {
- offset = 2;
- }
- return characterCountBitsForVersions[offset];
- }
-
- ///
- /// Gets the bits.
- ///
- public int Bits
- {
- get
- {
- return bits;
- }
- }
-
- ///
- /// Returns a that represents this instance.
- ///
- ///
- /// A that represents this instance.
- ///
- public override String ToString()
- {
- return name;
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/decoder/QRCodeDecoderMetaData.cs b/shadowsocks-csharp/3rd/zxing/qrcode/decoder/QRCodeDecoderMetaData.cs
deleted file mode 100755
index cc059aa9..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/decoder/QRCodeDecoderMetaData.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * Copyright 2013 ZXing authors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-namespace ZXing.QrCode.Internal
-{
- ///
- /// Meta-data container for QR Code decoding. Instances of this class may be used to convey information back to the
- /// decoding caller. Callers are expected to process this.
- ///
- public sealed class QRCodeDecoderMetaData
- {
- private readonly bool mirrored;
-
- ///
- /// Initializes a new instance of the class.
- ///
- /// if set to true [mirrored].
- public QRCodeDecoderMetaData(bool mirrored)
- {
- this.mirrored = mirrored;
- }
-
- ///
- /// true if the QR Code was mirrored.
- ///
- public bool IsMirrored
- {
- get { return mirrored; }
- }
-
- ///
- /// Apply the result points' order correction due to mirroring.
- ///
- /// Array of points to apply mirror correction to.
- public void applyMirroredCorrection(ResultPoint[] points)
- {
- if (!mirrored || points == null || points.Length < 3)
- {
- return;
- }
- ResultPoint bottomLeft = points[0];
- points[0] = points[2];
- points[2] = bottomLeft;
- // No need to 'fix' top-left and alignment pattern.
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/decoder/Version.cs b/shadowsocks-csharp/3rd/zxing/qrcode/decoder/Version.cs
deleted file mode 100755
index e619933d..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/decoder/Version.cs
+++ /dev/null
@@ -1,424 +0,0 @@
-/*
-* Copyright 2007 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using System;
-
-using ZXing.Common;
-
-namespace ZXing.QrCode.Internal
-{
- ///
- /// See ISO 18004:2006 Annex D
- ///
- /// Sean Owen
- public sealed class Version
- {
- /// See ISO 18004:2006 Annex D.
- /// Element i represents the raw version bits that specify version i + 7
- ///
- private static readonly int[] VERSION_DECODE_INFO = new[]
- {
- 0x07C94, 0x085BC, 0x09A99, 0x0A4D3, 0x0BBF6,
- 0x0C762, 0x0D847, 0x0E60D, 0x0F928, 0x10B78,
- 0x1145D, 0x12A17, 0x13532, 0x149A6, 0x15683,
- 0x168C9, 0x177EC, 0x18EC4, 0x191E1, 0x1AFAB,
- 0x1B08E, 0x1CC1A, 0x1D33F, 0x1ED75, 0x1F250,
- 0x209D5, 0x216F0, 0x228BA, 0x2379F, 0x24B0B,
- 0x2542E, 0x26A64, 0x27541, 0x28C69
- };
-
- private static readonly Version[] VERSIONS = buildVersions();
-
- private readonly int versionNumber;
- private readonly int[] alignmentPatternCenters;
- private readonly ECBlocks[] ecBlocks;
- private readonly int totalCodewords;
-
- private Version(int versionNumber, int[] alignmentPatternCenters, params ECBlocks[] ecBlocks)
- {
- this.versionNumber = versionNumber;
- this.alignmentPatternCenters = alignmentPatternCenters;
- this.ecBlocks = ecBlocks;
- int total = 0;
- int ecCodewords = ecBlocks[0].ECCodewordsPerBlock;
- ECB[] ecbArray = ecBlocks[0].getECBlocks();
- foreach (var ecBlock in ecbArray)
- {
- total += ecBlock.Count * (ecBlock.DataCodewords + ecCodewords);
- }
- this.totalCodewords = total;
- }
-
- ///
- /// Gets the version number.
- ///
- public int VersionNumber
- {
- get
- {
- return versionNumber;
- }
-
- }
-
- ///
- /// Gets the alignment pattern centers.
- ///
- public int[] AlignmentPatternCenters
- {
- get
- {
- return alignmentPatternCenters;
- }
-
- }
-
- ///
- /// Gets the total codewords.
- ///
- public int TotalCodewords
- {
- get
- {
- return totalCodewords;
- }
-
- }
-
- ///
- /// Gets the dimension for version.
- ///
- public int DimensionForVersion
- {
- get
- {
- return 17 + 4 * versionNumber;
- }
-
- }
-
- ///
- /// Gets the EC blocks for level.
- ///
- /// The ec level.
- ///
- public ECBlocks getECBlocksForLevel(ErrorCorrectionLevel ecLevel)
- {
- return ecBlocks[ecLevel.ordinal()];
- }
-
- /// Deduces version information purely from QR Code dimensions.
- ///
- ///
- /// dimension in modules
- ///
- /// for a QR Code of that dimension or null
- public static Version getProvisionalVersionForDimension(int dimension)
- {
- if (dimension % 4 != 1)
- {
- return null;
- }
- try
- {
- return getVersionForNumber((dimension - 17) >> 2);
- }
- catch (ArgumentException)
- {
- return null;
- }
- }
-
- ///
- /// Gets the version for number.
- ///
- /// The version number.
- ///
- public static Version getVersionForNumber(int versionNumber)
- {
- if (versionNumber < 1 || versionNumber > 40)
- {
- throw new ArgumentException();
- }
- return VERSIONS[versionNumber - 1];
- }
-
- internal static Version decodeVersionInformation(int versionBits)
- {
- int bestDifference = Int32.MaxValue;
- int bestVersion = 0;
- for (int i = 0; i < VERSION_DECODE_INFO.Length; i++)
- {
- int targetVersion = VERSION_DECODE_INFO[i];
- // Do the version info bits match exactly? done.
- if (targetVersion == versionBits)
- {
- return getVersionForNumber(i + 7);
- }
- // Otherwise see if this is the closest to a real version info bit string
- // we have seen so far
- int bitsDifference = FormatInformation.numBitsDiffering(versionBits, targetVersion);
- if (bitsDifference < bestDifference)
- {
- bestVersion = i + 7;
- bestDifference = bitsDifference;
- }
- }
- // We can tolerate up to 3 bits of error since no two version info codewords will
- // differ in less than 8 bits.
- if (bestDifference <= 3)
- {
- return getVersionForNumber(bestVersion);
- }
- // If we didn't find a close enough match, fail
- return null;
- }
-
- /// See ISO 18004:2006 Annex E
- internal BitMatrix buildFunctionPattern()
- {
- int dimension = DimensionForVersion;
- BitMatrix bitMatrix = new BitMatrix(dimension);
-
- // Top left finder pattern + separator + format
- bitMatrix.setRegion(0, 0, 9, 9);
- // Top right finder pattern + separator + format
- bitMatrix.setRegion(dimension - 8, 0, 8, 9);
- // Bottom left finder pattern + separator + format
- bitMatrix.setRegion(0, dimension - 8, 9, 8);
-
- // Alignment patterns
- int max = alignmentPatternCenters.Length;
- for (int x = 0; x < max; x++)
- {
- int i = alignmentPatternCenters[x] - 2;
- for (int y = 0; y < max; y++)
- {
- if ((x == 0 && (y == 0 || y == max - 1)) || (x == max - 1 && y == 0))
- {
- // No alignment patterns near the three finder paterns
- continue;
- }
- bitMatrix.setRegion(alignmentPatternCenters[y] - 2, i, 5, 5);
- }
- }
-
- // Vertical timing pattern
- bitMatrix.setRegion(6, 9, 1, dimension - 17);
- // Horizontal timing pattern
- bitMatrix.setRegion(9, 6, dimension - 17, 1);
-
- if (versionNumber > 6)
- {
- // Version info, top right
- bitMatrix.setRegion(dimension - 11, 0, 3, 6);
- // Version info, bottom left
- bitMatrix.setRegion(0, dimension - 11, 6, 3);
- }
-
- return bitMatrix;
- }
-
- /// Encapsulates a set of error-correction blocks in one symbol version. Most versions will
- /// use blocks of differing sizes within one version, so, this encapsulates the parameters for
- /// each set of blocks. It also holds the number of error-correction codewords per block since it
- /// will be the same across all blocks within one version.
- ///
- public sealed class ECBlocks
- {
- private readonly int ecCodewordsPerBlock;
- private readonly ECB[] ecBlocks;
-
- internal ECBlocks(int ecCodewordsPerBlock, params ECB[] ecBlocks)
- {
- this.ecCodewordsPerBlock = ecCodewordsPerBlock;
- this.ecBlocks = ecBlocks;
- }
-
- ///
- /// Gets the EC codewords per block.
- ///
- public int ECCodewordsPerBlock
- {
- get
- {
- return ecCodewordsPerBlock;
- }
- }
-
- ///
- /// Gets the num blocks.
- ///
- public int NumBlocks
- {
- get
- {
- int total = 0;
- foreach (var ecBlock in ecBlocks)
- {
- total += ecBlock.Count;
- }
- return total;
- }
- }
-
- ///
- /// Gets the total EC codewords.
- ///
- public int TotalECCodewords
- {
- get
- {
- return ecCodewordsPerBlock * NumBlocks;
- }
- }
-
- ///
- /// Gets the EC blocks.
- ///
- ///
- public ECB[] getECBlocks()
- {
- return ecBlocks;
- }
- }
-
- /// Encapsualtes the parameters for one error-correction block in one symbol version.
- /// This includes the number of data codewords, and the number of times a block with these
- /// parameters is used consecutively in the QR code version's format.
- ///
- public sealed class ECB
- {
- private readonly int count;
- private readonly int dataCodewords;
-
- internal ECB(int count, int dataCodewords)
- {
- this.count = count;
- this.dataCodewords = dataCodewords;
- }
-
- ///
- /// Gets the count.
- ///
- public int Count
- {
- get
- {
- return count;
- }
-
- }
- ///
- /// Gets the data codewords.
- ///
- public int DataCodewords
- {
- get
- {
- return dataCodewords;
- }
-
- }
- }
-
- ///
- /// Returns a that represents this instance.
- ///
- ///
- /// A that represents this instance.
- ///
- public override String ToString()
- {
- return Convert.ToString(versionNumber);
- }
-
- /// See ISO 18004:2006 6.5.1 Table 9
- private static Version[] buildVersions()
- {
- return new Version[]{
- new Version(1, new int[]{},
- new ECBlocks(7, new ECB(1, 19)),
- new ECBlocks(10, new ECB(1, 16)),
- new ECBlocks(13, new ECB(1, 13)),
- new ECBlocks(17, new ECB(1, 9))),
- new Version(2, new int[]{6, 18},
- new ECBlocks(10, new ECB(1, 34)),
- new ECBlocks(16, new ECB(1, 28)),
- new ECBlocks(22, new ECB(1, 22)),
- new ECBlocks(28, new ECB(1, 16))),
- new Version(3, new int[]{6, 22},
- new ECBlocks(15, new ECB(1, 55)),
- new ECBlocks(26, new ECB(1, 44)),
- new ECBlocks(18, new ECB(2, 17)),
- new ECBlocks(22, new ECB(2, 13))),
- new Version(4, new int[]{6, 26},
- new ECBlocks(20, new ECB(1, 80)),
- new ECBlocks(18, new ECB(2, 32)),
- new ECBlocks(26, new ECB(2, 24)),
- new ECBlocks(16, new ECB(4, 9))),
- new Version(5, new int[]{6, 30},
- new ECBlocks(26, new ECB(1, 108)),
- new ECBlocks(24, new ECB(2, 43)),
- new ECBlocks(18, new ECB(2, 15),
- new ECB(2, 16)),
- new ECBlocks(22, new ECB(2, 11),
- new ECB(2, 12))),
- new Version(6, new int[]{6, 34},
- new ECBlocks(18, new ECB(2, 68)),
- new ECBlocks(16, new ECB(4, 27)),
- new ECBlocks(24, new ECB(4, 19)),
- new ECBlocks(28, new ECB(4, 15))),
- new Version(7, new int[]{6, 22, 38},
- new ECBlocks(20, new ECB(2, 78)),
- new ECBlocks(18, new ECB(4, 31)),
- new ECBlocks(18, new ECB(2, 14),
- new ECB(4, 15)),
- new ECBlocks(26, new ECB(4, 13),
- new ECB(1, 14))),
- new Version(8, new int[]{6, 24, 42},
- new ECBlocks(24, new ECB(2, 97)),
- new ECBlocks(22, new ECB(2, 38),
- new ECB(2, 39)),
- new ECBlocks(22, new ECB(4, 18),
- new ECB(2, 19)),
- new ECBlocks(26, new ECB(4, 14),
- new ECB(2, 15))),
- new Version(9, new int[]{6, 26, 46},
- new ECBlocks(30, new ECB(2, 116)),
- new ECBlocks(22, new ECB(3, 36),
- new ECB(2, 37)),
- new ECBlocks(20, new ECB(4, 16),
- new ECB(4, 17)),
- new ECBlocks(24, new ECB(4, 12),
- new ECB(4, 13))),
- new Version(10, new int[]{6, 28, 50},
- new ECBlocks(18, new ECB(2, 68),
- new ECB(2, 69)),
- new ECBlocks(26, new ECB(4, 43),
- new ECB(1, 44)),
- new ECBlocks(24, new ECB(6, 19),
- new ECB(2, 20)),
- new ECBlocks(28, new ECB(6, 15),
- new ECB(2, 16))),
- new Version(11, new int[]{6, 30, 54}, new ECBlocks(20, new ECB(4, 81)),
- new ECBlocks(30, new ECB(1, 50), new ECB(4, 51)), new ECBlocks(28, new ECB(4, 22), new ECB(4, 23)), new ECBlocks(24, new ECB(3, 12), new ECB(8, 13))), new Version(12, new int[]{6, 32, 58}, new ECBlocks(24, new ECB(2, 92), new ECB(2, 93)), new ECBlocks(22, new ECB(6, 36), new ECB(2, 37)), new ECBlocks(26, new ECB(4, 20), new ECB(6, 21)), new ECBlocks(28, new ECB(7, 14), new ECB(4, 15))), new Version(13, new int[]{6, 34, 62}, new ECBlocks(26, new ECB(4, 107)), new ECBlocks(22, new ECB(8, 37), new ECB(1, 38)), new ECBlocks(24, new ECB(8, 20), new ECB(4, 21)), new ECBlocks(22, new ECB(12, 11), new ECB(4, 12))), new Version(14, new int[]{6, 26, 46, 66}, new ECBlocks(30, new ECB(3, 115), new ECB(1, 116)), new ECBlocks(24, new ECB(4, 40), new ECB(5, 41)), new ECBlocks(20, new ECB(11, 16), new ECB(5, 17)), new ECBlocks(24, new ECB(11, 12), new ECB(5, 13))), new Version(15, new int[]{6, 26, 48, 70}, new ECBlocks(22, new ECB(5, 87), new ECB(1, 88)), new ECBlocks(24, new ECB(5, 41), new ECB(5, 42)), new ECBlocks(30, new ECB(5, 24), new ECB(7, 25)), new ECBlocks(24, new ECB(11, 12), new ECB(7, 13))), new Version(16, new int[]{6, 26, 50, 74}, new ECBlocks(24, new ECB(5, 98), new ECB(1, 99)), new ECBlocks(28, new ECB(7, 45), new ECB(3, 46)), new ECBlocks(24, new ECB(15, 19), new ECB(2, 20)), new ECBlocks(30, new ECB(3, 15), new ECB(13, 16))), new Version(17, new int[]{6, 30, 54, 78}, new ECBlocks(28, new ECB(1, 107), new ECB(5, 108)), new ECBlocks(28, new ECB(10, 46), new ECB(1, 47)), new ECBlocks(28, new ECB(1, 22), new ECB(15, 23)), new ECBlocks(28, new ECB(2, 14), new ECB(17, 15))), new Version(18, new int[]{6, 30, 56, 82}, new ECBlocks(30, new ECB(5, 120), new ECB(1, 121)), new ECBlocks(26, new ECB(9, 43), new ECB(4, 44)), new ECBlocks(28, new ECB(17, 22), new ECB(1, 23)), new ECBlocks(28, new ECB(2, 14), new ECB(19, 15))), new Version(19, new int[]{6, 30, 58, 86}, new ECBlocks(28, new ECB(3, 113), new ECB(4, 114)), new ECBlocks(26, new ECB(3, 44), new ECB(11, 45)), new ECBlocks(26, new ECB(17, 21),
- new ECB(4, 22)), new ECBlocks(26, new ECB(9, 13), new ECB(16, 14))), new Version(20, new int[]{6, 34, 62, 90}, new ECBlocks(28, new ECB(3, 107), new ECB(5, 108)), new ECBlocks(26, new ECB(3, 41), new ECB(13, 42)), new ECBlocks(30, new ECB(15, 24), new ECB(5, 25)), new ECBlocks(28, new ECB(15, 15), new ECB(10, 16))), new Version(21, new int[]{6, 28, 50, 72, 94}, new ECBlocks(28, new ECB(4, 116), new ECB(4, 117)), new ECBlocks(26, new ECB(17, 42)), new ECBlocks(28, new ECB(17, 22), new ECB(6, 23)), new ECBlocks(30, new ECB(19, 16), new ECB(6, 17))), new Version(22, new int[]{6, 26, 50, 74, 98}, new ECBlocks(28, new ECB(2, 111), new ECB(7, 112)), new ECBlocks(28, new ECB(17, 46)), new ECBlocks(30, new ECB(7, 24), new ECB(16, 25)), new ECBlocks(24, new ECB(34, 13))), new Version(23, new int[]{6, 30, 54, 74, 102}, new ECBlocks(30, new ECB(4, 121), new ECB(5, 122)), new ECBlocks(28, new ECB(4, 47), new ECB(14, 48)), new ECBlocks(30, new ECB(11, 24), new ECB(14, 25)), new ECBlocks(30, new ECB(16, 15), new ECB(14, 16))), new Version(24, new int[]{6, 28, 54, 80, 106}, new ECBlocks(30, new ECB(6, 117), new ECB(4, 118)), new ECBlocks(28, new ECB(6, 45), new ECB(14, 46)), new ECBlocks(30, new ECB(11, 24), new ECB(16, 25)), new ECBlocks(30, new ECB(30, 16), new ECB(2, 17))), new Version(25, new int[]{6, 32, 58, 84, 110}, new ECBlocks(26, new ECB(8, 106), new ECB(4, 107)), new ECBlocks(28, new ECB(8, 47), new ECB(13, 48)), new ECBlocks(30, new ECB(7, 24), new ECB(22, 25)), new ECBlocks(30, new ECB(22, 15), new ECB(13, 16))), new Version(26, new int[]{6, 30, 58, 86, 114}, new ECBlocks(28, new ECB(10, 114), new ECB(2, 115)), new ECBlocks(28, new ECB(19, 46), new ECB(4, 47)), new ECBlocks(28, new ECB(28, 22), new ECB(6, 23)), new ECBlocks(30, new ECB(33, 16), new ECB(4, 17))), new Version(27, new int[]{6, 34, 62, 90, 118}, new ECBlocks(30, new ECB(8, 122), new ECB(4, 123)), new ECBlocks(28, new ECB(22, 45), new ECB(3, 46)), new ECBlocks(30, new ECB(8, 23), new ECB(26, 24)), new ECBlocks(30, new ECB(12, 15),
- new ECB(28, 16))), new Version(28, new int[]{6, 26, 50, 74, 98, 122}, new ECBlocks(30, new ECB(3, 117), new ECB(10, 118)), new ECBlocks(28, new ECB(3, 45), new ECB(23, 46)), new ECBlocks(30, new ECB(4, 24), new ECB(31, 25)), new ECBlocks(30, new ECB(11, 15), new ECB(31, 16))), new Version(29, new int[]{6, 30, 54, 78, 102, 126}, new ECBlocks(30, new ECB(7, 116), new ECB(7, 117)), new ECBlocks(28, new ECB(21, 45), new ECB(7, 46)), new ECBlocks(30, new ECB(1, 23), new ECB(37, 24)), new ECBlocks(30, new ECB(19, 15), new ECB(26, 16))), new Version(30, new int[]{6, 26, 52, 78, 104, 130}, new ECBlocks(30, new ECB(5, 115), new ECB(10, 116)), new ECBlocks(28, new ECB(19, 47), new ECB(10, 48)), new ECBlocks(30, new ECB(15, 24), new ECB(25, 25)), new ECBlocks(30, new ECB(23, 15), new ECB(25, 16))), new Version(31, new int[]{6, 30, 56, 82, 108, 134}, new ECBlocks(30, new ECB(13, 115), new ECB(3, 116)), new ECBlocks(28, new ECB(2, 46), new ECB(29, 47)), new ECBlocks(30, new ECB(42, 24), new ECB(1, 25)), new ECBlocks(30, new ECB(23, 15), new ECB(28, 16))), new Version(32, new int[]{6, 34, 60, 86, 112, 138}, new ECBlocks(30, new ECB(17, 115)), new ECBlocks(28, new ECB(10, 46), new ECB(23, 47)), new ECBlocks(30, new ECB(10, 24), new ECB(35, 25)), new ECBlocks(30, new ECB(19, 15), new ECB(35, 16))), new Version(33, new int[]{6, 30, 58, 86, 114, 142}, new ECBlocks(30, new ECB(17, 115), new ECB(1, 116)), new ECBlocks(28, new ECB(14, 46), new ECB(21, 47)), new ECBlocks(30, new ECB(29, 24), new ECB(19, 25)), new ECBlocks(30, new ECB(11, 15), new ECB(46, 16))), new Version(34, new int[]{6, 34, 62, 90, 118, 146}, new ECBlocks(30, new ECB(13, 115), new ECB(6, 116)), new ECBlocks(28, new ECB(14, 46), new ECB(23, 47)), new ECBlocks(30, new ECB(44, 24), new ECB(7, 25)), new ECBlocks(30, new ECB(59, 16), new ECB(1, 17))), new Version(35, new int[]{6, 30, 54, 78, 102, 126, 150}, new ECBlocks(30, new ECB(12, 121), new ECB(7, 122)), new ECBlocks(28, new ECB(12, 47), new ECB(26, 48)), new ECBlocks(30, new ECB(39, 24), new
- ECB(14, 25)), new ECBlocks(30, new ECB(22, 15), new ECB(41, 16))), new Version(36, new int[]{6, 24, 50, 76, 102, 128, 154}, new ECBlocks(30, new ECB(6, 121), new ECB(14, 122)), new ECBlocks(28, new ECB(6, 47), new ECB(34, 48)), new ECBlocks(30, new ECB(46, 24), new ECB(10, 25)), new ECBlocks(30, new ECB(2, 15), new ECB(64, 16))), new Version(37, new int[]{6, 28, 54, 80, 106, 132, 158}, new ECBlocks(30, new ECB(17, 122), new ECB(4, 123)), new ECBlocks(28, new ECB(29, 46), new ECB(14, 47)), new ECBlocks(30, new ECB(49, 24), new ECB(10, 25)), new ECBlocks(30, new ECB(24, 15), new ECB(46, 16))), new Version(38, new int[]{6, 32, 58, 84, 110, 136, 162}, new ECBlocks(30, new ECB(4, 122), new ECB(18, 123)), new ECBlocks(28, new ECB(13, 46), new ECB(32, 47)), new ECBlocks(30, new ECB(48, 24), new ECB(14, 25)), new ECBlocks(30, new ECB(42, 15), new ECB(32, 16))), new Version(39, new int[]{6, 26, 54, 82, 110, 138, 166}, new ECBlocks(30, new ECB(20, 117), new ECB(4, 118)), new ECBlocks(28, new ECB(40, 47), new ECB(7, 48)), new ECBlocks(30, new ECB(43, 24), new ECB(22, 25)), new ECBlocks(30, new ECB(10, 15), new ECB(67, 16))), new Version(40, new int[]{6, 30, 58, 86, 114, 142, 170}, new ECBlocks(30, new ECB(19, 118), new ECB(6, 119)), new ECBlocks(28, new ECB(18, 47), new ECB(31, 48)), new ECBlocks(30, new ECB(34, 24), new ECB(34, 25)), new ECBlocks(30, new ECB(20, 15), new ECB(61, 16)))};
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/detector/AlignmentPattern.cs b/shadowsocks-csharp/3rd/zxing/qrcode/detector/AlignmentPattern.cs
deleted file mode 100755
index e7dd9460..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/detector/AlignmentPattern.cs
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
-* Copyright 2007 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using System;
-
-namespace ZXing.QrCode.Internal
-{
- /// Encapsulates an alignment pattern, which are the smaller square patterns found in
- /// all but the simplest QR Codes.
- ///
- ///
- /// Sean Owen
- ///
- /// www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source
- ///
- public sealed class AlignmentPattern : ResultPoint
- {
- private float estimatedModuleSize;
-
- internal AlignmentPattern(float posX, float posY, float estimatedModuleSize)
- : base(posX, posY)
- {
- this.estimatedModuleSize = estimatedModuleSize;
- }
-
- /// Determines if this alignment pattern "about equals" an alignment pattern at the stated
- /// position and size -- meaning, it is at nearly the same center with nearly the same size.
- ///
- internal bool aboutEquals(float moduleSize, float i, float j)
- {
- if (Math.Abs(i - Y) <= moduleSize && Math.Abs(j - X) <= moduleSize)
- {
- float moduleSizeDiff = Math.Abs(moduleSize - estimatedModuleSize);
- return moduleSizeDiff <= 1.0f || moduleSizeDiff <= estimatedModuleSize;
- }
- return false;
- }
-
- ///
- /// Combines this object's current estimate of a finder pattern position and module size
- /// with a new estimate. It returns a new {@code FinderPattern} containing an average of the two.
- ///
- /// The i.
- /// The j.
- /// New size of the module.
- ///
- internal AlignmentPattern combineEstimate(float i, float j, float newModuleSize)
- {
- float combinedX = (X + j) / 2.0f;
- float combinedY = (Y + i) / 2.0f;
- float combinedModuleSize = (estimatedModuleSize + newModuleSize) / 2.0f;
- return new AlignmentPattern(combinedX, combinedY, combinedModuleSize);
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/detector/AlignmentPatternFinder.cs b/shadowsocks-csharp/3rd/zxing/qrcode/detector/AlignmentPatternFinder.cs
deleted file mode 100755
index b8cdec5b..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/detector/AlignmentPatternFinder.cs
+++ /dev/null
@@ -1,324 +0,0 @@
-/*
-* Copyright 2007 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using System;
-using System.Collections.Generic;
-
-using ZXing.Common;
-
-namespace ZXing.QrCode.Internal
-{
- /// This class attempts to find alignment patterns in a QR Code. Alignment patterns look like finder
- /// patterns but are smaller and appear at regular intervals throughout the image.
- ///
- /// At the moment this only looks for the bottom-right alignment pattern.
- ///
- /// This is mostly a simplified copy of {@link FinderPatternFinder}. It is copied,
- /// pasted and stripped down here for maximum performance but does unfortunately duplicate
- /// some code.
- ///
- /// This class is thread-safe but not reentrant. Each thread must allocate its own object.
- ///
- ///
- /// Sean Owen
- ///
- /// www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source
- ///
- sealed class AlignmentPatternFinder
- {
- private readonly BitMatrix image;
- private readonly IList possibleCenters;
- private readonly int startX;
- private readonly int startY;
- private readonly int width;
- private readonly int height;
- private readonly float moduleSize;
- private readonly int[] crossCheckStateCount;
- private readonly ResultPointCallback resultPointCallback;
-
- /// Creates a finder that will look in a portion of the whole image.
- ///
- ///
- /// image to search
- ///
- /// left column from which to start searching
- ///
- /// top row from which to start searching
- ///
- /// width of region to search
- ///
- /// height of region to search
- ///
- /// estimated module size so far
- ///
- internal AlignmentPatternFinder(BitMatrix image, int startX, int startY, int width, int height, float moduleSize, ResultPointCallback resultPointCallback)
- {
- this.image = image;
- this.possibleCenters = new List(5);
- this.startX = startX;
- this.startY = startY;
- this.width = width;
- this.height = height;
- this.moduleSize = moduleSize;
- this.crossCheckStateCount = new int[3];
- this.resultPointCallback = resultPointCallback;
- }
-
- /// This method attempts to find the bottom-right alignment pattern in the image. It is a bit messy since
- /// it's pretty performance-critical and so is written to be fast foremost.
- ///
- ///
- /// {@link AlignmentPattern} if found
- ///
- internal AlignmentPattern find()
- {
- int startX = this.startX;
- int height = this.height;
- int maxJ = startX + width;
- int middleI = startY + (height >> 1);
- // We are looking for black/white/black modules in 1:1:1 ratio;
- // this tracks the number of black/white/black modules seen so far
- int[] stateCount = new int[3];
- for (int iGen = 0; iGen < height; iGen++)
- {
- // Search from middle outwards
- int i = middleI + ((iGen & 0x01) == 0 ? ((iGen + 1) >> 1) : -((iGen + 1) >> 1));
- stateCount[0] = 0;
- stateCount[1] = 0;
- stateCount[2] = 0;
- int j = startX;
- // Burn off leading white pixels before anything else; if we start in the middle of
- // a white run, it doesn't make sense to count its length, since we don't know if the
- // white run continued to the left of the start point
- while (j < maxJ && !image[j, i])
- {
- j++;
- }
- int currentState = 0;
- while (j < maxJ)
- {
- if (image[j, i])
- {
- // Black pixel
- if (currentState == 1)
- {
- // Counting black pixels
- stateCount[currentState]++;
- }
- else
- {
- // Counting white pixels
- if (currentState == 2)
- {
- // A winner?
- if (foundPatternCross(stateCount))
- {
- // Yes
- AlignmentPattern confirmed = handlePossibleCenter(stateCount, i, j);
- if (confirmed != null)
- {
- return confirmed;
- }
- }
- stateCount[0] = stateCount[2];
- stateCount[1] = 1;
- stateCount[2] = 0;
- currentState = 1;
- }
- else
- {
- stateCount[++currentState]++;
- }
- }
- }
- else
- {
- // White pixel
- if (currentState == 1)
- {
- // Counting black pixels
- currentState++;
- }
- stateCount[currentState]++;
- }
- j++;
- }
- if (foundPatternCross(stateCount))
- {
- AlignmentPattern confirmed = handlePossibleCenter(stateCount, i, maxJ);
- if (confirmed != null)
- {
- return confirmed;
- }
- }
- }
-
- // Hmm, nothing we saw was observed and confirmed twice. If we had
- // any guess at all, return it.
- if (possibleCenters.Count != 0)
- {
- return possibleCenters[0];
- }
-
- return null;
- }
-
- /// Given a count of black/white/black pixels just seen and an end position,
- /// figures the location of the center of this black/white/black run.
- ///
- private static float? centerFromEnd(int[] stateCount, int end)
- {
- var result = (end - stateCount[2]) - stateCount[1] / 2.0f;
- if (Single.IsNaN(result))
- return null;
- return result;
- }
-
- /// count of black/white/black pixels just read
- ///
- /// true iff the proportions of the counts is close enough to the 1/1/1 ratios
- /// used by alignment patterns to be considered a match
- ///
- private bool foundPatternCross(int[] stateCount)
- {
- float maxVariance = moduleSize / 2.0f;
- for (int i = 0; i < 3; i++)
- {
- if (Math.Abs(moduleSize - stateCount[i]) >= maxVariance)
- {
- return false;
- }
- }
- return true;
- }
-
- ///
- /// After a horizontal scan finds a potential alignment pattern, this method
- /// "cross-checks" by scanning down vertically through the center of the possible
- /// alignment pattern to see if the same proportion is detected.
- ///
- /// row where an alignment pattern was detected
- /// center of the section that appears to cross an alignment pattern
- /// maximum reasonable number of modules that should be
- /// observed in any reading state, based on the results of the horizontal scan
- /// The original state count total.
- ///
- /// vertical center of alignment pattern, or null if not found
- ///
- private float? crossCheckVertical(int startI, int centerJ, int maxCount, int originalStateCountTotal)
- {
- int maxI = image.Height;
- int[] stateCount = crossCheckStateCount;
- stateCount[0] = 0;
- stateCount[1] = 0;
- stateCount[2] = 0;
-
- // Start counting up from center
- int i = startI;
- while (i >= 0 && image[centerJ, i] && stateCount[1] <= maxCount)
- {
- stateCount[1]++;
- i--;
- }
- // If already too many modules in this state or ran off the edge:
- if (i < 0 || stateCount[1] > maxCount)
- {
- return null;
- }
- while (i >= 0 && !image[centerJ, i] && stateCount[0] <= maxCount)
- {
- stateCount[0]++;
- i--;
- }
- if (stateCount[0] > maxCount)
- {
- return null;
- }
-
- // Now also count down from center
- i = startI + 1;
- while (i < maxI && image[centerJ, i] && stateCount[1] <= maxCount)
- {
- stateCount[1]++;
- i++;
- }
- if (i == maxI || stateCount[1] > maxCount)
- {
- return null;
- }
- while (i < maxI && !image[centerJ, i] && stateCount[2] <= maxCount)
- {
- stateCount[2]++;
- i++;
- }
- if (stateCount[2] > maxCount)
- {
- return null;
- }
-
- int stateCountTotal = stateCount[0] + stateCount[1] + stateCount[2];
- if (5 * Math.Abs(stateCountTotal - originalStateCountTotal) >= 2 * originalStateCountTotal)
- {
- return null;
- }
-
- return foundPatternCross(stateCount) ? centerFromEnd(stateCount, i) : null;
- }
-
- /// This is called when a horizontal scan finds a possible alignment pattern. It will
- /// cross check with a vertical scan, and if successful, will see if this pattern had been
- /// found on a previous horizontal scan. If so, we consider it confirmed and conclude we have
- /// found the alignment pattern.
- ///
- ///
- /// reading state module counts from horizontal scan
- ///
- /// row where alignment pattern may be found
- ///
- /// end of possible alignment pattern in row
- ///
- /// {@link AlignmentPattern} if we have found the same pattern twice, or null if not
- ///
- private AlignmentPattern handlePossibleCenter(int[] stateCount, int i, int j)
- {
- int stateCountTotal = stateCount[0] + stateCount[1] + stateCount[2];
- float? centerJ = centerFromEnd(stateCount, j);
- if (centerJ == null)
- return null;
- float? centerI = crossCheckVertical(i, (int)centerJ, 2 * stateCount[1], stateCountTotal);
- if (centerI != null)
- {
- float estimatedModuleSize = (stateCount[0] + stateCount[1] + stateCount[2]) / 3.0f;
- foreach (var center in possibleCenters)
- {
- // Look for about the same center and module size:
- if (center.aboutEquals(estimatedModuleSize, centerI.Value, centerJ.Value))
- {
- return center.combineEstimate(centerI.Value, centerJ.Value, estimatedModuleSize);
- }
- }
- // Hadn't found this before; save it
- var point = new AlignmentPattern(centerJ.Value, centerI.Value, estimatedModuleSize);
- possibleCenters.Add(point);
- if (resultPointCallback != null)
- {
- resultPointCallback(point);
- }
- }
- return null;
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/detector/Detector.cs b/shadowsocks-csharp/3rd/zxing/qrcode/detector/Detector.cs
deleted file mode 100755
index 7ae8e3db..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/detector/Detector.cs
+++ /dev/null
@@ -1,429 +0,0 @@
-/*
-* Copyright 2007 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using System;
-using System.Collections.Generic;
-
-using ZXing.Common;
-using ZXing.Common.Detector;
-
-namespace ZXing.QrCode.Internal
-{
- ///
- /// Encapsulates logic that can detect a QR Code in an image, even if the QR Code
- /// is rotated or skewed, or partially obscured.
- ///
- /// Sean Owen
- public class Detector
- {
- private readonly BitMatrix image;
- private ResultPointCallback resultPointCallback;
-
- ///
- /// Initializes a new instance of the class.
- ///
- /// The image.
- public Detector(BitMatrix image)
- {
- this.image = image;
- }
-
- ///
- /// Gets the image.
- ///
- virtual protected internal BitMatrix Image
- {
- get
- {
- return image;
- }
- }
-
- ///
- /// Gets the result point callback.
- ///
- virtual protected internal ResultPointCallback ResultPointCallback
- {
- get
- {
- return resultPointCallback;
- }
- }
-
- ///
- /// Detects a QR Code in an image, simply.
- ///
- ///
- /// encapsulating results of detecting a QR Code
- ///
- public virtual DetectorResult detect()
- {
- return detect(null);
- }
-
- ///
- /// Detects a QR Code in an image, simply.
- ///
- /// optional hints to detector
- ///
- /// encapsulating results of detecting a QR Code
- ///
- public virtual DetectorResult detect(IDictionary hints)
- {
- resultPointCallback = hints == null || !hints.ContainsKey(DecodeHintType.NEED_RESULT_POINT_CALLBACK) ? null : (ResultPointCallback)hints[DecodeHintType.NEED_RESULT_POINT_CALLBACK];
-
- FinderPatternFinder finder = new FinderPatternFinder(image, resultPointCallback);
- FinderPatternInfo info = finder.find(hints);
- if (info == null)
- return null;
-
- return processFinderPatternInfo(info);
- }
-
- ///
- /// Processes the finder pattern info.
- ///
- /// The info.
- ///
- protected internal virtual DetectorResult processFinderPatternInfo(FinderPatternInfo info)
- {
- FinderPattern topLeft = info.TopLeft;
- FinderPattern topRight = info.TopRight;
- FinderPattern bottomLeft = info.BottomLeft;
-
- float moduleSize = calculateModuleSize(topLeft, topRight, bottomLeft);
- if (moduleSize < 1.0f)
- {
- return null;
- }
- int dimension;
- if (!computeDimension(topLeft, topRight, bottomLeft, moduleSize, out dimension))
- return null;
- Internal.Version provisionalVersion = Internal.Version.getProvisionalVersionForDimension(dimension);
- if (provisionalVersion == null)
- return null;
- int modulesBetweenFPCenters = provisionalVersion.DimensionForVersion - 7;
-
- AlignmentPattern alignmentPattern = null;
- // Anything above version 1 has an alignment pattern
- if (provisionalVersion.AlignmentPatternCenters.Length > 0)
- {
-
- // Guess where a "bottom right" finder pattern would have been
- float bottomRightX = topRight.X - topLeft.X + bottomLeft.X;
- float bottomRightY = topRight.Y - topLeft.Y + bottomLeft.Y;
-
- // Estimate that alignment pattern is closer by 3 modules
- // from "bottom right" to known top left location
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- float correctionToTopLeft = 1.0f - 3.0f / (float)modulesBetweenFPCenters;
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- int estAlignmentX = (int)(topLeft.X + correctionToTopLeft * (bottomRightX - topLeft.X));
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- int estAlignmentY = (int)(topLeft.Y + correctionToTopLeft * (bottomRightY - topLeft.Y));
-
- // Kind of arbitrary -- expand search radius before giving up
- for (int i = 4; i <= 16; i <<= 1)
- {
- alignmentPattern = findAlignmentInRegion(moduleSize, estAlignmentX, estAlignmentY, (float)i);
- if (alignmentPattern == null)
- continue;
- break;
- }
- // If we didn't find alignment pattern... well try anyway without it
- }
-
- PerspectiveTransform transform = createTransform(topLeft, topRight, bottomLeft, alignmentPattern, dimension);
-
- BitMatrix bits = sampleGrid(image, transform, dimension);
- if (bits == null)
- return null;
-
- ResultPoint[] points;
- if (alignmentPattern == null)
- {
- points = new ResultPoint[] { bottomLeft, topLeft, topRight };
- }
- else
- {
- points = new ResultPoint[] { bottomLeft, topLeft, topRight, alignmentPattern };
- }
- return new DetectorResult(bits, points);
- }
-
- private static PerspectiveTransform createTransform(ResultPoint topLeft, ResultPoint topRight, ResultPoint bottomLeft, ResultPoint alignmentPattern, int dimension)
- {
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- float dimMinusThree = (float)dimension - 3.5f;
- float bottomRightX;
- float bottomRightY;
- float sourceBottomRightX;
- float sourceBottomRightY;
- if (alignmentPattern != null)
- {
- bottomRightX = alignmentPattern.X;
- bottomRightY = alignmentPattern.Y;
- sourceBottomRightX = sourceBottomRightY = dimMinusThree - 3.0f;
- }
- else
- {
- // Don't have an alignment pattern, just make up the bottom-right point
- bottomRightX = (topRight.X - topLeft.X) + bottomLeft.X;
- bottomRightY = (topRight.Y - topLeft.Y) + bottomLeft.Y;
- sourceBottomRightX = sourceBottomRightY = dimMinusThree;
- }
-
- return PerspectiveTransform.quadrilateralToQuadrilateral(
- 3.5f,
- 3.5f,
- dimMinusThree,
- 3.5f,
- sourceBottomRightX,
- sourceBottomRightY,
- 3.5f,
- dimMinusThree,
- topLeft.X,
- topLeft.Y,
- topRight.X,
- topRight.Y,
- bottomRightX,
- bottomRightY,
- bottomLeft.X,
- bottomLeft.Y);
- }
-
- private static BitMatrix sampleGrid(BitMatrix image, PerspectiveTransform transform, int dimension)
- {
- GridSampler sampler = GridSampler.Instance;
- return sampler.sampleGrid(image, dimension, dimension, transform);
- }
-
- /// Computes the dimension (number of modules on a size) of the QR Code based on the position
- /// of the finder patterns and estimated module size.
- ///
- private static bool computeDimension(ResultPoint topLeft, ResultPoint topRight, ResultPoint bottomLeft, float moduleSize, out int dimension)
- {
- int tltrCentersDimension = MathUtils.round(ResultPoint.distance(topLeft, topRight) / moduleSize);
- int tlblCentersDimension = MathUtils.round(ResultPoint.distance(topLeft, bottomLeft) / moduleSize);
- dimension = ((tltrCentersDimension + tlblCentersDimension) >> 1) + 7;
- switch (dimension & 0x03)
- {
- // mod 4
- case 0:
- dimension++;
- break;
- // 1? do nothing
- case 2:
- dimension--;
- break;
- case 3:
- return true;
- }
- return true;
- }
-
- /// Computes an average estimated module size based on estimated derived from the positions
- /// of the three finder patterns.
- ///
- protected internal virtual float calculateModuleSize(ResultPoint topLeft, ResultPoint topRight, ResultPoint bottomLeft)
- {
- // Take the average
- return (calculateModuleSizeOneWay(topLeft, topRight) + calculateModuleSizeOneWay(topLeft, bottomLeft)) / 2.0f;
- }
-
- /// Estimates module size based on two finder patterns -- it uses
- /// {@link #sizeOfBlackWhiteBlackRunBothWays(int, int, int, int)} to figure the
- /// width of each, measuring along the axis between their centers.
- ///
- private float calculateModuleSizeOneWay(ResultPoint pattern, ResultPoint otherPattern)
- {
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- float moduleSizeEst1 = sizeOfBlackWhiteBlackRunBothWays((int)pattern.X, (int)pattern.Y, (int)otherPattern.X, (int)otherPattern.Y);
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- float moduleSizeEst2 = sizeOfBlackWhiteBlackRunBothWays((int)otherPattern.X, (int)otherPattern.Y, (int)pattern.X, (int)pattern.Y);
- if (Single.IsNaN(moduleSizeEst1))
- {
- return moduleSizeEst2 / 7.0f;
- }
- if (Single.IsNaN(moduleSizeEst2))
- {
- return moduleSizeEst1 / 7.0f;
- }
- // Average them, and divide by 7 since we've counted the width of 3 black modules,
- // and 1 white and 1 black module on either side. Ergo, divide sum by 14.
- return (moduleSizeEst1 + moduleSizeEst2) / 14.0f;
- }
-
- /// See {@link #sizeOfBlackWhiteBlackRun(int, int, int, int)}; computes the total width of
- /// a finder pattern by looking for a black-white-black run from the center in the direction
- /// of another point (another finder pattern center), and in the opposite direction too.
- ///
- private float sizeOfBlackWhiteBlackRunBothWays(int fromX, int fromY, int toX, int toY)
- {
-
- float result = sizeOfBlackWhiteBlackRun(fromX, fromY, toX, toY);
-
- // Now count other way -- don't run off image though of course
- float scale = 1.0f;
- int otherToX = fromX - (toX - fromX);
- if (otherToX < 0)
- {
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- scale = (float)fromX / (float)(fromX - otherToX);
- otherToX = 0;
- }
- else if (otherToX >= image.Width)
- {
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- scale = (float)(image.Width - 1 - fromX) / (float)(otherToX - fromX);
- otherToX = image.Width - 1;
- }
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- int otherToY = (int)(fromY - (toY - fromY) * scale);
-
- scale = 1.0f;
- if (otherToY < 0)
- {
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- scale = (float)fromY / (float)(fromY - otherToY);
- otherToY = 0;
- }
- else if (otherToY >= image.Height)
- {
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- scale = (float)(image.Height - 1 - fromY) / (float)(otherToY - fromY);
- otherToY = image.Height - 1;
- }
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- otherToX = (int)(fromX + (otherToX - fromX) * scale);
-
- result += sizeOfBlackWhiteBlackRun(fromX, fromY, otherToX, otherToY);
- return result - 1.0f; // -1 because we counted the middle pixel twice
- }
-
- /// This method traces a line from a point in the image, in the direction towards another point.
- /// It begins in a black region, and keeps going until it finds white, then black, then white again.
- /// It reports the distance from the start to this point.
- ///
- /// This is used when figuring out how wide a finder pattern is, when the finder pattern
- /// may be skewed or rotated.
- ///
- private float sizeOfBlackWhiteBlackRun(int fromX, int fromY, int toX, int toY)
- {
- // Mild variant of Bresenham's algorithm;
- // see http://en.wikipedia.org/wiki/Bresenham's_line_algorithm
- bool steep = Math.Abs(toY - fromY) > Math.Abs(toX - fromX);
- if (steep)
- {
- int temp = fromX;
- fromX = fromY;
- fromY = temp;
- temp = toX;
- toX = toY;
- toY = temp;
- }
-
- int dx = Math.Abs(toX - fromX);
- int dy = Math.Abs(toY - fromY);
- int error = -dx >> 1;
- int xstep = fromX < toX ? 1 : -1;
- int ystep = fromY < toY ? 1 : -1;
-
- // In black pixels, looking for white, first or second time.
- int state = 0;
- // Loop up until x == toX, but not beyond
- int xLimit = toX + xstep;
- for (int x = fromX, y = fromY; x != xLimit; x += xstep)
- {
- int realX = steep ? y : x;
- int realY = steep ? x : y;
-
- // Does current pixel mean we have moved white to black or vice versa?
- // Scanning black in state 0,2 and white in state 1, so if we find the wrong
- // color, advance to next state or end if we are in state 2 already
- if ((state == 1) == image[realX, realY])
- {
- if (state == 2)
- {
- return MathUtils.distance(x, y, fromX, fromY);
- }
- state++;
- }
- error += dy;
- if (error > 0)
- {
- if (y == toY)
- {
-
-
- break;
- }
- y += ystep;
- error -= dx;
- }
- }
- // Found black-white-black; give the benefit of the doubt that the next pixel outside the image
- // is "white" so this last point at (toX+xStep,toY) is the right ending. This is really a
- // small approximation; (toX+xStep,toY+yStep) might be really correct. Ignore this.
- if (state == 2)
- {
- return MathUtils.distance(toX + xstep, toY, fromX, fromY);
- }
- // else we didn't find even black-white-black; no estimate is really possible
- return Single.NaN;
-
- }
-
- ///
- /// Attempts to locate an alignment pattern in a limited region of the image, which is
- /// guessed to contain it. This method uses {@link AlignmentPattern}.
- ///
- /// estimated module size so far
- /// x coordinate of center of area probably containing alignment pattern
- /// y coordinate of above
- /// number of pixels in all directions to search from the center
- ///
- /// if found, or null otherwise
- ///
- protected AlignmentPattern findAlignmentInRegion(float overallEstModuleSize, int estAlignmentX, int estAlignmentY, float allowanceFactor)
- {
- // Look for an alignment pattern (3 modules in size) around where it
- // should be
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- int allowance = (int)(allowanceFactor * overallEstModuleSize);
- int alignmentAreaLeftX = Math.Max(0, estAlignmentX - allowance);
- int alignmentAreaRightX = Math.Min(image.Width - 1, estAlignmentX + allowance);
- if (alignmentAreaRightX - alignmentAreaLeftX < overallEstModuleSize * 3)
- {
- return null;
- }
-
- int alignmentAreaTopY = Math.Max(0, estAlignmentY - allowance);
- int alignmentAreaBottomY = Math.Min(image.Height - 1, estAlignmentY + allowance);
-
- var alignmentFinder = new AlignmentPatternFinder(
- image,
- alignmentAreaLeftX,
- alignmentAreaTopY,
- alignmentAreaRightX - alignmentAreaLeftX,
- alignmentAreaBottomY - alignmentAreaTopY,
- overallEstModuleSize,
- resultPointCallback);
-
- return alignmentFinder.find();
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/detector/FinderPattern.cs b/shadowsocks-csharp/3rd/zxing/qrcode/detector/FinderPattern.cs
deleted file mode 100755
index 80469bf7..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/detector/FinderPattern.cs
+++ /dev/null
@@ -1,107 +0,0 @@
-/*
-* Copyright 2007 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using System;
-
-namespace ZXing.QrCode.Internal
-{
- ///
- /// Encapsulates a finder pattern, which are the three square patterns found in
- /// the corners of QR Codes. It also encapsulates a count of similar finder patterns,
- /// as a convenience to the finder's bookkeeping.
- ///
- /// Sean Owen
- public sealed class FinderPattern : ResultPoint
- {
- private readonly float estimatedModuleSize;
- private int count;
-
- internal FinderPattern(float posX, float posY, float estimatedModuleSize)
- : this(posX, posY, estimatedModuleSize, 1)
- {
- this.estimatedModuleSize = estimatedModuleSize;
- this.count = 1;
- }
-
- internal FinderPattern(float posX, float posY, float estimatedModuleSize, int count)
- : base(posX, posY)
- {
- this.estimatedModuleSize = estimatedModuleSize;
- this.count = count;
- }
-
- ///
- /// Gets the size of the estimated module.
- ///
- ///
- /// The size of the estimated module.
- ///
- public float EstimatedModuleSize
- {
- get
- {
- return estimatedModuleSize;
- }
- }
-
- internal int Count
- {
- get
- {
- return count;
- }
- }
-
- /*
- internal void incrementCount()
- {
- this.count++;
- }
- */
-
- /// Determines if this finder pattern "about equals" a finder pattern at the stated
- /// position and size -- meaning, it is at nearly the same center with nearly the same size.
- ///
- internal bool aboutEquals(float moduleSize, float i, float j)
- {
- if (Math.Abs(i - Y) <= moduleSize && Math.Abs(j - X) <= moduleSize)
- {
- float moduleSizeDiff = Math.Abs(moduleSize - estimatedModuleSize);
- return moduleSizeDiff <= 1.0f || moduleSizeDiff <= estimatedModuleSize;
-
- }
- return false;
- }
-
- ///
- /// Combines this object's current estimate of a finder pattern position and module size
- /// with a new estimate. It returns a new {@code FinderPattern} containing a weighted average
- /// based on count.
- ///
- /// The i.
- /// The j.
- /// New size of the module.
- ///
- internal FinderPattern combineEstimate(float i, float j, float newModuleSize)
- {
- int combinedCount = count + 1;
- float combinedX = (count * X + j) / combinedCount;
- float combinedY = (count * Y + i) / combinedCount;
- float combinedModuleSize = (count * estimatedModuleSize + newModuleSize) / combinedCount;
- return new FinderPattern(combinedX, combinedY, combinedModuleSize, combinedCount);
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/detector/FinderPatternFinder.cs b/shadowsocks-csharp/3rd/zxing/qrcode/detector/FinderPatternFinder.cs
deleted file mode 100755
index 7b4c5113..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/detector/FinderPatternFinder.cs
+++ /dev/null
@@ -1,808 +0,0 @@
-/*
-* Copyright 2007 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using System;
-using System.Collections.Generic;
-
-using ZXing.Common;
-
-namespace ZXing.QrCode.Internal
-{
- ///
- /// This class attempts to find finder patterns in a QR Code. Finder patterns are the square
- /// markers at three corners of a QR Code.
- ///
- /// This class is thread-safe but not reentrant. Each thread must allocate its own object.
- ///
- /// Sean Owen
- public class FinderPatternFinder
- {
- private const int CENTER_QUORUM = 2;
- ///
- /// 1 pixel/module times 3 modules/center
- ///
- protected internal const int MIN_SKIP = 3;
- ///
- /// support up to version 10 for mobile clients
- ///
- protected internal const int MAX_MODULES = 57;
- private const int INTEGER_MATH_SHIFT = 8;
-
- private readonly BitMatrix image;
- private List possibleCenters;
- private bool hasSkipped;
- private readonly int[] crossCheckStateCount;
- private readonly ResultPointCallback resultPointCallback;
-
- ///
- /// Creates a finder that will search the image for three finder patterns.
- ///
- /// image to search
- public FinderPatternFinder(BitMatrix image)
- : this(image, null)
- {
- }
-
- ///
- /// Initializes a new instance of the class.
- ///
- /// The image.
- /// The result point callback.
- public FinderPatternFinder(BitMatrix image, ResultPointCallback resultPointCallback)
- {
- this.image = image;
- this.possibleCenters = new List();
- this.crossCheckStateCount = new int[5];
- this.resultPointCallback = resultPointCallback;
- }
-
- ///
- /// Gets the image.
- ///
- virtual protected internal BitMatrix Image
- {
- get
- {
- return image;
- }
- }
-
- ///
- /// Gets the possible centers.
- ///
- virtual protected internal List PossibleCenters
- {
- get
- {
- return possibleCenters;
- }
- }
-
- internal virtual FinderPatternInfo find(IDictionary hints)
- {
- bool tryHarder = hints != null && hints.ContainsKey(DecodeHintType.TRY_HARDER);
- bool pureBarcode = hints != null && hints.ContainsKey(DecodeHintType.PURE_BARCODE);
- int maxI = image.Height;
- int maxJ = image.Width;
- // We are looking for black/white/black/white/black modules in
- // 1:1:3:1:1 ratio; this tracks the number of such modules seen so far
-
- // Let's assume that the maximum version QR Code we support takes up 1/4 the height of the
- // image, and then account for the center being 3 modules in size. This gives the smallest
- // number of pixels the center could be, so skip this often. When trying harder, look for all
- // QR versions regardless of how dense they are.
- int iSkip = (3 * maxI) / (4 * MAX_MODULES);
- if (iSkip < MIN_SKIP || tryHarder)
- {
- iSkip = MIN_SKIP;
- }
-
- bool done = false;
- int[] stateCount = new int[5];
- for (int i = iSkip - 1; i < maxI && !done; i += iSkip)
- {
- // Get a row of black/white values
- stateCount[0] = 0;
- stateCount[1] = 0;
- stateCount[2] = 0;
- stateCount[3] = 0;
- stateCount[4] = 0;
- int currentState = 0;
- for (int j = 0; j < maxJ; j++)
- {
- if (image[j, i])
- {
- // Black pixel
- if ((currentState & 1) == 1)
- {
- // Counting white pixels
- currentState++;
- }
- stateCount[currentState]++;
- }
- else
- {
- // White pixel
- if ((currentState & 1) == 0)
- {
- // Counting black pixels
- if (currentState == 4)
- {
- // A winner?
- if (foundPatternCross(stateCount))
- {
- // Yes
- bool confirmed = handlePossibleCenter(stateCount, i, j, pureBarcode);
- if (confirmed)
- {
- // Start examining every other line. Checking each line turned out to be too
- // expensive and didn't improve performance.
- iSkip = 2;
- if (hasSkipped)
- {
- done = haveMultiplyConfirmedCenters();
- }
- else
- {
- int rowSkip = findRowSkip();
- if (rowSkip > stateCount[2])
- {
- // Skip rows between row of lower confirmed center
- // and top of presumed third confirmed center
- // but back up a bit to get a full chance of detecting
- // it, entire width of center of finder pattern
-
- // Skip by rowSkip, but back off by stateCount[2] (size of last center
- // of pattern we saw) to be conservative, and also back off by iSkip which
- // is about to be re-added
- i += rowSkip - stateCount[2] - iSkip;
- j = maxJ - 1;
- }
- }
- }
- else
- {
- stateCount[0] = stateCount[2];
- stateCount[1] = stateCount[3];
- stateCount[2] = stateCount[4];
- stateCount[3] = 1;
- stateCount[4] = 0;
- currentState = 3;
- continue;
- }
- // Clear state to start looking again
- currentState = 0;
- stateCount[0] = 0;
- stateCount[1] = 0;
- stateCount[2] = 0;
- stateCount[3] = 0;
- stateCount[4] = 0;
- }
- else
- {
- // No, shift counts back by two
- stateCount[0] = stateCount[2];
- stateCount[1] = stateCount[3];
- stateCount[2] = stateCount[4];
- stateCount[3] = 1;
- stateCount[4] = 0;
- currentState = 3;
- }
- }
- else
- {
- stateCount[++currentState]++;
- }
- }
- else
- {
- // Counting white pixels
- stateCount[currentState]++;
- }
- }
- }
- if (foundPatternCross(stateCount))
- {
- bool confirmed = handlePossibleCenter(stateCount, i, maxJ, pureBarcode);
- if (confirmed)
- {
- iSkip = stateCount[0];
- if (hasSkipped)
- {
- // Found a third one
- done = haveMultiplyConfirmedCenters();
- }
- }
- }
- }
-
- FinderPattern[] patternInfo = selectBestPatterns();
- if (patternInfo == null)
- return null;
-
- ResultPoint.orderBestPatterns(patternInfo);
-
- return new FinderPatternInfo(patternInfo);
- }
-
- /// Given a count of black/white/black/white/black pixels just seen and an end position,
- /// figures the location of the center of this run.
- ///
- private static float? centerFromEnd(int[] stateCount, int end)
- {
- var result = (end - stateCount[4] - stateCount[3]) - stateCount[2] / 2.0f;
- if (Single.IsNaN(result))
- return null;
- return result;
- }
-
- /// count of black/white/black/white/black pixels just read
- ///
- /// true iff the proportions of the counts is close enough to the 1/1/3/1/1 ratios
- /// used by finder patterns to be considered a match
- ///
- protected internal static bool foundPatternCross(int[] stateCount)
- {
- int totalModuleSize = 0;
- for (int i = 0; i < 5; i++)
- {
- int count = stateCount[i];
- if (count == 0)
- {
- return false;
- }
- totalModuleSize += count;
- }
- if (totalModuleSize < 7)
- {
- return false;
- }
- int moduleSize = (totalModuleSize << INTEGER_MATH_SHIFT) / 7;
- int maxVariance = moduleSize / 2;
- // Allow less than 50% variance from 1-1-3-1-1 proportions
- return Math.Abs(moduleSize - (stateCount[0] << INTEGER_MATH_SHIFT)) < maxVariance &&
- Math.Abs(moduleSize - (stateCount[1] << INTEGER_MATH_SHIFT)) < maxVariance &&
- Math.Abs(3 * moduleSize - (stateCount[2] << INTEGER_MATH_SHIFT)) < 3 * maxVariance &&
- Math.Abs(moduleSize - (stateCount[3] << INTEGER_MATH_SHIFT)) < maxVariance &&
- Math.Abs(moduleSize - (stateCount[4] << INTEGER_MATH_SHIFT)) < maxVariance;
- }
-
- private int[] CrossCheckStateCount
- {
- get
- {
- crossCheckStateCount[0] = 0;
- crossCheckStateCount[1] = 0;
- crossCheckStateCount[2] = 0;
- crossCheckStateCount[3] = 0;
- crossCheckStateCount[4] = 0;
- return crossCheckStateCount;
- }
- }
-
- ///
- /// After a vertical and horizontal scan finds a potential finder pattern, this method
- /// "cross-cross-cross-checks" by scanning down diagonally through the center of the possible
- /// finder pattern to see if the same proportion is detected.
- ///
- /// row where a finder pattern was detected
- /// center of the section that appears to cross a finder pattern
- /// maximum reasonable number of modules that should be observed in any reading state, based on the results of the horizontal scan
- /// The original state count total.
- /// true if proportions are withing expected limits
- private bool crossCheckDiagonal(int startI, int centerJ, int maxCount, int originalStateCountTotal)
- {
- int maxI = image.Height;
- int maxJ = image.Width;
- int[] stateCount = CrossCheckStateCount;
-
- // Start counting up, left from center finding black center mass
- int i = 0;
- while (startI - i >= 0 && image[centerJ - i, startI - i])
- {
- stateCount[2]++;
- i++;
- }
-
- if ((startI - i < 0) || (centerJ - i < 0))
- {
- return false;
- }
-
- // Continue up, left finding white space
- while ((startI - i >= 0) && (centerJ - i >= 0) && !image[centerJ - i, startI - i] && stateCount[1] <= maxCount)
- {
- stateCount[1]++;
- i++;
- }
-
- // If already too many modules in this state or ran off the edge:
- if ((startI - i < 0) || (centerJ - i < 0) || stateCount[1] > maxCount)
- {
- return false;
- }
-
- // Continue up, left finding black border
- while ((startI - i >= 0) && (centerJ - i >= 0) && image[centerJ - i, startI - i] && stateCount[0] <= maxCount)
- {
- stateCount[0]++;
- i++;
- }
- if (stateCount[0] > maxCount)
- {
- return false;
- }
-
- // Now also count down, right from center
- i = 1;
- while ((startI + i < maxI) && (centerJ + i < maxJ) && image[centerJ + i, startI + i])
- {
- stateCount[2]++;
- i++;
- }
-
- // Ran off the edge?
- if ((startI + i >= maxI) || (centerJ + i >= maxJ))
- {
- return false;
- }
-
- while ((startI + i < maxI) && (centerJ + i < maxJ) && !image[centerJ + i, startI + i] && stateCount[3] < maxCount)
- {
- stateCount[3]++;
- i++;
- }
-
- if ((startI + i >= maxI) || (centerJ + i >= maxJ) || stateCount[3] >= maxCount)
- {
- return false;
- }
-
- while ((startI + i < maxI) && (centerJ + i < maxJ) && image[centerJ + i, startI + i] && stateCount[4] < maxCount)
- {
- stateCount[4]++;
- i++;
- }
-
- if (stateCount[4] >= maxCount)
- {
- return false;
- }
-
- // If we found a finder-pattern-like section, but its size is more than 100% different than
- // the original, assume it's a false positive
- int stateCountTotal = stateCount[0] + stateCount[1] + stateCount[2] + stateCount[3] + stateCount[4];
- return Math.Abs(stateCountTotal - originalStateCountTotal) < 2*originalStateCountTotal &&
- foundPatternCross(stateCount);
- }
-
- ///
- /// After a horizontal scan finds a potential finder pattern, this method
- /// "cross-checks" by scanning down vertically through the center of the possible
- /// finder pattern to see if the same proportion is detected.
- ///
- /// row where a finder pattern was detected
- /// center of the section that appears to cross a finder pattern
- /// maximum reasonable number of modules that should be
- /// observed in any reading state, based on the results of the horizontal scan
- /// The original state count total.
- ///
- /// vertical center of finder pattern, or null if not found
- ///
- private float? crossCheckVertical(int startI, int centerJ, int maxCount, int originalStateCountTotal)
- {
- int maxI = image.Height;
- int[] stateCount = CrossCheckStateCount;
-
- // Start counting up from center
- int i = startI;
- while (i >= 0 && image[centerJ, i])
- {
- stateCount[2]++;
- i--;
- }
- if (i < 0)
- {
- return null;
- }
- while (i >= 0 && !image[centerJ, i] && stateCount[1] <= maxCount)
- {
- stateCount[1]++;
- i--;
- }
- // If already too many modules in this state or ran off the edge:
- if (i < 0 || stateCount[1] > maxCount)
- {
- return null;
- }
- while (i >= 0 && image[centerJ, i] && stateCount[0] <= maxCount)
- {
- stateCount[0]++;
- i--;
- }
- if (stateCount[0] > maxCount)
- {
- return null;
- }
-
- // Now also count down from center
- i = startI + 1;
- while (i < maxI && image[centerJ, i])
- {
- stateCount[2]++;
- i++;
- }
- if (i == maxI)
- {
- return null;
- }
- while (i < maxI && !image[centerJ, i] && stateCount[3] < maxCount)
- {
- stateCount[3]++;
- i++;
- }
- if (i == maxI || stateCount[3] >= maxCount)
- {
- return null;
- }
- while (i < maxI && image[centerJ, i] && stateCount[4] < maxCount)
- {
- stateCount[4]++;
- i++;
- }
- if (stateCount[4] >= maxCount)
- {
- return null;
- }
-
- // If we found a finder-pattern-like section, but its size is more than 40% different than
- // the original, assume it's a false positive
- int stateCountTotal = stateCount[0] + stateCount[1] + stateCount[2] + stateCount[3] + stateCount[4];
- if (5 * Math.Abs(stateCountTotal - originalStateCountTotal) >= 2 * originalStateCountTotal)
- {
- return null;
- }
-
- return foundPatternCross(stateCount) ? centerFromEnd(stateCount, i) : null;
- }
-
- /// Like {@link #crossCheckVertical(int, int, int, int)}, and in fact is basically identical,
- /// except it reads horizontally instead of vertically. This is used to cross-cross
- /// check a vertical cross check and locate the real center of the alignment pattern.
- ///
- private float? crossCheckHorizontal(int startJ, int centerI, int maxCount, int originalStateCountTotal)
- {
- int maxJ = image.Width;
- int[] stateCount = CrossCheckStateCount;
-
- int j = startJ;
- while (j >= 0 && image[j, centerI])
- {
- stateCount[2]++;
- j--;
- }
- if (j < 0)
- {
- return null;
- }
- while (j >= 0 && !image[j, centerI] && stateCount[1] <= maxCount)
- {
- stateCount[1]++;
- j--;
- }
- if (j < 0 || stateCount[1] > maxCount)
- {
- return null;
- }
- while (j >= 0 && image[j, centerI] && stateCount[0] <= maxCount)
- {
- stateCount[0]++;
- j--;
- }
- if (stateCount[0] > maxCount)
- {
- return null;
- }
-
- j = startJ + 1;
- while (j < maxJ && image[j, centerI])
- {
- stateCount[2]++;
- j++;
- }
- if (j == maxJ)
- {
- return null;
- }
- while (j < maxJ && !image[j, centerI] && stateCount[3] < maxCount)
- {
- stateCount[3]++;
- j++;
- }
- if (j == maxJ || stateCount[3] >= maxCount)
- {
- return null;
- }
- while (j < maxJ && image[j, centerI] && stateCount[4] < maxCount)
- {
- stateCount[4]++;
- j++;
- }
- if (stateCount[4] >= maxCount)
- {
- return null;
- }
-
- // If we found a finder-pattern-like section, but its size is significantly different than
- // the original, assume it's a false positive
- int stateCountTotal = stateCount[0] + stateCount[1] + stateCount[2] + stateCount[3] + stateCount[4];
- if (5 * Math.Abs(stateCountTotal - originalStateCountTotal) >= originalStateCountTotal)
- {
- return null;
- }
-
- return foundPatternCross(stateCount) ? centerFromEnd(stateCount, j) : null;
- }
-
- ///
- /// This is called when a horizontal scan finds a possible alignment pattern. It will
- /// cross check with a vertical scan, and if successful, will, ah, cross-cross-check
- /// with another horizontal scan. This is needed primarily to locate the real horizontal
- /// center of the pattern in cases of extreme skew.
- /// And then we cross-cross-cross check with another diagonal scan.
- /// If that succeeds the finder pattern location is added to a list that tracks
- /// the number of times each location has been nearly-matched as a finder pattern.
- /// Each additional find is more evidence that the location is in fact a finder
- /// pattern center
- ///
- /// reading state module counts from horizontal scan
- /// row where finder pattern may be found
- /// end of possible finder pattern in row
- /// if set to true [pure barcode].
- ///
- /// true if a finder pattern candidate was found this time
- ///
- protected bool handlePossibleCenter(int[] stateCount, int i, int j, bool pureBarcode)
- {
- int stateCountTotal = stateCount[0] + stateCount[1] + stateCount[2] + stateCount[3] +
- stateCount[4];
- float? centerJ = centerFromEnd(stateCount, j);
- if (centerJ == null)
- return false;
- float? centerI = crossCheckVertical(i, (int)centerJ.Value, stateCount[2], stateCountTotal);
- if (centerI != null)
- {
- // Re-cross check
- centerJ = crossCheckHorizontal((int)centerJ.Value, (int)centerI.Value, stateCount[2], stateCountTotal);
- if (centerJ != null &&
- (!pureBarcode || crossCheckDiagonal((int) centerI, (int) centerJ, stateCount[2], stateCountTotal)))
- {
- float estimatedModuleSize = stateCountTotal / 7.0f;
- bool found = false;
- for (int index = 0; index < possibleCenters.Count; index++)
- {
- var center = possibleCenters[index];
- // Look for about the same center and module size:
- if (center.aboutEquals(estimatedModuleSize, centerI.Value, centerJ.Value))
- {
- possibleCenters.RemoveAt(index);
- possibleCenters.Insert(index, center.combineEstimate(centerI.Value, centerJ.Value, estimatedModuleSize));
-
- found = true;
- break;
- }
- }
- if (!found)
- {
- var point = new FinderPattern(centerJ.Value, centerI.Value, estimatedModuleSize);
-
- possibleCenters.Add(point);
- if (resultPointCallback != null)
- {
-
- resultPointCallback(point);
- }
- }
- return true;
- }
- }
- return false;
- }
-
- /// number of rows we could safely skip during scanning, based on the first
- /// two finder patterns that have been located. In some cases their position will
- /// allow us to infer that the third pattern must lie below a certain point farther
- /// down in the image.
- ///
- private int findRowSkip()
- {
- int max = possibleCenters.Count;
- if (max <= 1)
- {
- return 0;
- }
- ResultPoint firstConfirmedCenter = null;
- foreach (var center in possibleCenters)
- {
- if (center.Count >= CENTER_QUORUM)
- {
- if (firstConfirmedCenter == null)
- {
- firstConfirmedCenter = center;
- }
- else
- {
- // We have two confirmed centers
- // How far down can we skip before resuming looking for the next
- // pattern? In the worst case, only the difference between the
- // difference in the x / y coordinates of the two centers.
- // This is the case where you find top left last.
- hasSkipped = true;
- //UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
- return (int)(Math.Abs(firstConfirmedCenter.X - center.X) - Math.Abs(firstConfirmedCenter.Y - center.Y)) / 2;
- }
- }
- }
- return 0;
- }
-
- /// true iff we have found at least 3 finder patterns that have been detected
- /// at least {@link #CENTER_QUORUM} times each, and, the estimated module size of the
- /// candidates is "pretty similar"
- ///
- private bool haveMultiplyConfirmedCenters()
- {
- int confirmedCount = 0;
- float totalModuleSize = 0.0f;
- int max = possibleCenters.Count;
- foreach (var pattern in possibleCenters)
- {
- if (pattern.Count >= CENTER_QUORUM)
- {
- confirmedCount++;
- totalModuleSize += pattern.EstimatedModuleSize;
- }
- }
- if (confirmedCount < 3)
- {
- return false;
- }
- // OK, we have at least 3 confirmed centers, but, it's possible that one is a "false positive"
- // and that we need to keep looking. We detect this by asking if the estimated module sizes
- // vary too much. We arbitrarily say that when the total deviation from average exceeds
- // 5% of the total module size estimates, it's too much.
- float average = totalModuleSize / max;
- float totalDeviation = 0.0f;
- for (int i = 0; i < max; i++)
- {
- var pattern = possibleCenters[i];
- totalDeviation += Math.Abs(pattern.EstimatedModuleSize - average);
- }
- return totalDeviation <= 0.05f * totalModuleSize;
- }
-
- /// the 3 best {@link FinderPattern}s from our list of candidates. The "best" are
- /// those that have been detected at least {@link #CENTER_QUORUM} times, and whose module
- /// size differs from the average among those patterns the least
- ///
- private FinderPattern[] selectBestPatterns()
- {
- int startSize = possibleCenters.Count;
- if (startSize < 3)
- {
- // Couldn't find enough finder patterns
- return null;
- }
-
- // Filter outlier possibilities whose module size is too different
- if (startSize > 3)
- {
- // But we can only afford to do so if we have at least 4 possibilities to choose from
- float totalModuleSize = 0.0f;
- float square = 0.0f;
- foreach (var center in possibleCenters)
- {
- float size = center.EstimatedModuleSize;
- totalModuleSize += size;
- square += size * size;
- }
- float average = totalModuleSize / startSize;
- float stdDev = (float)Math.Sqrt(square / startSize - average * average);
-
- possibleCenters.Sort(new FurthestFromAverageComparator(average));
-
- float limit = Math.Max(0.2f * average, stdDev);
-
- for (int i = 0; i < possibleCenters.Count && possibleCenters.Count > 3; i++)
- {
- FinderPattern pattern = possibleCenters[i];
- if (Math.Abs(pattern.EstimatedModuleSize - average) > limit)
- {
- possibleCenters.RemoveAt(i);
- i--;
- }
- }
- }
-
- if (possibleCenters.Count > 3)
- {
- // Throw away all but those first size candidate points we found.
-
- float totalModuleSize = 0.0f;
- foreach (var possibleCenter in possibleCenters)
- {
- totalModuleSize += possibleCenter.EstimatedModuleSize;
- }
-
- float average = totalModuleSize / possibleCenters.Count;
-
- possibleCenters.Sort(new CenterComparator(average));
-
- //possibleCenters.subList(3, possibleCenters.Count).clear();
- possibleCenters = possibleCenters.GetRange(0, 3);
- }
-
- return new[]
- {
- possibleCenters[0],
- possibleCenters[1],
- possibleCenters[2]
- };
- }
-
- ///
- /// Orders by furthest from average
- ///
- private sealed class FurthestFromAverageComparator : IComparer
- {
- private readonly float average;
-
- public FurthestFromAverageComparator(float f)
- {
- average = f;
- }
-
- public int Compare(FinderPattern x, FinderPattern y)
- {
- float dA = Math.Abs(y.EstimatedModuleSize - average);
- float dB = Math.Abs(x.EstimatedModuleSize - average);
- return dA < dB ? -1 : dA == dB ? 0 : 1;
- }
- }
-
- /// Orders by {@link FinderPattern#getCount()}, descending.
- private sealed class CenterComparator : IComparer
- {
- private readonly float average;
-
- public CenterComparator(float f)
- {
- average = f;
- }
-
- public int Compare(FinderPattern x, FinderPattern y)
- {
- if (y.Count == x.Count)
- {
- float dA = Math.Abs(y.EstimatedModuleSize - average);
- float dB = Math.Abs(x.EstimatedModuleSize - average);
- return dA < dB ? 1 : dA == dB ? 0 : -1;
- }
- return y.Count - x.Count;
- }
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/detector/FinderPatternInfo.cs b/shadowsocks-csharp/3rd/zxing/qrcode/detector/FinderPatternInfo.cs
deleted file mode 100755
index 982b755a..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/detector/FinderPatternInfo.cs
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
-* Copyright 2007 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-namespace ZXing.QrCode.Internal
-{
- ///
- /// Encapsulates information about finder patterns in an image, including the location of
- /// the three finder patterns, and their estimated module size.
- ///
- /// Sean Owen
- public sealed class FinderPatternInfo
- {
- private readonly FinderPattern bottomLeft;
- private readonly FinderPattern topLeft;
- private readonly FinderPattern topRight;
-
- ///
- /// Initializes a new instance of the class.
- ///
- /// The pattern centers.
- public FinderPatternInfo(FinderPattern[] patternCenters)
- {
- this.bottomLeft = patternCenters[0];
- this.topLeft = patternCenters[1];
- this.topRight = patternCenters[2];
- }
-
- ///
- /// Gets the bottom left.
- ///
- public FinderPattern BottomLeft
- {
- get
- {
- return bottomLeft;
- }
- }
-
- ///
- /// Gets the top left.
- ///
- public FinderPattern TopLeft
- {
- get
- {
- return topLeft;
- }
- }
-
- ///
- /// Gets the top right.
- ///
- public FinderPattern TopRight
- {
- get
- {
- return topRight;
- }
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/encoder/BlockPair.cs b/shadowsocks-csharp/3rd/zxing/qrcode/encoder/BlockPair.cs
deleted file mode 100755
index b1afff46..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/encoder/BlockPair.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
-* Copyright 2008 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-namespace ZXing.QrCode.Internal
-{
- internal sealed class BlockPair
- {
- private readonly byte[] dataBytes;
- private readonly byte[] errorCorrectionBytes;
-
- public BlockPair(byte[] data, byte[] errorCorrection)
- {
- dataBytes = data;
- errorCorrectionBytes = errorCorrection;
- }
-
- public byte[] DataBytes
- {
- get { return dataBytes; }
- }
-
- public byte[] ErrorCorrectionBytes
- {
- get { return errorCorrectionBytes; }
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/encoder/ByteMatrix.cs b/shadowsocks-csharp/3rd/zxing/qrcode/encoder/ByteMatrix.cs
deleted file mode 100755
index e3d372fd..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/encoder/ByteMatrix.cs
+++ /dev/null
@@ -1,148 +0,0 @@
-/*
- * Copyright 2008 ZXing authors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-using System;
-using System.Text;
-
-namespace ZXing.QrCode.Internal
-{
- ///
- /// JAVAPORT: The original code was a 2D array of ints, but since it only ever gets assigned
- /// 0, 1 and 2 I'm going to use less memory and go with bytes.
- ///
- /// dswitkin@google.com (Daniel Switkin)
- public sealed class ByteMatrix
- {
- private readonly byte[][] bytes;
- private readonly int width;
- private readonly int height;
-
- ///
- /// Initializes a new instance of the class.
- ///
- /// The width.
- /// The height.
- public ByteMatrix(int width, int height)
- {
- bytes = new byte[height][];
- for (var i = 0; i < height; i++)
- bytes[i] = new byte[width];
- this.width = width;
- this.height = height;
- }
-
- ///
- /// Gets the height.
- ///
- public int Height
- {
- get { return height; }
- }
-
- ///
- /// Gets the width.
- ///
- public int Width
- {
- get { return width; }
- }
-
- ///
- /// Gets or sets the with the specified x.
- ///
- public int this[int x, int y]
- {
- get { return bytes[y][x]; }
- set { bytes[y][x] = (byte)value; }
- }
-
- ///
- /// an internal representation as bytes, in row-major order. array[y][x] represents point (x,y)
- ///
- public byte[][] Array
- {
- get { return bytes; }
- }
-
- ///
- /// Sets the specified x.
- ///
- /// The x.
- /// The y.
- /// The value.
- public void set(int x, int y, byte value)
- {
- bytes[y][x] = value;
- }
-
- ///
- /// Sets the specified x.
- ///
- /// The x.
- /// The y.
- /// if set to true [value].
- public void set(int x, int y, bool value)
- {
- bytes[y][x] = (byte)(value ? 1 : 0);
- }
-
- ///
- /// Clears the specified value.
- ///
- /// The value.
- public void clear(byte value)
- {
- for (int y = 0; y < height; ++y)
- {
- for (int x = 0; x < width; ++x)
- {
- bytes[y][x] = value;
- }
- }
- }
-
- ///
- /// Returns a that represents this instance.
- ///
- ///
- /// A that represents this instance.
- ///
- override public String ToString()
- {
- var result = new StringBuilder(2 * width * height + 2);
- for (int y = 0; y < height; ++y)
- {
- for (int x = 0; x < width; ++x)
- {
- switch (bytes[y][x])
- {
- case 0:
- result.Append(" 0");
- break;
- case 1:
- result.Append(" 1");
- break;
- default:
- result.Append(" ");
- break;
- }
- }
- result.Append('\n');
- }
- return result.ToString();
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/encoder/Encoder.cs b/shadowsocks-csharp/3rd/zxing/qrcode/encoder/Encoder.cs
deleted file mode 100755
index dbae7bf3..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/encoder/Encoder.cs
+++ /dev/null
@@ -1,597 +0,0 @@
-/*
-* Copyright 2008 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using System;
-using System.Collections.Generic;
-using System.Text;
-
-using ZXing.Common;
-using ZXing.Common.ReedSolomon;
-
-namespace ZXing.QrCode.Internal
-{
- ///
- ///
- /// satorux@google.com (Satoru Takabayashi) - creator
- /// dswitkin@google.com (Daniel Switkin) - ported from C++
- public static class Encoder
- {
-
- // The original table is defined in the table 5 of JISX0510:2004 (p.19).
- private static readonly int[] ALPHANUMERIC_TABLE = {
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, // 0x00-0x0f
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, // 0x10-0x1f
- 36, -1, -1, -1, 37, 38, -1, -1, -1, -1, 39, 40, -1, 41, 42, 43, // 0x20-0x2f
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 44, -1, -1, -1, -1, -1, // 0x30-0x3f
- -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, // 0x40-0x4f
- 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, // 0x50-0x5f
- };
-
- internal static String DEFAULT_BYTE_MODE_ENCODING = "ISO-8859-1";
-
- // The mask penalty calculation is complicated. See Table 21 of JISX0510:2004 (p.45) for details.
- // Basically it applies four rules and summate all penalties.
- private static int calculateMaskPenalty(ByteMatrix matrix)
- {
- return MaskUtil.applyMaskPenaltyRule1(matrix)
- + MaskUtil.applyMaskPenaltyRule2(matrix)
- + MaskUtil.applyMaskPenaltyRule3(matrix)
- + MaskUtil.applyMaskPenaltyRule4(matrix);
- }
-
- ///
- /// Encode "bytes" with the error correction level "ecLevel". The encoding mode will be chosen
- /// internally by chooseMode(). On success, store the result in "qrCode".
- /// We recommend you to use QRCode.EC_LEVEL_L (the lowest level) for
- /// "getECLevel" since our primary use is to show QR code on desktop screens. We don't need very
- /// strong error correction for this purpose.
- /// Note that there is no way to encode bytes in MODE_KANJI. We might want to add EncodeWithMode()
- /// with which clients can specify the encoding mode. For now, we don't need the functionality.
- ///
- /// The content.
- /// The ec level.
- public static QRCode encode(String content, ErrorCorrectionLevel ecLevel)
- {
- return encode(content, ecLevel, null);
- }
-
- ///
- /// Encodes the specified content.
- ///
- /// The content.
- /// The ec level.
- /// The hints.
- ///
- public static QRCode encode(String content,
- ErrorCorrectionLevel ecLevel,
- IDictionary hints)
- {
- // Determine what character encoding has been specified by the caller, if any
-#if !SILVERLIGHT || WINDOWS_PHONE
- String encoding = hints == null || !hints.ContainsKey(EncodeHintType.CHARACTER_SET) ? null : (String)hints[EncodeHintType.CHARACTER_SET];
- if (encoding == null)
- {
- encoding = DEFAULT_BYTE_MODE_ENCODING;
- }
- bool generateECI = !DEFAULT_BYTE_MODE_ENCODING.Equals(encoding, StringComparison.OrdinalIgnoreCase);
-#else
- // Silverlight supports only UTF-8 and UTF-16 out-of-the-box
- const string encoding = "UTF-8";
- // caller of the method can only control if the ECI segment should be written
- // character set is fixed to UTF-8; but some scanners doesn't like the ECI segment
- bool generateECI = (hints != null && hints.ContainsKey(EncodeHintType.CHARACTER_SET));
-#endif
-
- // Pick an encoding mode appropriate for the content. Note that this will not attempt to use
- // multiple modes / segments even if that were more efficient. Twould be nice.
- Mode mode = chooseMode(content, encoding);
-
- // This will store the header information, like mode and
- // length, as well as "header" segments like an ECI segment.
- BitArray headerBits = new BitArray();
-
-
- // (With ECI in place,) Write the mode marker
- appendModeInfo(mode, headerBits);
-
- // Collect data within the main segment, separately, to count its size if needed. Don't add it to
- // main payload yet.
- BitArray dataBits = new BitArray();
- appendBytes(content, mode, dataBits, encoding);
-
- // Hard part: need to know version to know how many bits length takes. But need to know how many
- // bits it takes to know version. First we take a guess at version by assuming version will be
- // the minimum, 1:
-
- int provisionalBitsNeeded = headerBits.Size
- + mode.getCharacterCountBits(Version.getVersionForNumber(1))
- + dataBits.Size;
- Version provisionalVersion = chooseVersion(provisionalBitsNeeded, ecLevel);
-
- // Use that guess to calculate the right version. I am still not sure this works in 100% of cases.
- int bitsNeeded = headerBits.Size
- + mode.getCharacterCountBits(provisionalVersion)
- + dataBits.Size;
- Version version = chooseVersion(bitsNeeded, ecLevel);
-
- BitArray headerAndDataBits = new BitArray();
- headerAndDataBits.appendBitArray(headerBits);
- // Find "length" of main segment and write it
- int numLetters = mode == Mode.BYTE ? dataBits.SizeInBytes : content.Length;
- appendLengthInfo(numLetters, version, mode, headerAndDataBits);
- // Put data together into the overall payload
- headerAndDataBits.appendBitArray(dataBits);
-
- Version.ECBlocks ecBlocks = version.getECBlocksForLevel(ecLevel);
- int numDataBytes = version.TotalCodewords - ecBlocks.TotalECCodewords;
-
- // Terminate the bits properly.
- terminateBits(numDataBytes, headerAndDataBits);
-
- // Interleave data bits with error correction code.
- BitArray finalBits = interleaveWithECBytes(headerAndDataBits,
- version.TotalCodewords,
- numDataBytes,
- ecBlocks.NumBlocks);
-
- QRCode qrCode = new QRCode
- {
- ECLevel = ecLevel,
- Mode = mode,
- Version = version
- };
-
- // Choose the mask pattern and set to "qrCode".
- int dimension = version.DimensionForVersion;
- ByteMatrix matrix = new ByteMatrix(dimension, dimension);
- int maskPattern = chooseMaskPattern(finalBits, ecLevel, version, matrix);
- qrCode.MaskPattern = maskPattern;
-
- // Build the matrix and set it to "qrCode".
- MatrixUtil.buildMatrix(finalBits, ecLevel, version, maskPattern, matrix);
- qrCode.Matrix = matrix;
-
- return qrCode;
- }
-
- ///
- /// Gets the alphanumeric code.
- ///
- /// The code.
- /// the code point of the table used in alphanumeric mode or
- /// -1 if there is no corresponding code in the table.
- internal static int getAlphanumericCode(int code)
- {
- if (code < ALPHANUMERIC_TABLE.Length)
- {
- return ALPHANUMERIC_TABLE[code];
- }
- return -1;
- }
-
- ///
- /// Chooses the mode.
- ///
- /// The content.
- ///
- public static Mode chooseMode(String content)
- {
- return chooseMode(content, null);
- }
-
- ///
- /// Choose the best mode by examining the content. Note that 'encoding' is used as a hint;
- /// if it is Shift_JIS, and the input is only double-byte Kanji, then we return {@link Mode#KANJI}.
- ///
- /// The content.
- /// The encoding.
- ///
- private static Mode chooseMode(String content, String encoding)
- {
- return Mode.BYTE;
- }
-
- private static int chooseMaskPattern(BitArray bits,
- ErrorCorrectionLevel ecLevel,
- Version version,
- ByteMatrix matrix)
- {
- int minPenalty = Int32.MaxValue; // Lower penalty is better.
- int bestMaskPattern = -1;
- // We try all mask patterns to choose the best one.
- for (int maskPattern = 0; maskPattern < QRCode.NUM_MASK_PATTERNS; maskPattern++)
- {
-
- MatrixUtil.buildMatrix(bits, ecLevel, version, maskPattern, matrix);
- int penalty = calculateMaskPenalty(matrix);
- if (penalty < minPenalty)
- {
-
- minPenalty = penalty;
- bestMaskPattern = maskPattern;
- }
- }
- return bestMaskPattern;
- }
-
- private static Version chooseVersion(int numInputBits, ErrorCorrectionLevel ecLevel)
- {
- // In the following comments, we use numbers of Version 7-H.
- for (int versionNum = 1; versionNum <= 40; versionNum++)
- {
- Version version = Version.getVersionForNumber(versionNum);
- // numBytes = 196
- int numBytes = version.TotalCodewords;
- // getNumECBytes = 130
- Version.ECBlocks ecBlocks = version.getECBlocksForLevel(ecLevel);
- int numEcBytes = ecBlocks.TotalECCodewords;
- // getNumDataBytes = 196 - 130 = 66
- int numDataBytes = numBytes - numEcBytes;
- int totalInputBytes = (numInputBits + 7) / 8;
- if (numDataBytes >= totalInputBytes)
- {
- return version;
- }
- }
- throw new WriterException("Data too big");
- }
-
- ///
- /// Terminate bits as described in 8.4.8 and 8.4.9 of JISX0510:2004 (p.24).
- ///
- /// The num data bytes.
- /// The bits.
- internal static void terminateBits(int numDataBytes, BitArray bits)
- {
- int capacity = numDataBytes << 3;
- if (bits.Size > capacity)
- {
- throw new WriterException("data bits cannot fit in the QR Code" + bits.Size + " > " +
- capacity);
- }
- for (int i = 0; i < 4 && bits.Size < capacity; ++i)
- {
- bits.appendBit(false);
- }
- // Append termination bits. See 8.4.8 of JISX0510:2004 (p.24) for details.
- // If the last byte isn't 8-bit aligned, we'll add padding bits.
- int numBitsInLastByte = bits.Size & 0x07;
- if (numBitsInLastByte > 0)
- {
- for (int i = numBitsInLastByte; i < 8; i++)
- {
- bits.appendBit(false);
- }
- }
- // If we have more space, we'll fill the space with padding patterns defined in 8.4.9 (p.24).
- int numPaddingBytes = numDataBytes - bits.SizeInBytes;
- for (int i = 0; i < numPaddingBytes; ++i)
- {
- bits.appendBits((i & 0x01) == 0 ? 0xEC : 0x11, 8);
- }
- if (bits.Size != capacity)
- {
- throw new WriterException("Bits size does not equal capacity");
- }
- }
-
- ///
- /// Get number of data bytes and number of error correction bytes for block id "blockID". Store
- /// the result in "numDataBytesInBlock", and "numECBytesInBlock". See table 12 in 8.5.1 of
- /// JISX0510:2004 (p.30)
- ///
- /// The num total bytes.
- /// The num data bytes.
- /// The num RS blocks.
- /// The block ID.
- /// The num data bytes in block.
- /// The num EC bytes in block.
- internal static void getNumDataBytesAndNumECBytesForBlockID(int numTotalBytes,
- int numDataBytes,
- int numRSBlocks,
- int blockID,
- int[] numDataBytesInBlock,
- int[] numECBytesInBlock)
- {
- if (blockID >= numRSBlocks)
- {
- throw new WriterException("Block ID too large");
- }
- // numRsBlocksInGroup2 = 196 % 5 = 1
- int numRsBlocksInGroup2 = numTotalBytes % numRSBlocks;
- // numRsBlocksInGroup1 = 5 - 1 = 4
- int numRsBlocksInGroup1 = numRSBlocks - numRsBlocksInGroup2;
- // numTotalBytesInGroup1 = 196 / 5 = 39
- int numTotalBytesInGroup1 = numTotalBytes / numRSBlocks;
- // numTotalBytesInGroup2 = 39 + 1 = 40
- int numTotalBytesInGroup2 = numTotalBytesInGroup1 + 1;
- // numDataBytesInGroup1 = 66 / 5 = 13
- int numDataBytesInGroup1 = numDataBytes / numRSBlocks;
- // numDataBytesInGroup2 = 13 + 1 = 14
- int numDataBytesInGroup2 = numDataBytesInGroup1 + 1;
- // numEcBytesInGroup1 = 39 - 13 = 26
- int numEcBytesInGroup1 = numTotalBytesInGroup1 - numDataBytesInGroup1;
- // numEcBytesInGroup2 = 40 - 14 = 26
- int numEcBytesInGroup2 = numTotalBytesInGroup2 - numDataBytesInGroup2;
- // Sanity checks.
- // 26 = 26
- if (numEcBytesInGroup1 != numEcBytesInGroup2)
- {
-
- throw new WriterException("EC bytes mismatch");
- }
- // 5 = 4 + 1.
- if (numRSBlocks != numRsBlocksInGroup1 + numRsBlocksInGroup2)
- {
-
- throw new WriterException("RS blocks mismatch");
- }
- // 196 = (13 + 26) * 4 + (14 + 26) * 1
- if (numTotalBytes !=
- ((numDataBytesInGroup1 + numEcBytesInGroup1) *
- numRsBlocksInGroup1) +
- ((numDataBytesInGroup2 + numEcBytesInGroup2) *
- numRsBlocksInGroup2))
- {
- throw new WriterException("Total bytes mismatch");
- }
-
- if (blockID < numRsBlocksInGroup1)
- {
-
- numDataBytesInBlock[0] = numDataBytesInGroup1;
- numECBytesInBlock[0] = numEcBytesInGroup1;
- }
- else
- {
-
-
- numDataBytesInBlock[0] = numDataBytesInGroup2;
- numECBytesInBlock[0] = numEcBytesInGroup2;
- }
- }
-
- ///
- /// Interleave "bits" with corresponding error correction bytes. On success, store the result in
- /// "result". The interleave rule is complicated. See 8.6 of JISX0510:2004 (p.37) for details.
- ///
- /// The bits.
- /// The num total bytes.
- /// The num data bytes.
- /// The num RS blocks.
- ///
- internal static BitArray interleaveWithECBytes(BitArray bits,
- int numTotalBytes,
- int numDataBytes,
- int numRSBlocks)
- {
- // "bits" must have "getNumDataBytes" bytes of data.
- if (bits.SizeInBytes != numDataBytes)
- {
-
- throw new WriterException("Number of bits and data bytes does not match");
- }
-
- // Step 1. Divide data bytes into blocks and generate error correction bytes for them. We'll
- // store the divided data bytes blocks and error correction bytes blocks into "blocks".
- int dataBytesOffset = 0;
- int maxNumDataBytes = 0;
- int maxNumEcBytes = 0;
-
- // Since, we know the number of reedsolmon blocks, we can initialize the vector with the number.
- var blocks = new List(numRSBlocks);
-
- for (int i = 0; i < numRSBlocks; ++i)
- {
-
- int[] numDataBytesInBlock = new int[1];
- int[] numEcBytesInBlock = new int[1];
- getNumDataBytesAndNumECBytesForBlockID(
- numTotalBytes, numDataBytes, numRSBlocks, i,
- numDataBytesInBlock, numEcBytesInBlock);
-
- int size = numDataBytesInBlock[0];
- byte[] dataBytes = new byte[size];
- bits.toBytes(8 * dataBytesOffset, dataBytes, 0, size);
- byte[] ecBytes = generateECBytes(dataBytes, numEcBytesInBlock[0]);
- blocks.Add(new BlockPair(dataBytes, ecBytes));
-
- maxNumDataBytes = Math.Max(maxNumDataBytes, size);
- maxNumEcBytes = Math.Max(maxNumEcBytes, ecBytes.Length);
- dataBytesOffset += numDataBytesInBlock[0];
- }
- if (numDataBytes != dataBytesOffset)
- {
-
- throw new WriterException("Data bytes does not match offset");
- }
-
- BitArray result = new BitArray();
-
- // First, place data blocks.
- for (int i = 0; i < maxNumDataBytes; ++i)
- {
- foreach (BlockPair block in blocks)
- {
- byte[] dataBytes = block.DataBytes;
- if (i < dataBytes.Length)
- {
- result.appendBits(dataBytes[i], 8);
- }
- }
- }
- // Then, place error correction blocks.
- for (int i = 0; i < maxNumEcBytes; ++i)
- {
- foreach (BlockPair block in blocks)
- {
- byte[] ecBytes = block.ErrorCorrectionBytes;
- if (i < ecBytes.Length)
- {
- result.appendBits(ecBytes[i], 8);
- }
- }
- }
- if (numTotalBytes != result.SizeInBytes)
- { // Should be same.
- throw new WriterException("Interleaving error: " + numTotalBytes + " and " +
- result.SizeInBytes + " differ.");
- }
-
- return result;
- }
-
- internal static byte[] generateECBytes(byte[] dataBytes, int numEcBytesInBlock)
- {
- int numDataBytes = dataBytes.Length;
- int[] toEncode = new int[numDataBytes + numEcBytesInBlock];
- for (int i = 0; i < numDataBytes; i++)
- {
- toEncode[i] = dataBytes[i] & 0xFF;
-
- }
- new ReedSolomonEncoder(GenericGF.QR_CODE_FIELD_256).encode(toEncode, numEcBytesInBlock);
-
- byte[] ecBytes = new byte[numEcBytesInBlock];
- for (int i = 0; i < numEcBytesInBlock; i++)
- {
- ecBytes[i] = (byte)toEncode[numDataBytes + i];
-
- }
- return ecBytes;
- }
-
- ///
- /// Append mode info. On success, store the result in "bits".
- ///
- /// The mode.
- /// The bits.
- internal static void appendModeInfo(Mode mode, BitArray bits)
- {
- bits.appendBits(mode.Bits, 4);
- }
-
-
- ///
- /// Append length info. On success, store the result in "bits".
- ///
- /// The num letters.
- /// The version.
- /// The mode.
- /// The bits.
- internal static void appendLengthInfo(int numLetters, Version version, Mode mode, BitArray bits)
- {
- int numBits = mode.getCharacterCountBits(version);
- if (numLetters >= (1 << numBits))
- {
- throw new WriterException(numLetters + " is bigger than " + ((1 << numBits) - 1));
- }
- bits.appendBits(numLetters, numBits);
- }
-
- ///
- /// Append "bytes" in "mode" mode (encoding) into "bits". On success, store the result in "bits".
- ///
- /// The content.
- /// The mode.
- /// The bits.
- /// The encoding.
- internal static void appendBytes(String content,
- Mode mode,
- BitArray bits,
- String encoding)
- {
- // TODO: check the purpose of this .Equals(obj)
- if (mode == Mode.BYTE)
- append8BitBytes(content, bits, encoding);
- else
- throw new WriterException("Invalid mode: " + mode);
- }
-
- internal static void appendNumericBytes(String content, BitArray bits)
- {
- int length = content.Length;
-
- int i = 0;
- while (i < length)
- {
- int num1 = content[i] - '0';
- if (i + 2 < length)
- {
- // Encode three numeric letters in ten bits.
- int num2 = content[i + 1] - '0';
- int num3 = content[i + 2] - '0';
- bits.appendBits(num1 * 100 + num2 * 10 + num3, 10);
- i += 3;
- }
- else if (i + 1 < length)
- {
- // Encode two numeric letters in seven bits.
- int num2 = content[i + 1] - '0';
- bits.appendBits(num1 * 10 + num2, 7);
- i += 2;
- }
- else
- {
- // Encode one numeric letter in four bits.
- bits.appendBits(num1, 4);
- i++;
- }
- }
- }
-
-
- internal static void append8BitBytes(String content, BitArray bits, String encoding)
- {
- byte[] bytes;
- try
- {
- bytes = Encoding.GetEncoding(encoding).GetBytes(content);
- }
-#if WindowsCE
- catch (PlatformNotSupportedException)
- {
- try
- {
- // WindowsCE doesn't support all encodings. But it is device depended.
- // So we try here the some different ones
- if (encoding == "ISO-8859-1")
- {
- bytes = Encoding.GetEncoding(1252).GetBytes(content);
- }
- else
- {
- bytes = Encoding.GetEncoding("UTF-8").GetBytes(content);
- }
- }
- catch (Exception uee)
- {
- throw new WriterException(uee.Message, uee);
- }
- }
-#endif
- catch (Exception uee)
- {
- throw new WriterException(uee.Message, uee);
- }
- foreach (byte b in bytes)
- {
- bits.appendBits(b, 8);
- }
- }
-
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/encoder/MaskUtil.cs b/shadowsocks-csharp/3rd/zxing/qrcode/encoder/MaskUtil.cs
deleted file mode 100755
index 24e85cc1..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/encoder/MaskUtil.cs
+++ /dev/null
@@ -1,271 +0,0 @@
-/*
-* Copyright 2008 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using System;
-
-namespace ZXing.QrCode.Internal
-{
- ///
- ///
- ///
- /// Satoru Takabayashi
- /// Daniel Switkin
- /// Sean Owen
- public static class MaskUtil
- {
- // Penalty weights from section 6.8.2.1
- private const int N1 = 3;
- private const int N2 = 3;
- private const int N3 = 40;
- private const int N4 = 10;
-
- ///
- /// Apply mask penalty rule 1 and return the penalty. Find repetitive cells with the same color and
- /// give penalty to them. Example: 00000 or 11111.
- ///
- /// The matrix.
- ///
- public static int applyMaskPenaltyRule1(ByteMatrix matrix)
- {
- return applyMaskPenaltyRule1Internal(matrix, true) + applyMaskPenaltyRule1Internal(matrix, false);
- }
-
- ///
- /// Apply mask penalty rule 2 and return the penalty. Find 2x2 blocks with the same color and give
- /// penalty to them. This is actually equivalent to the spec's rule, which is to find MxN blocks and give a
- /// penalty proportional to (M-1)x(N-1), because this is the number of 2x2 blocks inside such a block.
- ///
- /// The matrix.
- ///
- public static int applyMaskPenaltyRule2(ByteMatrix matrix)
- {
- int penalty = 0;
- var array = matrix.Array;
- int width = matrix.Width;
- int height = matrix.Height;
- for (int y = 0; y < height - 1; y++)
- {
- for (int x = 0; x < width - 1; x++)
- {
- int value = array[y][x];
- if (value == array[y][x + 1] && value == array[y + 1][x] && value == array[y + 1][x + 1])
- {
- penalty++;
- }
- }
- }
- return N2 * penalty;
- }
-
- ///
- /// Apply mask penalty rule 3 and return the penalty. Find consecutive cells of 00001011101 or
- /// 10111010000, and give penalty to them. If we find patterns like 000010111010000, we give
- /// penalties twice (i.e. 40 * 2).
- ///
- /// The matrix.
- ///
- public static int applyMaskPenaltyRule3(ByteMatrix matrix)
- {
- int numPenalties = 0;
- byte[][] array = matrix.Array;
- int width = matrix.Width;
- int height = matrix.Height;
- for (int y = 0; y < height; y++)
- {
- for (int x = 0; x < width; x++)
- {
- byte[] arrayY = array[y]; // We can at least optimize this access
- if (x + 6 < width &&
- arrayY[x] == 1 &&
- arrayY[x + 1] == 0 &&
- arrayY[x + 2] == 1 &&
- arrayY[x + 3] == 1 &&
- arrayY[x + 4] == 1 &&
- arrayY[x + 5] == 0 &&
- arrayY[x + 6] == 1 &&
- (isWhiteHorizontal(arrayY, x - 4, x) || isWhiteHorizontal(arrayY, x + 7, x + 11)))
- {
- numPenalties++;
- }
- if (y + 6 < height &&
- array[y][x] == 1 &&
- array[y + 1][x] == 0 &&
- array[y + 2][x] == 1 &&
- array[y + 3][x] == 1 &&
- array[y + 4][x] == 1 &&
- array[y + 5][x] == 0 &&
- array[y + 6][x] == 1 &&
- (isWhiteVertical(array, x, y - 4, y) || isWhiteVertical(array, x, y + 7, y + 11)))
- {
- numPenalties++;
- }
- }
- }
- return numPenalties * N3;
- }
-
- private static bool isWhiteHorizontal(byte[] rowArray, int from, int to)
- {
- for (int i = from; i < to; i++)
- {
- if (i >= 0 && i < rowArray.Length && rowArray[i] == 1)
- {
- return false;
- }
- }
- return true;
- }
-
- private static bool isWhiteVertical(byte[][] array, int col, int from, int to)
- {
- for (int i = from; i < to; i++)
- {
- if (i >= 0 && i < array.Length && array[i][col] == 1)
- {
- return false;
- }
- }
- return true;
- }
-
- ///
- /// Apply mask penalty rule 4 and return the penalty. Calculate the ratio of dark cells and give
- /// penalty if the ratio is far from 50%. It gives 10 penalty for 5% distance.
- ///
- /// The matrix.
- ///
- public static int applyMaskPenaltyRule4(ByteMatrix matrix)
- {
- int numDarkCells = 0;
- var array = matrix.Array;
- int width = matrix.Width;
- int height = matrix.Height;
- for (int y = 0; y < height; y++)
- {
- var arrayY = array[y];
- for (int x = 0; x < width; x++)
- {
- if (arrayY[x] == 1)
- {
- numDarkCells++;
- }
- }
- }
- var numTotalCells = matrix.Height * matrix.Width;
- var darkRatio = (double)numDarkCells / numTotalCells;
- var fivePercentVariances = (int)(Math.Abs(darkRatio - 0.5) * 20.0); // * 100.0 / 5.0
- return fivePercentVariances * N4;
- }
-
- ///
- /// Return the mask bit for "getMaskPattern" at "x" and "y". See 8.8 of JISX0510:2004 for mask
- /// pattern conditions.
- ///
- /// The mask pattern.
- /// The x.
- /// The y.
- ///
- public static bool getDataMaskBit(int maskPattern, int x, int y)
- {
- int intermediate, temp;
- switch (maskPattern)
- {
-
- case 0:
- intermediate = (y + x) & 0x1;
- break;
-
- case 1:
- intermediate = y & 0x1;
- break;
-
- case 2:
- intermediate = x % 3;
- break;
-
- case 3:
- intermediate = (y + x) % 3;
- break;
-
- case 4:
- intermediate = (((int)((uint)y >> 1)) + (x / 3)) & 0x1;
- break;
-
- case 5:
- temp = y * x;
- intermediate = (temp & 0x1) + (temp % 3);
- break;
-
- case 6:
- temp = y * x;
- intermediate = (((temp & 0x1) + (temp % 3)) & 0x1);
- break;
-
- case 7:
- temp = y * x;
- intermediate = (((temp % 3) + ((y + x) & 0x1)) & 0x1);
- break;
-
- default:
- throw new ArgumentException("Invalid mask pattern: " + maskPattern);
-
- }
- return intermediate == 0;
- }
-
- ///
- /// Helper function for applyMaskPenaltyRule1. We need this for doing this calculation in both
- /// vertical and horizontal orders respectively.
- ///
- /// The matrix.
- /// if set to true [is horizontal].
- ///
- private static int applyMaskPenaltyRule1Internal(ByteMatrix matrix, bool isHorizontal)
- {
- int penalty = 0;
- int iLimit = isHorizontal ? matrix.Height : matrix.Width;
- int jLimit = isHorizontal ? matrix.Width : matrix.Height;
- var array = matrix.Array;
- for (int i = 0; i < iLimit; i++)
- {
- int numSameBitCells = 0;
- int prevBit = -1;
- for (int j = 0; j < jLimit; j++)
- {
- int bit = isHorizontal ? array[i][j] : array[j][i];
- if (bit == prevBit)
- {
- numSameBitCells++;
- }
- else
- {
- if (numSameBitCells >= 5)
- {
- penalty += N1 + (numSameBitCells - 5);
- }
- numSameBitCells = 1; // Include the cell itself.
- prevBit = bit;
- }
- }
- if (numSameBitCells >= 5)
- {
- penalty += N1 + (numSameBitCells - 5);
- }
- }
- return penalty;
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/encoder/MatrixUtil.cs b/shadowsocks-csharp/3rd/zxing/qrcode/encoder/MatrixUtil.cs
deleted file mode 100755
index 9fcde4e1..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/encoder/MatrixUtil.cs
+++ /dev/null
@@ -1,600 +0,0 @@
-/*
-* Copyright 2008 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using ZXing.Common;
-
-namespace ZXing.QrCode.Internal
-{
- ///
- ///
- ///
- ///
- /// satorux@google.com (Satoru Takabayashi) - creator
- ///
- public static class MatrixUtil
- {
- private static readonly int[][] POSITION_DETECTION_PATTERN = new int[][]
- {
- new int[] { 1, 1, 1, 1, 1, 1, 1 },
- new int[] { 1, 0, 0, 0, 0, 0, 1 },
- new int[] { 1, 0, 1, 1, 1, 0, 1 },
- new int[] { 1, 0, 1, 1, 1, 0, 1 },
- new int[] { 1, 0, 1, 1, 1, 0, 1 },
- new int[] { 1, 0, 0, 0, 0, 0, 1 },
- new int[] { 1, 1, 1, 1, 1, 1, 1 }
- };
-
- private static readonly int[][] POSITION_ADJUSTMENT_PATTERN = new int[][]
- {
- new int[] { 1, 1, 1, 1, 1 },
- new int[] { 1, 0, 0, 0, 1 },
- new int[] { 1, 0, 1, 0, 1 },
- new int[] { 1, 0, 0, 0, 1 },
- new int[] { 1, 1, 1, 1, 1 }
- };
-
- // From Appendix E. Table 1, JIS0510X:2004 (p 71). The table was double-checked by komatsu.
- private static readonly int[][] POSITION_ADJUSTMENT_PATTERN_COORDINATE_TABLE = new int[][]
- {
- new int[] { -1, -1, -1, -1, -1, -1, -1 },
- new int[] { 6, 18, -1, -1, -1, -1, -1 },
- new int[] { 6, 22, -1, -1, -1, -1, -1 },
- new int[] { 6, 26, -1, -1, -1, -1, -1 },
- new int[] { 6, 30, -1, -1, -1, -1, -1 },
- new int[] { 6, 34, -1, -1, -1, -1, -1 },
- new int[] { 6, 22, 38, -1, -1, -1, -1 },
- new int[] { 6, 24, 42, -1, -1, -1, -1 },
- new int[] { 6, 26, 46, -1, -1, -1, -1 },
- new int[] { 6, 28, 50, -1, -1, -1, -1 },
- new int[] { 6, 30, 54, -1, -1, -1, -1 },
- new int[] { 6, 32, 58, -1, -1, -1, -1 },
- new int[] { 6, 34, 62, -1, -1, -1, -1 },
- new int[] { 6, 26, 46, 66, -1, -1, -1 },
- new int[] { 6, 26, 48, 70, -1, -1, -1 },
- new int[] { 6, 26, 50, 74, -1, -1, -1 },
- new int[] { 6, 30, 54, 78, -1, -1, -1 },
- new int[] { 6, 30, 56, 82, -1, -1, -1 },
- new int[] { 6, 30, 58, 86, -1, -1, -1 },
- new int[] { 6, 34, 62, 90, -1, -1, -1 },
- new int[] { 6, 28, 50, 72, 94, -1, -1 },
- new int[] { 6, 26, 50, 74, 98, -1, -1 },
- new int[] { 6, 30, 54, 78, 102, -1, -1 },
- new int[] { 6, 28, 54, 80, 106, -1, -1 },
- new int[] { 6, 32, 58, 84, 110, -1, -1 },
- new int[] { 6, 30, 58, 86, 114, -1, -1 },
- new int[] { 6, 34, 62, 90, 118, -1, -1 },
- new int[] { 6, 26, 50, 74, 98, 122, -1 },
- new int[] { 6, 30, 54, 78, 102, 126, -1 },
- new int[] { 6, 26, 52, 78, 104, 130, -1 },
- new int[] { 6, 30, 56, 82, 108, 134, -1 },
- new int[] { 6, 34, 60, 86, 112, 138, -1 },
- new int[] { 6, 30, 58, 86, 114, 142, -1 },
- new int[] { 6, 34, 62, 90, 118, 146, -1 },
- new int[] { 6, 30, 54, 78, 102, 126, 150 },
- new int[] { 6, 24, 50, 76, 102, 128, 154 },
- new int[] { 6, 28, 54, 80, 106, 132, 158 },
- new int[] { 6, 32, 58, 84, 110, 136, 162 },
- new int[] { 6, 26, 54, 82, 110, 138, 166 },
- new int[] { 6, 30, 58, 86, 114, 142, 170 }
- };
-
- // Type info cells at the left top corner.
- private static readonly int[][] TYPE_INFO_COORDINATES = new int[][]
- {
- new int[] { 8, 0 },
- new int[] { 8, 1 },
- new int[] { 8, 2 },
- new int[] { 8, 3 },
- new int[] { 8, 4 },
- new int[] { 8, 5 },
- new int[] { 8, 7 },
- new int[] { 8, 8 },
- new int[] { 7, 8 },
- new int[] { 5, 8 },
- new int[] { 4, 8 },
- new int[] { 3, 8 },
- new int[] { 2, 8 },
- new int[] { 1, 8 },
- new int[] { 0, 8 }
- };
-
- // From Appendix D in JISX0510:2004 (p. 67)
- private const int VERSION_INFO_POLY = 0x1f25; // 1 1111 0010 0101
-
- // From Appendix C in JISX0510:2004 (p.65).
- private const int TYPE_INFO_POLY = 0x537;
- private const int TYPE_INFO_MASK_PATTERN = 0x5412;
-
- ///
- /// Set all cells to 2. 2 means that the cell is empty (not set yet).
- ///
- /// JAVAPORT: We shouldn't need to do this at all. The code should be rewritten to begin encoding
- /// with the ByteMatrix initialized all to zero.
- ///
- /// The matrix.
- public static void clearMatrix(ByteMatrix matrix)
- {
- matrix.clear(2);
- }
-
- ///
- /// Build 2D matrix of QR Code from "dataBits" with "ecLevel", "version" and "getMaskPattern". On
- /// success, store the result in "matrix" and return true.
- ///
- /// The data bits.
- /// The ec level.
- /// The version.
- /// The mask pattern.
- /// The matrix.
- public static void buildMatrix(BitArray dataBits, ErrorCorrectionLevel ecLevel, Version version, int maskPattern, ByteMatrix matrix)
- {
- clearMatrix(matrix);
- embedBasicPatterns(version, matrix);
- // Type information appear with any version.
- embedTypeInfo(ecLevel, maskPattern, matrix);
- // Version info appear if version >= 7.
- maybeEmbedVersionInfo(version, matrix);
- // Data should be embedded at end.
- embedDataBits(dataBits, maskPattern, matrix);
- }
-
- ///
- /// Embed basic patterns. On success, modify the matrix and return true.
- /// The basic patterns are:
- /// - Position detection patterns
- /// - Timing patterns
- /// - Dark dot at the left bottom corner
- /// - Position adjustment patterns, if need be
- ///
- /// The version.
- /// The matrix.
- public static void embedBasicPatterns(Version version, ByteMatrix matrix)
- {
- // Let's get started with embedding big squares at corners.
- embedPositionDetectionPatternsAndSeparators(matrix);
- // Then, embed the dark dot at the left bottom corner.
- embedDarkDotAtLeftBottomCorner(matrix);
-
- // Position adjustment patterns appear if version >= 2.
- maybeEmbedPositionAdjustmentPatterns(version, matrix);
- // Timing patterns should be embedded after position adj. patterns.
- embedTimingPatterns(matrix);
- }
-
- ///
- /// Embed type information. On success, modify the matrix.
- ///
- /// The ec level.
- /// The mask pattern.
- /// The matrix.
- public static void embedTypeInfo(ErrorCorrectionLevel ecLevel, int maskPattern, ByteMatrix matrix)
- {
- BitArray typeInfoBits = new BitArray();
- makeTypeInfoBits(ecLevel, maskPattern, typeInfoBits);
-
- for (int i = 0; i < typeInfoBits.Size; ++i)
- {
- // Place bits in LSB to MSB order. LSB (least significant bit) is the last value in
- // "typeInfoBits".
- int bit = typeInfoBits[typeInfoBits.Size - 1 - i] ? 1 : 0;
-
- // Type info bits at the left top corner. See 8.9 of JISX0510:2004 (p.46).
- int x1 = TYPE_INFO_COORDINATES[i][0];
- int y1 = TYPE_INFO_COORDINATES[i][1];
- matrix[x1, y1] = bit;
-
- if (i < 8)
- {
- // Right top corner.
- int x2 = matrix.Width - i - 1;
- int y2 = 8;
- matrix[x2, y2] = bit;
- }
- else
- {
- // Left bottom corner.
- int x2 = 8;
- int y2 = matrix.Height - 7 + (i - 8);
- matrix[x2, y2] = bit;
- }
- }
- }
-
- ///
- /// Embed version information if need be. On success, modify the matrix and return true.
- /// See 8.10 of JISX0510:2004 (p.47) for how to embed version information.
- ///
- /// The version.
- /// The matrix.
- public static void maybeEmbedVersionInfo(Version version, ByteMatrix matrix)
- {
- if (version.VersionNumber < 7)
- {
- // Version info is necessary if version >= 7.
- return; // Don't need version info.
- }
- BitArray versionInfoBits = new BitArray();
- makeVersionInfoBits(version, versionInfoBits);
-
- int bitIndex = 6 * 3 - 1; // It will decrease from 17 to 0.
- for (int i = 0; i < 6; ++i)
- {
- for (int j = 0; j < 3; ++j)
- {
- // Place bits in LSB (least significant bit) to MSB order.
- var bit = versionInfoBits[bitIndex] ? 1 : 0;
- bitIndex--;
- // Left bottom corner.
- matrix[i, matrix.Height - 11 + j] = bit;
- // Right bottom corner.
- matrix[matrix.Height - 11 + j, i] = bit;
- }
- }
- }
-
- ///
- /// Embed "dataBits" using "getMaskPattern". On success, modify the matrix and return true.
- /// For debugging purposes, it skips masking process if "getMaskPattern" is -1.
- /// See 8.7 of JISX0510:2004 (p.38) for how to embed data bits.
- ///
- /// The data bits.
- /// The mask pattern.
- /// The matrix.
- public static void embedDataBits(BitArray dataBits, int maskPattern, ByteMatrix matrix)
- {
- int bitIndex = 0;
- int direction = -1;
- // Start from the right bottom cell.
- int x = matrix.Width - 1;
- int y = matrix.Height - 1;
- while (x > 0)
- {
- // Skip the vertical timing pattern.
- if (x == 6)
- {
- x -= 1;
- }
- while (y >= 0 && y < matrix.Height)
- {
- for (int i = 0; i < 2; ++i)
- {
- int xx = x - i;
- // Skip the cell if it's not empty.
- if (!isEmpty(matrix[xx, y]))
- {
- continue;
- }
- int bit;
- if (bitIndex < dataBits.Size)
- {
- bit = dataBits[bitIndex] ? 1 : 0;
- ++bitIndex;
- }
- else
- {
- // Padding bit. If there is no bit left, we'll fill the left cells with 0, as described
- // in 8.4.9 of JISX0510:2004 (p. 24).
- bit = 0;
- }
-
- // Skip masking if mask_pattern is -1.
- if (maskPattern != -1)
- {
- if (MaskUtil.getDataMaskBit(maskPattern, xx, y))
- {
- bit ^= 0x1;
- }
- }
- matrix[xx, y] = bit;
- }
- y += direction;
- }
- direction = -direction; // Reverse the direction.
- y += direction;
- x -= 2; // Move to the left.
- }
- // All bits should be consumed.
- if (bitIndex != dataBits.Size)
- {
- throw new WriterException("Not all bits consumed: " + bitIndex + '/' + dataBits.Size);
- }
- }
-
- ///
- /// Return the position of the most significant bit set (to one) in the "value". The most
- /// significant bit is position 32. If there is no bit set, return 0. Examples:
- /// - findMSBSet(0) => 0
- /// - findMSBSet(1) => 1
- /// - findMSBSet(255) => 8
- ///
- /// The value_ renamed.
- ///
- public static int findMSBSet(int value_Renamed)
- {
- int numDigits = 0;
- while (value_Renamed != 0)
- {
- value_Renamed = (int)((uint)value_Renamed >> 1);
- ++numDigits;
- }
- return numDigits;
- }
-
- ///
- /// Calculate BCH (Bose-Chaudhuri-Hocquenghem) code for "value" using polynomial "poly". The BCH
- /// code is used for encoding type information and version information.
- /// Example: Calculation of version information of 7.
- /// f(x) is created from 7.
- /// - 7 = 000111 in 6 bits
- /// - f(x) = x^2 + x^2 + x^1
- /// g(x) is given by the standard (p. 67)
- /// - g(x) = x^12 + x^11 + x^10 + x^9 + x^8 + x^5 + x^2 + 1
- /// Multiply f(x) by x^(18 - 6)
- /// - f'(x) = f(x) * x^(18 - 6)
- /// - f'(x) = x^14 + x^13 + x^12
- /// Calculate the remainder of f'(x) / g(x)
- /// x^2
- /// __________________________________________________
- /// g(x) )x^14 + x^13 + x^12
- /// x^14 + x^13 + x^12 + x^11 + x^10 + x^7 + x^4 + x^2
- /// --------------------------------------------------
- /// x^11 + x^10 + x^7 + x^4 + x^2
- ///
- /// The remainder is x^11 + x^10 + x^7 + x^4 + x^2
- /// Encode it in binary: 110010010100
- /// The return value is 0xc94 (1100 1001 0100)
- ///
- /// Since all coefficients in the polynomials are 1 or 0, we can do the calculation by bit
- /// operations. We don't care if cofficients are positive or negative.
- ///
- /// The value.
- /// The poly.
- ///
- public static int calculateBCHCode(int value, int poly)
- {
- // If poly is "1 1111 0010 0101" (version info poly), msbSetInPoly is 13. We'll subtract 1
- // from 13 to make it 12.
- int msbSetInPoly = findMSBSet(poly);
- value <<= msbSetInPoly - 1;
- // Do the division business using exclusive-or operations.
- while (findMSBSet(value) >= msbSetInPoly)
- {
- value ^= poly << (findMSBSet(value) - msbSetInPoly);
- }
- // Now the "value" is the remainder (i.e. the BCH code)
- return value;
- }
-
- ///
- /// Make bit vector of type information. On success, store the result in "bits" and return true.
- /// Encode error correction level and mask pattern. See 8.9 of
- /// JISX0510:2004 (p.45) for details.
- ///
- /// The ec level.
- /// The mask pattern.
- /// The bits.
- public static void makeTypeInfoBits(ErrorCorrectionLevel ecLevel, int maskPattern, BitArray bits)
- {
- if (!QRCode.isValidMaskPattern(maskPattern))
- {
- throw new WriterException("Invalid mask pattern");
- }
- int typeInfo = (ecLevel.Bits << 3) | maskPattern;
- bits.appendBits(typeInfo, 5);
-
- int bchCode = calculateBCHCode(typeInfo, TYPE_INFO_POLY);
- bits.appendBits(bchCode, 10);
-
- BitArray maskBits = new BitArray();
- maskBits.appendBits(TYPE_INFO_MASK_PATTERN, 15);
- bits.xor(maskBits);
-
- if (bits.Size != 15)
- {
- // Just in case.
- throw new WriterException("should not happen but we got: " + bits.Size);
- }
- }
-
- ///
- /// Make bit vector of version information. On success, store the result in "bits" and return true.
- /// See 8.10 of JISX0510:2004 (p.45) for details.
- ///
- /// The version.
- /// The bits.
- public static void makeVersionInfoBits(Version version, BitArray bits)
- {
- bits.appendBits(version.VersionNumber, 6);
- int bchCode = calculateBCHCode(version.VersionNumber, VERSION_INFO_POLY);
- bits.appendBits(bchCode, 12);
-
- if (bits.Size != 18)
- {
- // Just in case.
- throw new WriterException("should not happen but we got: " + bits.Size);
- }
- }
-
- ///
- /// Check if "value" is empty.
- ///
- /// The value.
- ///
- /// true if the specified value is empty; otherwise, false.
- ///
- private static bool isEmpty(int value)
- {
- return value == 2;
- }
-
- private static void embedTimingPatterns(ByteMatrix matrix)
- {
- // -8 is for skipping position detection patterns (size 7), and two horizontal/vertical
- // separation patterns (size 1). Thus, 8 = 7 + 1.
- for (int i = 8; i < matrix.Width - 8; ++i)
- {
- int bit = (i + 1) % 2;
- // Horizontal line.
- if (isEmpty(matrix[i, 6]))
- {
- matrix[i, 6] = bit;
- }
- // Vertical line.
- if (isEmpty(matrix[6, i]))
- {
- matrix[6, i] = bit;
- }
- }
- }
-
- ///
- /// Embed the lonely dark dot at left bottom corner. JISX0510:2004 (p.46)
- ///
- /// The matrix.
- private static void embedDarkDotAtLeftBottomCorner(ByteMatrix matrix)
- {
- if (matrix[8, matrix.Height - 8] == 0)
- {
- throw new WriterException();
- }
- matrix[8, matrix.Height - 8] = 1;
- }
-
- private static void embedHorizontalSeparationPattern(int xStart, int yStart, ByteMatrix matrix)
- {
- for (int x = 0; x < 8; ++x)
- {
- if (!isEmpty(matrix[xStart + x, yStart]))
- {
- throw new WriterException();
- }
- matrix[xStart + x, yStart] = 0;
- }
- }
-
- private static void embedVerticalSeparationPattern(int xStart, int yStart, ByteMatrix matrix)
- {
- for (int y = 0; y < 7; ++y)
- {
- if (!isEmpty(matrix[xStart, yStart + y]))
- {
- throw new WriterException();
- }
- matrix[xStart, yStart + y] = 0;
- }
- }
-
- ///
- /// Note that we cannot unify the function with embedPositionDetectionPattern() despite they are
- /// almost identical, since we cannot write a function that takes 2D arrays in different sizes in
- /// C/C++. We should live with the fact.
- ///
- /// The x start.
- /// The y start.
- /// The matrix.
- private static void embedPositionAdjustmentPattern(int xStart, int yStart, ByteMatrix matrix)
- {
- for (int y = 0; y < 5; ++y)
- {
- for (int x = 0; x < 5; ++x)
- {
- matrix[xStart + x, yStart + y] = POSITION_ADJUSTMENT_PATTERN[y][x];
- }
- }
- }
-
- private static void embedPositionDetectionPattern(int xStart, int yStart, ByteMatrix matrix)
- {
- for (int y = 0; y < 7; ++y)
- {
- for (int x = 0; x < 7; ++x)
- {
- matrix[xStart + x, yStart + y] = POSITION_DETECTION_PATTERN[y][x];
- }
- }
- }
-
- ///
- /// Embed position detection patterns and surrounding vertical/horizontal separators.
- ///
- /// The matrix.
- private static void embedPositionDetectionPatternsAndSeparators(ByteMatrix matrix)
- {
- // Embed three big squares at corners.
- int pdpWidth = POSITION_DETECTION_PATTERN[0].Length;
- // Left top corner.
- embedPositionDetectionPattern(0, 0, matrix);
- // Right top corner.
- embedPositionDetectionPattern(matrix.Width - pdpWidth, 0, matrix);
- // Left bottom corner.
- embedPositionDetectionPattern(0, matrix.Width - pdpWidth, matrix);
-
- // Embed horizontal separation patterns around the squares.
- const int hspWidth = 8;
- // Left top corner.
- embedHorizontalSeparationPattern(0, hspWidth - 1, matrix);
- // Right top corner.
- embedHorizontalSeparationPattern(matrix.Width - hspWidth, hspWidth - 1, matrix);
- // Left bottom corner.
- embedHorizontalSeparationPattern(0, matrix.Width - hspWidth, matrix);
-
- // Embed vertical separation patterns around the squares.
- const int vspSize = 7;
- // Left top corner.
- embedVerticalSeparationPattern(vspSize, 0, matrix);
- // Right top corner.
- embedVerticalSeparationPattern(matrix.Height - vspSize - 1, 0, matrix);
- // Left bottom corner.
- embedVerticalSeparationPattern(vspSize, matrix.Height - vspSize, matrix);
- }
-
- ///
- /// Embed position adjustment patterns if need be.
- ///
- /// The version.
- /// The matrix.
- private static void maybeEmbedPositionAdjustmentPatterns(Version version, ByteMatrix matrix)
- {
- if (version.VersionNumber < 2)
- {
- // The patterns appear if version >= 2
- return;
- }
- int index = version.VersionNumber - 1;
- int[] coordinates = POSITION_ADJUSTMENT_PATTERN_COORDINATE_TABLE[index];
- int numCoordinates = POSITION_ADJUSTMENT_PATTERN_COORDINATE_TABLE[index].Length;
- for (int i = 0; i < numCoordinates; ++i)
- {
- for (int j = 0; j < numCoordinates; ++j)
- {
- int y = coordinates[i];
- int x = coordinates[j];
- if (x == -1 || y == -1)
- {
- continue;
- }
- // If the cell is unset, we embed the position adjustment pattern here.
- if (isEmpty(matrix[x, y]))
- {
- // -2 is necessary since the x/y coordinates point to the center of the pattern, not the
- // left top corner.
- embedPositionAdjustmentPattern(x - 2, y - 2, matrix);
- }
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/3rd/zxing/qrcode/encoder/QRCode.cs b/shadowsocks-csharp/3rd/zxing/qrcode/encoder/QRCode.cs
deleted file mode 100755
index 90d10bf5..00000000
--- a/shadowsocks-csharp/3rd/zxing/qrcode/encoder/QRCode.cs
+++ /dev/null
@@ -1,125 +0,0 @@
-/*
-* Copyright 2008 ZXing authors
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-using System;
-using System.Text;
-
-namespace ZXing.QrCode.Internal
-{
- /// satorux@google.com (Satoru Takabayashi) - creator
- /// dswitkin@google.com (Daniel Switkin) - ported from C++
- public sealed class QRCode
- {
- ///
- ///
- ///
- public static int NUM_MASK_PATTERNS = 8;
-
- ///
- /// Initializes a new instance of the class.
- ///
- public QRCode()
- {
- MaskPattern = -1;
- }
-
- ///
- /// Gets or sets the mode.
- ///
- ///
- /// The mode.
- ///
- public Mode Mode { get; set; }
-
- ///
- /// Gets or sets the EC level.
- ///
- ///
- /// The EC level.
- ///
- public ErrorCorrectionLevel ECLevel { get; set; }
-
- ///
- /// Gets or sets the version.
- ///
- ///
- /// The version.
- ///
- public Version Version { get; set; }
-
- ///
- /// Gets or sets the mask pattern.
- ///
- ///
- /// The mask pattern.
- ///
- public int MaskPattern { get; set; }
-
- ///
- /// Gets or sets the matrix.
- ///
- ///
- /// The matrix.
- ///
- public ByteMatrix Matrix { get; set; }
-
- ///
- /// Returns a that represents this instance.
- ///
- ///
- /// A that represents this instance.
- ///
- public override String ToString()
- {
- var result = new StringBuilder(200);
- result.Append("<<\n");
- result.Append(" mode: ");
- result.Append(Mode);
- result.Append("\n ecLevel: ");
- result.Append(ECLevel);
- result.Append("\n version: ");
- if (Version == null)
- result.Append("null");
- else
- result.Append(Version);
- result.Append("\n maskPattern: ");
- result.Append(MaskPattern);
- if (Matrix == null)
- {
- result.Append("\n matrix: null\n");
- }
- else
- {
- result.Append("\n matrix:\n");
- result.Append(Matrix.ToString());
- }
- result.Append(">>\n");
- return result.ToString();
- }
-
- ///
- /// Check if "mask_pattern" is valid.
- ///
- /// The mask pattern.
- ///
- /// true if [is valid mask pattern] [the specified mask pattern]; otherwise, false.
- ///
- public static bool isValidMaskPattern(int maskPattern)
- {
- return maskPattern >= 0 && maskPattern < NUM_MASK_PATTERNS;
- }
- }
-}
\ No newline at end of file
diff --git a/shadowsocks-csharp/Data/libsscrypto.dll.gz b/shadowsocks-csharp/Data/libsscrypto.dll.gz
index 41f0d4b8..e4285f4c 100755
Binary files a/shadowsocks-csharp/Data/libsscrypto.dll.gz and b/shadowsocks-csharp/Data/libsscrypto.dll.gz differ
diff --git a/shadowsocks-csharp/Data/sysproxy.exe.gz b/shadowsocks-csharp/Data/sysproxy.exe.gz
index 2dc6fe00..980d304b 100644
Binary files a/shadowsocks-csharp/Data/sysproxy.exe.gz and b/shadowsocks-csharp/Data/sysproxy.exe.gz differ
diff --git a/shadowsocks-csharp/Data/sysproxy64.exe.gz b/shadowsocks-csharp/Data/sysproxy64.exe.gz
index d0b5b59d..c5ff36af 100644
Binary files a/shadowsocks-csharp/Data/sysproxy64.exe.gz and b/shadowsocks-csharp/Data/sysproxy64.exe.gz differ
diff --git a/shadowsocks-csharp/packages.config b/shadowsocks-csharp/packages.config
index a2cf7827..8701b3e8 100644
--- a/shadowsocks-csharp/packages.config
+++ b/shadowsocks-csharp/packages.config
@@ -4,6 +4,7 @@
-
+
+
\ No newline at end of file
diff --git a/shadowsocks-csharp/shadowsocks-csharp.csproj b/shadowsocks-csharp/shadowsocks-csharp.csproj
index 11b1f6f5..2b597142 100644
--- a/shadowsocks-csharp/shadowsocks-csharp.csproj
+++ b/shadowsocks-csharp/shadowsocks-csharp.csproj
@@ -72,9 +72,8 @@
-
- 3rd\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll
- True
+
+ 3rd\Newtonsoft.Json.10.0.1\lib\net45\Newtonsoft.Json.dll
@@ -86,60 +85,14 @@
+
+ 3rd\ZXing.Net.0.15.0\lib\net461\zxing.dll
+
+
+ 3rd\ZXing.Net.0.15.0\lib\net461\zxing.presentation.dll
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/shadowsocks-windows.sln b/shadowsocks-windows.sln
index bb7f2978..4e8f72ff 100644
--- a/shadowsocks-windows.sln
+++ b/shadowsocks-windows.sln
@@ -1,32 +1,32 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 14
-VisualStudioVersion = 14.0.24720.0
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "shadowsocks-csharp", "shadowsocks-csharp\shadowsocks-csharp.csproj", "{8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test", "test\test.csproj", "{45913187-0685-4903-B250-DCEF0479CD86}"
- ProjectSection(ProjectDependencies) = postProject
- {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062} = {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}
- EndProjectSection
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|x86 = Debug|x86
- Release|x86 = Release|x86
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}.Debug|x86.ActiveCfg = Debug|x86
- {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}.Debug|x86.Build.0 = Debug|x86
- {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}.Debug|x86.Deploy.0 = Debug|x86
- {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}.Release|x86.ActiveCfg = Release|x86
- {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}.Release|x86.Build.0 = Release|x86
- {45913187-0685-4903-B250-DCEF0479CD86}.Debug|x86.ActiveCfg = Debug|x86
- {45913187-0685-4903-B250-DCEF0479CD86}.Debug|x86.Build.0 = Debug|x86
- {45913187-0685-4903-B250-DCEF0479CD86}.Release|x86.ActiveCfg = Release|x86
- {45913187-0685-4903-B250-DCEF0479CD86}.Release|x86.Build.0 = Release|x86
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+VisualStudioVersion = 15.0.26228.10
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "shadowsocks-csharp", "shadowsocks-csharp\shadowsocks-csharp.csproj", "{8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test", "test\test.csproj", "{45913187-0685-4903-B250-DCEF0479CD86}"
+ ProjectSection(ProjectDependencies) = postProject
+ {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062} = {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x86 = Debug|x86
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}.Debug|x86.ActiveCfg = Debug|x86
+ {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}.Debug|x86.Build.0 = Debug|x86
+ {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}.Debug|x86.Deploy.0 = Debug|x86
+ {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}.Release|x86.ActiveCfg = Release|x86
+ {8C02D2F7-7CDB-4D55-9F25-CD03EF4AA062}.Release|x86.Build.0 = Release|x86
+ {45913187-0685-4903-B250-DCEF0479CD86}.Debug|x86.ActiveCfg = Debug|x86
+ {45913187-0685-4903-B250-DCEF0479CD86}.Debug|x86.Build.0 = Debug|x86
+ {45913187-0685-4903-B250-DCEF0479CD86}.Release|x86.ActiveCfg = Release|x86
+ {45913187-0685-4903-B250-DCEF0479CD86}.Release|x86.Build.0 = Release|x86
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/test/packages.config b/test/packages.config
new file mode 100644
index 00000000..a32f7c2d
--- /dev/null
+++ b/test/packages.config
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/test/test.csproj b/test/test.csproj
index 8ea4949b..654a9afa 100755
--- a/test/test.csproj
+++ b/test/test.csproj
@@ -37,7 +37,6 @@
..\shadowsocks-csharp\3rd\GlobalHotKey.1.1.0\lib\GlobalHotKey.dll
- True
@@ -64,6 +63,9 @@
shadowsocks-csharp
+
+
+