fixes for windows

This commit is contained in:
jygaulier
2012-04-25 14:32:09 +02:00
parent 77d4df2116
commit 09691621e2

191
lib/classes/task/databoxAbstract.class.php Normal file → Executable file
View File

@@ -32,49 +32,55 @@ abstract class task_databoxAbstract extends task_abstract
protected function run2()
{
$task_must_delete = FALSE; // if the task must be deleted (suicide) after run
$this->running = TRUE;
while ($this->running) {
try {
$conn = connection::getPDOConnection();
} catch (Exception $e) {
$this->log($e->getMessage());
$this->log(("Warning : abox connection lost, restarting in 10 min."));
for ($t = 60 * 10; $this->running && $t; $t -- ) // DON'T do sleep(600) because it prevents ticks !
sleep(1);
$this->running = false;
$this->return_value = self::RETURNSTATUS_TORESTART;
if ($this->get_runner() == self::RUNNER_SCHEDULER) {
$this->log(("Warning : abox connection lost, restarting in 10 min."));
for ($t = 60 * 10; $this->running && $t; $t -- ) // DON'T do sleep(600) because it prevents ticks !
sleep(1);
// because connection is lost we cannot change status to 'torestart'
// anyway the current status 'running' with no pid
// will enforce the scheduler to restart the task
} else {
// runner = manual : can't restart so simply quit
}
$this->running = FALSE;
return;
}
$this->set_last_exec_time();
try {
$sql = 'SELECT sbas_id, task2.* FROM sbas, task2 WHERE task_id = :taskid';
$stmt = $conn->prepare($sql);
$stmt->execute(array(':taskid' => $this->get_task_id()));
if ($this->mono_sbas_id) {
$sql = 'SELECT sbas_id, task2.* FROM sbas, task2 WHERE task_id=:taskid AND sbas_id=:sbas_id';
$stmt = $conn->prepare($sql);
$stmt->execute(array(':taskid' => $this->get_task_id(), ':sbas_id' => $this->mono_sbas_id));
} else {
$sql = 'SELECT sbas_id, task2.* FROM sbas, task2 WHERE task_id = :taskid';
$stmt = $conn->prepare($sql);
$stmt->execute(array(':taskid' => $this->get_task_id()));
}
$rs = $stmt->fetchAll(PDO::FETCH_ASSOC);
$stmt->closeCursor();
$this->records_done = 0;
$duration = time();
} catch (Exception $e) {
$this->task_status = self::STATUS_TOSTOP;
$this->return_value = self::RETURNSTATUS_STOPPED;
$rs = array();
// failed sql, simply return
$this->running = FALSE;
return;
}
foreach ($rs as $row) {
foreach ($rs as $row) { // every sbas
if ( ! $this->running)
break;
$this->sbas_id = (int) $row['sbas_id'];
if ($this->mono_sbas_id && $this->sbas_id !== $this->mono_sbas_id) {
continue;
}
if ($this->mono_sbas_id) {
$this->log('This task works on ' . phrasea::sbas_names($this->mono_sbas_id));
}
$this->log('This task works now on ' . phrasea::sbas_names($this->sbas_id));
try {
$this->load_settings(simplexml_load_string($row['settings']));
@@ -83,20 +89,47 @@ abstract class task_databoxAbstract extends task_abstract
continue;
}
$this->current_state = self::STATE_OK;
$this->process_sbas()->check_current_state();
$this->process_sbas()->flush_records_sbas();
}
$process_ret = $this->process_sbas();
// printf("%s (%d) process_ret=%s \n", __FILE__, __LINE__, var_export($process_ret, true));
// $this->check_current_xxxstate();
switch ($process_ret) {
case self::STATE_MAXMEGSREACHED:
case self::STATE_MAXRECSDONE:
if ($this->get_runner() == self::RUNNER_SCHEDULER) {
$this->set_status(self::STATUS_TORESTART);
$this->running = FALSE;
}
break;
case self::STATUS_TOSTOP:
$this->set_status(self::STATUS_TOSTOP);
$this->running = FALSE;
break;
case self::STATUS_TODELETE: // formal 'suicidable'
// DO NOT SUICIDE IN THE LOOP, may have to work on other sbas !!!
// $this->set_status(self::STATUS_TODELETE);
// $this->log('task will self delete');
// $this->running = FALSE;
$task_must_delete = TRUE;
break;
case self::STATE_OK:
break;
}
$this->flush_records_sbas();
} // foreach sbas
$this->increment_loops();
$this->pause($duration);
} // while($this->running)
if ($task_must_delete) {
$this->set_status(self::STATUS_TODELETE);
$this->log('task will self delete');
}
$this->process_sbas()->check_current_state();
$this->process_sbas()->flush_records_sbas();
$this->set_status($this->return_value);
return;
}
@@ -106,15 +139,15 @@ abstract class task_databoxAbstract extends task_abstract
*/
protected function process_sbas()
{
$ret = self::STATE_OK;
$tsub = array();
$connbas = false;
try {
// get the records to process
$databox = databox::get_instance($this->sbas_id);
$connbas = $databox->get_connection();
/**
* GET THE RECORDS TO PROCESS ON CURRENT SBAS
*/
$rs = $this->retrieve_sbas_content($databox);
} catch (Exception $e) {
$this->log('Error : ' . $e->getMessage());
@@ -129,37 +162,88 @@ abstract class task_databoxAbstract extends task_abstract
foreach ($rs as $row) {
try {
/**
* PROCESS ONE RECORD
*/
// process one record
$this->process_one_content($databox, $row);
} catch (Exception $e) {
$this->log("Exception : " . $e->getMessage()
. " " . basename($e->getFile()) . " " . $e->getLine());
$this->log("Exception : " . $e->getMessage() . " " . basename($e->getFile()) . " " . $e->getLine());
}
$this->records_done ++;
$this->setProgress($rowsdone, $rowstodo);
/**
* POST COIT
*/
// post-process
$this->post_process_one_content($databox, $row);
$this->check_memory_usage()
->check_records_done()
->check_task_status();
// $this->check_memory_usage();
$current_memory = memory_get_usage();
if ($current_memory >> 20 >= $this->maxmegs) {
$this->log(sprintf("Max memory (%s M) reached (actual is %s M)", $this->maxmegs, $current_memory));
$this->running = FALSE;
$ret = self::STATE_MAXMEGSREACHED;
}
// $this->check_records_done();
if ($this->records_done >= (int) ($this->maxrecs)) {
$this->log(sprintf("Max records done (%s) reached (actual is %s)", $this->maxrecs, $this->records_done));
$this->running = FALSE;
$ret = self::STATE_MAXRECSDONE;
}
// $this->check_task_status();
try {
$status = $this->get_status();
// printf("%s (%d) status=%s \n", __FILE__, __LINE__, var_export($status, true));
if ($status == self::STATUS_TOSTOP) {
$this->running = FALSE;
$ret = self::STATUS_TOSTOP;
}
} catch (Exception $e) {
$this->running = FALSE;
// $this->task_status = self::STATUS_TOSTOP;
// $this->return_xxxvalue = self::RETURNSTATUS_STOPPED;
}
// if($this->task_status == self::STATUS_TOSTOP)
// $this->running = false;
if ( ! $this->running)
break;
} // foreach($rs as $row)
// if nothing was done, at least check the status
if (count($rs) == 0 && $this->running) {
// $this->check_memory_usage();
$current_memory = memory_get_usage();
if ($current_memory >> 20 >= $this->maxmegs) {
$this->log(sprintf("Max memory (%s M) reached (current is %s M)", $this->maxmegs, $current_memory));
$this->running = FALSE;
$ret = self::STATE_MAXMEGSREACHED;
}
// $this->check_records_done();
if ($this->records_done >= (int) ($this->maxrecs)) {
$this->log(sprintf("Max records done (%s) reached (actual is %s)", $this->maxrecs, $this->records_done));
$this->running = FALSE;
$ret = self::STATE_MAXRECSDONE;
}
// $this->check_task_status();
try {
$status = $this->get_status();
// printf("%s (%d) status=%s \n", __FILE__, __LINE__, var_export($status, true));
if ($status == self::STATUS_TOSTOP) {
$this->running = FALSE;
$ret = self::STATUS_TOSTOP;
// $this->task_status = self::STATUS_TOSTOP;
// $this->return_xxxvalue = self::RETURNSTATUS_STOPPED;
}
} catch (Exception $e) {
$this->running = FALSE;
// $this->task_status = self::STATUS_TOSTOP;
// $this->return_xxxvalue = self::RETURNSTATUS_STOPPED;
}
}
$this->check_memory_usage()
->check_records_done()
->check_task_status();
// close the cnx to the dbox
if ($connbas instanceof PDO) {
$connbas->close();
unset($connbas);
@@ -168,6 +252,7 @@ abstract class task_databoxAbstract extends task_abstract
if ($rowstodo > 0)
$this->setProgress(0, 0);
return $this;
return($ret);
}
}