nextcloud/lib/private/backgroundjob/job.php

71 lines
1.2 KiB
PHP
Raw Normal View History

2013-04-21 01:27:46 +04:00
<?php
/**
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
2013-04-21 01:27:46 +04:00
*/
2013-04-21 01:27:46 +04:00
namespace OC\BackgroundJob;
use OCP\BackgroundJob\IJob;
abstract class Job implements IJob {
/**
* @var int $id
*/
2013-04-21 01:27:46 +04:00
protected $id;
/**
* @var int $lastRun
*/
2013-04-21 01:27:46 +04:00
protected $lastRun;
/**
* @var mixed $argument
*/
2013-04-21 01:27:46 +04:00
protected $argument;
/**
* @param JobList $jobList
* @param \OC\Log $logger
2013-04-21 01:27:46 +04:00
*/
public function execute($jobList, $logger = null) {
2013-04-21 01:27:46 +04:00
$jobList->setLastRun($this);
try {
$this->run($this->argument);
} catch (\Exception $e) {
if ($logger) {
$logger->error('Error while running background job: ' . $e->getMessage());
}
$jobList->remove($this, $this->argument);
}
2013-04-21 01:27:46 +04:00
}
abstract protected function run($argument);
public function setId($id) {
$this->id = $id;
}
public function setLastRun($lastRun) {
$this->lastRun = $lastRun;
}
public function setArgument($argument) {
$this->argument = $argument;
}
public function getId() {
return $this->id;
}
public function getLastRun() {
2013-04-24 01:46:56 +04:00
return $this->lastRun;
2013-04-21 01:27:46 +04:00
}
public function getArgument() {
return $this->argument;
}
2013-04-21 01:27:46 +04:00
}