Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102191961
PhabricatorDaemonLog.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
Tue, Feb 18, 02:38
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 20, 02:38 (2 d)
Engine
blob
Format
Raw Data
Handle
24303297
Attached To
rPH Phabricator
PhabricatorDaemonLog.php
View Options
<?php
final
class
PhabricatorDaemonLog
extends
PhabricatorDaemonDAO
implements
PhabricatorPolicyInterface
{
const
STATUS_UNKNOWN
=
'unknown'
;
const
STATUS_RUNNING
=
'run'
;
const
STATUS_DEAD
=
'dead'
;
const
STATUS_WAIT
=
'wait'
;
const
STATUS_EXITING
=
'exiting'
;
const
STATUS_EXITED
=
'exit'
;
protected
$daemon
;
protected
$host
;
protected
$pid
;
protected
$daemonID
;
protected
$runningAsUser
;
protected
$argv
;
protected
$explicitArgv
=
array
();
protected
$status
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_SERIALIZATION
=>
array
(
'argv'
=>
self
::
SERIALIZATION_JSON
,
'explicitArgv'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'daemon'
=>
'text255'
,
'host'
=>
'text255'
,
'pid'
=>
'uint32'
,
'runningAsUser'
=>
'text255?'
,
'status'
=>
'text8'
,
'daemonID'
=>
'text64'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'status'
=>
array
(
'columns'
=>
array
(
'status'
),
),
'key_daemonID'
=>
array
(
'columns'
=>
array
(
'daemonID'
),
'unique'
=>
true
,
),
'key_modified'
=>
array
(
'columns'
=>
array
(
'dateModified'
),
),
),
)
+
parent
::
getConfiguration
();
}
public
function
getExplicitArgv
()
{
$argv
=
$this
->
explicitArgv
;
if
(!
is_array
(
$argv
))
{
return
array
();
}
return
$argv
;
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getPHID
()
{
return
null
;
}
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
);
}
public
function
getPolicy
(
$capability
)
{
return
PhabricatorPolicies
::
POLICY_ADMIN
;
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
return
false
;
}
}
Event Timeline
Log In to Comment