ICache
in
Metadata cache for a storage
The cache stores the metadata for all files and folders in a storage and is kept up to date through the following mechanisms:
- Scanner: scans the storage and updates the cache where needed
- Watcher: checks for changes made to the filesystem outside of the Nextcloud instance and rescans files and folder when a change is detected
- Updater: listens to changes made to the filesystem inside of the Nextcloud instance and updates the cache where needed
- ChangePropagator: updates the mtime and etags of parent folders whenever a change to the cache is made to the cache by the updater
Tags
Table of Contents
Constants
Methods
- copyFromCache() : int
- Copy a file or folder in the cache
- get() : ICacheEntry|false
- get the stored metadata of a file or folder
- getCacheEntryFromSearchResult() : ICacheEntry|null
- Construct a cache entry from a search result row *if* the entry belongs to this storage.
- getFolderContents() : array<string|int, ICacheEntry>
- get the metadata of all files stored in $folder
- getFolderContentsById() : array<string|int, ICacheEntry>
- get the metadata of all files stored in $folder
- getId() : int
- get the file id for a file
- getIncomplete() : string|false
- find a folder in the cache which has not been fully scanned
- getNumericStorageId() : int
- Get the numeric storage id for this cache's storage
- getParentId() : int
- get the id of the parent folder of a file
- getPathById() : string|null
- get the path of a file on this storage by it's file id
- getQueryFilterForStorage() : ISearchOperator
- Get the query expression required to filter files within this storage.
- getStatus() : int
- Get the scan status of a file
- inCache() : bool
- check if a file is available in the cache
- insert() : int
- insert meta data for a new file or folder
- move() : mixed
- Move a file or folder in the cache
- moveFromCache() : mixed
- Move a file or folder in the cache
- normalize() : string
- normalize the given path for usage in the cache
- put() : int
- store meta data for a file or folder This will automatically call either insert or update depending on if the file exists
- remove() : mixed
- remove a file or folder from the cache
- search() : array<string|int, ICacheEntry>
- search for files matching $pattern, files are matched if their filename matches the search pattern
- searchByMime() : array<string|int, ICacheEntry>
- search for files by mimetype
- searchQuery() : array<string|int, ICacheEntry>
- Search for files with a flexible query
- update() : mixed
- update the metadata of an existing file or folder in the cache
Constants
COMPLETE
public
mixed
COMPLETE
= 3
Tags
NOT_FOUND
public
mixed
NOT_FOUND
= 0
Tags
PARTIAL
public
mixed
PARTIAL
= 1
Tags
SHALLOW
public
mixed
SHALLOW
= 2
Tags
Methods
copyFromCache()
Copy a file or folder in the cache
public
copyFromCache(ICache $sourceCache, ICacheEntry $sourceEntry, string $targetPath) : int
Parameters
- $sourceCache : ICache
- $sourceEntry : ICacheEntry
- $targetPath : string
Tags
Return values
int —fileid of copied entry
get()
get the stored metadata of a file or folder
public
get(string|int $file) : ICacheEntry|false
Parameters
- $file : string|int
-
either the path of a file or folder or the file id for a file or folder
Tags
Return values
ICacheEntry|false —the cache entry or false if the file is not found in the cache
getCacheEntryFromSearchResult()
Construct a cache entry from a search result row *if* the entry belongs to this storage.
public
getCacheEntryFromSearchResult(ICacheEntry $rawEntry) : ICacheEntry|null
This method will be called for every item in the search results, including results from different storages.
It's the responsibility of this method to return null
for all results that don't belong to this storage.
Additionally some implementations might need to further process the resulting entry such as modifying the path or permissions of the result.
Parameters
- $rawEntry : ICacheEntry
Tags
Return values
ICacheEntry|nullgetFolderContents()
get the metadata of all files stored in $folder
public
getFolderContents(string $folder) : array<string|int, ICacheEntry>
Only returns files one level deep, no recursion
Parameters
- $folder : string
Tags
Return values
array<string|int, ICacheEntry>getFolderContentsById()
get the metadata of all files stored in $folder
public
getFolderContentsById(int $fileId) : array<string|int, ICacheEntry>
Only returns files one level deep, no recursion
Parameters
- $fileId : int
-
the file id of the folder
Tags
Return values
array<string|int, ICacheEntry>getId()
get the file id for a file
public
getId(string $file) : int
A file id is a numeric id for a file or folder that's unique within an Nextcloud instance which stays the same for the lifetime of a file
File ids are easiest way for apps to store references to a file since unlike paths they are not affected by renames or sharing
Parameters
- $file : string
Tags
Return values
intgetIncomplete()
find a folder in the cache which has not been fully scanned
public
getIncomplete() : string|false
If multiple incomplete folders are in the cache, the one with the highest id will be returned, use the one with the highest id gives the best result with the background scanner, since that is most likely the folder where we stopped scanning previously
Tags
Return values
string|false —the path of the folder or false when no folder matched
getNumericStorageId()
Get the numeric storage id for this cache's storage
public
getNumericStorageId() : int
Tags
Return values
intgetParentId()
get the id of the parent folder of a file
public
getParentId(string $file) : int
Parameters
- $file : string
Tags
Return values
intgetPathById()
get the path of a file on this storage by it's file id
public
getPathById(int $id) : string|null
Parameters
- $id : int
-
the file id of the file or folder to search
Tags
Return values
string|null —the path of the file (relative to the storage) or null if a file with the given id does not exists within this cache
getQueryFilterForStorage()
Get the query expression required to filter files within this storage.
public
getQueryFilterForStorage() : ISearchOperator
In the most basic case this is just comparing the storage id but storage wrappers can add additional expressions to filter down things further
Tags
Return values
ISearchOperatorgetStatus()
Get the scan status of a file
public
getStatus(string $file) : int
- ICache::NOT_FOUND: File is not in the cache
- ICache::PARTIAL: File is not stored in the cache but some incomplete data is known
- ICache::SHALLOW: The folder and it's direct children are in the cache but not all sub folders are fully scanned
- ICache::COMPLETE: The file or folder, with all it's children) are fully scanned
Parameters
- $file : string
Tags
Return values
int —ICache::NOT_FOUND, ICache::PARTIAL, ICache::SHALLOW or ICache::COMPLETE
inCache()
check if a file is available in the cache
public
inCache(string $file) : bool
Parameters
- $file : string
Tags
Return values
boolinsert()
insert meta data for a new file or folder
public
insert(string $file, array<string|int, mixed> $data) : int
Parameters
- $file : string
- $data : array<string|int, mixed>
Tags
Return values
int —file id
move()
Move a file or folder in the cache
public
move(string $source, string $target) : mixed
Parameters
- $source : string
- $target : string
Tags
moveFromCache()
Move a file or folder in the cache
public
moveFromCache(ICache $sourceCache, string $sourcePath, string $targetPath) : mixed
Note that this should make sure the entries are removed from the source cache
Parameters
- $sourceCache : ICache
- $sourcePath : string
- $targetPath : string
Tags
normalize()
normalize the given path for usage in the cache
public
normalize(string $path) : string
Parameters
- $path : string
Tags
Return values
stringput()
store meta data for a file or folder This will automatically call either insert or update depending on if the file exists
public
put(string $file, array<string|int, mixed> $data) : int
Parameters
- $file : string
- $data : array<string|int, mixed>
Tags
Return values
int —file id
remove()
remove a file or folder from the cache
public
remove(string $file) : mixed
when removing a folder from the cache all files and folders inside the folder will be removed as well
Parameters
- $file : string
Tags
search()
search for files matching $pattern, files are matched if their filename matches the search pattern
public
search(string $pattern) : array<string|int, ICacheEntry>
due to lack of pagination, not all backends might implement this
Parameters
- $pattern : string
-
the search pattern using SQL search syntax (e.g. '%searchstring%')
Tags
Return values
array<string|int, ICacheEntry> —an array of cache entries where the name matches the search pattern
searchByMime()
search for files by mimetype
public
searchByMime(string $mimetype) : array<string|int, ICacheEntry>
due to lack of pagination, not all backends might implement this
Parameters
- $mimetype : string
-
either a full mimetype to search ('text/plain') or only the first part of a mimetype ('image') where it will search for all mimetypes in the group ('image/*')
Tags
Return values
array<string|int, ICacheEntry> —an array of cache entries where the mimetype matches the search
searchQuery()
Search for files with a flexible query
public
searchQuery(ISearchQuery $query) : array<string|int, ICacheEntry>
Parameters
- $query : ISearchQuery
Tags
Return values
array<string|int, ICacheEntry>update()
update the metadata of an existing file or folder in the cache
public
update(int $id, array<string|int, mixed> $data) : mixed
Parameters
- $id : int
-
the fileid of the existing file or folder
- $data : array<string|int, mixed>
-
[$key => $value] the metadata to update, only the fields provided in the array will be updated, non-provided values will remain unchanged