FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
queue/src/Handlers/DatabaseHandler.php at develop · codeigniter4/queue · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
codeigniter4
/
queue
Public
Notifications
You must be signed in to change notification settings
Fork
25
Star
75
Code
Issues
2
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
queue
/
src
/
Handlers
/
DatabaseHandler.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
198 lines (166 loc) · 5.29 KB
Breadcrumbs
queue
/
src
/
Handlers
/
DatabaseHandler.php
Copy path
File metadata and controls
198 lines (166 loc) · 5.29 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?php
declare
(strict_types=
1
);
/**
* This file is part of CodeIgniter Queue.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace
CodeIgniter
\
Queue
\
Handlers
;
use
CodeIgniter
\
Exceptions
\
CriticalError
;
use
CodeIgniter
\
I18n
\
Time
;
use
CodeIgniter
\
Queue
\
Config
\
Queue
as
QueueConfig
;
use
CodeIgniter
\
Queue
\
Entities
\
QueueJob
;
use
CodeIgniter
\
Queue
\
Enums
\
Status
;
use
CodeIgniter
\
Queue
\
Events
\
QueueEventManager
;
use
CodeIgniter
\
Queue
\
Models
\
QueueJobModel
;
use
CodeIgniter
\
Queue
\
Payloads
\
Payload
;
use
CodeIgniter
\
Queue
\
Payloads
\
PayloadMetadata
;
use
CodeIgniter
\
Queue
\
QueuePushResult
;
use
ReflectionException
;
use
RuntimeException
;
use
Throwable
;
class
DatabaseHandler
extends
BaseHandler
{
private
readonly
QueueJobModel
$
jobModel
;
public
function
__construct
(
protected
QueueConfig
$
config
)
{
try
{
$
connection
=
db_connect
(
$
config
->
database
[
'
dbGroup
'
],
$
config
->
database
[
'
getShared
'
]);
$
this
->
jobModel
=
model
(QueueJobModel::class,
true
,
$
connection
);
// Emit connection established event
QueueEventManager::
handlerConnectionEstablished
(
handler:
$
this
->
name
(),
config:
$
config
->
database
,
);
}
catch
(
Throwable
$
e
) {
// Emit connection failed event
QueueEventManager::
handlerConnectionFailed
(
handler:
$
this
->
name
(),
exception:
$
e
,
config:
$
config
->
database
,
);
throw
new
CriticalError
(
'
Queue: Database connection failed.
'
.
$
e
->
getMessage
());
}
}
/**
* Name of the handler.
*/
public
function
name
():
string
{
return
'
database
'
;
}
/**
* Add job to the queue.
*/
public
function
push
(
string
$
queue
,
string
$
job
,
array
$
data
, ?
PayloadMetadata
$
metadata
=
null
):
QueuePushResult
{
$
this
->
validateJobAndPriority
(
$
queue
,
$
job
);
$
queueJob
=
new
QueueJob
([
'
queue
'
=>
$
queue
,
'
payload
'
=>
new
Payload
(
$
job
,
$
data
,
$
metadata
),
'
priority
'
=>
$
this
->
priority
,
'
status
'
=> Status::
PENDING
->
value
,
'
attempts
'
=>
0
,
'
available_at
'
=> Time::
now
()->
addSeconds
(
$
this
->
delay
??
0
),
]);
$
this
->
priority
=
$
this
->
delay
=
null
;
try
{
$
jobId
=
$
this
->
jobModel
->
insert
(
$
queueJob
);
}
catch
(
Throwable
$
e
) {
// Emit push failed event
QueueEventManager::
jobPushFailed
(
handler:
$
this
->
name
(),
queue:
$
queue
,
jobClass:
$
job
,
exception:
$
e
,
);
return
QueuePushResult::
failure
(
$
e
->
getMessage
());
}
if
(
$
jobId
===
0
) {
$
err
=
new
RuntimeException
(
'
Failed to insert job into the database.
'
);
QueueEventManager::
jobPushFailed
(
handler:
$
this
->
name
(),
queue:
$
queue
,
jobClass:
$
job
,
exception:
$
err
,
);
return
QueuePushResult::
failure
(
$
err
->
getMessage
());
}
// Set the job ID for the successful push event
$
queueJob
->
id
=
$
jobId
;
// Emit job pushed event
QueueEventManager::
jobPushed
(
handler:
$
this
->
name
(),
queue:
$
queue
,
job:
$
queueJob
,
);
return
QueuePushResult::
success
(
$
jobId
);
}
/**
* Get job from the queue.
*
* @throws ReflectionException
*/
public
function
pop
(
string
$
queue
,
array
$
priorities
): ?
QueueJob
{
$
queueJob
=
$
this
->
jobModel
->
getFromQueue
(
$
queue
,
$
priorities
);
if
(
$
queueJob
===
null
) {
return
null
;
}
// Set the actual status as in DB.
$
queueJob
->
status
= Status::
RESERVED
->
value
;
$
queueJob
->
syncOriginal
();
return
$
queueJob
;
}
/**
* Schedule job for later
*
* @throws ReflectionException
*/
public
function
later
(
QueueJob
$
queueJob
,
int
$
seconds
):
bool
{
$
queueJob
->
status
= Status::
PENDING
->
value
;
$
queueJob
->
available_at
= Time::
now
()->
addSeconds
(
$
seconds
);
return
$
this
->
jobModel
->
save
(
$
queueJob
);
}
/**
* Move job to failed table or move and delete.
*
* @throws ReflectionException
*/
public
function
failed
(
QueueJob
$
queueJob
,
Throwable
$
err
,
bool
$
keepJob
):
bool
{
if
(
$
keepJob
) {
$
this
->
logFailed
(
$
queueJob
,
$
err
);
}
return
$
this
->
jobModel
->
delete
(
$
queueJob
->
id
);
}
/**
* Change job status to DONE or delete it.
*/
public
function
done
(
QueueJob
$
queueJob
):
bool
{
return
$
this
->
jobModel
->
delete
(
$
queueJob
->
id
);
}
/**
* Delete queue jobs
*/
public
function
clear
(?
string
$
queue
=
null
):
bool
{
if
(
$
queue
!==
null
) {
$
this
->
jobModel
->
where
(
'
queue
'
,
$
queue
);
}
$
result
=
$
this
->
jobModel
->
delete
();
if
(
$
result
) {
// Emit queue cleared event
QueueEventManager::
queueCleared
(
handler:
$
this
->
name
(),
queue:
$
queue
,
);
}
return
$
result
;
}
}
Back
|
FazBrowse Home
|
New Git URL