Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102378670
DiffusionSvnRawDiffQuery.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
Thu, Feb 20, 02:22
Size
848 B
Mime Type
text/x-php
Expires
Sat, Feb 22, 02:22 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24341697
Attached To
rPH Phabricator
DiffusionSvnRawDiffQuery.php
View Options
<?php
final
class
DiffusionSvnRawDiffQuery
extends
DiffusionRawDiffQuery
{
protected
function
executeQuery
()
{
$drequest
=
$this
->
getRequest
();
$repository
=
$drequest
->
getRepository
();
$commit
=
$drequest
->
getCommit
();
$arc_root
=
phutil_get_library_root
(
'arcanist'
);
$against
=
$this
->
getAgainstCommit
();
if
(
$against
===
null
)
{
$against
=
$commit
-
1
;
}
$future
=
$repository
->
getRemoteCommandFuture
(
'diff --diff-cmd %s -x -U%d -r %d:%d %s'
,
$arc_root
.
'/../scripts/repository/binary_safe_diff.sh'
,
$this
->
getLinesOfContext
(),
$against
,
$commit
,
$repository
->
getSubversionPathURI
(
$drequest
->
getPath
()));
if
(
$this
->
getTimeout
())
{
$future
->
setTimeout
(
$this
->
getTimeout
());
}
list
(
$raw_diff
)
=
$future
->
resolvex
();
return
$raw_diff
;
}
}
Event Timeline
Log In to Comment