blob: 5ace28f2cb9239776d43ec86b58e95fcb8d625e9 [file] [log] [blame]
Christopher Wiley4a2884b2015-10-07 11:27:45 -07001/*
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 Moreland9fccf582018-08-27 20:36:27 -070017#pragma once
Christopher Wiley4a2884b2015-10-07 11:27:45 -070018
Christopher Wiley4a2884b2015-10-07 11:27:45 -070019#include <memory>
20#include <string>
Christopher Wiley054afbd2015-10-16 17:08:43 -070021#include <vector>
22
23#include "code_writer.h"
Christopher Wileyef140932015-11-03 09:29:19 -080024#include "line_reader.h"
Christopher Wiley4a2884b2015-10-07 11:27:45 -070025
26namespace android {
27namespace aidl {
28
29class IoDelegate {
30 public:
31 IoDelegate() = default;
32 virtual ~IoDelegate() = default;
33
Jiyong Parkd800fef2020-07-22 18:09:43 +090034 IoDelegate(const IoDelegate&) = delete;
35 IoDelegate(IoDelegate&&) = delete;
36 IoDelegate& operator=(const IoDelegate&) = delete;
37 IoDelegate& operator=(IoDelegate&&) = delete;
38
Christopher Wiley8decf952016-06-02 16:27:26 -070039 // Stores an absolute version of |path| to |*absolute_path|,
40 // possibly prefixing it with the current working directory.
41 // Returns false and does not set |*absolute_path| on error.
42 static bool GetAbsolutePath(const std::string& path,
43 std::string* absolute_path);
44
Christopher Wiley4a2884b2015-10-07 11:27:45 -070045 // Returns a unique_ptr to the contents of |filename|.
46 // Will append the optional |content_suffix| to the returned contents.
47 virtual std::unique_ptr<std::string> GetFileContents(
48 const std::string& filename,
49 const std::string& content_suffix = "") const;
50
Christopher Wileyef140932015-11-03 09:29:19 -080051 virtual std::unique_ptr<LineReader> GetLineReader(
52 const std::string& file_path) const;
53
Christopher Wiley72877ac2015-10-06 14:41:42 -070054 virtual bool FileIsReadable(const std::string& path) const;
55
Christopher Wiley054afbd2015-10-16 17:08:43 -070056 virtual std::unique_ptr<CodeWriter> GetCodeWriter(
57 const std::string& file_path) const;
58
Christopher Wiley9d6e0b22015-11-13 12:18:16 -080059 virtual void RemovePath(const std::string& file_path) const;
60
Jiyong Parke59c3682018-09-11 23:10:25 +090061 virtual std::vector<std::string> ListFiles(const std::string& dir) const;
62
Christopher Wiley4a2884b2015-10-07 11:27:45 -070063 private:
Jiyong Park05463732018-08-09 16:03:02 +090064 // Create the directory when path is a dir or the parent directory when
65 // path is a file. Path is a dir if it ends with the path separator.
66 bool CreateDirForPath(const std::string& path) const;
Christopher Wiley4a2884b2015-10-07 11:27:45 -070067}; // class IoDelegate
68
Christopher Wiley4a2884b2015-10-07 11:27:45 -070069} // namespace aidl
Steven Morelandf4c64df2019-07-29 19:54:04 -070070} // namespace android