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

Unified Diff: include/AdblockPlus/DefaultFileSystem.h

Issue 29449592: Issue 5183 - Provide async interface for FileSystem (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: Created May 26, 2017, 12:43 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
« no previous file with comments | « no previous file | include/AdblockPlus/FileSystem.h » ('j') | include/AdblockPlus/FileSystem.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/AdblockPlus/DefaultFileSystem.h
===================================================================
--- a/include/AdblockPlus/DefaultFileSystem.h
+++ b/include/AdblockPlus/DefaultFileSystem.h
@@ -33,21 +33,34 @@
* system's file system.
* All paths are considered relative to the base path, or to the current
* working directory if no base path is set (see `SetBasePath()`).
*/
class DefaultFileSystem : public FileSystem
sergei 2017/05/26 13:32:04 I think that there should be a different class imp
{
public:
std::shared_ptr<std::istream> Read(const std::string& path) const;
+ void Read(const std::string& path,
+ const ReadCallback& callback) const;
void Write(const std::string& path, std::istream& data);
+ void Write(const std::string& path,
+ std::istream& data,
+ const Callback& callback);
void Move(const std::string& fromPath, const std::string& toPath);
+ void Move(const std::string& fromPath,
+ const std::string& toPath,
+ const Callback& callback);
void Remove(const std::string& path);
+ void Remove(const std::string& path, const Callback& callback);
StatResult Stat(const std::string& path) const;
+ void Stat(const std::string& path,
+ const StatCallback& callback) const;
std::string Resolve(const std::string& path) const;
+ void Resolve(const std::string& path,
+ const ResolveCallback& callback) const;
/**
* Sets the base path, all paths are considered relative to it.
* @param path Base path.
*/
void SetBasePath(const std::string& path);
protected:
« no previous file with comments | « no previous file | include/AdblockPlus/FileSystem.h » ('j') | include/AdblockPlus/FileSystem.h » ('J')

Powered by Google App Engine
This is Rietveld