Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2341943
PhabricatorDaemonManagementLaunchWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorDaemonManagementLaunchWorkflow.php
View Options
<?php
final
class
PhabricatorDaemonManagementLaunchWorkflow
extends
PhabricatorDaemonManagementWorkflow
{
public
function
shouldParsePartial
()
{
return
true
;
}
protected
function
didConstruct
()
{
$this
->
setName
(
'launch'
)
->
setExamples
(
'**launch** [n] __daemon__ [options]'
)
->
setSynopsis
(
pht
(
'Start a specific __daemon__, or __n__ copies of a specific '
.
'__daemon__.'
))
->
setArguments
(
array
(
array
(
'name'
=>
'argv'
,
'wildcard'
=>
true
,
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$argv
=
$args
->
getArg
(
'argv'
);
$daemon_count
=
1
;
if
(
$argv
)
{
if
(
is_numeric
(
head
(
$argv
)))
{
$daemon_count
=
array_shift
(
$argv
);
}
if
(
$daemon_count
<
1
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'You must launch at least one daemon.'
));
}
}
if
(!
$argv
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'You must specify which daemon to launch.'
));
}
$daemon
=
array
();
$daemon
[
'class'
]
=
array_shift
(
$argv
);
$daemon
[
'argv'
]
=
$argv
;
$daemons
=
array_fill
(
0
,
$daemon_count
,
$daemon
);
$this
->
launchDaemons
(
$daemons
,
$is_debug
=
false
);
return
0
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Sep 16, 9:40 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
383216
Default Alt Text
PhabricatorDaemonManagementLaunchWorkflow.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment