Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107105721
DifferentialStackGraph.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, Apr 4, 16:27
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Apr 6, 16:27 (2 d)
Engine
blob
Format
Raw Data
Handle
25315077
Attached To
rPH Phabricator
DifferentialStackGraph.php
View Options
<?php
final
class
DifferentialStackGraph
extends
AbstractDirectedGraph
{
private
$parentEdges
=
array
();
private
$childEdges
=
array
();
public
function
setSeedRevision
(
DifferentialRevision
$revision
)
{
return
$this
->
addNodes
(
array
(
'<seed>'
=>
array
(
$revision
->
getPHID
()),
));
}
public
function
isEmpty
()
{
return
(
count
(
$this
->
getNodes
())
<=
2
);
}
public
function
getParentEdges
()
{
return
$this
->
parentEdges
;
}
protected
function
loadEdges
(
array
$nodes
)
{
$query
=
id
(
new
PhabricatorEdgeQuery
())
->
withSourcePHIDs
(
$nodes
)
->
withEdgeTypes
(
array
(
DifferentialRevisionDependsOnRevisionEdgeType
::
EDGECONST
,
DifferentialRevisionDependedOnByRevisionEdgeType
::
EDGECONST
,
));
$query
->
execute
();
$map
=
array
();
foreach
(
$nodes
as
$node
)
{
$parents
=
$query
->
getDestinationPHIDs
(
array
(
$node
),
array
(
DifferentialRevisionDependsOnRevisionEdgeType
::
EDGECONST
,
));
$children
=
$query
->
getDestinationPHIDs
(
array
(
$node
),
array
(
DifferentialRevisionDependedOnByRevisionEdgeType
::
EDGECONST
,
));
$this
->
parentEdges
[
$node
]
=
$parents
;
$this
->
childEdges
[
$node
]
=
$children
;
$map
[
$node
]
=
array_values
(
array_fuse
(
$parents
)
+
array_fuse
(
$children
));
}
return
$map
;
}
}
Event Timeline
Log In to Comment