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

Unified Diff: include/AdblockPlus/FileSystem.h

Issue 29481704: Noissue - Use buffer for FileSystem IO (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: Nit addressed Created July 7, 2017, 12:50 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 | « include/AdblockPlus/DefaultFileSystem.h ('k') | src/DefaultFileSystem.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/AdblockPlus/FileSystem.h
===================================================================
--- a/include/AdblockPlus/FileSystem.h
+++ b/include/AdblockPlus/FileSystem.h
@@ -60,33 +60,34 @@
bool isFile;
/**
* POSIX time of the last modification.
*/
int64_t lastModified;
};
+ typedef std::vector<uint8_t> IOBuffer;
+
virtual ~FileSystem() {}
/**
* Reads from a file.
* @param path File path.
- * @return Input stream with the file's contents.
+ * @return Buffer with the file content.
*/
- virtual std::shared_ptr<std::istream>
- Read(const std::string& path) const = 0;
+ virtual IOBuffer Read(const std::string& path) const = 0;
/**
* Writes to a file.
* @param path File path.
- * @param data Input stream with the data to write.
+ * @param data Buffer with the data to write.
*/
virtual void Write(const std::string& path,
- std::istream& data) = 0;
+ const IOBuffer& data) = 0;
/**
* Moves a file (i.e.\ renames it).
* @param fromPath Current path to the file.
* @param toPath New path to the file.
*/
virtual void Move(const std::string& fromPath,
const std::string& toPath) = 0;
« no previous file with comments | « include/AdblockPlus/DefaultFileSystem.h ('k') | src/DefaultFileSystem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld