Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121666841
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
Sat, Jul 12, 23:32
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jul 14, 23:32 (2 d)
Engine
blob
Format
Raw Data
Handle
27370664
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