2012-03-27 05:54:26 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A query class which uses offset/limit paging. Provides logic and accessors
|
|
|
|
* for offsets and limits.
|
|
|
|
*/
|
|
|
|
abstract class PhabricatorOffsetPagedQuery extends PhabricatorQuery {
|
|
|
|
|
|
|
|
private $offset;
|
|
|
|
private $limit;
|
|
|
|
|
|
|
|
final public function setOffset($offset) {
|
|
|
|
$this->offset = $offset;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function setLimit($limit) {
|
|
|
|
$this->limit = $limit;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-08-08 21:15:58 +02:00
|
|
|
final public function getOffset() {
|
|
|
|
return $this->offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function getLimit() {
|
|
|
|
return $this->limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function buildLimitClause(AphrontDatabaseConnection $conn_r) {
|
2012-03-27 05:54:26 +02:00
|
|
|
if ($this->limit && $this->offset) {
|
|
|
|
return qsprintf($conn_r, 'LIMIT %d, %d', $this->offset, $this->limit);
|
|
|
|
} else if ($this->limit) {
|
|
|
|
return qsprintf($conn_r, 'LIMIT %d', $this->limit);
|
|
|
|
} else if ($this->offset) {
|
|
|
|
return qsprintf($conn_r, 'LIMIT %d, %d', $this->offset, PHP_INT_MAX);
|
|
|
|
} else {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-02 23:34:04 +02:00
|
|
|
final public function executeWithOffsetPager(PHUIPagerView $pager) {
|
2012-03-27 05:54:26 +02:00
|
|
|
$this->setLimit($pager->getPageSize() + 1);
|
|
|
|
$this->setOffset($pager->getOffset());
|
|
|
|
|
|
|
|
$results = $this->execute();
|
|
|
|
|
|
|
|
return $pager->sliceResults($results);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|