add openNoInt, truncateNoInt, ftruncateNoInt
[folly.git] / folly / FileUtil.cpp
1 /*
2  * Copyright 2013 Facebook, Inc.
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 #include "folly/FileUtil.h"
18
19 #include <cerrno>
20
21 #include "folly/detail/FileUtilDetail.h"
22
23 namespace folly {
24
25 using namespace fileutil_detail;
26
27 int openNoInt(const char* name, int flags, mode_t mode) {
28   return wrapNoInt(open, name, flags, mode);
29 }
30
31 int closeNoInt(int fd) {
32   int r = close(fd);
33   // Ignore EINTR.  On Linux, close() may only return EINTR after the file
34   // descriptor has been closed, so you must not retry close() on EINTR --
35   // in the best case, you'll get EBADF, and in the worst case, you'll end up
36   // closing a different file (one opened from another thread).
37   //
38   // Interestingly enough, the Single Unix Specification says that the state
39   // of the file descriptor is unspecified if close returns EINTR.  In that
40   // case, the safe thing to do is also not to retry close() -- leaking a file
41   // descriptor is probably better than closing the wrong file.
42   if (r == -1 && errno == EINTR) {
43     r = 0;
44   }
45   return r;
46 }
47
48 int fsyncNoInt(int fd) {
49   return wrapNoInt(fsync, fd);
50 }
51
52 int fdatasyncNoInt(int fd) {
53   return wrapNoInt(fdatasync, fd);
54 }
55
56 int ftruncateNoInt(int fd, off_t len) {
57   return wrapNoInt(ftruncate, fd, len);
58 }
59
60 int truncateNoInt(const char* path, off_t len) {
61   return wrapNoInt(truncate, path, len);
62 }
63
64 ssize_t readNoInt(int fd, void* buf, size_t count) {
65   return wrapNoInt(read, fd, buf, count);
66 }
67
68 ssize_t preadNoInt(int fd, void* buf, size_t count, off_t offset) {
69   return wrapNoInt(pread, fd, buf, count, offset);
70 }
71
72 ssize_t readvNoInt(int fd, const iovec* iov, int count) {
73   return wrapNoInt(writev, fd, iov, count);
74 }
75
76 ssize_t writeNoInt(int fd, const void* buf, size_t count) {
77   return wrapNoInt(write, fd, buf, count);
78 }
79
80 ssize_t pwriteNoInt(int fd, const void* buf, size_t count, off_t offset) {
81   return wrapNoInt(pwrite, fd, buf, count, offset);
82 }
83
84 ssize_t writevNoInt(int fd, const iovec* iov, int count) {
85   return wrapNoInt(writev, fd, iov, count);
86 }
87
88 ssize_t readFull(int fd, void* buf, size_t count) {
89   return wrapFull(read, fd, buf, count);
90 }
91
92 ssize_t preadFull(int fd, void* buf, size_t count, off_t offset) {
93   return wrapFull(pread, fd, buf, count, offset);
94 }
95
96 ssize_t writeFull(int fd, const void* buf, size_t count) {
97   return wrapFull(write, fd, const_cast<void*>(buf), count);
98 }
99
100 ssize_t pwriteFull(int fd, const void* buf, size_t count, off_t offset) {
101   return wrapFull(pwrite, fd, const_cast<void*>(buf), count, offset);
102 }
103
104 ssize_t readvFull(int fd, iovec* iov, int count) {
105   return wrapvFull(readv, fd, iov, count);
106 }
107
108 #ifdef FOLLY_HAVE_PREADV
109 ssize_t preadvFull(int fd, iovec* iov, int count, off_t offset) {
110   return wrapvFull(preadv, fd, iov, count, offset);
111 }
112 #endif
113
114 ssize_t writevFull(int fd, iovec* iov, int count) {
115   return wrapvFull(writev, fd, iov, count);
116 }
117
118 #ifdef FOLLY_HAVE_PWRITEV
119 ssize_t pwritevFull(int fd, iovec* iov, int count, off_t offset) {
120   return wrapvFull(pwritev, fd, iov, count, offset);
121 }
122 #endif
123
124 }  // namespaces
125