| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369 |
- <?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');
- /**
- * Indent Shell
- *
- * Correct indentation of files in a folder recursivly.
- * Useful if files contain either only spaces or even a mixture of spaces and tabs.
- * It can be a bitch to get this straightened out. Mix in a mixture of different space
- * lengths and it is a nightmare.
- * Using IDE specific beautifier is not always an option, either. They usually reformat
- * arrays and other things in a way you don't want. No matter how hard you try to set it
- * up correctly.
- *
- * This addresses the issue in a clean way and only modifies whitespace at the beginning
- * of a line.
- * Single "accidental" spaces will be filtered out automatically.
- *
- * Tip: For different space lenghts use multiple times from largest to smallest length.
- * E.g "-s 8", then "-s 4" and maybe even "-s 2".
- *
- * Oh, and: Use TABS for indentation of code - ALWAYS.
- *
- * @author Mark Scherer
- * @license MIT
- */
- class IndentShell extends AppShell {
- public $settings = array(
- 'files' => array('php', 'ctp', 'inc', 'tpl'),
- 'againWithHalf' => false, # if 4, go again with 2 afterwards
- 'outputToTmp' => false, # write to filename_.ext
- 'debug' => false # add debug info after each line
- );
- protected $_changes = null;
- protected $_paths = array();
- protected $_files = array();
- /**
- * Main execution function to indent a folder recursivly
- *
- * @return void
- */
- public function folder() {
- if (!empty($this->params['extensions'])) {
- $this->settings['files'] = String::tokenize($this->params['extensions']);
- }
- if (!empty($this->params['again'])) {
- $this->settings['againWithHalf'] = true;
- }
- if (!empty($this->args)) {
- if (!empty($this->args[0]) && $this->args[0] !== 'app') {
- $folder = $this->args[0];
- if ($folder === '/') {
- $folder = APP;
- }
- $folder = realpath($folder);
- if (!file_exists($folder)) {
- return $this->error('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 (!empty($this->params['dry-run'])) {
- $this->out('TEST DONE');
- } else {
- $continue = $this->in(__('Modifying files! Continue?'), array('y', 'n'), 'n');
- if (strtolower($continue) !== 'y' && strtolower($continue) !== 'yes') {
- return $this->error('...aborted');
- }
- $this->_correctFiles();
- $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');
- }
- }
- /**
- * IndentShell::_write()
- *
- * @param mixed $file
- * @param mixed $text
- * @return bool Success
- */
- protected 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 (bool)file_put_contents($file, $text);
- }
- /**
- * IndentShell::_read()
- *
- * @param mixed $file
- * @return array
- */
- protected 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
- *
- * @return void
- */
- protected function _correctFiles() {
- foreach ($this->_files as $file) {
- $this->_changes = false;
- $textCorrect = array();
- $pieces = $this->_read($file);
- $spacesPerTab = $this->params['spaces'];
- foreach ($pieces as $piece) {
- $tmp = $this->_process($piece, $spacesPerTab);
- if ($this->settings['againWithHalf'] && $spacesPerTab % 2 === 0 && $spacesPerTab > 3) {
- $tmp = $this->_process($tmp, $spacesPerTab / 2);
- }
- $tmp = $this->_processSpaceErrors($tmp, 1);
- $textCorrect[] = $tmp;
- }
- if ($this->_changes) {
- $this->_write($file, $textCorrect);
- }
- }
- }
- /**
- * @return string
- */
- protected function _process($piece, $spacesPerTab) {
- $pos = -1;
- $spaces = $mod = $tabs = 0;
- $debug = '';
- $newPiece = $piece;
- if ($spacesPerTab) {
- //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
- *
- * @deprecated
- */
- protected function _processSpaceErrors($piece) {
- $space = 1;
- $newPiece = $piece;
- if (mb_substr($piece, 0, $space) === ' ' && mb_substr($piece, $space, 1) === TB) {
- $newPiece = mb_substr($piece, $space);
- }
- if ($newPiece != $piece || strlen($newPiece) !== strlen($piece)) {
- $this->_changes = true;
- }
- return $newPiece;
- }
- /**
- * Old try - sometimes TABS at the beginning are not recogized...
- * idea: strip tabs and spaces, remember their amount and add tabs again!
- *
- * @deprecated
- */
- protected function _correctFilesTry() {
- 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 {
- return $this->error('???');
- }
- $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
- */
- protected function _searchFiles() {
- foreach ($this->_paths as $path) {
- $Folder = new Folder($path);
- $files = $Folder->findRecursive('.*\.(' . implode('|', $this->settings['files']) . ')', true);
- foreach ($files as $file) {
- if (strpos($file, DS . 'Vendor' . DS) !== false) {
- continue;
- }
- $this->_files[] = $file;
- }
- }
- }
- public function getOptionParser() {
- $subcommandParser = array(
- 'options' => array(
- 'dry-run' => array(
- 'short' => 'd',
- 'help' => 'Dry run the update, no files will actually be modified.',
- 'boolean' => true
- ),
- 'log' => array(
- 'short' => 'l',
- 'help' => 'Log all ouput to file log.txt in TMP dir',
- 'boolean' => true
- ),
- 'interactive' => array(
- 'short' => 'i',
- 'help' => 'Interactive',
- 'boolean' => true
- ),
- 'spaces' => array(
- 'short' => 's',
- 'help' => 'Spaces per Tab',
- 'default' => '4',
- ),
- 'extensions' => array(
- 'short' => 'e',
- 'help' => 'Extensions (comma-separated)',
- 'default' => '',
- ),
- 'again' => array(
- 'short' => 'a',
- 'help' => 'Again (with half) afterwards',
- 'boolean' => true
- ),
- )
- );
- return parent::getOptionParser()
- ->description("Correct indentation of files")
- ->addSubcommand('folder', array(
- 'help' => 'Indent all files in a folder',
- 'parser' => $subcommandParser
- ));
- }
- }
|