/*********************************************************************** * Copyright 2003-2004 Max Howell * Copyright 2008-2009 Martin Sandsmark * Copyright 2017 Harald Sitter * * 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 2 of * the License or (at your option) version 3 or any later version * accepted by the membership of KDE e.V. (or its successor approved * by the membership of KDE e.V.), which shall act as a proxy * defined in Section 14 of version 3 of the license. * * 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 . ***********************************************************************/ #ifndef FILETREE_H #define FILETREE_H #include //qstrdup #include //decodeName() #include #include #include #include #include "../../../interface/FacilityInterface.h" class Folder; class File { public: friend class Folder; static FacilityInterface *facilityEngine; public: File(const std::string &name, uint64_t size) : m_parent(nullptr), m_name(name), m_size(size) {} File(const std::string &name, uint64_t size, Folder * parent) : m_parent(parent), m_name(name), m_size(size) {} virtual ~File() { } Folder *parent() const { return m_parent; } /** Do not use for user visible strings. Use name instead. */ const std::string name() const { return m_name; } void setName(const std::string &name) { m_name=name; } /** Decoded name. Use when you need a QString. */ QString decodedName() const { return QString::fromStdString(m_name); } /** * Human readable name (including native separators where applicable). * Only use for display. */ QString displayName() const; uint64_t size() const { return m_size; } virtual bool isFolder() const { return false; } /** * Human readable path for display (including native separators where applicable. * Only use for display. */ QString displayPath(const Folder * = nullptr) const; QString humanReadableSize() const { return QString::fromStdString(facilityEngine->sizeToString(m_size)); } /** Builds a complete QUrl by walking up to root. */ QUrl url(const Folder *root = nullptr) const; protected: File(const char *name, uint64_t size, Folder *parent) : m_parent(parent), m_name(qstrdup(name)), m_size(size) {} Folder *m_parent; //0 if this is treeRoot std::string m_name;//speed boost with std::string in compare with char * due to string size defined without read all uint64_t m_size; //in Bytes private: File(const File&); void operator=(const File&); }; class Folder : public File { public: Folder(const std::string &name) : File(name, 0), m_children(0) {} //DON'T pass the full path! uint children() const { return m_children; } bool isFolder() const override { return true; } ///appends a Folder void append(Folder *d, const std::string &name); void append(Folder *d); ///appends a File void append(const std::string &name, uint64_t size); /// removes a file void remove(const File *f); std::unordered_map folders; std::vector onlyFiles; private: void append(File *p); uint m_children; private: Folder(const Folder&); //undefined void operator=(const Folder&); //undefined }; #endif