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

Delta Between Two Patch Sets: include/AdblockPlus/DefaultFileSystem.h

Issue 5163715573841920: Issue 768 - Switch from TR1 to C++11 (Closed)
Left Patch Set: rebase Created Aug. 5, 2015, 10:38 a.m.
Right Patch Set: fix including of <memory> Created Aug. 7, 2015, 6:07 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « common.gypi ('k') | include/AdblockPlus/FileSystem.h » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2015 Eyeo GmbH 3 * Copyright (C) 2006-2015 Eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 20 matching lines...) Expand all
31 /** 31 /**
32 * `FileSystem` implementation that interacts directly with the operating 32 * `FileSystem` implementation that interacts directly with the operating
33 * system's file system. 33 * system's file system.
34 * All paths are considered relative to the base path, or to the current 34 * All paths are considered relative to the base path, or to the current
35 * working directory if no base path is set (see `SetBasePath()`). 35 * working directory if no base path is set (see `SetBasePath()`).
36 */ 36 */
37 class DefaultFileSystem : public FileSystem 37 class DefaultFileSystem : public FileSystem
38 { 38 {
39 public: 39 public:
40 std::shared_ptr<std::istream> Read(const std::string& path) const; 40 std::shared_ptr<std::istream> Read(const std::string& path) const;
41 void Write(const std::string& path, 41 void Write(const std::string& path, std::shared_ptr<std::istream> data);
42 std::shared_ptr<std::istream> data); 42 void Move(const std::string& fromPath, const std::string& toPath);
Felix Dahlke 2015/08/05 21:28:04 Nit: This was wrapped because it didn't fit in 80
sergei 2015/08/06 07:35:26 Fixed and the line below.
43 void Move(const std::string& fromPath,
44 const std::string& toPath);
45 void Remove(const std::string& path); 43 void Remove(const std::string& path);
46 StatResult Stat(const std::string& path) const; 44 StatResult Stat(const std::string& path) const;
47 std::string Resolve(const std::string& path) const; 45 std::string Resolve(const std::string& path) const;
48 46
49 /** 47 /**
50 * Sets the base path, all paths are considered relative to it. 48 * Sets the base path, all paths are considered relative to it.
51 * @param path Base path. 49 * @param path Base path.
52 */ 50 */
53 void SetBasePath(const std::string& path); 51 void SetBasePath(const std::string& path);
54 52
55 protected: 53 protected:
56 std::string basePath; 54 std::string basePath;
57 }; 55 };
58 } 56 }
59 57
60 #endif 58 #endif
LEFTRIGHT

Powered by Google App Engine
This is Rietveld