blob: 5b22a65c4a8f725a82ae5e5ef70650a5357c88aa [file] [log] [blame]
Dan Albertaac6b7c2015-03-16 10:08:46 -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
Elliott Hughesf5224432016-03-23 15:04:52 -070017#ifndef ANDROID_BASE_FILE_H
18#define ANDROID_BASE_FILE_H
Dan Albertaac6b7c2015-03-16 10:08:46 -070019
20#include <sys/stat.h>
21#include <string>
22
Yabin Cui5b3be172016-02-08 16:26:33 -080023#if !defined(_WIN32) && !defined(O_BINARY)
24#define O_BINARY 0
25#endif
26
Dan Albertaac6b7c2015-03-16 10:08:46 -070027namespace android {
28namespace base {
29
30bool ReadFdToString(int fd, std::string* content);
31bool ReadFileToString(const std::string& path, std::string* content);
32
33bool WriteStringToFile(const std::string& content, const std::string& path);
34bool WriteStringToFd(const std::string& content, int fd);
35
36#if !defined(_WIN32)
37bool WriteStringToFile(const std::string& content, const std::string& path,
38 mode_t mode, uid_t owner, gid_t group);
39#endif
40
Elliott Hughes20abc872015-04-24 21:57:16 -070041bool ReadFully(int fd, void* data, size_t byte_count);
42bool WriteFully(int fd, const void* data, size_t byte_count);
43
Yabin Cui8f6a5a02016-01-29 17:25:54 -080044bool RemoveFileIfExists(const std::string& path, std::string* err = nullptr);
45
Elliott Hughesa634a9a2016-08-23 15:53:45 -070046#if !defined(_WIN32)
47bool Readlink(const std::string& path, std::string* result);
48#endif
49
Elliott Hughes48f0eb52016-08-31 15:07:18 -070050std::string GetExecutablePath();
51
Dan Albertaac6b7c2015-03-16 10:08:46 -070052} // namespace base
53} // namespace android
54
Elliott Hughesf5224432016-03-23 15:04:52 -070055#endif // ANDROID_BASE_FILE_H