Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106339084
PhabricatorDaemonManagementStatusWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Mar 24, 23:02
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Mar 26, 23:02 (2 d)
Engine
blob
Format
Raw Data
Handle
25130436
Attached To
rPH Phabricator
PhabricatorDaemonManagementStatusWorkflow.php
View Options
<?php
final
class
PhabricatorDaemonManagementStatusWorkflow
extends
PhabricatorDaemonManagementWorkflow
{
public
function
didConstruct
()
{
$this
->
setName
(
'status'
)
->
setSynopsis
(
pht
(
'Show status of running daemons.'
))
->
setArguments
(
array
());
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$console
=
PhutilConsole
::
getConsole
();
$daemons
=
$this
->
loadRunningDaemons
();
if
(!
$daemons
)
{
$console
->
writeErr
(
"%s
\n
"
,
pht
(
"There are no running Phabricator daemons."
));
return
1
;
}
$status
=
0
;
printf
(
"%-5s
\t
%-24s
\t
%-50s%s
\n
"
,
'PID'
,
'Started'
,
'Daemon'
,
'Arguments'
);
foreach
(
$daemons
as
$daemon
)
{
$name
=
$daemon
->
getName
();
if
(!
$daemon
->
isRunning
())
{
$daemon
->
updateStatus
(
PhabricatorDaemonLog
::
STATUS_DEAD
);
$status
=
2
;
$name
=
'<DEAD> '
.
$name
;
}
printf
(
"%5s
\t
%-24s
\t
%-50s%s
\n
"
,
$daemon
->
getPID
(),
$daemon
->
getEpochStarted
()
?
date
(
'M j Y, g:i:s A'
,
$daemon
->
getEpochStarted
())
:
null
,
$name
,
csprintf
(
'%LR'
,
$daemon
->
getArgv
()));
}
return
$status
;
}
}
Event Timeline
Log In to Comment