blob: d896ee9ecb6bc5e42096fecf2fce91b8c59aeb53 [file] [log] [blame]
Elliott Hughes76160052012-12-12 16:31:20 -08001/*
2 * Copyright (C) 2009 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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_BASE_UNIX_FILE_FD_FILE_H_
18#define ART_RUNTIME_BASE_UNIX_FILE_FD_FILE_H_
Elliott Hughes76160052012-12-12 16:31:20 -080019
20#include <fcntl.h>
Andreas Gampedf878922015-08-13 16:44:54 -070021
Elliott Hughes76160052012-12-12 16:31:20 -080022#include <string>
Andreas Gampedf878922015-08-13 16:44:54 -070023
Elliott Hughes76160052012-12-12 16:31:20 -080024#include "base/unix_file/random_access_file.h"
25#include "base/macros.h"
26
27namespace unix_file {
28
Andreas Gampe4303ba92014-11-06 01:00:46 -080029// If true, check whether Flush and Close are called before destruction.
30static constexpr bool kCheckSafeUsage = true;
31
Elliott Hughes76160052012-12-12 16:31:20 -080032// A RandomAccessFile implementation backed by a file descriptor.
33//
34// Not thread safe.
35class FdFile : public RandomAccessFile {
36 public:
37 FdFile();
38 // Creates an FdFile using the given file descriptor. Takes ownership of the
39 // file descriptor. (Use DisableAutoClose to retain ownership.)
Roland Levillain3887c462015-08-12 18:15:42 +010040 FdFile(int fd, bool checkUsage);
41 FdFile(int fd, const std::string& path, bool checkUsage);
Calin Juravle2e2db782016-02-23 12:00:03 +000042 FdFile(int fd, const std::string& path, bool checkUsage, bool read_only_mode);
Elliott Hughes76160052012-12-12 16:31:20 -080043
Andreas Gampedf878922015-08-13 16:44:54 -070044 FdFile(const std::string& path, int flags, bool checkUsage)
45 : FdFile(path, flags, 0640, checkUsage) {}
46 FdFile(const std::string& path, int flags, mode_t mode, bool checkUsage);
47
48 // Move constructor.
49 FdFile(FdFile&& other)
50 : guard_state_(other.guard_state_),
51 fd_(other.fd_),
52 file_path_(std::move(other.file_path_)),
53 auto_close_(other.auto_close_),
54 read_only_mode_(other.read_only_mode_) {
55 other.Release(); // Release the src.
56 }
57
58 // Move assignment operator.
59 FdFile& operator=(FdFile&& other);
60
61 // Release the file descriptor. This will make further accesses to this FdFile invalid. Disables
62 // all further state checking.
63 int Release() {
64 int tmp_fd = fd_;
65 fd_ = -1;
66 guard_state_ = GuardState::kNoCheck;
67 auto_close_ = false;
68 return tmp_fd;
69 }
70
71 void Reset(int fd, bool check_usage) {
72 if (fd_ != -1 && fd_ != fd) {
73 Destroy();
74 }
75 fd_ = fd;
76 if (check_usage) {
77 guard_state_ = fd == -1 ? GuardState::kNoCheck : GuardState::kBase;
78 } else {
79 guard_state_ = GuardState::kNoCheck;
80 }
81 // Keep the auto_close_ state.
82 }
83
Elliott Hughes76160052012-12-12 16:31:20 -080084 // Destroys an FdFile, closing the file descriptor if Close hasn't already
85 // been called. (If you care about the return value of Close, call it
86 // yourself; this is meant to handle failure cases and read-only accesses.
87 // Note though that calling Close and checking its return value is still no
88 // guarantee that data actually made it to stable storage.)
89 virtual ~FdFile();
90
Elliott Hughes76160052012-12-12 16:31:20 -080091 // RandomAccessFile API.
Vladimir Marko5096e662015-12-08 19:25:49 +000092 int Close() OVERRIDE WARN_UNUSED;
93 int64_t Read(char* buf, int64_t byte_count, int64_t offset) const OVERRIDE WARN_UNUSED;
94 int SetLength(int64_t new_length) OVERRIDE WARN_UNUSED;
95 int64_t GetLength() const OVERRIDE;
96 int64_t Write(const char* buf, int64_t byte_count, int64_t offset) OVERRIDE WARN_UNUSED;
97 int Flush() OVERRIDE WARN_UNUSED;
Andreas Gampe4303ba92014-11-06 01:00:46 -080098
99 // Short for SetLength(0); Flush(); Close();
100 void Erase();
101
102 // Try to Flush(), then try to Close(); If either fails, call Erase().
103 int FlushCloseOrErase() WARN_UNUSED;
104
105 // Try to Flush and Close(). Attempts both, but returns the first error.
106 int FlushClose() WARN_UNUSED;
Elliott Hughes76160052012-12-12 16:31:20 -0800107
108 // Bonus API.
109 int Fd() const;
Calin Juravle2e2db782016-02-23 12:00:03 +0000110 bool ReadOnlyMode() const;
111 bool CheckUsage() const;
Elliott Hughes76160052012-12-12 16:31:20 -0800112 bool IsOpened() const;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700113 const std::string& GetPath() const {
114 return file_path_;
115 }
Elliott Hughes76160052012-12-12 16:31:20 -0800116 void DisableAutoClose();
Andreas Gampe4303ba92014-11-06 01:00:46 -0800117 bool ReadFully(void* buffer, size_t byte_count) WARN_UNUSED;
Igor Murashkin37743352014-11-13 14:38:00 -0800118 bool PreadFully(void* buffer, size_t byte_count, size_t offset) WARN_UNUSED;
Andreas Gampe4303ba92014-11-06 01:00:46 -0800119 bool WriteFully(const void* buffer, size_t byte_count) WARN_UNUSED;
Mathieu Chartier6f6b1342016-03-09 11:14:50 -0800120 bool PwriteFully(const void* buffer, size_t byte_count, size_t offset) WARN_UNUSED;
Andreas Gampe4303ba92014-11-06 01:00:46 -0800121
Vladimir Marko5096e662015-12-08 19:25:49 +0000122 // Copy data from another file.
123 bool Copy(FdFile* input_file, int64_t offset, int64_t size);
Calin Juravle877fd962016-01-05 14:29:29 +0000124 // Clears the file content and resets the file offset to 0.
125 // Returns true upon success, false otherwise.
126 bool ClearContent();
127 // Resets the file offset to the beginning of the file.
128 bool ResetOffset();
Vladimir Marko5096e662015-12-08 19:25:49 +0000129
Andreas Gampe4303ba92014-11-06 01:00:46 -0800130 // This enum is public so that we can define the << operator over it.
131 enum class GuardState {
132 kBase, // Base, file has not been flushed or closed.
133 kFlushed, // File has been flushed, but not closed.
134 kClosed, // File has been flushed and closed.
135 kNoCheck // Do not check for the current file instance.
136 };
137
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800138 // WARNING: Only use this when you know what you're doing!
139 void MarkUnchecked();
140
Andreas Gampe4303ba92014-11-06 01:00:46 -0800141 protected:
142 // If the guard state indicates checking (!=kNoCheck), go to the target state "target". Print the
143 // given warning if the current state is or exceeds warn_threshold.
144 void moveTo(GuardState target, GuardState warn_threshold, const char* warning);
145
146 // If the guard state indicates checking (<kNoCheck), and is below the target state "target", go
147 // to "target." If the current state is higher (excluding kNoCheck) than the trg state, print the
148 // warning.
149 void moveUp(GuardState target, const char* warning);
150
151 // Forcefully sets the state to the given one. This can overwrite kNoCheck.
152 void resetGuard(GuardState new_state) {
153 if (kCheckSafeUsage) {
154 guard_state_ = new_state;
155 }
156 }
157
158 GuardState guard_state_;
Elliott Hughes76160052012-12-12 16:31:20 -0800159
Andreas Gampedf878922015-08-13 16:44:54 -0700160 // Opens file 'file_path' using 'flags' and 'mode'.
161 bool Open(const std::string& file_path, int flags);
162 bool Open(const std::string& file_path, int flags, mode_t mode);
163
Elliott Hughes76160052012-12-12 16:31:20 -0800164 private:
Mathieu Chartier6f6b1342016-03-09 11:14:50 -0800165 template <bool kUseOffset>
166 bool WriteFullyGeneric(const void* buffer, size_t byte_count, size_t offset);
167
Andreas Gampedf878922015-08-13 16:44:54 -0700168 void Destroy(); // For ~FdFile and operator=(&&).
169
Elliott Hughes76160052012-12-12 16:31:20 -0800170 int fd_;
171 std::string file_path_;
172 bool auto_close_;
Calin Juravle2e2db782016-02-23 12:00:03 +0000173 bool read_only_mode_;
Elliott Hughes76160052012-12-12 16:31:20 -0800174
175 DISALLOW_COPY_AND_ASSIGN(FdFile);
176};
177
Andreas Gampe4303ba92014-11-06 01:00:46 -0800178std::ostream& operator<<(std::ostream& os, const FdFile::GuardState& kind);
179
Elliott Hughes76160052012-12-12 16:31:20 -0800180} // namespace unix_file
181
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700182#endif // ART_RUNTIME_BASE_UNIX_FILE_FD_FILE_H_