aseprite/src/app/file_system.h

99 lines
2.4 KiB
C
Raw Normal View History

/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* 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) 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef APP_FILE_SYSTEM_H_INCLUDED
#define APP_FILE_SYSTEM_H_INCLUDED
2014-03-29 22:40:17 +00:00
#pragma once
#include "base/mutex.h"
#include <string>
#include <vector>
struct BITMAP;
namespace app {
class IFileItem;
typedef std::vector<IFileItem*> FileItemList;
class FileSystemModule {
static FileSystemModule* m_instance;
public:
FileSystemModule();
~FileSystemModule();
static FileSystemModule* instance();
// Marks all FileItems as deprecated to be refresh the next time
// they are queried through @ref FileItem::getChildren().
void refresh();
IFileItem* getRootFileItem();
// Returns the FileItem through the specified "path".
// Warning: You have to call path.fix_separators() before.
IFileItem* getFileItemFromPath(const std::string& path);
bool dirExists(const std::string& path);
void lock() { m_mutex.lock(); }
void unlock() { m_mutex.unlock(); }
private:
base::mutex m_mutex;
};
class LockFS {
public:
LockFS(FileSystemModule* fs) : m_fs(fs) {
m_fs->lock();
}
~LockFS() {
m_fs->unlock();
}
private:
FileSystemModule* m_fs;
};
class IFileItem {
public:
virtual ~IFileItem() { }
virtual bool isFolder() const = 0;
virtual bool isBrowsable() const = 0;
virtual std::string getKeyName() const = 0;
virtual std::string getFileName() const = 0;
virtual std::string getDisplayName() const = 0;
virtual IFileItem* getParent() const = 0;
virtual const FileItemList& getChildren() = 0;
virtual bool hasExtension(const std::string& csv_extensions) = 0;
virtual BITMAP* getThumbnail() = 0;
virtual void setThumbnail(BITMAP* thumbnail) = 0;
};
} // namespace app
#endif