Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F12656748
ArcanistWorkingCopyStateRef.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
ArcanistWorkingCopyStateRef.php
View Options
<?php
final
class
ArcanistWorkingCopyStateRef
extends
ArcanistRef
{
const
HARDPOINT_COMMITREF
=
'commitRef'
;
const
HARDPOINT_REVISIONREFS
=
'revisionRefs'
;
public
function
getRefDisplayName
()
{
// TODO: This could check attached hardpoints and render something more
// insightful.
return
pht
(
'Working Copy State'
);
}
protected
function
newHardpoints
()
{
$object_list
=
new
ArcanistObjectListHardpoint
();
return
array
(
$this
->
newHardpoint
(
self
::
HARDPOINT_COMMITREF
),
$this
->
newTemplateHardpoint
(
self
::
HARDPOINT_REVISIONREFS
,
$object_list
),
);
}
// TODO: This should be "attachCommitRef()".
public
function
setCommitRef
(
ArcanistCommitRef
$commit_ref
)
{
return
$this
->
attachHardpoint
(
self
::
HARDPOINT_COMMITREF
,
$commit_ref
);
}
public
function
getCommitRef
()
{
return
$this
->
getHardpoint
(
self
::
HARDPOINT_COMMITREF
);
}
public
function
getRevisionRefs
()
{
return
$this
->
getHardpoint
(
self
::
HARDPOINT_REVISIONREFS
);
}
public
function
getRevisionRef
()
{
if
(
$this
->
hasAmbiguousRevisionRefs
())
{
throw
new
Exception
(
pht
(
'State has multiple ambiguous revisions refs.'
));
}
$refs
=
$this
->
getRevisionRefs
();
if
(
$refs
)
{
return
head
(
$refs
);
}
return
null
;
}
public
function
hasAmbiguousRevisionRefs
()
{
return
(
count
(
$this
->
getRevisionRefs
())
>
1
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Nov 28, 15:13 (17 h, 9 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1044347
Default Alt Text
ArcanistWorkingCopyStateRef.php (1 KB)
Attached To
Mode
R118 Arcanist - fork
Attached
Detach File
Event Timeline
Log In to Comment