OLD | NEW |
1 // Copyright 2014 The Crashpad Authors. All rights reserved. | 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
2 // | 2 // |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
6 // | 6 // |
7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
8 // | 8 // |
9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 // See the License for the specific language governing permissions and | 12 // See the License for the specific language governing permissions and |
13 // limitations under the License. | 13 // limitations under the License. |
14 | 14 |
15 #include "util/file/file_io.h" | 15 #include "util/file/file_io.h" |
16 | 16 |
| 17 #include <fcntl.h> |
17 #include <unistd.h> | 18 #include <unistd.h> |
18 | 19 |
| 20 #include "base/files/file_path.h" |
19 #include "base/logging.h" | 21 #include "base/logging.h" |
20 #include "base/numerics/safe_conversions.h" | 22 #include "base/numerics/safe_conversions.h" |
21 #include "base/posix/eintr_wrapper.h" | 23 #include "base/posix/eintr_wrapper.h" |
22 | 24 |
23 namespace { | 25 namespace { |
24 | 26 |
25 struct ReadTraits { | 27 struct ReadTraits { |
26 using VoidBufferType = void*; | 28 using VoidBufferType = void*; |
27 using CharBufferType = char*; | 29 using CharBufferType = char*; |
28 static ssize_t Operate(int fd, CharBufferType buffer, size_t size) { | 30 static ssize_t Operate(int fd, CharBufferType buffer, size_t size) { |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 namespace crashpad { | 69 namespace crashpad { |
68 | 70 |
69 ssize_t ReadFile(FileHandle file, void* buffer, size_t size) { | 71 ssize_t ReadFile(FileHandle file, void* buffer, size_t size) { |
70 return ReadOrWrite<ReadTraits>(file, buffer, size); | 72 return ReadOrWrite<ReadTraits>(file, buffer, size); |
71 } | 73 } |
72 | 74 |
73 ssize_t WriteFile(FileHandle file, const void* buffer, size_t size) { | 75 ssize_t WriteFile(FileHandle file, const void* buffer, size_t size) { |
74 return ReadOrWrite<WriteTraits>(file, buffer, size); | 76 return ReadOrWrite<WriteTraits>(file, buffer, size); |
75 } | 77 } |
76 | 78 |
| 79 FileHandle LoggingOpenFileForWrite(const base::FilePath& path, uint32_t mode) { |
| 80 int fd = HANDLE_EINTR( |
| 81 open(path.value().c_str(), O_WRONLY | O_CREAT | O_TRUNC, mode)); |
| 82 PLOG_IF(ERROR, fd < 0) << "open " << path.value(); |
| 83 return fd; |
| 84 } |
| 85 |
| 86 FileHandle LoggingOpenFileForRead(const base::FilePath& path) { |
| 87 int fd = HANDLE_EINTR(open(path.value().c_str(), O_RDONLY)); |
| 88 PLOG_IF(ERROR, fd < 0) << "open " << path.value(); |
| 89 return fd; |
| 90 } |
| 91 |
77 bool LoggingCloseFile(FileHandle file) { | 92 bool LoggingCloseFile(FileHandle file) { |
78 int rv = IGNORE_EINTR(close(file)); | 93 int rv = IGNORE_EINTR(close(file)); |
79 PLOG_IF(ERROR, rv != 0) << "close"; | 94 PLOG_IF(ERROR, rv != 0) << "close"; |
80 return rv == 0; | 95 return rv == 0; |
81 } | 96 } |
82 | 97 |
83 } // namespace crashpad | 98 } // namespace crashpad |
OLD | NEW |