2018-05-22 16:03:11 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
* libretroshare/src/ft: ftfilesearch.h *
|
|
|
|
* *
|
|
|
|
* libretroshare: retroshare core library *
|
|
|
|
* *
|
|
|
|
* Copyright 2008 by Robert Fernie <retroshare@lunamutt.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
|
|
* License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU Affero General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2008-07-02 09:19:59 -04:00
|
|
|
|
|
|
|
#ifndef FT_FILE_SEARCH_HEADER
|
|
|
|
#define FT_FILE_SEARCH_HEADER
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ftFileSearch
|
|
|
|
*
|
2008-08-03 08:45:53 -04:00
|
|
|
* This is implements an array of ftSearch Interfaces.
|
2008-07-02 09:19:59 -04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
#include <vector>
|
2008-07-02 09:19:59 -04:00
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
#include "ft/ftsearch.h"
|
2008-07-02 09:19:59 -04:00
|
|
|
|
|
|
|
class ftFileSearch: public ftSearch
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
ftFileSearch();
|
2008-07-02 09:19:59 -04:00
|
|
|
|
2012-11-02 09:52:29 -04:00
|
|
|
bool addSearchMode(ftSearch *search, FileSearchFlags hintflags);
|
2014-03-17 16:56:06 -04:00
|
|
|
virtual bool search(const RsFileHash &hash, FileSearchFlags hintflags, FileInfo &info) const;
|
2008-07-02 09:19:59 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
// should have a mutex to protect vector....
|
|
|
|
// but not really necessary as it is const most of the time.
|
2008-07-02 09:19:59 -04:00
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
std::vector<ftSearch *> mSearchs;
|
2008-07-02 09:19:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
#endif
|