Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109456552
DiffusionLowLevelMercurialPathsQuery.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, Apr 22, 01:21
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Apr 24, 01:21 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25728413
Attached To
rPH Phabricator
DiffusionLowLevelMercurialPathsQuery.php
View Options
<?php
/**
* Execute and parse a low-level Mercurial paths query using `hg locate`.
*/
final
class
DiffusionLowLevelMercurialPathsQuery
extends
DiffusionLowLevelQuery
{
private
$commit
;
private
$path
;
public
function
withCommit
(
$commit
)
{
$this
->
commit
=
$commit
;
return
$this
;
}
public
function
withPath
(
$path
)
{
$this
->
path
=
$path
;
return
$this
;
}
protected
function
executeQuery
()
{
$repository
=
$this
->
getRepository
();
$path
=
$this
->
path
;
$commit
=
$this
->
commit
;
$has_files
=
PhutilBinaryAnalyzer
::
getForBinary
(
'hg'
)
->
isMercurialFilesCommandAvailable
();
if
(
$has_files
)
{
$hg_paths_command
=
'files --print0 --rev %s -I %s'
;
}
else
{
$hg_paths_command
=
'locate --print0 --rev %s -I %s'
;
}
$match_against
=
trim
(
$path
,
'/'
);
$prefix
=
trim
(
'./'
.
$match_against
,
'/'
);
list
(
$entire_manifest
)
=
$repository
->
execxLocalCommand
(
$hg_paths_command
,
hgsprintf
(
'%s'
,
$commit
),
$prefix
);
return
explode
(
"
\0
"
,
$entire_manifest
);
}
}
Event Timeline
Log In to Comment