Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93181763
ConduitAPI_diffusion_querypaths_Method.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, Nov 26, 20:04
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 20:04 (2 d)
Engine
blob
Format
Raw Data
Handle
22591105
Attached To
rPH Phabricator
ConduitAPI_diffusion_querypaths_Method.php
View Options
<?php
final
class
ConduitAPI_diffusion_querypaths_Method
extends
ConduitAPI_diffusion_abstractquery_Method
{
public
function
getMethodDescription
()
{
return
pht
(
'Filename search on a repository.'
);
}
public
function
defineReturnType
()
{
return
'list<string>'
;
}
protected
function
defineCustomParamTypes
()
{
return
array
(
'path'
=>
'required string'
,
'commit'
=>
'required string'
,
'pattern'
=>
'optional string'
,
'limit'
=>
'optional int'
,
'offset'
=>
'optional int'
,
);
}
protected
function
getResult
(
ConduitAPIRequest
$request
)
{
$results
=
parent
::
getResult
(
$request
);
$offset
=
$request
->
getValue
(
'offset'
);
return
array_slice
(
$results
,
$offset
);
}
protected
function
getGitResult
(
ConduitAPIRequest
$request
)
{
$drequest
=
$this
->
getDiffusionRequest
();
$path
=
$drequest
->
getPath
();
$commit
=
$request
->
getValue
(
'commit'
);
$repository
=
$drequest
->
getRepository
();
// http://comments.gmane.org/gmane.comp.version-control.git/197735
$future
=
$repository
->
getLocalCommandFuture
(
'ls-tree --name-only -r -z %s -- %s'
,
$commit
,
$path
);
$lines
=
id
(
new
LinesOfALargeExecFuture
(
$future
))->
setDelimiter
(
"
\0
"
);
return
$this
->
filterResults
(
$lines
,
$request
);
}
protected
function
getMercurialResult
(
ConduitAPIRequest
$request
)
{
$drequest
=
$this
->
getDiffusionRequest
();
$repository
=
$drequest
->
getRepository
();
$path
=
$request
->
getValue
(
'path'
);
$commit
=
$request
->
getValue
(
'commit'
);
// Adapted from diffusion.browsequery.
list
(
$entire_manifest
)
=
$repository
->
execxLocalCommand
(
'manifest --rev %s'
,
hgsprintf
(
'%s'
,
$commit
));
$entire_manifest
=
explode
(
"
\n
"
,
$entire_manifest
);
$match_against
=
trim
(
$path
,
'/'
);
$match_len
=
strlen
(
$match_against
);
$lines
=
array
();
foreach
(
$entire_manifest
as
$path
)
{
if
(
strlen
(
$path
)
&&
!
strncmp
(
$path
,
$match_against
,
$match_len
))
{
$lines
[]
=
$path
;
}
}
return
$this
->
filterResults
(
$lines
,
$request
);
}
protected
function
filterResults
(
$lines
,
ConduitAPIRequest
$request
)
{
$pattern
=
$request
->
getValue
(
'pattern'
);
$limit
=
(
int
)
$request
->
getValue
(
'limit'
);
$offset
=
(
int
)
$request
->
getValue
(
'offset'
);
if
(
strlen
(
$pattern
))
{
$pattern
=
'/'
.
preg_quote
(
$pattern
,
'/'
).
'/'
;
}
$results
=
array
();
$count
=
0
;
foreach
(
$lines
as
$line
)
{
if
(!
$pattern
||
preg_match
(
$pattern
,
$line
))
{
if
(
$count
>=
$offset
)
{
$results
[]
=
$line
;
}
$count
++;
if
(
$limit
&&
(
$count
>=
(
$offset
+
$limit
)))
{
break
;
}
}
}
return
$results
;
}
}
Event Timeline
Log In to Comment