/* * Copyright (C) 1996-2024 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ #ifndef SQUID_SRC_FS_UFS_STORESEARCHUFS_H #define SQUID_SRC_FS_UFS_STORESEARCHUFS_H #include "StoreSearch.h" #include "UFSSwapDir.h" namespace Fs { namespace Ufs { class StoreSearchUFS : public StoreSearch { CBDATA_CLASS(StoreSearchUFS); public: StoreSearchUFS(RefCount sd); ~StoreSearchUFS() override; // TODO: misplaced Iterator API /** * callback the client when a new StoreEntry is available * or an error occurs */ void next(void (callback)(void *cbdata), void *cbdata) override; /** \retval true if a new StoreEntry is immediately available \retval false if a new StoreEntry is NOT immediately available */ bool next() override; bool error() const override; bool isDone() const override; StoreEntry *currentItem() override; RefCount sd; RemovalPolicyWalker *walker; private: /// \bug (callback) should be hidden behind a proper human readable name void (callback)(void *cbdata); void *cbdata; StoreEntry * current; bool _done; StoreSearchUFS(StoreSearchUFS const &); //disabled StoreSearchUFS& operator=(StoreSearchUFS const &); //disabled StoreSearchUFS(); //disabled }; } //namespace Ufs } //namespace Fs #endif /* SQUID_SRC_FS_UFS_STORESEARCHUFS_H */