| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/platform_file.h" | 5 #include "base/files/base_file.h" |
| 6 | 6 |
| 7 #include <io.h> | 7 #include <io.h> |
| 8 | 8 |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/metrics/sparse_histogram.h" | 11 #include "base/metrics/sparse_histogram.h" |
| 12 #include "base/threading/thread_restrictions.h" | 12 #include "base/threading/thread_restrictions.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 PlatformFile CreatePlatformFileUnsafe(const FilePath& name, | 15 |
| 16 int flags, | 16 BaseFileError ErrorToBaseFileError(DWORD last_error) { |
| 17 bool* created, | 17 switch (last_error) { |
| 18 PlatformFileError* error) { | 18 case ERROR_SHARING_VIOLATION: |
| 19 return BASE_FILE_ERROR_IN_USE; |
| 20 case ERROR_FILE_EXISTS: |
| 21 return BASE_FILE_ERROR_EXISTS; |
| 22 case ERROR_FILE_NOT_FOUND: |
| 23 case ERROR_PATH_NOT_FOUND: |
| 24 return BASE_FILE_ERROR_NOT_FOUND; |
| 25 case ERROR_ACCESS_DENIED: |
| 26 return BASE_FILE_ERROR_ACCESS_DENIED; |
| 27 case ERROR_TOO_MANY_OPEN_FILES: |
| 28 return BASE_FILE_ERROR_TOO_MANY_OPENED; |
| 29 case ERROR_OUTOFMEMORY: |
| 30 case ERROR_NOT_ENOUGH_MEMORY: |
| 31 return BASE_FILE_ERROR_NO_MEMORY; |
| 32 case ERROR_HANDLE_DISK_FULL: |
| 33 case ERROR_DISK_FULL: |
| 34 case ERROR_DISK_RESOURCES_EXHAUSTED: |
| 35 return BASE_FILE_ERROR_NO_SPACE; |
| 36 case ERROR_USER_MAPPED_FILE: |
| 37 return BASE_FILE_ERROR_INVALID_OPERATION; |
| 38 case ERROR_NOT_READY: |
| 39 case ERROR_SECTOR_NOT_FOUND: |
| 40 case ERROR_DEV_NOT_EXIST: |
| 41 case ERROR_IO_DEVICE: |
| 42 case ERROR_FILE_CORRUPT: |
| 43 case ERROR_DISK_CORRUPT: |
| 44 return BASE_FILE_ERROR_IO; |
| 45 default: |
| 46 UMA_HISTOGRAM_SPARSE_SLOWLY("PlatformFile.UnknownErrors.Windows", |
| 47 last_error); |
| 48 return BASE_FILE_ERROR_FAILED; |
| 49 } |
| 50 } |
| 51 |
| 52 void BaseFile::CreateBaseFileUnsafe(const FilePath& name, int flags) { |
| 19 base::ThreadRestrictions::AssertIOAllowed(); | 53 base::ThreadRestrictions::AssertIOAllowed(); |
| 54 DCHECK(!IsValid()); |
| 20 | 55 |
| 21 DWORD disposition = 0; | 56 DWORD disposition = 0; |
| 22 if (created) | |
| 23 *created = false; | |
| 24 | 57 |
| 25 if (flags & PLATFORM_FILE_OPEN) | 58 if (flags & BASE_FILE_OPEN) |
| 26 disposition = OPEN_EXISTING; | 59 disposition = OPEN_EXISTING; |
| 27 | 60 |
| 28 if (flags & PLATFORM_FILE_CREATE) { | 61 if (flags & BASE_FILE_CREATE) { |
| 29 DCHECK(!disposition); | 62 DCHECK(!disposition); |
| 30 disposition = CREATE_NEW; | 63 disposition = CREATE_NEW; |
| 31 } | 64 } |
| 32 | 65 |
| 33 if (flags & PLATFORM_FILE_OPEN_ALWAYS) { | 66 if (flags & BASE_FILE_OPEN_ALWAYS) { |
| 34 DCHECK(!disposition); | 67 DCHECK(!disposition); |
| 35 disposition = OPEN_ALWAYS; | 68 disposition = OPEN_ALWAYS; |
| 36 } | 69 } |
| 37 | 70 |
| 38 if (flags & PLATFORM_FILE_CREATE_ALWAYS) { | 71 if (flags & BASE_FILE_CREATE_ALWAYS) { |
| 39 DCHECK(!disposition); | 72 DCHECK(!disposition); |
| 40 disposition = CREATE_ALWAYS; | 73 disposition = CREATE_ALWAYS; |
| 41 } | 74 } |
| 42 | 75 |
| 43 if (flags & PLATFORM_FILE_OPEN_TRUNCATED) { | 76 if (flags & BASE_FILE_OPEN_TRUNCATED) { |
| 44 DCHECK(!disposition); | 77 DCHECK(!disposition); |
| 45 DCHECK(flags & PLATFORM_FILE_WRITE); | 78 DCHECK(flags & BASE_FILE_WRITE); |
| 46 disposition = TRUNCATE_EXISTING; | 79 disposition = TRUNCATE_EXISTING; |
| 47 } | 80 } |
| 48 | 81 |
| 49 if (!disposition) { | 82 if (!disposition) { |
| 50 NOTREACHED(); | 83 NOTREACHED(); |
| 51 return NULL; | 84 return; |
| 52 } | 85 } |
| 53 | 86 |
| 54 DWORD access = 0; | 87 DWORD access = 0; |
| 55 if (flags & PLATFORM_FILE_WRITE) | 88 if (flags & BASE_FILE_WRITE) |
| 56 access = GENERIC_WRITE; | 89 access = GENERIC_WRITE; |
| 57 if (flags & PLATFORM_FILE_APPEND) { | 90 if (flags & BASE_FILE_APPEND) { |
| 58 DCHECK(!access); | 91 DCHECK(!access); |
| 59 access = FILE_APPEND_DATA; | 92 access = FILE_APPEND_DATA; |
| 60 } | 93 } |
| 61 if (flags & PLATFORM_FILE_READ) | 94 if (flags & BASE_FILE_READ) |
| 62 access |= GENERIC_READ; | 95 access |= GENERIC_READ; |
| 63 if (flags & PLATFORM_FILE_WRITE_ATTRIBUTES) | 96 if (flags & BASE_FILE_WRITE_ATTRIBUTES) |
| 64 access |= FILE_WRITE_ATTRIBUTES; | 97 access |= FILE_WRITE_ATTRIBUTES; |
| 65 if (flags & PLATFORM_FILE_EXECUTE) | 98 if (flags & BASE_FILE_EXECUTE) |
| 66 access |= GENERIC_EXECUTE; | 99 access |= GENERIC_EXECUTE; |
| 67 | 100 |
| 68 DWORD sharing = (flags & PLATFORM_FILE_EXCLUSIVE_READ) ? 0 : FILE_SHARE_READ; | 101 DWORD sharing = (flags & BASE_FILE_EXCLUSIVE_READ) ? 0 : FILE_SHARE_READ; |
| 69 if (!(flags & PLATFORM_FILE_EXCLUSIVE_WRITE)) | 102 if (!(flags & BASE_FILE_EXCLUSIVE_WRITE)) |
| 70 sharing |= FILE_SHARE_WRITE; | 103 sharing |= FILE_SHARE_WRITE; |
| 71 if (flags & PLATFORM_FILE_SHARE_DELETE) | 104 if (flags & BASE_FILE_SHARE_DELETE) |
| 72 sharing |= FILE_SHARE_DELETE; | 105 sharing |= FILE_SHARE_DELETE; |
| 73 | 106 |
| 74 DWORD create_flags = 0; | 107 DWORD create_flags = 0; |
| 75 if (flags & PLATFORM_FILE_ASYNC) | 108 if (flags & BASE_FILE_ASYNC) |
| 76 create_flags |= FILE_FLAG_OVERLAPPED; | 109 create_flags |= FILE_FLAG_OVERLAPPED; |
| 77 if (flags & PLATFORM_FILE_TEMPORARY) | 110 if (flags & BASE_FILE_TEMPORARY) |
| 78 create_flags |= FILE_ATTRIBUTE_TEMPORARY; | 111 create_flags |= FILE_ATTRIBUTE_TEMPORARY; |
| 79 if (flags & PLATFORM_FILE_HIDDEN) | 112 if (flags & BASE_FILE_HIDDEN) |
| 80 create_flags |= FILE_ATTRIBUTE_HIDDEN; | 113 create_flags |= FILE_ATTRIBUTE_HIDDEN; |
| 81 if (flags & PLATFORM_FILE_DELETE_ON_CLOSE) | 114 if (flags & BASE_FILE_DELETE_ON_CLOSE) |
| 82 create_flags |= FILE_FLAG_DELETE_ON_CLOSE; | 115 create_flags |= FILE_FLAG_DELETE_ON_CLOSE; |
| 83 if (flags & PLATFORM_FILE_BACKUP_SEMANTICS) | 116 if (flags & BASE_FILE_BACKUP_SEMANTICS) |
| 84 create_flags |= FILE_FLAG_BACKUP_SEMANTICS; | 117 create_flags |= FILE_FLAG_BACKUP_SEMANTICS; |
| 85 | 118 |
| 86 HANDLE file = CreateFile(name.value().c_str(), access, sharing, NULL, | 119 file_.Set(CreateFile(name.value().c_str(), access, sharing, NULL, |
| 87 disposition, create_flags, NULL); | 120 disposition, create_flags, NULL)); |
| 88 | 121 |
| 89 if (created && (INVALID_HANDLE_VALUE != file)) { | 122 if (file_.IsValid()) { |
| 90 if (flags & (PLATFORM_FILE_OPEN_ALWAYS)) | 123 error_ = BASE_FILE_OK; |
| 91 *created = (ERROR_ALREADY_EXISTS != GetLastError()); | 124 async_ = ((flags & BASE_FILE_ASYNC) == BASE_FILE_ASYNC); |
| 92 else if (flags & (PLATFORM_FILE_CREATE_ALWAYS | PLATFORM_FILE_CREATE)) | 125 |
| 93 *created = true; | 126 if (flags & (BASE_FILE_OPEN_ALWAYS)) |
| 127 created_ = (ERROR_ALREADY_EXISTS != GetLastError()); |
| 128 else if (flags & (BASE_FILE_CREATE_ALWAYS | BASE_FILE_CREATE)) |
| 129 created_ = true; |
| 130 } else { |
| 131 error_ = ErrorToBaseFileError(GetLastError()); |
| 94 } | 132 } |
| 95 | |
| 96 if (error) { | |
| 97 if (file != kInvalidPlatformFileValue) | |
| 98 *error = PLATFORM_FILE_OK; | |
| 99 else | |
| 100 *error = LastErrorToPlatformFileError(GetLastError()); | |
| 101 } | |
| 102 | |
| 103 return file; | |
| 104 } | 133 } |
| 105 | 134 |
| 106 FILE* FdopenPlatformFile(PlatformFile file, const char* mode) { | 135 bool BaseFile::IsValid() const { |
| 107 if (file == kInvalidPlatformFileValue) | 136 return file_.IsValid(); |
| 108 return NULL; | 137 } |
| 109 int fd = _open_osfhandle(reinterpret_cast<intptr_t>(file), 0); | 138 PlatformFile BaseFile::TakePlatformFile() { |
| 110 if (fd < 0) | 139 return file_.Take(); |
| 111 return NULL; | |
| 112 return _fdopen(fd, mode); | |
| 113 } | 140 } |
| 114 | 141 |
| 115 bool ClosePlatformFile(PlatformFile file) { | 142 void BaseFile::Close() { |
| 116 base::ThreadRestrictions::AssertIOAllowed(); | 143 base::ThreadRestrictions::AssertIOAllowed(); |
| 117 return (CloseHandle(file) != 0); | 144 file_.Close(); |
| 118 } | 145 } |
| 119 | 146 |
| 120 int64 SeekPlatformFile(PlatformFile file, | 147 int64 BaseFile::Seek(BaseFileWhence whence, int64 offset) { |
| 121 PlatformFileWhence whence, | |
| 122 int64 offset) { | |
| 123 base::ThreadRestrictions::AssertIOAllowed(); | 148 base::ThreadRestrictions::AssertIOAllowed(); |
| 124 if (file == kInvalidPlatformFileValue || offset < 0) | 149 DCHECK(IsValid()); |
| 150 if (offset < 0) |
| 125 return -1; | 151 return -1; |
| 126 | 152 |
| 127 LARGE_INTEGER distance, res; | 153 LARGE_INTEGER distance, res; |
| 128 distance.QuadPart = offset; | 154 distance.QuadPart = offset; |
| 129 DWORD move_method = static_cast<DWORD>(whence); | 155 DWORD move_method = static_cast<DWORD>(whence); |
| 130 if (!SetFilePointerEx(file, distance, &res, move_method)) | 156 if (!SetFilePointerEx(file_, distance, &res, move_method)) |
| 131 return -1; | 157 return -1; |
| 132 return res.QuadPart; | 158 return res.QuadPart; |
| 133 } | 159 } |
| 134 | 160 |
| 135 int ReadPlatformFile(PlatformFile file, int64 offset, char* data, int size) { | 161 int BaseFile::Read(int64 offset, char* data, int size) { |
| 136 base::ThreadRestrictions::AssertIOAllowed(); | 162 base::ThreadRestrictions::AssertIOAllowed(); |
| 137 if (file == kInvalidPlatformFileValue || size < 0) | 163 DCHECK(IsValid()); |
| 164 DCHECK(!async_); |
| 165 if (size < 0) |
| 138 return -1; | 166 return -1; |
| 139 | 167 |
| 140 LARGE_INTEGER offset_li; | 168 LARGE_INTEGER offset_li; |
| 141 offset_li.QuadPart = offset; | 169 offset_li.QuadPart = offset; |
| 142 | 170 |
| 143 OVERLAPPED overlapped = {0}; | 171 OVERLAPPED overlapped = {0}; |
| 144 overlapped.Offset = offset_li.LowPart; | 172 overlapped.Offset = offset_li.LowPart; |
| 145 overlapped.OffsetHigh = offset_li.HighPart; | 173 overlapped.OffsetHigh = offset_li.HighPart; |
| 146 | 174 |
| 147 DWORD bytes_read; | 175 DWORD bytes_read; |
| 148 if (::ReadFile(file, data, size, &bytes_read, &overlapped) != 0) | 176 if (::ReadFile(file_, data, size, &bytes_read, &overlapped) != 0) |
| 149 return bytes_read; | 177 return bytes_read; |
| 150 if (ERROR_HANDLE_EOF == GetLastError()) | 178 if (ERROR_HANDLE_EOF == GetLastError()) |
| 151 return 0; | 179 return 0; |
| 152 | 180 |
| 153 return -1; | 181 return -1; |
| 154 } | 182 } |
| 155 | 183 |
| 156 int ReadPlatformFileAtCurrentPos(PlatformFile file, char* data, int size) { | 184 int BaseFile::ReadAtCurrentPos(char* data, int size) { |
| 157 base::ThreadRestrictions::AssertIOAllowed(); | 185 base::ThreadRestrictions::AssertIOAllowed(); |
| 158 if (file == kInvalidPlatformFileValue || size < 0) | 186 DCHECK(IsValid()); |
| 187 DCHECK(!async_); |
| 188 if (size < 0) |
| 159 return -1; | 189 return -1; |
| 160 | 190 |
| 161 DWORD bytes_read; | 191 DWORD bytes_read; |
| 162 if (::ReadFile(file, data, size, &bytes_read, NULL) != 0) | 192 if (::ReadFile(file_, data, size, &bytes_read, NULL) != 0) |
| 163 return bytes_read; | 193 return bytes_read; |
| 164 if (ERROR_HANDLE_EOF == GetLastError()) | 194 if (ERROR_HANDLE_EOF == GetLastError()) |
| 165 return 0; | 195 return 0; |
| 166 | 196 |
| 167 return -1; | 197 return -1; |
| 168 } | 198 } |
| 169 | 199 |
| 170 int ReadPlatformFileNoBestEffort(PlatformFile file, int64 offset, char* data, | 200 int BaseFile::ReadNoBestEffort(int64 offset, char* data, int size) { |
| 171 int size) { | 201 return Read(offset, data, size); |
| 172 return ReadPlatformFile(file, offset, data, size); | |
| 173 } | 202 } |
| 174 | 203 |
| 175 int ReadPlatformFileCurPosNoBestEffort(PlatformFile file, | 204 int BaseFile::ReadAtCurrentPosNoBestEffort(char* data, int size) { |
| 176 char* data, int size) { | 205 return ReadAtCurrentPos(data, size); |
| 177 return ReadPlatformFileAtCurrentPos(file, data, size); | |
| 178 } | 206 } |
| 179 | 207 |
| 180 int WritePlatformFile(PlatformFile file, int64 offset, | 208 int BaseFile::Write(int64 offset, const char* data, int size) { |
| 181 const char* data, int size) { | |
| 182 base::ThreadRestrictions::AssertIOAllowed(); | 209 base::ThreadRestrictions::AssertIOAllowed(); |
| 183 if (file == kInvalidPlatformFileValue) | 210 DCHECK(IsValid()); |
| 184 return -1; | 211 DCHECK(!async_); |
| 185 | 212 |
| 186 LARGE_INTEGER offset_li; | 213 LARGE_INTEGER offset_li; |
| 187 offset_li.QuadPart = offset; | 214 offset_li.QuadPart = offset; |
| 188 | 215 |
| 189 OVERLAPPED overlapped = {0}; | 216 OVERLAPPED overlapped = {0}; |
| 190 overlapped.Offset = offset_li.LowPart; | 217 overlapped.Offset = offset_li.LowPart; |
| 191 overlapped.OffsetHigh = offset_li.HighPart; | 218 overlapped.OffsetHigh = offset_li.HighPart; |
| 192 | 219 |
| 193 DWORD bytes_written; | 220 DWORD bytes_written; |
| 194 if (::WriteFile(file, data, size, &bytes_written, &overlapped) != 0) | 221 if (::WriteFile(file_, data, size, &bytes_written, &overlapped) != 0) |
| 195 return bytes_written; | 222 return bytes_written; |
| 196 | 223 |
| 197 return -1; | 224 return -1; |
| 198 } | 225 } |
| 199 | 226 |
| 200 int WritePlatformFileAtCurrentPos(PlatformFile file, const char* data, | 227 int BaseFile::WriteAtCurrentPos(const char* data, int size) { |
| 201 int size) { | 228 NOTREACHED(); |
| 202 return WritePlatformFile(file, 0, data, size); | 229 return -1; |
| 203 } | 230 } |
| 204 | 231 |
| 205 int WritePlatformFileCurPosNoBestEffort(PlatformFile file, | 232 int BaseFile::WriteAtCurrentPosNoBestEffort(const char* data, int size) { |
| 206 const char* data, int size) { | 233 return WriteAtCurrentPos(data, size); |
| 207 return WritePlatformFile(file, 0, data, size); | |
| 208 } | 234 } |
| 209 | 235 |
| 210 bool TruncatePlatformFile(PlatformFile file, int64 length) { | 236 bool BaseFile::Truncate(int64 length) { |
| 211 base::ThreadRestrictions::AssertIOAllowed(); | 237 base::ThreadRestrictions::AssertIOAllowed(); |
| 212 if (file == kInvalidPlatformFileValue) | 238 DCHECK(IsValid()); |
| 213 return false; | |
| 214 | 239 |
| 215 // Get the current file pointer. | 240 // Get the current file pointer. |
| 216 LARGE_INTEGER file_pointer; | 241 LARGE_INTEGER file_pointer; |
| 217 LARGE_INTEGER zero; | 242 LARGE_INTEGER zero; |
| 218 zero.QuadPart = 0; | 243 zero.QuadPart = 0; |
| 219 if (::SetFilePointerEx(file, zero, &file_pointer, FILE_CURRENT) == 0) | 244 if (::SetFilePointerEx(file_, zero, &file_pointer, FILE_CURRENT) == 0) |
| 220 return false; | 245 return false; |
| 221 | 246 |
| 222 LARGE_INTEGER length_li; | 247 LARGE_INTEGER length_li; |
| 223 length_li.QuadPart = length; | 248 length_li.QuadPart = length; |
| 224 // If length > file size, SetFilePointerEx() should extend the file | 249 // If length > file size, SetFilePointerEx() should extend the file |
| 225 // with zeroes on all Windows standard file systems (NTFS, FATxx). | 250 // with zeroes on all Windows standard file systems (NTFS, FATxx). |
| 226 if (!::SetFilePointerEx(file, length_li, NULL, FILE_BEGIN)) | 251 if (!::SetFilePointerEx(file_, length_li, NULL, FILE_BEGIN)) |
| 227 return false; | 252 return false; |
| 228 | 253 |
| 229 // Set the new file length and move the file pointer to its old position. | 254 // Set the new file length and move the file pointer to its old position. |
| 230 // This is consistent with ftruncate()'s behavior, even when the file | 255 // This is consistent with ftruncate()'s behavior, even when the file |
| 231 // pointer points to a location beyond the end of the file. | 256 // pointer points to a location beyond the end of the file. |
| 232 return ((::SetEndOfFile(file) != 0) && | 257 return ((::SetEndOfFile(file_) != 0) && |
| 233 (::SetFilePointerEx(file, file_pointer, NULL, FILE_BEGIN) != 0)); | 258 (::SetFilePointerEx(file_, file_pointer, NULL, FILE_BEGIN) != 0)); |
| 234 } | 259 } |
| 235 | 260 |
| 236 bool FlushPlatformFile(PlatformFile file) { | 261 bool BaseFile::Flush() { |
| 237 base::ThreadRestrictions::AssertIOAllowed(); | 262 base::ThreadRestrictions::AssertIOAllowed(); |
| 238 return ((file != kInvalidPlatformFileValue) && ::FlushFileBuffers(file)); | 263 DCHECK(IsValid()); |
| 264 return ::FlushFileBuffers(file_) != FALSE; |
| 239 } | 265 } |
| 240 | 266 |
| 241 bool TouchPlatformFile(PlatformFile file, const base::Time& last_access_time, | 267 bool BaseFile::SetTime(Time last_access_time, Time last_modified_time) { |
| 242 const base::Time& last_modified_time) { | |
| 243 base::ThreadRestrictions::AssertIOAllowed(); | 268 base::ThreadRestrictions::AssertIOAllowed(); |
| 244 if (file == kInvalidPlatformFileValue) | 269 DCHECK(IsValid()); |
| 245 return false; | |
| 246 | 270 |
| 247 FILETIME last_access_filetime = last_access_time.ToFileTime(); | 271 FILETIME last_access_filetime = last_access_time.ToFileTime(); |
| 248 FILETIME last_modified_filetime = last_modified_time.ToFileTime(); | 272 FILETIME last_modified_filetime = last_modified_time.ToFileTime(); |
| 249 return (::SetFileTime(file, NULL, &last_access_filetime, | 273 return (::SetFileTime(file_, NULL, &last_access_filetime, |
| 250 &last_modified_filetime) != 0); | 274 &last_modified_filetime) != 0); |
| 251 } | 275 } |
| 252 | 276 |
| 253 bool GetPlatformFileInfo(PlatformFile file, PlatformFileInfo* info) { | 277 bool BaseFile::GetInfo(BaseFileInfo* info) { |
| 254 base::ThreadRestrictions::AssertIOAllowed(); | 278 base::ThreadRestrictions::AssertIOAllowed(); |
| 255 if (!info) | 279 DCHECK(IsValid()); |
| 256 return false; | |
| 257 | 280 |
| 258 BY_HANDLE_FILE_INFORMATION file_info; | 281 BY_HANDLE_FILE_INFORMATION file_info; |
| 259 if (GetFileInformationByHandle(file, &file_info) == 0) | 282 if (GetFileInformationByHandle(file_, &file_info) == 0) |
| 260 return false; | 283 return false; |
| 261 | 284 |
| 262 LARGE_INTEGER size; | 285 LARGE_INTEGER size; |
| 263 size.HighPart = file_info.nFileSizeHigh; | 286 size.HighPart = file_info.nFileSizeHigh; |
| 264 size.LowPart = file_info.nFileSizeLow; | 287 size.LowPart = file_info.nFileSizeLow; |
| 265 info->size = size.QuadPart; | 288 info->size = size.QuadPart; |
| 266 info->is_directory = | 289 info->is_directory = |
| 267 (file_info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0; | 290 (file_info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0; |
| 268 info->is_symbolic_link = false; // Windows doesn't have symbolic links. | 291 info->is_symbolic_link = false; // Windows doesn't have symbolic links. |
| 269 info->last_modified = base::Time::FromFileTime(file_info.ftLastWriteTime); | 292 info->last_modified = base::Time::FromFileTime(file_info.ftLastWriteTime); |
| 270 info->last_accessed = base::Time::FromFileTime(file_info.ftLastAccessTime); | 293 info->last_accessed = base::Time::FromFileTime(file_info.ftLastAccessTime); |
| 271 info->creation_time = base::Time::FromFileTime(file_info.ftCreationTime); | 294 info->creation_time = base::Time::FromFileTime(file_info.ftCreationTime); |
| 272 return true; | 295 return true; |
| 273 } | 296 } |
| 274 | 297 |
| 275 PlatformFileError LockPlatformFile(PlatformFile file) { | 298 BaseFileError BaseFile::Lock() { |
| 276 BOOL result = LockFile(file, 0, 0, MAXDWORD, MAXDWORD); | 299 DCHECK(IsValid()); |
| 300 BOOL result = LockFile(file_, 0, 0, MAXDWORD, MAXDWORD); |
| 277 if (!result) | 301 if (!result) |
| 278 return LastErrorToPlatformFileError(GetLastError()); | 302 return ErrorToBaseFileError(GetLastError()); |
| 279 return PLATFORM_FILE_OK; | 303 return BASE_FILE_OK; |
| 280 } | 304 } |
| 281 | 305 |
| 282 PlatformFileError UnlockPlatformFile(PlatformFile file) { | 306 BaseFileError BaseFile::Unlock() { |
| 283 BOOL result = UnlockFile(file, 0, 0, MAXDWORD, MAXDWORD); | 307 DCHECK(IsValid()); |
| 308 BOOL result = UnlockFile(file_, 0, 0, MAXDWORD, MAXDWORD); |
| 284 if (!result) | 309 if (!result) |
| 285 return LastErrorToPlatformFileError(GetLastError()); | 310 return ErrorToBaseFileError(GetLastError()); |
| 286 return PLATFORM_FILE_OK; | 311 return BASE_FILE_OK; |
| 287 } | 312 } |
| 288 | 313 |
| 289 PlatformFileError LastErrorToPlatformFileError(DWORD last_error) { | 314 void BaseFile::SetPlatformFile(PlatformFile file) { |
| 290 switch (last_error) { | 315 file_.Set(file); |
| 291 case ERROR_SHARING_VIOLATION: | |
| 292 return PLATFORM_FILE_ERROR_IN_USE; | |
| 293 case ERROR_FILE_EXISTS: | |
| 294 return PLATFORM_FILE_ERROR_EXISTS; | |
| 295 case ERROR_FILE_NOT_FOUND: | |
| 296 case ERROR_PATH_NOT_FOUND: | |
| 297 return PLATFORM_FILE_ERROR_NOT_FOUND; | |
| 298 case ERROR_ACCESS_DENIED: | |
| 299 return PLATFORM_FILE_ERROR_ACCESS_DENIED; | |
| 300 case ERROR_TOO_MANY_OPEN_FILES: | |
| 301 return PLATFORM_FILE_ERROR_TOO_MANY_OPENED; | |
| 302 case ERROR_OUTOFMEMORY: | |
| 303 case ERROR_NOT_ENOUGH_MEMORY: | |
| 304 return PLATFORM_FILE_ERROR_NO_MEMORY; | |
| 305 case ERROR_HANDLE_DISK_FULL: | |
| 306 case ERROR_DISK_FULL: | |
| 307 case ERROR_DISK_RESOURCES_EXHAUSTED: | |
| 308 return PLATFORM_FILE_ERROR_NO_SPACE; | |
| 309 case ERROR_USER_MAPPED_FILE: | |
| 310 return PLATFORM_FILE_ERROR_INVALID_OPERATION; | |
| 311 case ERROR_NOT_READY: | |
| 312 case ERROR_SECTOR_NOT_FOUND: | |
| 313 case ERROR_DEV_NOT_EXIST: | |
| 314 case ERROR_IO_DEVICE: | |
| 315 case ERROR_FILE_CORRUPT: | |
| 316 case ERROR_DISK_CORRUPT: | |
| 317 return PLATFORM_FILE_ERROR_IO; | |
| 318 default: | |
| 319 UMA_HISTOGRAM_SPARSE_SLOWLY("PlatformFile.UnknownErrors.Windows", | |
| 320 last_error); | |
| 321 return PLATFORM_FILE_ERROR_FAILED; | |
| 322 } | |
| 323 } | 316 } |
| 324 | 317 |
| 325 } // namespace base | 318 } // namespace base |
| OLD | NEW |