Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119117446
PhabricatorRemarkupBlockInterpreterGraphviz.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, Jun 24, 23:55
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Jun 26, 23:55 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26978679
Attached To
rPH Phabricator
PhabricatorRemarkupBlockInterpreterGraphviz.php
View Options
<?php
final
class
PhabricatorRemarkupBlockInterpreterGraphviz
extends
PhutilRemarkupBlockInterpreter
{
public
function
getInterpreterName
()
{
return
'dot'
;
}
public
function
markupContent
(
$content
,
array
$argv
)
{
if
(!
Filesystem
::
binaryExists
(
'dot'
))
{
return
$this
->
markupError
(
pht
(
'Unable to locate the `dot` binary. Install Graphviz.'
));
}
$width
=
$this
->
parseDimension
(
idx
(
$argv
,
'width'
));
$future
=
id
(
new
ExecFuture
(
'dot -T%s'
,
'png'
))
->
setTimeout
(
15
)
->
write
(
trim
(
$content
));
list
(
$err
,
$stdout
,
$stderr
)
=
$future
->
resolve
();
if
(
$err
)
{
return
$this
->
markupError
(
pht
(
'Execution of `dot` failed (#%d), check your syntax: %s'
,
$err
,
$stderr
));
}
$file
=
PhabricatorFile
::
buildFromFileDataOrHash
(
$stdout
,
array
(
'name'
=>
'graphviz.png'
,
));
if
(
$this
->
getEngine
()->
isTextMode
())
{
return
'<'
.
$file
->
getBestURI
().
'>'
;
}
return
phutil_tag
(
'img'
,
array
(
'src'
=>
$file
->
getBestURI
(),
'width'
=>
nonempty
(
$width
,
null
),
));
}
// TODO: This is duplicated from PhabricatorRemarkupRuleEmbedFile since they
// do not share a base class.
private
function
parseDimension
(
$string
)
{
$string
=
trim
(
$string
);
if
(
preg_match
(
'/^(?:
\d
*
\\
.)?
\d
+%?$/'
,
$string
))
{
return
$string
;
}
return
null
;
}
}
Event Timeline
Log In to Comment