Failed Conditions
Push — test-scrutinizer-coverage ( 1fb662...215aeb )
by Juliette
03:50
created

PHPCompatibility_Sniffs_PHP_ValidIntegersSniff   A

Complexity

Total Complexity 25

Size/Duplication

Total Lines 202
Duplicated Lines 8.91 %

Coupling/Cohesion

Components 1
Dependencies 2

Test Coverage

Coverage 85.71%

Importance

Changes 0
Metric Value
wmc 25
lcom 1
cbo 2
dl 18
loc 202
ccs 66
cts 77
cp 0.8571
rs 10
c 0
b 0
f 0

7 Methods

Rating   Name   Duplication   Size   Complexity  
A register() 0 10 1
B couldBeBinaryInteger() 0 17 5
A isInvalidBinaryInteger() 0 13 3
A isInvalidOctalInteger() 9 10 3
A isHexidecimalNumericString() 9 10 3
B process() 0 52 7
A getBinaryInteger() 0 14 3

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
/**
3
 * PHPCompatibility_Sniffs_PHP_ValidIntegersSniff.
4
 *
5
 * @category PHP
6
 * @package  PHPCompatibility
7
 * @author   Juliette Reinders Folmer <[email protected]>
8
 */
9
10
/**
11
 * PHPCompatibility_Sniffs_PHP_ValidIntegersSniff.
12
 *
13
 * @category PHP
14
 * @package  PHPCompatibility
15
 * @author   Juliette Reinders Folmer <[email protected]>
16
 */
17
class PHPCompatibility_Sniffs_PHP_ValidIntegersSniff extends PHPCompatibility_Sniff
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
18
{
19
20
    /**
21
     * Whether PHPCS is run on a PHP < 5.4.
22
     *
23
     * @var bool
24
     */
25
    protected $isLowPHPVersion = false;
26
27
    /**
28
     * Returns an array of tokens this test wants to listen for.
29
     *
30
     * @return array
31
     */
32 8
    public function register()
33
    {
34 8
        $this->isLowPHPVersion = version_compare(phpversion(), '5.4', '<');
35
36
        return array(
37 8
            T_LNUMBER, // Binary, octal integers.
38 8
            T_CONSTANT_ENCAPSED_STRING, // Hex numeric string.
39 8
        );
40
41
    }//end register()
42
43
44
    /**
45
     * Processes this test, when one of its tokens is encountered.
46
     *
47
     * @param PHP_CodeSniffer_File $phpcsFile The file being scanned.
48
     * @param int                  $stackPtr  The position of the current token in
49
     *                                        the stack.
50
     *
51
     * @return void
52
     */
53 4
    public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
54
    {
55 4
        $tokens = $phpcsFile->getTokens();
56 4
        $token  = $tokens[$stackPtr];
57
58 4
        if ($this->couldBeBinaryInteger($tokens, $stackPtr) === true) {
59 4
            if ($this->supportsBelow('5.3')) {
60 2
                $error = 'Binary integer literals were not present in PHP version 5.3 or earlier. Found: %s';
61 2
                if ($this->isLowPHPVersion === false) {
62
                    $data = array($token['content']);
63
                } else {
64 2
                    $data = array($this->getBinaryInteger($phpcsFile, $tokens, $stackPtr));
65
                }
66 2
                $phpcsFile->addError($error, $stackPtr, 'BinaryIntegerFound', $data);
67 2
            }
68
69 4
            if ($this->isInvalidBinaryInteger($tokens, $stackPtr) === true) {
70 4
                $error = 'Invalid binary integer detected. Found: %s';
71 4
                $data  = array($this->getBinaryInteger($phpcsFile, $tokens, $stackPtr));
72 4
                $phpcsFile->addWarning($error, $stackPtr, 'InvalidBinaryIntegerFound', $data);
73 4
            }
74 4
            return;
75
        }
76
77 4
        $isError = $this->supportsAbove('7.0');
78 4
        $data    = array( $token['content'] );
79
80 4
        if ($this->isInvalidOctalInteger($tokens, $stackPtr) === true) {
81 4
            $this->addMessage(
82 4
                $phpcsFile,
83 4
                'Invalid octal integer detected. Prior to PHP 7 this would lead to a truncated number. From PHP 7 onwards this causes a parse error. Found: %s',
84 4
                $stackPtr,
85 4
                $isError,
86 4
                'InvalidOctalIntegerFound',
87
                $data
88 4
            );
89 4
            return;
90
        }
91
92 4
        if ($this->isHexidecimalNumericString($tokens, $stackPtr) === true) {
93 4
            $this->addMessage(
94 4
                $phpcsFile,
95 4
                'The behaviour of hexadecimal numeric strings was inconsistent prior to PHP 7 and support has been removed in PHP 7. Found: %s',
96 4
                $stackPtr,
97 4
                $isError,
98 4
                'HexNumericStringFound',
99
                $data
100 4
            );
101 4
            return;
102
        }
103
104 4
    }//end process()
105
106
107
    /**
108
     * Could the current token an potentially be a binary integer ?
109
     *
110
     * @param array $tokens   Token stack.
111
     * @param int   $stackPtr The current position in the token stack.
112
     *
113
     * @return bool
114
     */
115 4
    private function couldBeBinaryInteger($tokens, $stackPtr)
116
    {
117 4
        $token = $tokens[$stackPtr];
118
119 4
        if ($token['code'] !== T_LNUMBER) {
120 4
            return false;
121
        }
122
123 4
        if ($this->isLowPHPVersion === false) {
124
            return (preg_match('`^0b[0-1]+$`D', $token['content']) === 1);
125
        }
126
        // Pre-5.4, binary strings are tokenized as T_LNUMBER (0) + T_STRING ("b01010101").
127
        // At this point, we don't yet care whether it's a valid binary int, that's a separate check.
128
        else {
129 4
            return($token['content'] === '0' && $tokens[$stackPtr+1]['code'] === T_STRING && preg_match('`^b[0-9]+$`D', $tokens[$stackPtr+1]['content']) === 1);
130
        }
131
    }
132
133
    /**
134
     * Is the current token an invalid binary integer ?
135
     *
136
     * @param array $tokens   Token stack.
137
     * @param int   $stackPtr The current position in the token stack.
138
     *
139
     * @return bool
140
     */
141 4
    private function isInvalidBinaryInteger($tokens, $stackPtr)
142
    {
143 4
        if ($this->couldBeBinaryInteger($tokens, $stackPtr) === false) {
144
            return false;
145
        }
146
147 4
        if ($this->isLowPHPVersion === false) {
148
            // If it's an invalid binary int, the token will be split into two T_LNUMBER tokens.
149
            return ($tokens[$stackPtr+1]['code'] === T_LNUMBER);
150
        } else {
151 4
            return (preg_match('`^b[0-1]+$`D', $tokens[$stackPtr+1]['content']) === 0);
152
        }
153
    }
154
155
    /**
156
     * Retrieve the content of the tokens which together look like a binary integer.
157
     *
158
     * @param PHP_CodeSniffer_File $phpcsFile The file being scanned.
159
     * @param array                $tokens    Token stack.
160
     * @param int                  $stackPtr  The position of the current token in
161
     *                                        the stack.
162
     *
163
     * @return string
164
     */
165 4
    private function getBinaryInteger(PHP_CodeSniffer_File $phpcsFile, $tokens, $stackPtr)
166
    {
167 4
        $length = 2; // PHP < 5.4 T_LNUMBER + T_STRING.
168
169 4
        if ($this->isLowPHPVersion === false) {
170
            $i = $stackPtr;
171
            while ($tokens[$i]['code'] === T_LNUMBER) {
172
                $i++;
173
            }
174
            $length = ($i - $stackPtr);
175
        }
176
177 4
        return $phpcsFile->getTokensAsString($stackPtr, $length);
178
    }
179
180
    /**
181
     * Is the current token an invalid octal integer ?
182
     *
183
     * @param array $tokens   Token stack.
184
     * @param int   $stackPtr The current position in the token stack.
185
     *
186
     * @return bool
187
     */
188 4 View Code Duplication
    private function isInvalidOctalInteger($tokens, $stackPtr)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
189
    {
190 4
        $token = $tokens[$stackPtr];
191
192 4
        if ($token['code'] === T_LNUMBER && preg_match('`^0[0-7]*[8-9]+[0-9]*$`D', $token['content']) === 1) {
193 4
            return true;
194
        }
195
196 4
        return false;
197
    }
198
199
    /**
200
     * Is the current token a hexidecimal numeric string ?
201
     *
202
     * @param array $tokens   Token stack.
203
     * @param int   $stackPtr The current position in the token stack.
204
     *
205
     * @return bool
206
     */
207 4 View Code Duplication
    private function isHexidecimalNumericString($tokens, $stackPtr)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
208
    {
209 4
        $token = $tokens[$stackPtr];
210
211 4
        if ($token['code'] === T_CONSTANT_ENCAPSED_STRING && preg_match('`^0x[a-f0-9]+$`iD', $this->stripQuotes($token['content'])) === 1) {
212 4
            return true;
213
        }
214
215 4
        return false;
216
    }
217
218
}//end class
219