123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- * Rotates an application log files.
- *
- * @package symfony
- * @subpackage task
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfLogRotateTask.class.php 9890 2008-06-26 11:35:01Z fabien $
- */
- class sfLogRotateTask extends sfBaseTask
- {
- /** the default period to rotate logs in days */
- const DEF_PERIOD = 7;
- /** the default number of log historys to store, one history is created for every period */
- const DEF_HISTORY = 10;
- /**
- * @see sfTask
- */
- protected function configure()
- {
- $this->addArguments(array(
- new sfCommandArgument('application', sfCommandArgument::REQUIRED, 'The application name'),
- new sfCommandArgument('env', sfCommandArgument::REQUIRED, 'The environment name'),
- ));
- $this->addOptions(array(
- new sfCommandOption('history', null, sfCommandOption::PARAMETER_REQUIRED, 'The maximum number of old log files to keep', 10),
- new sfCommandOption('period', null, sfCommandOption::PARAMETER_REQUIRED, 'The period in days', 7),
- ));
- $this->aliases = array('log-rotate');
- $this->namespace = 'log';
- $this->name = 'rotate';
- $this->briefDescription = 'Rotates an application log files';
- $this->detailedDescription = <<<EOF
- The [log:rotate|INFO] task rotates application log files for a given
- environment:
- [./symfony log:rotate frontend dev|INFO]
- You can specify a [period|COMMENT] or a [history|COMMENT] option:
- [./symfony --history=10 --period=7 log:rotate frontend dev|INFO]
- EOF;
- }
- /**
- * @see sfTask
- */
- protected function execute($arguments = array(), $options = array())
- {
- $app = $arguments['application'];
- $env = $arguments['env'];
- $this->rotate($app, $env, $options['period'], $options['history'], true);
- }
- /**
- * Rotates log file.
- *
- * @param string $app Application name
- * @param string $env Enviroment name
- * @param string $period Period
- * @param string $history History
- * @param bool $override Override
- *
- * @author Joe Simms
- **/
- public function rotate($app, $env, $period = null, $history = null, $override = false)
- {
- $logfile = $app.'_'.$env;
- $logdir = sfConfig::get('sf_log_dir');
- // set history and period values if not passed to default values
- $period = isset($period) ? $period : self::DEF_PERIOD;
- $history = isset($history) ? $history : self::DEF_HISTORY;
- // get todays date
- $today = date('Ymd');
- // check history folder exists
- if (!is_dir($logdir.'/history'))
- {
- mkdir($logdir.'/history', 0777);
- }
- // determine date of last rotation
- $logs = sfFinder::type('file')->maxdepth(1)->name($logfile.'_*.log')->in($logdir.'/history/');
- $recentlog = is_array($logs) ? array_pop($logs) : null;
- if ($recentlog)
- {
- // calculate date to rotate logs on
- $lastRotatedOn = filemtime($recentlog);
- $rotateOn = date('Ymd', strtotime('+ '.$period.' days', $lastRotatedOn));
- }
- else
- {
- // no rotation has occured yet
- $rotateOn = null;
- }
- $srcLog = $logdir.'/'.$logfile.'.log';
- $destLog = $logdir.'/history/'.$logfile.'_'.$today.'.log';
- // if rotate log on date doesn't exist, or that date is today, then rotate the log
- if (!$rotateOn || ($rotateOn == $today) || $override)
- {
- // create a lock file
- $lockFile = sfConfig::get('sf_data_dir').'/'.$app.'_'.$env.'-cli.lck';
- $this->getFilesystem()->touch($lockFile);
- // change mode so the web user can remove it if we die
- $this->getFilesystem()->chmod($lockFile, 0777);
- // if log file exists rotate it
- if (file_exists($srcLog))
- {
- // check if the log file has already been rotated today
- if (file_exists($destLog))
- {
- // append log to existing rotated log
- $handle = fopen($destLog, 'a');
- $append = file_get_contents($srcLog);
- fwrite($handle, $append);
- }
- else
- {
- // copy log
- copy($srcLog, $destLog);
- }
- // remove the log file
- unlink($srcLog);
- // get all log history files for this application and environment
- $newLogs = sfFinder::type('file')->maxdepth(1)->name($logfile.'_*.log')->in($logdir.'/history/');
- // if the number of logs in history exceeds history then remove the oldest log
- if (count($newLogs) > $history)
- {
- unlink($newLogs[0]);
- }
- }
- // release lock
- $this->getFilesystem()->remove($lockFile);
- }
- }
- }
|