Blame view
sources/lib/public/backgroundjob.php
5.36 KB
|
03e52840d
|
1 2 |
<?php /** |
|
31b7f2792
|
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
* ownCloud * * @author Jakob Sack * @copyright 2012 Jakob Sack owncloud@jakobsack.de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * License as published by the Free Software Foundation; either * version 3 of the License, or any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU AFFERO GENERAL PUBLIC LICENSE for more details. * * You should have received a copy of the GNU Affero General Public * License along with this library. If not, see <http://www.gnu.org/licenses/>. * */ |
|
03e52840d
|
22 23 |
/** |
|
31b7f2792
|
24 |
* Public interface of ownCloud for background jobs. |
|
03e52840d
|
25 26 27 28 29 |
*/ // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; |
|
31b7f2792
|
30 |
use \OC\BackgroundJob\JobList; |
|
03e52840d
|
31 |
/** |
|
31b7f2792
|
32 |
* This class provides functions to register backgroundjobs in ownCloud |
|
03e52840d
|
33 |
* |
|
6d9380f96
|
34 |
* To create a new backgroundjob create a new class that inherits from either \OC\BackgroundJob\Job, |
|
31b7f2792
|
35 36 37 |
* \OC\BackgroundJob\QueuedJob or \OC\BackgroundJob\TimedJob and register it using * \OCP\BackgroundJob->registerJob($job, $argument), $argument will be passed to the run() function * of the job when the job is executed. |
|
03e52840d
|
38 |
* |
|
31b7f2792
|
39 40 41 |
* A regular Job will be executed every time cron.php is run, a QueuedJob will only run once and a TimedJob * will only run at a specific interval which is to be specified in the constructor of the job by calling * $this->setInterval($interval) with $interval in seconds. |
|
03e52840d
|
42 43 44 |
*/
class BackgroundJob {
/**
|
|
31b7f2792
|
45 |
* get the execution type of background jobs |
|
a293d369c
|
46 |
* |
|
03e52840d
|
47 48 49 50 51 52 53 54 55 56 |
* @return string
*
* This method returns the type how background jobs are executed. If the user
* did not select something, the type is ajax.
*/
public static function getExecutionType() {
return \OC_BackgroundJob::getExecutionType();
}
/**
|
|
31b7f2792
|
57 |
* sets the background jobs execution type |
|
a293d369c
|
58 |
* |
|
31b7f2792
|
59 |
* @param string $type execution type |
|
6d9380f96
|
60 |
* @return false|null |
|
03e52840d
|
61 62 63 64 |
* * This method sets the execution type of the background jobs. Possible types * are "none", "ajax", "webcron", "cron" */ |
|
31b7f2792
|
65 66 67 68 69 |
public static function setExecutionType($type) {
return \OC_BackgroundJob::setExecutionType($type);
}
/**
|
|
6d9380f96
|
70 |
* @param string $job |
|
31b7f2792
|
71 72 73 |
* @param mixed $argument
*/
public static function registerJob($job, $argument = null) {
|
|
6d9380f96
|
74 |
$jobList = \OC::$server->getJobList(); |
|
31b7f2792
|
75 |
$jobList->add($job, $argument); |
|
03e52840d
|
76 77 78 |
} /** |
|
31b7f2792
|
79 80 81 82 |
* @deprecated * creates a regular task * @param string $klass class name * @param string $method method name |
|
6d9380f96
|
83 |
* @return boolean|null |
|
03e52840d
|
84 |
*/ |
|
31b7f2792
|
85 |
public static function addRegularTask($klass, $method) {
|
|
a293d369c
|
86 87 88 89 |
if (!\OC::needUpgrade()) {
self::registerJob('OC\BackgroundJob\Legacy\RegularJob', array($klass, $method));
return true;
}
|
|
03e52840d
|
90 91 92 |
} /** |
|
31b7f2792
|
93 94 |
* @deprecated * gets all regular tasks |
|
6d9380f96
|
95 |
* @return array |
|
03e52840d
|
96 97 98 99 |
*
* key is string "$klass-$method", value is array( $klass, $method )
*/
static public function allRegularTasks() {
|
|
6d9380f96
|
100 |
$jobList = \OC::$server->getJobList(); |
|
31b7f2792
|
101 102 103 104 105 106 107 108 109 |
$allJobs = $jobList->getAll();
$regularJobs = array();
foreach ($allJobs as $job) {
if ($job instanceof RegularLegacyJob) {
$key = implode('-', $job->getArgument());
$regularJobs[$key] = $job->getArgument();
}
}
return $regularJobs;
|
|
03e52840d
|
110 111 112 |
} /** |
|
31b7f2792
|
113 114 115 |
* @deprecated * Gets one queued task * @param int $id ID of the task |
|
6d9380f96
|
116 |
* @return BackgroundJob\IJob|null |
|
03e52840d
|
117 |
*/ |
|
31b7f2792
|
118 |
public static function findQueuedTask($id) {
|
|
6d9380f96
|
119 |
$jobList = \OC::$server->getJobList(); |
|
31b7f2792
|
120 |
return $jobList->getById($id); |
|
03e52840d
|
121 122 123 |
} /** |
|
31b7f2792
|
124 125 |
* @deprecated * Gets all queued tasks |
|
6d9380f96
|
126 |
* @return array an array of associative arrays |
|
03e52840d
|
127 128 |
*/
public static function allQueuedTasks() {
|
|
6d9380f96
|
129 |
$jobList = \OC::$server->getJobList(); |
|
31b7f2792
|
130 131 132 133 134 135 136 137 138 139 |
$allJobs = $jobList->getAll();
$queuedJobs = array();
foreach ($allJobs as $job) {
if ($job instanceof QueuedLegacyJob) {
$queuedJob = $job->getArgument();
$queuedJob['id'] = $job->getId();
$queuedJobs[] = $queuedJob;
}
}
return $queuedJobs;
|
|
03e52840d
|
140 141 142 |
} /** |
|
31b7f2792
|
143 144 145 |
* @deprecated * Gets all queued tasks of a specific app * @param string $app app name |
|
6d9380f96
|
146 |
* @return array an array of associative arrays |
|
03e52840d
|
147 |
*/ |
|
31b7f2792
|
148 |
public static function queuedTaskWhereAppIs($app) {
|
|
6d9380f96
|
149 |
$jobList = \OC::$server->getJobList(); |
|
31b7f2792
|
150 151 152 153 154 155 156 157 158 159 160 161 |
$allJobs = $jobList->getAll();
$queuedJobs = array();
foreach ($allJobs as $job) {
if ($job instanceof QueuedLegacyJob) {
$queuedJob = $job->getArgument();
$queuedJob['id'] = $job->getId();
if ($queuedJob['app'] === $app) {
$queuedJobs[] = $queuedJob;
}
}
}
return $queuedJobs;
|
|
03e52840d
|
162 163 164 |
} /** |
|
31b7f2792
|
165 166 167 168 169 170 |
* @deprecated * queues a task * @param string $app app name * @param string $class class name * @param string $method method name * @param string $parameters all useful data as text |
|
6d9380f96
|
171 |
* @return boolean id of task |
|
03e52840d
|
172 |
*/ |
|
31b7f2792
|
173 |
public static function addQueuedTask($app, $class, $method, $parameters) {
|
|
6d9380f96
|
174 175 |
self::registerJob('OC\BackgroundJob\Legacy\QueuedJob', array('app' => $app, 'klass' => $class, 'method' => $method, 'parameters' => $parameters));
return true;
|
|
03e52840d
|
176 177 178 |
} /** |
|
31b7f2792
|
179 180 181 |
* @deprecated * deletes a queued task * @param int $id id of task |
|
6d9380f96
|
182 |
* @return boolean|null |
|
03e52840d
|
183 184 185 |
* * Deletes a report */ |
|
31b7f2792
|
186 |
public static function deleteQueuedTask($id) {
|
|
6d9380f96
|
187 |
$jobList = \OC::$server->getJobList(); |
|
31b7f2792
|
188 189 190 191 |
$job = $jobList->getById($id);
if ($job) {
$jobList->remove($job);
}
|
|
03e52840d
|
192 193 |
} } |