Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100952394
DrydockCommandInterface.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 4, 06:23
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 6, 06:23 (2 d)
Engine
blob
Format
Raw Data
Handle
24060990
Attached To
rPH Phabricator
DrydockCommandInterface.php
View Options
<?php
abstract
class
DrydockCommandInterface
extends
DrydockInterface
{
const
INTERFACE_TYPE
=
'command'
;
private
$workingDirectoryStack
=
array
();
public
function
pushWorkingDirectory
(
$working_directory
)
{
$this
->
workingDirectoryStack
[]
=
$working_directory
;
return
$this
;
}
public
function
popWorkingDirectory
()
{
if
(!
$this
->
workingDirectoryStack
)
{
throw
new
Exception
(
pht
(
'Unable to pop working directory, directory stack is empty.'
));
}
return
array_pop
(
$this
->
workingDirectoryStack
);
}
public
function
peekWorkingDirectory
()
{
if
(
$this
->
workingDirectoryStack
)
{
return
last
(
$this
->
workingDirectoryStack
);
}
return
null
;
}
final
public
function
getInterfaceType
()
{
return
self
::
INTERFACE_TYPE
;
}
final
public
function
exec
(
$command
)
{
$argv
=
func_get_args
();
$exec
=
call_user_func_array
(
array
(
$this
,
'getExecFuture'
),
$argv
);
return
$exec
->
resolve
();
}
final
public
function
execx
(
$command
)
{
$argv
=
func_get_args
();
$exec
=
call_user_func_array
(
array
(
$this
,
'getExecFuture'
),
$argv
);
return
$exec
->
resolvex
();
}
abstract
public
function
getExecFuture
(
$command
);
protected
function
applyWorkingDirectoryToArgv
(
array
$argv
)
{
$directory
=
$this
->
peekWorkingDirectory
();
if
(
$directory
!==
null
)
{
$cmd
=
$argv
[
0
];
$cmd
=
"(cd %s && {$cmd})"
;
$argv
=
array_merge
(
array
(
$cmd
),
array
(
$directory
),
array_slice
(
$argv
,
1
));
}
return
$argv
;
}
}
Event Timeline
Log In to Comment