Christopher Wiley | 4a2884b | 2015-10-07 11:27:45 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015, The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Steven Moreland | 9fccf58 | 2018-08-27 20:36:27 -0700 | [diff] [blame] | 17 | #pragma once |
Christopher Wiley | 4a2884b | 2015-10-07 11:27:45 -0700 | [diff] [blame] | 18 | |
Elliott Hughes | 0a62067 | 2015-12-04 13:53:18 -0800 | [diff] [blame] | 19 | #include <android-base/macros.h> |
Christopher Wiley | 4a2884b | 2015-10-07 11:27:45 -0700 | [diff] [blame] | 20 | |
| 21 | #include <memory> |
| 22 | #include <string> |
Christopher Wiley | 054afbd | 2015-10-16 17:08:43 -0700 | [diff] [blame] | 23 | #include <vector> |
| 24 | |
| 25 | #include "code_writer.h" |
Christopher Wiley | ef14093 | 2015-11-03 09:29:19 -0800 | [diff] [blame] | 26 | #include "line_reader.h" |
Christopher Wiley | 4a2884b | 2015-10-07 11:27:45 -0700 | [diff] [blame] | 27 | |
| 28 | namespace android { |
| 29 | namespace aidl { |
| 30 | |
| 31 | class IoDelegate { |
| 32 | public: |
| 33 | IoDelegate() = default; |
| 34 | virtual ~IoDelegate() = default; |
| 35 | |
Christopher Wiley | 8decf95 | 2016-06-02 16:27:26 -0700 | [diff] [blame] | 36 | // Stores an absolute version of |path| to |*absolute_path|, |
| 37 | // possibly prefixing it with the current working directory. |
| 38 | // Returns false and does not set |*absolute_path| on error. |
| 39 | static bool GetAbsolutePath(const std::string& path, |
| 40 | std::string* absolute_path); |
| 41 | |
Christopher Wiley | 4a2884b | 2015-10-07 11:27:45 -0700 | [diff] [blame] | 42 | // Returns a unique_ptr to the contents of |filename|. |
| 43 | // Will append the optional |content_suffix| to the returned contents. |
| 44 | virtual std::unique_ptr<std::string> GetFileContents( |
| 45 | const std::string& filename, |
| 46 | const std::string& content_suffix = "") const; |
| 47 | |
Christopher Wiley | ef14093 | 2015-11-03 09:29:19 -0800 | [diff] [blame] | 48 | virtual std::unique_ptr<LineReader> GetLineReader( |
| 49 | const std::string& file_path) const; |
| 50 | |
Christopher Wiley | 72877ac | 2015-10-06 14:41:42 -0700 | [diff] [blame] | 51 | virtual bool FileIsReadable(const std::string& path) const; |
| 52 | |
Christopher Wiley | 054afbd | 2015-10-16 17:08:43 -0700 | [diff] [blame] | 53 | virtual std::unique_ptr<CodeWriter> GetCodeWriter( |
| 54 | const std::string& file_path) const; |
| 55 | |
Christopher Wiley | 9d6e0b2 | 2015-11-13 12:18:16 -0800 | [diff] [blame] | 56 | virtual void RemovePath(const std::string& file_path) const; |
| 57 | |
Jiyong Park | e59c368 | 2018-09-11 23:10:25 +0900 | [diff] [blame] | 58 | virtual std::vector<std::string> ListFiles(const std::string& dir) const; |
| 59 | |
Christopher Wiley | 4a2884b | 2015-10-07 11:27:45 -0700 | [diff] [blame] | 60 | private: |
Jiyong Park | 0546373 | 2018-08-09 16:03:02 +0900 | [diff] [blame] | 61 | // Create the directory when path is a dir or the parent directory when |
| 62 | // path is a file. Path is a dir if it ends with the path separator. |
| 63 | bool CreateDirForPath(const std::string& path) const; |
| 64 | |
Christopher Wiley | 4a2884b | 2015-10-07 11:27:45 -0700 | [diff] [blame] | 65 | DISALLOW_COPY_AND_ASSIGN(IoDelegate); |
| 66 | }; // class IoDelegate |
| 67 | |
Christopher Wiley | 4a2884b | 2015-10-07 11:27:45 -0700 | [diff] [blame] | 68 | } // namespace aidl |
Steven Moreland | f4c64df | 2019-07-29 19:54:04 -0700 | [diff] [blame] | 69 | } // namespace android |