Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix unique jobs #1

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/Illuminate/Foundation/Bus/PendingDispatch.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
use Illuminate\Contracts\Bus\Dispatcher;
use Illuminate\Contracts\Cache\Repository as Cache;
use Illuminate\Contracts\Queue\ShouldBeUnique;
use Illuminate\Foundation\Queue\InteractsWithUniqueJobs;

class PendingDispatch
{
use InteractsWithUniqueJobs;
/**
* The job.
*
Expand Down Expand Up @@ -207,12 +209,20 @@ public function __call($method, $parameters)
*/
public function __destruct()
{
if($this->hasUniqueJob($this->job)){
$this->addLockToContext($this->job);
}

if (! $this->shouldDispatch()) {
return;
} elseif ($this->afterResponse) {
app(Dispatcher::class)->dispatchAfterResponse($this->job);
} else {
app(Dispatcher::class)->dispatch($this->job);
}

if($this->hasUniqueJob($this->job)){
$this->forgetLockFromContext();
}
}
}
77 changes: 77 additions & 0 deletions src/Illuminate/Foundation/Queue/InteractsWithUniqueJobs.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?php

namespace Illuminate\Foundation\Queue;

use Illuminate\Cache\Repository;
use Illuminate\Contracts\Queue\ShouldBeUnique;
use Illuminate\Support\Arr;

trait InteractsWithUniqueJobs
{
/**
* Determine if job has unique lock.
*/
public function hasUniqueJob($job): bool
{
return $job instanceof ShouldBeUnique;
}

/**
* Saves the used cache driver for the lock and
* the lock key for emergency forceRelease in
* case we can't instantiate a job instance.
*/
public function addLockToContext($job)
{
context()->addHidden([
'laravel_unique_job_cache_driver' => $this->getCacheDriver($job),
'laravel_unique_job_key' => $this->getKey($job),
]);
}

/**
* forget the used lock.
*/
public function forgetLockFromContext(): void
{
context()->forgetHidden(['laravel_unique_job_cache_driver', 'laravel_unique_job_key']);
}

/**
* Get the used cache driver as string from the config,
* CacheManger will handle invalid drivers.
*/
private function getCacheDriver($job): ?string
{
/** @var \Illuminate\Cache\Repository */
$cache = method_exists($job, 'uniqueVia') ?
$job->uniqueVia() :
app()->make(Repository::class);

$store = collect(config('cache')['stores'])

->firstWhere(
function ($store) use ($cache) {
return $cache === rescue(fn () => cache()->driver(($store['driver'])));
}
);

return Arr::get($store, 'driver');
}

//NOTE: can I change visibility of the original method in src/Illuminate/Bus/UniqueLock.php ?
/**
* Generate the lock key for the given job.
*
* @param mixed $job
* @return string
*/
private function getKey($job)
{
$uniqueId = method_exists($job, 'uniqueId')
? $job->uniqueId()
: ($job->uniqueId ?? '');

return 'laravel_unique_job:'.get_class($job).':'.$uniqueId;
}
}
20 changes: 20 additions & 0 deletions src/Illuminate/Queue/CallQueuedHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,24 @@ protected function ensureUniqueJobLockIsReleased($command)
}
}

/**
* Ensure the lock for a unique job is released
* when can't unserialize the job instance.
*
* @return void
*/
protected function ensureUniqueJobLockIsReleasedWithoutInstance()
{
/** @var string */
$driver = context()->getHidden('laravel_unique_job_cache_driver');
/** @var string */
$key = context()->getHidden('laravel_unique_job_key');

if ($driver && $key) {
cache()->driver($driver)->lock($key)->forceRelease();
}
}

/**
* Handle a model not found exception.
*
Expand All @@ -231,6 +249,8 @@ protected function handleModelNotFound(Job $job, $e)
return $job->delete();
}

$this->ensureUniqueJobLockIsReleasedWithoutInstance();

return $job->fail($e);
}

Expand Down
31 changes: 31 additions & 0 deletions tests/Integration/Queue/UniqueJobTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@
use Illuminate\Contracts\Queue\ShouldBeUnique;
use Illuminate\Contracts\Queue\ShouldBeUniqueUntilProcessing;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Bus;
use Orchestra\Testbench\Attributes\WithMigration;
use Orchestra\Testbench\Factories\UserFactory;
use Illuminate\Foundation\Auth\User;

#[WithMigration]
#[WithMigration('cache')]
Expand Down Expand Up @@ -130,6 +134,26 @@ public function testLockCanBeReleasedBeforeProcessing()
$this->assertTrue($this->app->get(Cache::class)->lock($this->getLockKey($job), 10)->get());
}

public function testLockIsReleasedOnModelNotFoundException()
{
UniqueTestSerializesModelsJob::$handled = false;

/** @var \Illuminate\Foundation\Auth\User */
$user = UserFactory::new()->create();
$job = new UniqueTestSerializesModelsJob($user);

$this->expectException(ModelNotFoundException::class);

try {
$user->delete();
dispatch($job);
} finally {
$this->assertFalse($job::$handled);
$this->assertModelMissing($user);
$this->assertTrue($this->app->get(Cache::class)->lock($this->getLockKey($job), 10)->get());
}
}

protected function getLockKey($job)
{
return 'laravel_unique_job:'.(is_string($job) ? $job : get_class($job)).':';
Expand Down Expand Up @@ -185,3 +209,10 @@ class UniqueUntilStartTestJob extends UniqueTestJob implements ShouldBeUniqueUnt
{
public $tries = 2;
}

class UniqueTestSerializesModelsJob extends UniqueTestJob
{
use SerializesModels;

public function __construct(public User $user) {}
}