*/ class Mage_Cron_Model_Observer { const CACHE_KEY_LAST_SCHEDULE_GENERATE_AT = 'cron_last_schedule_generate_at'; const CACHE_KEY_LAST_HISTORY_CLEANUP_AT = 'cron_last_history_cleanup_at'; const XML_PATH_SCHEDULE_GENERATE_EVERY = 'system/cron/schedule_generate_every'; const XML_PATH_SCHEDULE_AHEAD_FOR = 'system/cron/schedule_ahead_for'; const XML_PATH_SCHEDULE_LIFETIME = 'system/cron/schedule_lifetime'; const XML_PATH_HISTORY_CLEANUP_EVERY = 'system/cron/history_cleanup_every'; const XML_PATH_HISTORY_SUCCESS = 'system/cron/history_success_lifetime'; const XML_PATH_HISTORY_FAILURE = 'system/cron/history_failure_lifetime'; const REGEX_RUN_MODEL = '#^([a-z0-9_]+/[a-z0-9_]+)::([a-z0-9_]+)$#i'; protected $_pendingSchedules; /** * Process cron queue * Geterate tasks schedule * Cleanup tasks schedule * * @param Varien_Event_Observer $observer */ public function dispatch($observer) { $schedules = $this->getPendingSchedules(); $scheduleLifetime = Mage::getStoreConfig(self::XML_PATH_SCHEDULE_LIFETIME) * 60; $now = time(); $jobsRoot = Mage::getConfig()->getNode('crontab/jobs'); $defaultJobsRoot = Mage::getConfig()->getNode('default/crontab/jobs'); foreach ($schedules->getIterator() as $schedule) { $jobConfig = $jobsRoot->{$schedule->getJobCode()}; if (!$jobConfig || !$jobConfig->run) { $jobConfig = $defaultJobsRoot->{$schedule->getJobCode()}; if (!$jobConfig || !$jobConfig->run) { continue; } } $runConfig = $jobConfig->run; $time = strtotime($schedule->getScheduledAt()); if ($time > $now) { continue; } try { $errorStatus = Mage_Cron_Model_Schedule::STATUS_ERROR; $errorMessage = Mage::helper('cron')->__('Unknown error.'); if ($time < $now - $scheduleLifetime) { $errorStatus = Mage_Cron_Model_Schedule::STATUS_MISSED; Mage::throwException(Mage::helper('cron')->__('Too late for the schedule.')); } if ($runConfig->model) { if (!preg_match(self::REGEX_RUN_MODEL, (string)$runConfig->model, $run)) { Mage::throwException(Mage::helper('cron')->__('Invalid model/method definition, expecting "model/class::method".')); } if (!($model = Mage::getModel($run[1])) || !method_exists($model, $run[2])) { Mage::throwException(Mage::helper('cron')->__('Invalid callback: %s::%s does not exist', $run[1], $run[2])); } $callback = array($model, $run[2]); $arguments = array($schedule); } if (empty($callback)) { Mage::throwException(Mage::helper('cron')->__('No callbacks found')); } if (!$schedule->tryLockJob()) { // another cron started this job intermittently, so skip it continue; } /** though running status is set in tryLockJob we must set it here because the object was loaded with a pending status and will set it back to pending if we don't set it here */ $schedule ->setStatus(Mage_Cron_Model_Schedule::STATUS_RUNNING) ->setExecutedAt(strftime('%Y-%m-%d %H:%M:%S', time())) ->save(); call_user_func_array($callback, $arguments); $schedule ->setStatus(Mage_Cron_Model_Schedule::STATUS_SUCCESS) ->setFinishedAt(strftime('%Y-%m-%d %H:%M:%S', time())); } catch (Exception $e) { $schedule->setStatus($errorStatus) ->setMessages($e->__toString()); } $schedule->save(); } $this->generate(); $this->cleanup(); } public function getPendingSchedules() { if (!$this->_pendingSchedules) { $this->_pendingSchedules = Mage::getModel('cron/schedule')->getCollection() ->addFieldToFilter('status', Mage_Cron_Model_Schedule::STATUS_PENDING) ->load(); } return $this->_pendingSchedules; } /** * Generate cron schedule * * @return Mage_Cron_Model_Observer */ public function generate() { /** * check if schedule generation is needed */ $lastRun = Mage::app()->loadCache(self::CACHE_KEY_LAST_SCHEDULE_GENERATE_AT); if ($lastRun > time() - Mage::getStoreConfig(self::XML_PATH_SCHEDULE_GENERATE_EVERY)*60) { return $this; } $schedules = $this->getPendingSchedules(); $exists = array(); foreach ($schedules->getIterator() as $schedule) { $exists[$schedule->getJobCode().'/'.$schedule->getScheduledAt()] = 1; } /** * generate global crontab jobs */ $config = Mage::getConfig()->getNode('crontab/jobs'); if ($config instanceof Mage_Core_Model_Config_Element) { $this->_generateJobs($config->children(), $exists); } /** * generate configurable crontab jobs */ $config = Mage::getConfig()->getNode('default/crontab/jobs'); if ($config instanceof Mage_Core_Model_Config_Element) { $this->_generateJobs($config->children(), $exists); } /** * save time schedules generation was ran with no expiration */ Mage::app()->saveCache(time(), self::CACHE_KEY_LAST_SCHEDULE_GENERATE_AT, array('crontab'), null); return $this; } /** * Generate jobs for config information * * @param $jobs * @param array $exists * @return Mage_Cron_Model_Observer */ protected function _generateJobs($jobs, $exists) { $scheduleAheadFor = Mage::getStoreConfig(self::XML_PATH_SCHEDULE_AHEAD_FOR)*60; $schedule = Mage::getModel('cron/schedule'); foreach ($jobs as $jobCode => $jobConfig) { $cronExpr = null; if ($jobConfig->schedule->config_path) { $cronExpr = Mage::getStoreConfig((string)$jobConfig->schedule->config_path); } if (empty($cronExpr) && $jobConfig->schedule->cron_expr) { $cronExpr = (string)$jobConfig->schedule->cron_expr; } if (!$cronExpr) { continue; } $now = time(); $timeAhead = $now + $scheduleAheadFor; $schedule->setJobCode($jobCode) ->setCronExpr($cronExpr) ->setStatus(Mage_Cron_Model_Schedule::STATUS_PENDING); for ($time = $now; $time < $timeAhead; $time += 60) { $ts = strftime('%Y-%m-%d %H:%M:00', $time); if (!empty($exists[$jobCode.'/'.$ts])) { // already scheduled continue; } if (!$schedule->trySchedule($time)) { // time does not match cron expression continue; } $schedule->unsScheduleId()->save(); } } return $this; } public function cleanup() { // check if history cleanup is needed $lastCleanup = Mage::app()->loadCache(self::CACHE_KEY_LAST_HISTORY_CLEANUP_AT); if ($lastCleanup > time() - Mage::getStoreConfig(self::XML_PATH_HISTORY_CLEANUP_EVERY)*60) { return $this; } $history = Mage::getModel('cron/schedule')->getCollection() ->addFieldToFilter('status', array('in'=>array( Mage_Cron_Model_Schedule::STATUS_SUCCESS, Mage_Cron_Model_Schedule::STATUS_MISSED, Mage_Cron_Model_Schedule::STATUS_ERROR, )))->load(); $historyLifetimes = array( Mage_Cron_Model_Schedule::STATUS_SUCCESS => Mage::getStoreConfig(self::XML_PATH_HISTORY_SUCCESS)*60, Mage_Cron_Model_Schedule::STATUS_MISSED => Mage::getStoreConfig(self::XML_PATH_HISTORY_FAILURE)*60, Mage_Cron_Model_Schedule::STATUS_ERROR => Mage::getStoreConfig(self::XML_PATH_HISTORY_FAILURE)*60, ); $now = time(); foreach ($history->getIterator() as $record) { if (strtotime($record->getExecutedAt()) < $now-$historyLifetimes[$record->getStatus()]) { $record->delete(); } } // save time history cleanup was ran with no expiration Mage::app()->saveCache(time(), self::CACHE_KEY_LAST_HISTORY_CLEANUP_AT, array('crontab'), null); return $this; } }