2021-01-29 11:43:07 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020, KylinSoft Co., Ltd.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Authors: zhangzihao <zhangzihao@kylinos.cn>
|
|
|
|
*
|
|
|
|
*/
|
2020-12-30 15:31:36 +08:00
|
|
|
#ifndef TRAVERSE_BFS_H
|
|
|
|
#define TRAVERSE_BFS_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QQueue>
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
class Traverse_BFS {
|
2020-12-30 15:31:36 +08:00
|
|
|
public:
|
2021-04-20 16:24:07 +08:00
|
|
|
Traverse_BFS() = default;
|
2020-12-30 15:31:36 +08:00
|
|
|
void Traverse();
|
2021-01-21 21:05:53 +08:00
|
|
|
virtual ~Traverse_BFS() = default;
|
2020-12-30 15:31:36 +08:00
|
|
|
virtual void DoSomething(const QFileInfo&) = 0;
|
|
|
|
void setPath(const QString&);
|
2021-01-09 11:25:07 +08:00
|
|
|
protected:
|
2021-04-20 16:24:07 +08:00
|
|
|
Traverse_BFS(const QString&);
|
2021-01-30 10:39:35 +08:00
|
|
|
QString path = "/home";
|
2020-12-30 15:31:36 +08:00
|
|
|
private:
|
2021-01-09 11:25:07 +08:00
|
|
|
Traverse_BFS(const Traverse_BFS&) = delete;
|
|
|
|
void operator=(const Traverse_BFS&) = delete;
|
2020-12-30 15:31:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TRAVERSE_BFS_H
|