@@ -91,59 +91,59 @@ |
||
| 91 | 91 | return Resque::redis()->llen('delayed:' . $timestamp, $timestamp); |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - /** |
|
| 95 | - * Remove a delayed job from the queue |
|
| 96 | - * |
|
| 97 | - * note: you must specify exactly the same |
|
| 98 | - * queue, class and arguments that you used when you added |
|
| 99 | - * to the delayed queue |
|
| 100 | - * |
|
| 101 | - * also, this is an expensive operation because all delayed keys have tobe |
|
| 102 | - * searched |
|
| 103 | - * |
|
| 104 | - * @param $queue |
|
| 105 | - * @param $class |
|
| 106 | - * @param $args |
|
| 107 | - * @return int number of jobs that were removed |
|
| 108 | - */ |
|
| 109 | - public static function removeDelayed($queue, $class, $args) |
|
| 110 | - { |
|
| 111 | - $destroyed=0; |
|
| 112 | - $item=json_encode(self::jobToHash($queue, $class, $args)); |
|
| 113 | - $redis=Resque::redis(); |
|
| 94 | + /** |
|
| 95 | + * Remove a delayed job from the queue |
|
| 96 | + * |
|
| 97 | + * note: you must specify exactly the same |
|
| 98 | + * queue, class and arguments that you used when you added |
|
| 99 | + * to the delayed queue |
|
| 100 | + * |
|
| 101 | + * also, this is an expensive operation because all delayed keys have tobe |
|
| 102 | + * searched |
|
| 103 | + * |
|
| 104 | + * @param $queue |
|
| 105 | + * @param $class |
|
| 106 | + * @param $args |
|
| 107 | + * @return int number of jobs that were removed |
|
| 108 | + */ |
|
| 109 | + public static function removeDelayed($queue, $class, $args) |
|
| 110 | + { |
|
| 111 | + $destroyed=0; |
|
| 112 | + $item=json_encode(self::jobToHash($queue, $class, $args)); |
|
| 113 | + $redis=Resque::redis(); |
|
| 114 | 114 | |
| 115 | - foreach($redis->keys('delayed:*') as $key) |
|
| 116 | - { |
|
| 117 | - $key=$redis->removePrefix($key); |
|
| 118 | - $destroyed+=$redis->lrem($key,0,$item); |
|
| 119 | - } |
|
| 115 | + foreach($redis->keys('delayed:*') as $key) |
|
| 116 | + { |
|
| 117 | + $key=$redis->removePrefix($key); |
|
| 118 | + $destroyed+=$redis->lrem($key,0,$item); |
|
| 119 | + } |
|
| 120 | 120 | |
| 121 | - return $destroyed; |
|
| 122 | - } |
|
| 121 | + return $destroyed; |
|
| 122 | + } |
|
| 123 | 123 | |
| 124 | - /** |
|
| 125 | - * removed a delayed job queued for a specific timestamp |
|
| 126 | - * |
|
| 127 | - * note: you must specify exactly the same |
|
| 128 | - * queue, class and arguments that you used when you added |
|
| 129 | - * to the delayed queue |
|
| 130 | - * |
|
| 131 | - * @param $timestamp |
|
| 132 | - * @param $queue |
|
| 133 | - * @param $class |
|
| 134 | - * @param $args |
|
| 135 | - * @return mixed |
|
| 136 | - */ |
|
| 137 | - public static function removeDelayedJobFromTimestamp($timestamp, $queue, $class, $args) |
|
| 138 | - { |
|
| 139 | - $key = 'delayed:' . self::getTimestamp($timestamp); |
|
| 140 | - $item = json_encode(self::jobToHash($queue, $class, $args)); |
|
| 141 | - $redis = Resque::redis(); |
|
| 142 | - $count = $redis->lrem($key, 0, $item); |
|
| 143 | - self::cleanupTimestamp($key, $timestamp); |
|
| 124 | + /** |
|
| 125 | + * removed a delayed job queued for a specific timestamp |
|
| 126 | + * |
|
| 127 | + * note: you must specify exactly the same |
|
| 128 | + * queue, class and arguments that you used when you added |
|
| 129 | + * to the delayed queue |
|
| 130 | + * |
|
| 131 | + * @param $timestamp |
|
| 132 | + * @param $queue |
|
| 133 | + * @param $class |
|
| 134 | + * @param $args |
|
| 135 | + * @return mixed |
|
| 136 | + */ |
|
| 137 | + public static function removeDelayedJobFromTimestamp($timestamp, $queue, $class, $args) |
|
| 138 | + { |
|
| 139 | + $key = 'delayed:' . self::getTimestamp($timestamp); |
|
| 140 | + $item = json_encode(self::jobToHash($queue, $class, $args)); |
|
| 141 | + $redis = Resque::redis(); |
|
| 142 | + $count = $redis->lrem($key, 0, $item); |
|
| 143 | + self::cleanupTimestamp($key, $timestamp); |
|
| 144 | 144 | |
| 145 | - return $count; |
|
| 146 | - } |
|
| 145 | + return $count; |
|
| 146 | + } |
|
| 147 | 147 | |
| 148 | 148 | /** |
| 149 | 149 | * Generate hash of all job properties to be saved in the scheduled queue. |
@@ -108,14 +108,14 @@ |
||
| 108 | 108 | */ |
| 109 | 109 | public static function removeDelayed($queue, $class, $args) |
| 110 | 110 | { |
| 111 | - $destroyed=0; |
|
| 112 | - $item=json_encode(self::jobToHash($queue, $class, $args)); |
|
| 113 | - $redis=Resque::redis(); |
|
| 111 | + $destroyed = 0; |
|
| 112 | + $item = json_encode(self::jobToHash($queue, $class, $args)); |
|
| 113 | + $redis = Resque::redis(); |
|
| 114 | 114 | |
| 115 | - foreach($redis->keys('delayed:*') as $key) |
|
| 115 | + foreach ($redis->keys('delayed:*') as $key) |
|
| 116 | 116 | { |
| 117 | - $key=$redis->removePrefix($key); |
|
| 118 | - $destroyed+=$redis->lrem($key,0,$item); |
|
| 117 | + $key = $redis->removePrefix($key); |
|
| 118 | + $destroyed += $redis->lrem($key, 0, $item); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | return $destroyed; |
@@ -220,8 +220,7 @@ discard block |
||
| 220 | 220 | { |
| 221 | 221 | if ($at === null) { |
| 222 | 222 | $at = time(); |
| 223 | - } |
|
| 224 | - else { |
|
| 223 | + } else { |
|
| 225 | 224 | $at = self::getTimestamp($at); |
| 226 | 225 | } |
| 227 | 226 | |
@@ -261,8 +260,7 @@ discard block |
||
| 261 | 260 | { |
| 262 | 261 | if (empty($class)) { |
| 263 | 262 | throw new Resque_Exception('Jobs must be given a class.'); |
| 264 | - } |
|
| 265 | - else if (empty($queue)) { |
|
| 263 | + } else if (empty($queue)) { |
|
| 266 | 264 | throw new Resque_Exception('Jobs must be put in a queue.'); |
| 267 | 265 | } |
| 268 | 266 | |
@@ -119,8 +119,7 @@ |
||
| 119 | 119 | { |
| 120 | 120 | if($this->logLevel == self::LOG_NORMAL) { |
| 121 | 121 | fwrite(STDOUT, "*** " . $message . "\n"); |
| 122 | - } |
|
| 123 | - else if($this->logLevel == self::LOG_VERBOSE) { |
|
| 122 | + } else if($this->logLevel == self::LOG_VERBOSE) { |
|
| 124 | 123 | fwrite(STDOUT, "** [" . strftime('%T %Y-%m-%d') . "] " . $message . "\n"); |
| 125 | 124 | } |
| 126 | 125 | } |
@@ -36,13 +36,13 @@ |
||
| 36 | 36 | private $paused = false; |
| 37 | 37 | |
| 38 | 38 | /** |
| 39 | - * The primary loop for a worker. |
|
| 40 | - * |
|
| 41 | - * Every $interval (seconds), the scheduled queue will be checked for jobs |
|
| 42 | - * that should be pushed to Resque. |
|
| 43 | - * |
|
| 44 | - * @param int $interval How often to check schedules. |
|
| 45 | - */ |
|
| 39 | + * The primary loop for a worker. |
|
| 40 | + * |
|
| 41 | + * Every $interval (seconds), the scheduled queue will be checked for jobs |
|
| 42 | + * that should be pushed to Resque. |
|
| 43 | + * |
|
| 44 | + * @param int $interval How often to check schedules. |
|
| 45 | + */ |
|
| 46 | 46 | public function work($interval = null) |
| 47 | 47 | { |
| 48 | 48 | if ($interval !== null) { |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(ticks = 1); |
|
| 2 | +declare(ticks=1); |
|
| 3 | 3 | |
| 4 | 4 | /** |
| 5 | 5 | * ResqueScheduler worker to handle scheduling of delayed tasks. |
@@ -53,10 +53,10 @@ discard block |
||
| 53 | 53 | $this->registerSigHandlers(); |
| 54 | 54 | |
| 55 | 55 | while (true) { |
| 56 | - if($this->shutdown) { |
|
| 56 | + if ($this->shutdown) { |
|
| 57 | 57 | break; |
| 58 | 58 | } |
| 59 | - if(!$this->paused) { |
|
| 59 | + if (!$this->paused) { |
|
| 60 | 60 | $this->handleDelayedItems(); |
| 61 | 61 | } |
| 62 | 62 | $this->sleep(); |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | { |
| 92 | 92 | $item = null; |
| 93 | 93 | while ($item = ResqueScheduler::nextItemForTimestamp($timestamp)) { |
| 94 | - $this->log('queueing ' . $item['class'] . ' in ' . $item['queue'] .' [delayed]'); |
|
| 94 | + $this->log('queueing ' . $item['class'] . ' in ' . $item['queue'] . ' [delayed]'); |
|
| 95 | 95 | |
| 96 | 96 | Resque_Event::trigger('beforeDelayedEnqueue', array( |
| 97 | 97 | 'queue' => $item['queue'], |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | */ |
| 124 | 124 | private function updateProcLine($status) |
| 125 | 125 | { |
| 126 | - if(function_exists('setproctitle')) { |
|
| 126 | + if (function_exists('setproctitle')) { |
|
| 127 | 127 | setproctitle('resque-scheduler-' . ResqueScheduler::VERSION . ': ' . $status); |
| 128 | 128 | } |
| 129 | 129 | } |
@@ -135,10 +135,10 @@ discard block |
||
| 135 | 135 | */ |
| 136 | 136 | public function log($message) |
| 137 | 137 | { |
| 138 | - if($this->logLevel == self::LOG_NORMAL) { |
|
| 138 | + if ($this->logLevel == self::LOG_NORMAL) { |
|
| 139 | 139 | fwrite(STDOUT, "*** " . $message . "\n"); |
| 140 | 140 | } |
| 141 | - else if($this->logLevel == self::LOG_VERBOSE) { |
|
| 141 | + else if ($this->logLevel == self::LOG_VERBOSE) { |
|
| 142 | 142 | fwrite(STDOUT, "** [" . strftime('%T %Y-%m-%d') . "] " . $message . "\n"); |
| 143 | 143 | } |
| 144 | 144 | } |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | */ |
| 153 | 153 | private function registerSigHandlers() |
| 154 | 154 | { |
| 155 | - if(!function_exists('pcntl_signal')) { |
|
| 155 | + if (!function_exists('pcntl_signal')) { |
|
| 156 | 156 | return; |
| 157 | 157 | } |
| 158 | 158 | |