| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- <?php
- //Configure::write('debug', 1);
- if (!defined('TB')) {
- define('TB', "\t");
- }
- if (!defined('NL')) {
- define('NL', "\n");
- }
- if (!defined('CR')) {
- define('CR', "\r");
- }
- App::uses('Folder', 'Utility');
- App::uses('AppShell', 'Console/Command');
- /**
- * Indend Shell
- *
- * @cakephp 2.0
- * @author Mark Scherer
- * @license MIT
- * 2011-11-04 ms
- */
- class IndentShell extends AppShell {
- protected $changes = null;
- public $settings = array(
- 'files' => array('php', 'ctp', 'inc', 'tpl'),
- 'spacesPerTab' => 4,
- 'againWithHalf' => true, # if 4, go again with 2 afterwards
- 'test' => false, # just count - without doing anything
- 'outputToTmp' => false, # write to filename_.ext
- 'debug' => false # add debug info after each line
- );
- protected $_paths = array();
- protected $_files = array();
- /**
- * Main execution function to indend a folder recursivly
- *
- * @return void
- */
- public function folder() {
- if (!empty($this->args)) {
- if (in_array('test', $this->args)) {
- $this->settings['test'] = true;
- }
- if (!empty($this->args[0]) && $this->args[0] != 'app') {
- $folder = $this->args[0];
- if ($folder == '/') {
- $folder = APP;
- }
- $folder = realpath($folder);
- if (!file_exists($folder)) {
- die('folder not exists: ' . $folder . '');
- }
- $this->_paths[] = $folder;
- } elseif ($this->args[0] == 'app') {
- $this->_paths[] = APP;
- }
- if (!empty($this->params['files'])) {
- $this->settings['files'] = explode(',', $this->params['files']);
- }
- $this->out($folder);
- $this->out('searching...');
- $this->_searchFiles();
- $this->out('found: ' . count($this->_files));
- if ($this->settings['test']) {
- $this->out('TEST DONE');
- } else {
- $continue = $this->in(__('Modifying files! Continue?'), array('y', 'n'), 'n');
- if (strtolower($continue) != 'y' && strtolower($continue) != 'yes') {
- die('...aborted');
- }
- $this->_correctFiles3();
- $this->out('DONE');
- }
- } else {
- $this->out('Usage: cake intend folder');
- $this->out('"folder" is then intended recursivly');
- $this->out('default file types are');
- $this->out('['.implode(', ', $this->settings['files']).']');
- $this->out('');
- $this->out('Specify file types manually:');
- $this->out('-files php,js,css');
- }
- }
- public function getOptionParser() {
- $subcommandParser = array(
- 'options' => array(
- 'dry-run'=> array(
- 'short' => 'd',
- 'help' => __d('cake_console', 'Dry run the update, no files will actually be modified.'),
- 'boolean' => true
- ),
- 'log'=> array(
- 'short' => 'l',
- 'help' => __d('cake_console', 'Log all ouput to file log.txt in TMP dir'),
- 'boolean' => true
- ),
- 'interactive'=> array(
- 'short' => 'i',
- 'help' => __d('cake_console', 'Interactive'),
- 'boolean' => true
- ),
- )
- );
- return parent::getOptionParser()
- ->description(__d('cake_console', "Correct indentation of files"))
- ->addSubcommand('folder', array(
- 'help' => __d('cake_console', 'Indent all files in a folder'),
- 'parser' => $subcommandParser
- ));
- }
- public function _write($file, $text) {
- $text = implode(PHP_EOL, $text);
- if ($this->settings['outputToTmp']) {
- $filename = extractPathInfo('file', $file);
- if (mb_substr($filename, -1, 1) == '_') {
- return;
- }
- $file = extractPathInfo('dir', $file).DS.$filename.'_.'.extractPathInfo('ext', $file);
- }
- return file_put_contents($file, $text);
- }
- public function _read($file) {
- $text = file_get_contents($file);
- if (empty($text)) {
- return array();
- }
- $pieces = explode(NL, $text);
- return $pieces;
- }
- /**
- * NEW TRY!
- * idea: just count spaces and replace those
- *
- * 2010-09-12 ms
- */
- public function _correctFiles3() {
- foreach ($this->_files as $file) {
- $this->changes = false;
- $textCorrect = array();
- $pieces = $this->_read($file);
- foreach ($pieces as $piece) {
- $tmp = $this->_process($piece, $this->settings['spacesPerTab']);
- if ($this->settings['againWithHalf'] && ($spacesPerTab = $this->settings['spacesPerTab']) % 2 === 0 && $spacesPerTab > 3) {
- $tmp = $this->_process($tmp, $spacesPerTab/2);
- }
- $textCorrect[] = $tmp;
- }
- if ($this->changes) {
- $this->_write($file, $textCorrect);
- }
- }
- }
- public function _process($piece, $spacesPerTab) {
- $pos = -1;
- $spaces = $mod = $tabs = 0;
- $debug = '';
- $newPiece = $piece;
- //TODO
- while (mb_substr($piece, $pos+1, 1) === ' ' || mb_substr($piece, $pos+1, 1) === TB) {
- $pos++;
- }
- $piece1 = mb_substr($piece, 0, $pos+1);
- $piece1 = str_replace(str_repeat(' ', $spacesPerTab), TB, $piece1, $count);
- if ($count > 0) {
- $this->changes = true;
- }
- $piece2 = mb_substr($piece, $pos+1);
- $newPiece = $piece1 . $piece2;
- $newPiece = rtrim($newPiece) . $debug;
- if ($newPiece != $piece || strlen($newPiece) !== strlen($piece)) {
- $this->changes = true;
- }
- return $newPiece;
- }
- /**
- * NEW TRY!
- * idea: hardcore replaceing
- *
- * 2010-09-12 ms
- */
- public function _correctFiles2() {
- foreach ($this->_files as $file) {
- $changes = false;
- $textCorrect = array();
- $pieces = $this->_read($file);
- foreach ($pieces as $piece) {
- $spaces = $mod = $tabs = 0;
- $debug = '';
- $newPiece = $piece;
- //TODO: make sure no other text is in front of it!!!
- $newPiece = str_replace(str_repeat(' ', $this->settings['spacesPerTab']), TB, $newPiece, $count);
- if ($count > 0) {
- $changes = true;
- }
- $textCorrect[] = rtrim($newPiece) . $debug;
- }
- if ($changes) {
- $this->_write($file, $textCorrect);
- }
- }
- }
- /**
- * Old try - sometimes TABS at the beginning are not recogized...
- * idea: strip tabs and spaces, remember their amount and add tabs again!
- * 2010-09-12 ms
- */
- public function _correctFiles() {
- foreach ($this->_files as $file) {
- $changes = false;
- $textCorrect = array();
- $pieces = $this->_read($file);
- foreach ($pieces as $piece) {
- $pos = -1;
- $spaces = $mod = $tabs = 0;
- $debug = '';
- $newPiece = trim($piece, CR);
- $newPiece = trim($newPiece, NL);
- //$debug .= ''.stripos($newPiece, TB);
- # detect tabs and whitespaces at the beginning
- //while (($pieceOfString = mb_substr($newPiece, 0, 1)) == ' ' || ($pieceOfString = mb_substr($newPiece, 0, 1)) == TB) {
- while ((stripos($newPiece, ' ')) === 0 || (stripos($newPiece, TB)) === 0) {
- $pieceOfString = mb_substr($newPiece, 0, 1);
- if ($pieceOfString === ' ') {
- $pos++;
- $spaces++;
- } elseif ($pieceOfString === TB) {
- $pos++;
- $spaces += $this->settings['spacesPerTab'];
- } else {
- die('???');
- }
- $newPiece = mb_substr($newPiece, 1);
- }
- if ($pos >= 1) {
- $changes = true;
- # if only spaces and tabs, we might as well trim the line
- //should be done
- # now correct
- //$newPiece = mb_substr($piece, $pos + 1);
- # clear single spaces
- /*
- if (mb_substr($newPiece, 0, 1) === ' ' && mb_substr($newPiece, 1, 1) !== '*') {
- $newPiece = mb_substr($newPiece, 1);
- }
- */
- $mod = $spaces % $this->settings['spacesPerTab'];
- $tabs = ($spaces - $mod) / $this->settings['spacesPerTab'];
- //$beginning = str_replace(' ', TB, $piece);
- $beginning = str_repeat(TB, $tabs);
- $beginning .= str_repeat(' ', $mod);
- $newPiece = $beginning . trim($newPiece);
- } else {
- $newPiece = rtrim($newPiece);
- }
- if ($this->settings['debug']) {
- $debug .= ' '. ($changes ? '[MOD]': '[]') .' (SPACES '.$tabs.', POS '.$pos.', TABS '.$tabs.', MOD '.$mod.')';
- }
- $textCorrect[] = $newPiece . $debug;
- }
- if ($changes) {
- $this->_write($file, $textCorrect);
- }
- //die();
- }
- }
- /**
- * Search files that may contain translateable strings
- *
- * @return void
- * @access private
- */
- public function _searchFiles() {
- foreach ($this->_paths as $path) {
- $Folder = new Folder($path);
- $files = $Folder->findRecursive('.*\.('.implode('|', $this->settings['files']).')', true);
- $this->_files += $files;
- }
- }
- }
|