!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

C:\dmz\php\pear\PHP\CodeSniffer\Standards\Generic\Sniffs\Metrics\   drwxrwxrwx
Free 4.11 GB of 39.52 GB (10.39%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     NestingLevelSniff.php (3.31 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Checks the nesting level for methods.
 *
 * PHP version 5
 *
 * @category  PHP
 * @package   PHP_CodeSniffer
 * @author    Greg Sherwood <gsherwood@squiz.net>
 * @author    Marc McIntyre <mmcintyre@squiz.net>
 * @copyright 2006-2011 Squiz Pty Ltd (ABN 77 084 670 600)
 * @license   http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
 * @link      http://pear.php.net/package/PHP_CodeSniffer
 */

/**
 * Checks the nesting level for methods.
 *
 * @category  PHP
 * @package   PHP_CodeSniffer
 * @author    Johann-Peter Hartmann <hartmann@mayflower.de>
 * @author    Greg Sherwood <gsherwood@squiz.net>
 * @copyright 2007 Mayflower GmbH
 * @license   http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
 * @version   Release: 1.3.3
 * @link      http://pear.php.net/package/PHP_CodeSniffer
 */
class Generic_Sniffs_Metrics_NestingLevelSniff implements PHP_CodeSniffer_Sniff
{

    
/**
     * A nesting level than this value will throw a warning.
     *
     * @var int
     */
    
public $nestingLevel 5;

    
/**
     * A nesting level than this value will throw an error.
     *
     * @var int
     */
    
public $absoluteNestingLevel 10;


    
/**
     * Returns an array of tokens this test wants to listen for.
     *
     * @return array
     */
    
public function register()
    {
        return array(
T_FUNCTION);

    }
//end register()


    /**
     * Processes this test, when one of its tokens is encountered.
     *
     * @param PHP_CodeSniffer_File $phpcsFile The file being scanned.
     * @param int                  $stackPtr  The position of the current token
     *                                        in the stack passed in $tokens.
     *
     * @return void
     */
    
public function process(PHP_CodeSniffer_File $phpcsFile$stackPtr)
    {
        
$tokens $phpcsFile->getTokens();

        
// Ignore abstract methods.
        
if (isset($tokens[$stackPtr]['scope_opener']) === false) {
            return;
        }

        
// Detect start and end of this function definition.
        
$start $tokens[$stackPtr]['scope_opener'];
        
$end   $tokens[$stackPtr]['scope_closer'];

        
$nestingLevel 0;

        
// Find the maximum nesting level of any token in the function.
        
for ($i = ($start 1); $i $end$i++) {
            
$level $tokens[$i]['level'];
            if (
$nestingLevel $level) {
                
$nestingLevel $level;
            }
        }

        
// We subtract the nesting level of the function itself.
        
$nestingLevel = ($nestingLevel $tokens[$stackPtr]['level'] - 1);

        if (
$nestingLevel $this->absoluteNestingLevel) {
            
$error 'Function\'s nesting level (%s) exceeds allowed maximum of %s';
            
$data  = array(
                      
$nestingLevel,
                      
$this->absoluteNestingLevel,
                     );
            
$phpcsFile->addError($error$stackPtr'MaxExceeded'$data);
        } else if (
$nestingLevel $this->nestingLevel) {
            
$warning 'Function\'s nesting level (%s) exceeds %s; consider refactoring the function';
            
$data    = array(
                        
$nestingLevel,
                        
$this->nestingLevel,
                       );
            
$phpcsFile->addWarning($warning$stackPtr'TooHigh'$data);
        }

    }
//end process()


}//end class

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0312 ]--