-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathTaskExecutionRepository.php
More file actions
154 lines (136 loc) · 3.97 KB
/
Copy pathTaskExecutionRepository.php
File metadata and controls
154 lines (136 loc) · 3.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
/*
* This file is part of php-task library.
*
* (c) php-task
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Task\TaskBundle\Entity;
use Doctrine\ORM\EntityRepository;
use Doctrine\ORM\NoResultException;
use Task\Execution\TaskExecutionInterface;
use Task\Storage\TaskExecutionRepositoryInterface;
use Task\TaskInterface;
use Task\TaskStatus;
/**
* Repository for task-execution.
*/
class TaskExecutionRepository extends EntityRepository implements TaskExecutionRepositoryInterface
{
/**
* {@inheritdoc}
*/
public function create(TaskInterface $task, \DateTimeImmutable $scheduleTime)
{
return new TaskExecution($task, $task->getHandlerClass(), $scheduleTime, $task->getWorkload());
}
/**
* {@inheritdoc}
*/
public function save(TaskExecutionInterface $execution)
{
$this->getEntityManager()->persist($execution);
$this->getEntityManager()->flush($execution);
return $this;
}
/**
* {@inheritdoc}
*/
public function remove(TaskExecutionInterface $execution)
{
$this->getEntityManager()->remove($execution);
$this->getEntityManager()->flush($execution);
return $this;
}
/**
* {@inheritdoc}
*/
public function findAllPaginated(int $page = 1, ?int $pageSize = null): array
{
$query = $this->createQueryBuilder('e')
->innerJoin('e.task', 't')
->getQuery();
if ($pageSize) {
$query->setMaxResults($pageSize);
$query->setFirstResult(($page - 1) * $pageSize);
}
return $query->getResult();
}
/**
* {@inheritdoc}
*/
public function findPending(TaskInterface $task)
{
try {
return $this->createQueryBuilder('e')
->innerJoin('e.task', 't')
->where('t.uuid = :uuid')
->andWhere('e.status in (:status)')
->setParameter('uuid', $task->getUuid())
->setParameter('status', [TaskStatus::PLANNED, TaskStatus::RUNNING])
->getQuery()
->getSingleResult();
} catch (NoResultException $e) {
return;
}
}
/**
* {@inheritdoc}
*/
public function findByUuid($uuid)
{
try {
return $this->createQueryBuilder('e')
->where('e.uuid = :uuid')
->setParameter('uuid', $uuid)
->getQuery()
->getSingleResult();
} catch (NoResultException $e) {
return;
}
}
/**
* {@inheritdoc}
*/
public function findByTask(TaskInterface $task)
{
return $this->findByTaskUuid($task->getUuid());
}
/**
* {@inheritdoc}
*/
public function findByTaskUuid($taskUuid)
{
return $this->createQueryBuilder('e')
->innerJoin('e.task', 't')
->where('t.uuid = :uuid')
->setParameter('uuid', $taskUuid)
->getQuery()
->getResult();
}
/**
* {@inheritdoc}
*/
public function findNextScheduled(?\DateTimeImmutable $dateTime = null, array $skippedExecutions = [])
{
$queryBuilder = $this->createQueryBuilder('e')
->innerJoin('e.task', 't')
->where('e.status = :status')
->andWhere('e.scheduleTime < :date')
->setParameter('date', $dateTime ?: new \DateTimeImmutable())
->setParameter('status', TaskStatus::PLANNED)
->setMaxResults(1);
$expr = $queryBuilder->expr();
if (!empty($skippedExecutions)) {
$queryBuilder->andWhere($expr->not($expr->in('e.uuid', ':skipped')))
->setParameter('skipped', $skippedExecutions);
}
try {
return $queryBuilder->getQuery()->getSingleResult();
} catch (NoResultException $exception) {
return null;
}
}
}