SystemCleaner: Improve custom filter behavior and support creation via StorageAnalyzer #590
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This improves the
BaseSieve
class used by the SystemCleaner to support more complex filter config arguments.In turn we can now create nice custom filters via StorageAnalyzer. Before this refactoring it was problematic to create a custom filter that deletes specific files, and a whole directory without accidentally including other directories that have the first directories name as prefix.
i.e. we want a FULL match of
path/fileA
and also matchpath/folderA/
without matchingpath/folderAB
, but the only tools we had waspathContains
.This change now gives us
SegmentCriteria
andNameCriteria
which each support different modes likeSTART, END, CONTAIN, EQUAL
so when creating custom filters we can create aSegmentCriterium
withMode.Equal
for matching a specific path, while usingMode.Start
to match a folder and all that is in it.Due to the change in format, the previous custom filters are deleted. I opted for not creating migration code as this is a BETA and migration code is not great to lug around after beta.