diff options
author | Robin Appelman <robin@icewind.nl> | 2021-03-19 14:26:44 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-03-23 13:41:18 +0000 |
commit | d4381c0eac568273367389985565a52c28e1dcfe (patch) | |
tree | 88ce90c347d7a1031370703c571846c06c2dc434 /lib/private | |
parent | 8551ee079dfcc49c85ecea3a042077dc85790c67 (diff) | |
download | nextcloud-server-d4381c0eac568273367389985565a52c28e1dcfe.tar.gz nextcloud-server-d4381c0eac568273367389985565a52c28e1dcfe.zip |
handle ordering in folder search
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Files/Node/Folder.php | 62 | ||||
-rw-r--r-- | lib/private/Files/Search/SearchOrder.php | 25 |
2 files changed, 52 insertions, 35 deletions
diff --git a/lib/private/Files/Node/Folder.php b/lib/private/Files/Node/Folder.php index 4b63a26c272..b2a98fb3077 100644 --- a/lib/private/Files/Node/Folder.php +++ b/lib/private/Files/Node/Folder.php @@ -32,7 +32,6 @@ namespace OC\Files\Node; use OC\DB\QueryBuilder\Literal; -use OC\Files\Mount\MountPoint; use OC\Files\Search\SearchBinaryOperator; use OC\Files\Search\SearchComparison; use OC\Files\Search\SearchQuery; @@ -232,23 +231,18 @@ class Folder extends Node implements \OCP\Files\Folder { $query = $this->queryFromOperator(new SearchComparison(ISearchComparison::COMPARE_LIKE, 'name', '%' . $query . '%')); } - // Limit+offset for queries without ordering + // Limit+offset for queries with ordering // - // assume a setup where the root mount matches 15 items, - // sub mount1 matches 7 items and mount2 matches 1 item - // a search with (0..10) returns 10 results from root with internal offset 0 and limit 10 - // follow up search with (10..20) returns 5 results from root with internal offset 10 and limit 10 - // and 5 results from mount1 with internal offset 0 and limit 5 - // next search with (20..30) return 0 results from root with internal offset 20 and limit 10 - // 2 results from mount1 with internal offset 5[1] and limit 5 - // and 1 result from mount2 with internal offset 0[1] and limit 8 + // Because we currently can't do ordering between the results from different storages in sql + // The only way to do ordering is requesting the $limit number of entries from all storages + // sorting them and returning the first $limit entries. // - // Because of the difficulty of calculating the offset for a sub-query if the previous one returns no results - // (we don't know how many results the previous sub-query has skipped with it's own offset) - // we instead discard the offset for the sub-queries and filter it afterwards and add the offset to limit. - // this is sub-optimal but shouldn't hurt to much since large offsets are uncommon in practice + // For offset we have the same problem, we don't know how many entries from each storage should be skipped + // by a given $offset, so instead we query $offset + $limit from each storage and return entries $offset..($offset+$limit) + // after merging and sorting them. // - // All of this is only possible for queries without ordering + // This is suboptimal but because limit and offset tend to be fairly small in real world use cases it should + // still be significantly better than disabling paging altogether $limitToHome = $query->limitToHome(); if ($limitToHome && count(explode('/', $this->path)) !== 3) { @@ -264,13 +258,12 @@ class Folder extends Node implements \OCP\Files\Folder { $internalPath = $internalPath . '/'; } - $subQueryLimit = $query->getLimit() > 0 ? $query->getLimit() + $query->getOffset() : PHP_INT_MAX; - $subQueryOffset = $query->getOffset(); + $subQueryLimit = $query->getLimit() > 0 ? $query->getLimit() + $query->getOffset() : 0; $rootQuery = new SearchQuery( new SearchBinaryOperator(ISearchBinaryOperator::OPERATOR_AND, [ - new SearchComparison(ISearchComparison::COMPARE_LIKE, 'path', $internalPath . '%'), - $query->getSearchOperation(), - ] + new SearchComparison(ISearchComparison::COMPARE_LIKE, 'path', $internalPath . '%'), + $query->getSearchOperation(), + ] ), $subQueryLimit, 0, @@ -283,11 +276,6 @@ class Folder extends Node implements \OCP\Files\Folder { $cache = $storage->getCache(''); $results = $cache->searchQuery($rootQuery); - $count = count($results); - $results = array_slice($results, $subQueryOffset, $subQueryLimit); - $subQueryOffset = max(0, $subQueryOffset - $count); - $subQueryLimit = max(0, $subQueryLimit - $count); - foreach ($results as $result) { $files[] = $this->cacheEntryToFileInfo($mount, '', $internalPath, $result); } @@ -295,10 +283,6 @@ class Folder extends Node implements \OCP\Files\Folder { if (!$limitToHome) { $mounts = $this->root->getMountsIn($this->path); foreach ($mounts as $mount) { - if ($subQueryLimit <= 0) { - break; - } - $subQuery = new SearchQuery( $query->getSearchOperation(), $subQueryLimit, @@ -313,12 +297,6 @@ class Folder extends Node implements \OCP\Files\Folder { $relativeMountPoint = ltrim(substr($mount->getMountPoint(), $rootLength), '/'); $results = $cache->searchQuery($subQuery); - - $count = count($results); - $results = array_slice($results, $subQueryOffset, $subQueryLimit); - $subQueryOffset -= $count; - $subQueryLimit -= $count; - foreach ($results as $result) { $files[] = $this->cacheEntryToFileInfo($mount, $relativeMountPoint, '', $result); } @@ -326,6 +304,20 @@ class Folder extends Node implements \OCP\Files\Folder { } } + $order = $query->getOrder(); + if ($order) { + usort($files, function (FileInfo $a,FileInfo $b) use ($order) { + foreach ($order as $orderField) { + $cmp = $orderField->sortFileInfo($a, $b); + if ($cmp !== 0) { + return $cmp; + } + } + return 0; + }); + } + $files = array_values(array_slice($files, $query->getOffset(), $query->getLimit() > 0 ? $query->getLimit() : null)); + return array_map(function (FileInfo $file) { return $this->createNode($file->getPath(), $file); }, $files); diff --git a/lib/private/Files/Search/SearchOrder.php b/lib/private/Files/Search/SearchOrder.php index 4bff8ba1b6c..deb73baa4c0 100644 --- a/lib/private/Files/Search/SearchOrder.php +++ b/lib/private/Files/Search/SearchOrder.php @@ -23,6 +23,7 @@ namespace OC\Files\Search; +use OCP\Files\FileInfo; use OCP\Files\Search\ISearchOrder; class SearchOrder implements ISearchOrder { @@ -55,4 +56,28 @@ class SearchOrder implements ISearchOrder { public function getField() { return $this->field; } + + public function sortFileInfo(FileInfo $a, FileInfo $b): int { + $cmp = $this->sortFileInfoNoDirection($a, $b); + return $cmp * ($this->direction === ISearchOrder::DIRECTION_ASCENDING ? 1 : -1); + } + + private function sortFileInfoNoDirection(FileInfo $a, FileInfo $b): int { + switch ($this->field) { + case 'name': + return $a->getName() <=> $b->getName(); + case 'mimetype': + return $a->getMimetype() <=> $b->getMimetype(); + case 'mtime': + return $a->getMtime() <=> $b->getMtime(); + case 'size': + return $a->getSize() <=> $b->getSize(); + case 'fileid': + return $a->getId() <=> $b->getId(); + case 'permissions': + return $a->getPermissions() <=> $b->getPermissions(); + default: + return 0; + } + } } |