C:\xampp\phpMyAdmin\vendor\bacon\bacon-qr-code\src\BaconQrCode\Common\FormatInformation.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?php
/**
 * BaconQrCode
 *
 * @link      http://github.com/Bacon/BaconQrCode For the canonical source repository
 * @copyright 2013 Ben 'DASPRiD' Scholzen
 * @license   http://opensource.org/licenses/BSD-2-Clause Simplified BSD License
 */

namespace BaconQrCode\Common;

/**
 * Encapsulates a QR Code's format information, including the data mask used and
 * error correction level.
 */
class FormatInformation
{
    
/**
     * Mask for format information.
     */
    
const FORMAT_INFO_MASK_QR 0x5412;

    
/**
     * Lookup table for decoding format information.
     *
     * See ISO 18004:2006, Annex C, Table C.1
     *
     * @var array
     */
    
protected static $formatInfoDecodeLookup = array(
        array(
0x54120x00),
        array(
0x51250x01),
        array(
0x5e7c0x02),
        array(
0x5b4b0x03),
        array(
0x45f90x04),
        array(
0x40ce0x05),
        array(
0x4f970x06),
        array(
0x4aa00x07),
        array(
0x77c40x08),
        array(
0x72f30x09),
        array(
0x7daa0x0a),
        array(
0x789d0x0b),
        array(
0x662f0x0c),
        array(
0x63180x0d),
        array(
0x6c410x0e),
        array(
0x69760x0f),
        array(
0x16890x10),
        array(
0x13be0x11),
        array(
0x1ce70x12),
        array(
0x19d00x13),
        array(
0x07620x14),
        array(
0x02550x15),
        array(
0x0d0c0x16),
        array(
0x083b0x17),
        array(
0x355f0x18),
        array(
0x30680x19),
        array(
0x3f310x1a),
        array(
0x3a060x1b),
        array(
0x24b40x1c),
        array(
0x21830x1d),
        array(
0x2eda0x1e),
        array(
0x2bed0x1f),
    );

    
/**
     * Offset i holds the number of 1 bits in the binary representation of i.
     *
     * @var array
     */
    
protected static $bitsSetInHalfByte = array(0112122312232334);

    
/**
     * Error correction level.
     *
     * @var ErrorCorrectionLevel
     */
    
protected $ecLevel;

    
/**
     * Data mask.
     *
     * @var integer
     */
    
protected $dataMask;

    
/**
     * Creates a new format information instance.
     *
     * @param integer $formatInfo
     */
    
protected function __construct($formatInfo)
    {
        
$this->ecLevel  = new ErrorCorrectionLevel(($formatInfo >> 3) & 0x3);
        
$this->dataMask $formatInfo 0x7;
    }

    
/**
     * Checks how many bits are different between two integers.
     *
     * @param  integer $a
     * @param  integer $b
     * @return integer
     */
    
public static function numBitsDiffering($a$b)
    {
        
$a ^= $b;

        return (
            
self::$bitsSetInHalfByte[$a 0xf]
            + 
self::$bitsSetInHalfByte[(BitUtils::unsignedRightShift($a4) & 0xf)]
            + 
self::$bitsSetInHalfByte[(BitUtils::unsignedRightShift($a8) & 0xf)]
            + 
self::$bitsSetInHalfByte[(BitUtils::unsignedRightShift($a12) & 0xf)]
            + 
self::$bitsSetInHalfByte[(BitUtils::unsignedRightShift($a16) & 0xf)]
            + 
self::$bitsSetInHalfByte[(BitUtils::unsignedRightShift($a20) & 0xf)]
            + 
self::$bitsSetInHalfByte[(BitUtils::unsignedRightShift($a24) & 0xf)]
            + 
self::$bitsSetInHalfByte[(BitUtils::unsignedRightShift($a28) & 0xf)]
        );
    }

    
/**
     * Decodes format information.
     *
     * @param  integer $maskedFormatInfo1
     * @param  integer $maskedFormatInfo2
     * @return FormatInformation|null
     */
    
public static function decodeFormatInformation($maskedFormatInfo1$maskedFormatInfo2)
    {
        
$formatInfo self::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 self::doDecodeFormatInformation(
            
$maskedFormatInfo1 self::FORMAT_INFO_MASK_QR,
            
$maskedFormatInfo2 self::FORMAT_INFO_MASK_QR
        
);
    }

    
/**
     * Internal method for decoding format information.
     *
     * @param  integer $maskedFormatInfo1
     * @param  integer $maskedFormatInfo2
     * @return FormatInformation|null
     */
    
protected static function doDecodeFormatInformation($maskedFormatInfo1$maskedFormatInfo2)
    {
        
$bestDifference PHP_INT_MAX;
        
$bestFormatInfo 0;

        foreach (
self::$formatInfoDecodeLookup as $decodeInfo) {
            
$targetInfo $decodeInfo[0];

            if (
$targetInfo === $maskedFormatInfo1 || $targetInfo === $maskedFormatInfo2) {
                
// Found an exact match
                
return new self($decodeInfo[1]);
            }

            
$bitsDifference self::numBitsDiffering($maskedFormatInfo1$targetInfo);

            if (
$bitsDifference $bestDifference) {
                
$bestFormatInfo $decodeInfo[1];
                
$bestDifference $bitsDifference;
            }

            if (
$maskedFormatInfo1 !== $maskedFormatInfo2) {
                
// Also try the other option
                
$bitsDifference self::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 
self($bestFormatInfo);
        }

        return 
null;
    }

    
/**
     * Gets the error correction level.
     *
     * @return ErrorCorrectionLevel
     */
    
public function getErrorCorrectionLevel()
    {
        return 
$this->ecLevel;
    }

    
/**
     * Gets the data mask.
     *
     * @return integer
     */
    
public function getDataMask()
    {
        return 
$this->dataMask;
    }

    
/**
     * Hashes the code of the EC level.
     *
     * @return integer
     */
    
public function hashCode()
    {
        return (
$this->ecLevel->get() << 3) | $this->dataMask;
    }

    
/**
     * Verifies if this instance equals another one.
     *
     * @param  mixed $other
     * @return boolean
     */
    
public function equals($other) {
        if (!
$other instanceof self) {
            return 
false;
        }

        return (
            
$this->ecLevel->get() === $other->getErrorCorrectionLevel()->get()
            && 
$this->dataMask === $other->getDataMask()
        );
    }
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586