<?php
if (defined('VISCACHA_CORE') == false) { die('Error: Hacking Attempt'); }
/**####################################################################################################**\
Version: V1.01
Release Date: 12 Sep 2005
Licence: GPL
By: Nikol S
Please send bug reports to hide@address.com
\**####################################################################################################**/
class CronParser {
var $bits = Array(); //exploded String like 0 1 * * *
var $now = Array(); //Array of cron-style entries for time()
var $lastRan; //Timestamp of last ran time.
var $taken;
var $year;
var $month;
var $day;
var $hour;
var $minute;
var $minutes_arr = array(); //minutes array based on cron string
var $hours_arr = array(); //hours array based on cron string
var $months_arr = array(); //months array based on cron string
function getLastRan() {
return explode(",", strftime("%M,%H,%d,%m,%w,%Y", $this->lastRan)); //Get the values for now in a format we can use
}
function getLastRanUnix() {
return $this->lastRan;
}
/**
* Assumes that value is not *, and creates an array of valid numbers that
* the string represents. Returns an array.
*/
function expand_ranges($str) {
if (strstr($str, ",")) {
$arParts = explode(',', $str);
foreach ($arParts AS $part) {
if (strstr($part, '-')) {
$arRange = explode('-', $part);
for ($i = $arRange[0]; $i <= $arRange[1]; $i++) {
$ret[] = $i;
}
}
else {
$ret[] = $part;
}
}
}
elseif (strstr($str, '-')) {
$arRange = explode('-', $str);
for ($i = $arRange[0]; $i <= $arRange[1]; $i++) {
$ret[] = $i;
}
}
else {
$ret[] = $str;
}
$ret = array_unique($ret);
sort($ret);
return $ret;
}
function daysinmonth($month, $year) {
return date('t', mktime(0, 0, 0, $month, 1, $year));
}
/**
* Calculate the last due time before this moment
*/
function calcLastRan($string) {
$tstart = microtime();
$this->lastRan = 0;
$this->year = NULL;
$this->month = NULL;
$this->day = NULL;
$this->hour = NULL;
$this->minute = NULL;
$this->hours_arr = array();
$this->minutes_arr = array();
$this->months_arr = array();
$string = preg_replace('/[\s]{2,}/', ' ', $string);
if (preg_match('/[^-,* \\d]/', $string) !== 0) {
return false;
}
$this->bits = @explode(" ", $string);
if (count($this->bits) != 5) {
return false;
}
//put the current time into an array
$t = strftime("%M,%H,%d,%m,%w,%Y", time());
$this->now = explode(",", $t);
$this->year = $this->now[5];
$arMonths = $this->_getMonthsArray();
do {
$this->month = array_pop($arMonths);
}
while ($this->month > $this->now[3]);
if ($this->month === NULL) {
$this->year = $this->year - 1;
$arMonths = $this->_getMonthsArray();
$this->_prevMonth($arMonths);
}
elseif ($this->month == $this->now[3]) {
$arDays = $this->_getDaysArray($this->month, $this->year);
do {
$this->day = array_pop($arDays);
}
while ($this->day > $this->now[2]);
if ($this->day === NULL) {
$this->_prevMonth($arMonths);
}
elseif ($this->day == $this->now[2]) {
$arHours = $this->_getHoursArray();
do {
$this->hour = array_pop($arHours);
}
while ($this->hour > $this->now[1]);
if ($this->hour === NULL) {
$this->_prevDay($arDays, $arMonths);
}
elseif ($this->hour < $this->now[1]) {
$this->minute = $this->_getLastMinute();
}
else {
$arMinutes = $this->_getMinutesArray();
do {
$this->minute = array_pop($arMinutes);
}
while ($this->minute > $this->now[0]);
if ($this->minute === NULL) {
$this->_prevHour($arHours, $arDays, $arMonths);
}
}
}
else {
$this->hour = $this->_getLastHour();
$this->minute = $this->_getLastMinute();
}
}
else {
$this->day = $this->_getLastDay($this->month, $this->year);
if ($this->day === NULL) {
//No scheduled date within this month. So we will try the previous month in the month array
$this->_prevMonth($arMonths);
}
else {
$this->hour = $this->_getLastHour();
$this->minute = $this->_getLastMinute();
}
}
$tend = microtime();
$this->taken = $tend - $tstart;
//if the last due is beyond 1970
if ($this->minute === NULL) {
return false;
}
else {
$this->lastRan = mktime($this->hour, $this->minute, 0, $this->month, $this->day, $this->year);
return true;
}
}
//get the due time before current month
function _prevMonth($arMonths) {
$this->month = array_pop($arMonths);
if ($this->month === NULL) {
$this->year = $this->year -1;
if ($this->year <= 1970) {
}
else {
$arMonths = $this->_getMonthsArray();
$this->_prevMonth($arMonths);
}
}
else {
$this->day = $this->_getLastDay($this->month, $this->year);
if ($this->day === NULL) {
//no available date schedule in this month
$this->_prevMonth($arMonths);
}
else {
$this->hour = $this->_getLastHour();
$this->minute = $this->_getLastMinute();
}
}
}
//get the due time before current day
function _prevDay($arDays, $arMonths) {
$this->day = array_pop($arDays);
if ($this->day === NULL) {
$this->_prevMonth($arMonths);
}
else {
$this->hour = $this->_getLastHour();
$this->minute = $this->_getLastMinute();
}
}
//get the due time before current hour
function _prevHour($arHours, $arDays, $arMonths) {
$this->hour = array_pop($arHours);
if ($this->hour === NULL) {
$this->_prevDay($arDays, $arMonths);
}
else {
$this->minute = $this->_getLastMinute();
}
}
//not used at the moment
function _getLastMonth() {
$months = $this->_getMonthsArray();
$month = array_pop($months);
return $month;
}
function _getLastDay($month, $year) {
//put the available days for that month into an array
$days = $this->_getDaysArray($month, $year);
$day = array_pop($days);
return $day;
}
function _getLastHour() {
$hours = $this->_getHoursArray();
$hour = array_pop($hours);
return $hour;
}
function _getLastMinute() {
$minutes = $this->_getMinutesArray();
$minute = array_pop($minutes);
return $minute;
}
//remove the out of range array elements. $arr should be sorted already and does not contain duplicates
function _sanitize ($arr, $low, $high) {
$count = count($arr);
for ($i = 0; $i <= ($count - 1); $i++) {
if ($arr[$i] < $low) {
unset($arr[$i]);
}
else {
break;
}
}
for ($i = ($count - 1); $i >= 0; $i--) {
if ($arr[$i] > $high) {
unset ($arr[$i]);
}
else {
break;
}
}
//re-assign keys
sort($arr);
return $arr;
}
//given a month/year, list all the days within that month fell into the week days list.
function _getDaysArray($month, $year = 0) {
if ($year == 0) {
$year = $this->year;
}
$days = array();
//return everyday of the month if both bit[2] and bit[4] are '*'
if ($this->bits[2] == '*' AND $this->bits[4] == '*') {
$days = $this->getDays($month, $year);
}
else {
//create an array for the weekdays
if ($this->bits[4] == '*') {
for ($i = 0; $i <= 6; $i++) {
$arWeekdays[] = $i;
}
}
else {
$arWeekdays = $this->expand_ranges($this->bits[4]);
$arWeekdays = $this->_sanitize($arWeekdays, 0, 7);
//map 7 to 0, both represents Sunday. Array is sorted already!
if (in_array(7, $arWeekdays)) {
if (in_array(0, $arWeekdays)) {
array_pop($arWeekdays);
}
else {
$tmp[] = 0;
array_pop($arWeekdays);
$arWeekdays = array_merge($tmp, $arWeekdays);
}
}
}
if ($this->bits[2] == '*') {
$daysmonth = $this->getDays($month, $year);
}
else {
$daysmonth = $this->expand_ranges($this->bits[2]);
// so that we do not end up with 31 of Feb
$daysinmonth = $this->daysinmonth($month, $year);
$daysmonth = $this->_sanitize($daysmonth, 1, $daysinmonth);
}
//Now match these days with weekdays
foreach ($daysmonth AS $day) {
$wkday = date('w', mktime(0, 0, 0, $month, $day, $year));
if (in_array($wkday, $arWeekdays)) {
$days[] = $day;
}
}
}
return $days;
}
//given a month/year, return an array containing all the days in that month
function getDays($month, $year) {
$daysinmonth = $this->daysinmonth($month, $year);
$days = array();
for ($i = 1; $i <= $daysinmonth; $i++) {
$days[] = $i;
}
return $days;
}
function _getHoursArray() {
if (empty($this->hours_arr)) {
$hours = array();
if ($this->bits[1] == '*') {
for ($i = 0; $i <= 23; $i++) {
$hours[] = $i;
}
}
else {
$hours = $this->expand_ranges($this->bits[1]);
$hours = $this->_sanitize($hours, 0, 23);
}
$this->hours_arr = $hours;
}
return $this->hours_arr;
}
function _getMinutesArray() {
if (empty($this->minutes_arr)) {
$minutes = array();
if ($this->bits[0] == '*') {
for ($i = 0; $i <= 60; $i++) {
$minutes[] = $i;
}
}
else {
$minutes = $this->expand_ranges($this->bits[0]);
$minutes = $this->_sanitize($minutes, 0, 59);
}
$this->minutes_arr = $minutes;
}
return $this->minutes_arr;
}
function _getMonthsArray() {
if (empty($this->months_arr)) {
$months = array();
if ($this->bits[3] == '*') {
for ($i = 1; $i <= 12; $i++) {
$months[] = $i;
}
}
else {
$months = $this->expand_ranges($this->bits[3]);
$months = $this->_sanitize($months, 1, 12);
}
$this->months_arr = $months;
}
return $this->months_arr;
}
}
?>