Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93155923
DiffusionMercurialMergedCommitsQuery.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, Nov 26, 15:33
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 15:33 (1 d, 22 h)
Engine
blob
Format
Raw Data
Handle
22583480
Attached To
rPH Phabricator
DiffusionMercurialMergedCommitsQuery.php
View Options
<?php
final
class
DiffusionMercurialMergedCommitsQuery
extends
DiffusionMergedCommitsQuery
{
protected
function
executeQuery
()
{
$request
=
$this
->
getRequest
();
$repository
=
$request
->
getRepository
();
list
(
$parents
)
=
$repository
->
execxLocalCommand
(
'parents --template=%s --rev %s'
,
'{node}
\\
n'
,
$request
->
getCommit
());
$parents
=
explode
(
"
\n
"
,
trim
(
$parents
));
if
(
count
(
$parents
)
<
2
)
{
// Not a merge commit.
return
array
();
}
// NOTE: In Git, the first parent is the "mainline". In Mercurial, the
// second parent is the "mainline" (the way 'git merge' and 'hg merge'
// work is also reversed).
$last_parent
=
last
(
$parents
);
list
(
$logs
)
=
$repository
->
execxLocalCommand
(
'log --template=%s --follow --limit %d --rev %s:0 --prune %s --'
,
'{node}
\\
n'
,
$this
->
getLimit
()
+
1
,
$request
->
getCommit
(),
$last_parent
);
$hashes
=
explode
(
"
\n
"
,
trim
(
$logs
));
// Remove the merge commit.
$hashes
=
array_diff
(
$hashes
,
array
(
$request
->
getCommit
()));
return
DiffusionQuery
::
loadHistoryForCommitIdentifiers
(
$hashes
,
$request
);
}
}
Event Timeline
Log In to Comment