Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101945010
DiffusionMercurialCommitParentsQuery.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
Sat, Feb 15, 11:00
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Feb 17, 11:00 (2 d)
Engine
blob
Format
Raw Data
Handle
24255200
Attached To
rPH Phabricator
DiffusionMercurialCommitParentsQuery.php
View Options
<?php
final
class
DiffusionMercurialCommitParentsQuery
extends
DiffusionCommitParentsQuery
{
protected
function
executeQuery
()
{
$drequest
=
$this
->
getRequest
();
$repository
=
$drequest
->
getRepository
();
list
(
$stdout
)
=
$repository
->
execxLocalCommand
(
'log --debug --limit 1 --template={parents} --rev %s'
,
$drequest
->
getStableCommitName
());
$stdout
=
PhabricatorRepository
::
filterMercurialDebugOutput
(
$stdout
);
$hashes
=
preg_split
(
'/
\s
+/'
,
trim
(
$stdout
));
foreach
(
$hashes
as
$key
=>
$value
)
{
// Mercurial parents look like "23:ad9f769d6f786fad9f76d9a" -- we want
// to strip out the local rev part.
list
(
$local
,
$global
)
=
explode
(
':'
,
$value
);
$hashes
[
$key
]
=
$global
;
// With --debug we get 40-character hashes but also get the "000000..."
// hash for missing parents; ignore it.
if
(
preg_match
(
'/^0+$/'
,
$global
))
{
unset
(
$hashes
[
$key
]);
}
}
return
self
::
loadCommitsByIdentifiers
(
$hashes
,
$drequest
);
}
}
Event Timeline
Log In to Comment