Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. CommentedOutCodeSniff.php

function CommentedOutCodeSniff::process

Processes this test, when one of its tokens is encountered.

Parameters

\PHP_CodeSniffer\Files\File $phpcsFile The file being scanned.:

int $stackPtr The position of the current token: in the stack passed in $tokens.

Return value

int|void Integer stack pointer to skip forward or void to continue normal file processing.

Overrides Sniff::process

File

vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/CommentedOutCodeSniff.php, line 60

Class

CommentedOutCodeSniff

Namespace

PHP_CodeSniffer\Standards\Squiz\Sniffs\PHP

Code

public function process(File $phpcsFile, $stackPtr) {
    $tokens = $phpcsFile->getTokens();
    // Ignore comments at the end of code blocks.
    if (substr($tokens[$stackPtr]['content'], 0, 6) === '//end ') {
        return;
    }
    $content = '';
    $lastLineSeen = $tokens[$stackPtr]['line'];
    $commentStyle = 'line';
    if (strpos($tokens[$stackPtr]['content'], '/*') === 0) {
        $commentStyle = 'block';
    }
    $lastCommentBlockToken = $stackPtr;
    for ($i = $stackPtr; $i < $phpcsFile->numTokens; $i++) {
        if (isset(Tokens::$emptyTokens[$tokens[$i]['code']]) === false) {
            break;
        }
        if ($tokens[$i]['code'] === T_WHITESPACE) {
            continue;
        }
        if (isset(Tokens::$phpcsCommentTokens[$tokens[$i]['code']]) === true) {
            $lastLineSeen = $tokens[$i]['line'];
            continue;
        }
        if ($commentStyle === 'line' && $lastLineSeen + 1 <= $tokens[$i]['line'] && strpos($tokens[$i]['content'], '/*') === 0) {
            // First non-whitespace token on a new line is start of a different style comment.
            break;
        }
        if ($commentStyle === 'line' && $lastLineSeen + 1 < $tokens[$i]['line']) {
            // Blank line breaks a '//' style comment block.
            break;
        }
        
        /*
            Trim as much off the comment as possible so we don't
            have additional whitespace tokens or comment tokens
        */
        $tokenContent = trim($tokens[$i]['content']);
        $break = false;
        if ($commentStyle === 'line') {
            if (substr($tokenContent, 0, 2) === '//') {
                $tokenContent = substr($tokenContent, 2);
            }
            if (substr($tokenContent, 0, 1) === '#') {
                $tokenContent = substr($tokenContent, 1);
            }
        }
        else {
            if (substr($tokenContent, 0, 3) === '/**') {
                $tokenContent = substr($tokenContent, 3);
            }
            if (substr($tokenContent, 0, 2) === '/*') {
                $tokenContent = substr($tokenContent, 2);
            }
            if (substr($tokenContent, -2) === '*/') {
                $tokenContent = substr($tokenContent, 0, -2);
                $break = true;
            }
            if (substr($tokenContent, 0, 1) === '*') {
                $tokenContent = substr($tokenContent, 1);
            }
        }
        
        //end if
        $content .= $tokenContent . $phpcsFile->eolChar;
        $lastLineSeen = $tokens[$i]['line'];
        $lastCommentBlockToken = $i;
        if ($break === true) {
            // Closer of a block comment found.
            break;
        }
    }
    
    //end for
    // Ignore typical warning suppression annotations from other tools.
    if (preg_match('`^\\s*@[A-Za-z()\\._-]+\\s*$`', $content) === 1) {
        return $lastCommentBlockToken + 1;
    }
    // Quite a few comments use multiple dashes, equals signs etc
    // to frame comments and licence headers.
    $content = preg_replace('/[-=#*]{2,}/', '-', $content);
    // Random numbers sitting inside the content can throw parse errors
    // for invalid literals in PHP7+, so strip those.
    $content = preg_replace('/\\d+/', '', $content);
    $content = trim($content);
    if ($content === '') {
        return $lastCommentBlockToken + 1;
    }
    if ($phpcsFile->tokenizerType === 'PHP') {
        $content = '<?php ' . $content . ' ?>';
    }
    // Because we are not really parsing code, the tokenizer can throw all sorts
    // of errors that don't mean anything, so ignore them.
    $oldErrors = ini_get('error_reporting');
    ini_set('error_reporting', 0);
    try {
        $tokenizerClass = get_class($phpcsFile->tokenizer);
        $tokenizer = new $tokenizerClass($content, $phpcsFile->config, $phpcsFile->eolChar);
        $stringTokens = $tokenizer->getTokens();
    } catch (TokenizerException $e) {
        // We couldn't check the comment, so ignore it.
        ini_set('error_reporting', $oldErrors);
        return $lastCommentBlockToken + 1;
    }
    ini_set('error_reporting', $oldErrors);
    $numTokens = count($stringTokens);
    
    /*
        We know what the first two and last two tokens should be
        (because we put them there) so ignore this comment if those
        tokens were not parsed correctly. It obviously means this is not
        valid code.
    */
    // First token is always the opening tag.
    if ($stringTokens[0]['code'] !== T_OPEN_TAG) {
        return $lastCommentBlockToken + 1;
    }
    else {
        array_shift($stringTokens);
        --$numTokens;
    }
    // Last token is always the closing tag, unless something went wrong.
    if (isset($stringTokens[$numTokens - 1]) === false || $stringTokens[$numTokens - 1]['code'] !== T_CLOSE_TAG) {
        return $lastCommentBlockToken + 1;
    }
    else {
        array_pop($stringTokens);
        --$numTokens;
    }
    // Second last token is always whitespace or a comment, depending
    // on the code inside the comment.
    if ($phpcsFile->tokenizerType === 'PHP') {
        if (isset(Tokens::$emptyTokens[$stringTokens[$numTokens - 1]['code']]) === false) {
            return $lastCommentBlockToken + 1;
        }
        if ($stringTokens[$numTokens - 1]['code'] === T_WHITESPACE) {
            array_pop($stringTokens);
            --$numTokens;
        }
    }
    $emptyTokens = [
        T_WHITESPACE => true,
        T_STRING => true,
        T_STRING_CONCAT => true,
        T_ENCAPSED_AND_WHITESPACE => true,
        T_NONE => true,
        T_COMMENT => true,
    ];
    $emptyTokens += Tokens::$phpcsCommentTokens;
    $numCode = 0;
    $numNonWhitespace = 0;
    for ($i = 0; $i < $numTokens; $i++) {
        // Do not count comments.
        if (isset($emptyTokens[$stringTokens[$i]['code']]) === false && isset(Tokens::$comparisonTokens[$stringTokens[$i]['code']]) === false && isset(Tokens::$arithmeticTokens[$stringTokens[$i]['code']]) === false && $stringTokens[$i]['code'] !== T_GOTO_LABEL) {
            // Looks like code.
            $numCode++;
        }
        if ($stringTokens[$i]['code'] !== T_WHITESPACE) {
            ++$numNonWhitespace;
        }
    }
    // Ignore comments with only two or less non-whitespace tokens.
    // Sample size too small for a reliably determination.
    if ($numNonWhitespace <= 2) {
        return $lastCommentBlockToken + 1;
    }
    $percentCode = ceil($numCode / $numTokens * 100);
    if ($percentCode > $this->maxPercentage) {
        // Just in case.
        $percentCode = min(100, $percentCode);
        $error = 'This comment is %s%% valid code; is this commented out code?';
        $data = [
            $percentCode,
        ];
        $phpcsFile->addWarning($error, $stackPtr, 'Found', $data);
    }
    return $lastCommentBlockToken + 1;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal