Dan Albert | aac6b7c | 2015-03-16 10:08:46 -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 | |
| 17 | #ifndef BASE_FILE_H |
| 18 | #define BASE_FILE_H |
| 19 | |
| 20 | #include <sys/stat.h> |
| 21 | #include <string> |
| 22 | |
| 23 | namespace android { |
| 24 | namespace base { |
| 25 | |
| 26 | bool ReadFdToString(int fd, std::string* content); |
| 27 | bool ReadFileToString(const std::string& path, std::string* content); |
| 28 | |
| 29 | bool WriteStringToFile(const std::string& content, const std::string& path); |
| 30 | bool WriteStringToFd(const std::string& content, int fd); |
| 31 | |
| 32 | #if !defined(_WIN32) |
| 33 | bool WriteStringToFile(const std::string& content, const std::string& path, |
| 34 | mode_t mode, uid_t owner, gid_t group); |
| 35 | #endif |
| 36 | |
Elliott Hughes | 20abc87 | 2015-04-24 21:57:16 -0700 | [diff] [blame] | 37 | bool ReadFully(int fd, void* data, size_t byte_count); |
| 38 | bool WriteFully(int fd, const void* data, size_t byte_count); |
| 39 | |
Dan Albert | aac6b7c | 2015-03-16 10:08:46 -0700 | [diff] [blame] | 40 | } // namespace base |
| 41 | } // namespace android |
| 42 | |
| 43 | #endif // BASE_FILE_H |