Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: include/AdblockPlus/FileSystem.h

Issue 10296001: Implement File API (Closed)
Patch Set: Don't pass a blog to _fileSystem.write Created April 12, 2013, 12:10 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: include/AdblockPlus/FileSystem.h
===================================================================
rename from include/AdblockPlus/FileReader.h
rename to include/AdblockPlus/FileSystem.h
--- a/include/AdblockPlus/FileReader.h
+++ b/include/AdblockPlus/FileSystem.h
@@ -1,5 +1,5 @@
-#ifndef ADBLOCKPLUS_FILE_READER_H
-#define ADBLOCKPLUS_FILE_READER_H
+#ifndef ADBLOCKPLUS_FILE_SYSTEM_H
+#define ADBLOCKPLUS_FILE_SYSTEM_H
#include <istream>
#include <string>
@@ -7,11 +7,24 @@
namespace AdblockPlus
{
- class FileReader
+ class FileSystem
{
public:
- virtual ~FileReader();
+ struct StatResult
+ {
+ bool exists;
+ bool isDirectory;
+ bool isFile;
+ int lastModified;
+ };
+
+ virtual ~FileSystem() {}
virtual std::auto_ptr<std::istream> Read(const std::string& path) const = 0;
Wladimir Palant 2013/04/12 16:10:35 I guess the reason for not returning std::string h
Felix Dahlke 2013/04/15 03:43:34 It's probably not really needed, as the whole stri
+ virtual void Write(const std::string& path, const std::string& content) = 0;
+ virtual void Move(const std::string& fromPath,
+ const std::string& toPath) = 0;
+ virtual void Remove(const std::string& path) = 0;
+ virtual StatResult Stat(const std::string& path) const = 0;
};
}

Powered by Google App Engine
This is Rietveld