Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F538296
PhabricatorFileChunkQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorFileChunkQuery.php
View Options
<?php
final
class
PhabricatorFileChunkQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$chunkHandles
;
private
$rangeStart
;
private
$rangeEnd
;
private
$isComplete
;
private
$needDataFiles
;
public
function
withChunkHandles
(
array
$handles
)
{
$this
->
chunkHandles
=
$handles
;
return
$this
;
}
public
function
withByteRange
(
$start
,
$end
)
{
$this
->
rangeStart
=
$start
;
$this
->
rangeEnd
=
$end
;
return
$this
;
}
public
function
withIsComplete
(
$complete
)
{
$this
->
isComplete
=
$complete
;
return
$this
;
}
public
function
needDataFiles
(
$need
)
{
$this
->
needDataFiles
=
$need
;
return
$this
;
}
protected
function
loadPage
()
{
$table
=
new
PhabricatorFileChunk
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$data
=
queryfx_all
(
$conn_r
,
'SELECT * FROM %T %Q %Q %Q'
,
$table
->
getTableName
(),
$this
->
buildWhereClause
(
$conn_r
),
$this
->
buildOrderClause
(
$conn_r
),
$this
->
buildLimitClause
(
$conn_r
));
return
$table
->
loadAllFromArray
(
$data
);
}
protected
function
willFilterPage
(
array
$chunks
)
{
if
(
$this
->
needDataFiles
)
{
$file_phids
=
mpull
(
$chunks
,
'getDataFilePHID'
);
$file_phids
=
array_filter
(
$file_phids
);
if
(
$file_phids
)
{
$files
=
id
(
new
PhabricatorFileQuery
())
->
setViewer
(
$this
->
getViewer
())
->
setParentQuery
(
$this
)
->
withPHIDs
(
$file_phids
)
->
execute
();
$files
=
mpull
(
$files
,
null
,
'getPHID'
);
}
else
{
$files
=
array
();
}
foreach
(
$chunks
as
$key
=>
$chunk
)
{
$data_phid
=
$chunk
->
getDataFilePHID
();
if
(!
$data_phid
)
{
$chunk
->
attachDataFile
(
null
);
continue
;
}
$file
=
idx
(
$files
,
$data_phid
);
if
(!
$file
)
{
unset
(
$chunks
[
$key
]);
$this
->
didRejectResult
(
$chunk
);
continue
;
}
$chunk
->
attachDataFile
(
$file
);
}
if
(!
$chunks
)
{
return
$chunks
;
}
}
return
$chunks
;
}
protected
function
buildWhereClause
(
AphrontDatabaseConnection
$conn
)
{
$where
=
array
();
if
(
$this
->
chunkHandles
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'chunkHandle IN (%Ls)'
,
$this
->
chunkHandles
);
}
if
(
$this
->
rangeStart
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'byteEnd > %d'
,
$this
->
rangeStart
);
}
if
(
$this
->
rangeEnd
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'byteStart < %d'
,
$this
->
rangeEnd
);
}
if
(
$this
->
isComplete
!==
null
)
{
if
(
$this
->
isComplete
)
{
$where
[]
=
qsprintf
(
$conn
,
'dataFilePHID IS NOT NULL'
);
}
else
{
$where
[]
=
qsprintf
(
$conn
,
'dataFilePHID IS NULL'
);
}
}
$where
[]
=
$this
->
buildPagingClause
(
$conn
);
return
$this
->
formatWhereClause
(
$conn
,
$where
);
}
public
function
getQueryApplicationClass
()
{
return
PhabricatorFilesApplication
::
class
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 8:40 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
114513
Default Alt Text
PhabricatorFileChunkQuery.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment