Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98167920
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
Fri, Jan 10, 15:21
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jan 12, 15:21 (2 d)
Engine
blob
Format
Raw Data
Handle
23525330
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