Blame view
sources/lib/public/backgroundjob.php
5.23 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 |
* |
|
31b7f2792
|
34 35 36 37 |
* To create a new backgroundjob create a new class that inharits from either \OC\BackgroundJob\Job, * \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 |
|
03e52840d
|
46 47 48 49 50 51 52 53 54 55 |
* @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
|
56 57 |
* sets the background jobs execution type * @param string $type execution type |
|
03e52840d
|
58 59 60 61 62 |
* @return boolean * * This method sets the execution type of the background jobs. Possible types * are "none", "ajax", "webcron", "cron" */ |
|
31b7f2792
|
63 64 65 66 67 68 69 70 71 72 73 |
public static function setExecutionType($type) {
return \OC_BackgroundJob::setExecutionType($type);
}
/**
* @param \OC\BackgroundJob\Job|string $job
* @param mixed $argument
*/
public static function registerJob($job, $argument = null) {
$jobList = new JobList();
$jobList->add($job, $argument);
|
|
03e52840d
|
74 75 76 |
} /** |
|
31b7f2792
|
77 78 79 80 |
* @deprecated * creates a regular task * @param string $klass class name * @param string $method method name |
|
03e52840d
|
81 82 |
* @return true */ |
|
31b7f2792
|
83 84 85 |
public static function addRegularTask($klass, $method) {
self::registerJob('OC\BackgroundJob\Legacy\RegularJob', array($klass, $method));
return true;
|
|
03e52840d
|
86 87 88 |
} /** |
|
31b7f2792
|
89 90 |
* @deprecated * gets all regular tasks |
|
03e52840d
|
91 92 93 94 95 |
* @return associative array
*
* key is string "$klass-$method", value is array( $klass, $method )
*/
static public function allRegularTasks() {
|
|
31b7f2792
|
96 97 98 99 100 101 102 103 104 105 |
$jobList = new JobList();
$allJobs = $jobList->getAll();
$regularJobs = array();
foreach ($allJobs as $job) {
if ($job instanceof RegularLegacyJob) {
$key = implode('-', $job->getArgument());
$regularJobs[$key] = $job->getArgument();
}
}
return $regularJobs;
|
|
03e52840d
|
106 107 108 |
} /** |
|
31b7f2792
|
109 110 111 |
* @deprecated * Gets one queued task * @param int $id ID of the task |
|
03e52840d
|
112 113 |
* @return associative array */ |
|
31b7f2792
|
114 115 116 |
public static function findQueuedTask($id) {
$jobList = new JobList();
return $jobList->getById($id);
|
|
03e52840d
|
117 118 119 |
} /** |
|
31b7f2792
|
120 121 |
* @deprecated * Gets all queued tasks |
|
03e52840d
|
122 123 124 |
* @return array with associative arrays
*/
public static function allQueuedTasks() {
|
|
31b7f2792
|
125 126 127 128 129 130 131 132 133 134 135 |
$jobList = new JobList();
$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
|
136 137 138 |
} /** |
|
31b7f2792
|
139 140 141 |
* @deprecated * Gets all queued tasks of a specific app * @param string $app app name |
|
03e52840d
|
142 143 |
* @return array with associative arrays */ |
|
31b7f2792
|
144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
public static function queuedTaskWhereAppIs($app) {
$jobList = new JobList();
$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
|
158 159 160 |
} /** |
|
31b7f2792
|
161 162 163 164 165 166 167 |
* @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 * @return int id of task |
|
03e52840d
|
168 |
*/ |
|
31b7f2792
|
169 170 171 |
public static function addQueuedTask($app, $class, $method, $parameters) {
self::registerJob('OC\BackgroundJob\Legacy\QueuedJob', array('app' => $app, 'klass' => $class, 'method' => $method, 'parameters' => $parameters));
return true;
|
|
03e52840d
|
172 173 174 |
} /** |
|
31b7f2792
|
175 176 177 178 |
* @deprecated * deletes a queued task * @param int $id id of task * @return bool |
|
03e52840d
|
179 180 181 |
* * Deletes a report */ |
|
31b7f2792
|
182 183 184 185 186 187 |
public static function deleteQueuedTask($id) {
$jobList = new JobList();
$job = $jobList->getById($id);
if ($job) {
$jobList->remove($job);
}
|
|
03e52840d
|
188 189 |
} } |