Zachary Turner | b2df30d | 2014-10-08 20:38:41 +0000 | [diff] [blame] | 1 | //===-- PipePosix.cpp -------------------------------------------*- C++ -*-===// |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Zachary Turner | b2df30d | 2014-10-08 20:38:41 +0000 | [diff] [blame] | 10 | #include "lldb/Host/posix/PipePosix.h" |
Oleksiy Vyalov | 4536c45 | 2015-02-05 16:29:12 +0000 | [diff] [blame] | 11 | #include "lldb/Host/HostInfo.h" |
Greg Clayton | ee1f578 | 2016-08-10 22:43:48 +0000 | [diff] [blame] | 12 | #include "lldb/Utility/SelectHelper.h" |
Oleksiy Vyalov | 4536c45 | 2015-02-05 16:29:12 +0000 | [diff] [blame] | 13 | #include "llvm/ADT/SmallString.h" |
| 14 | #include "llvm/Support/FileSystem.h" |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 15 | |
Omair Javaid | 2040548 | 2015-08-09 19:04:41 +0000 | [diff] [blame] | 16 | #if defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 8)) |
Stephane Sezer | 4d640f2 | 2015-09-09 01:17:24 +0000 | [diff] [blame] | 17 | #ifndef _GLIBCXX_USE_NANOSLEEP |
Omair Javaid | 2040548 | 2015-08-09 19:04:41 +0000 | [diff] [blame] | 18 | #define _GLIBCXX_USE_NANOSLEEP |
| 19 | #endif |
Stephane Sezer | 4d640f2 | 2015-09-09 01:17:24 +0000 | [diff] [blame] | 20 | #endif |
Omair Javaid | 2040548 | 2015-08-09 19:04:41 +0000 | [diff] [blame] | 21 | |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 22 | #include <functional> |
| 23 | #include <thread> |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 24 | |
Zachary Turner | 0b9d3ee | 2014-12-17 18:02:19 +0000 | [diff] [blame] | 25 | #include <errno.h> |
Oleksiy Vyalov | ff9a072 | 2014-11-21 16:18:57 +0000 | [diff] [blame] | 26 | #include <fcntl.h> |
Oleksiy Vyalov | 4536c45 | 2015-02-05 16:29:12 +0000 | [diff] [blame] | 27 | #include <limits.h> |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 28 | #include <sys/stat.h> |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 29 | #include <sys/types.h> |
| 30 | #include <unistd.h> |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 31 | |
Zachary Turner | 0b9d3ee | 2014-12-17 18:02:19 +0000 | [diff] [blame] | 32 | using namespace lldb; |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 33 | using namespace lldb_private; |
| 34 | |
Zachary Turner | 0b9d3ee | 2014-12-17 18:02:19 +0000 | [diff] [blame] | 35 | int PipePosix::kInvalidDescriptor = -1; |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 36 | |
| 37 | enum PIPES { READ, WRITE }; // Constants 0 and 1 for READ and WRITE |
| 38 | |
Ed Maste | 37366e5 | 2015-09-14 15:12:49 +0000 | [diff] [blame] | 39 | // pipe2 is supported by a limited set of platforms |
Oleksiy Vyalov | ff9a072 | 2014-11-21 16:18:57 +0000 | [diff] [blame] | 40 | // TODO: Add more platforms that support pipe2. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 41 | #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD__ >= 10) || \ |
| 42 | defined(__NetBSD__) |
Zachary Turner | 0b9d3ee | 2014-12-17 18:02:19 +0000 | [diff] [blame] | 43 | #define PIPE2_SUPPORTED 1 |
| 44 | #else |
| 45 | #define PIPE2_SUPPORTED 0 |
| 46 | #endif |
Oleksiy Vyalov | ff9a072 | 2014-11-21 16:18:57 +0000 | [diff] [blame] | 47 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 48 | namespace { |
Oleksiy Vyalov | ff9a072 | 2014-11-21 16:18:57 +0000 | [diff] [blame] | 49 | |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 50 | constexpr auto OPEN_WRITER_SLEEP_TIMEOUT_MSECS = 100; |
| 51 | |
Oleksiy Vyalov | ff9a072 | 2014-11-21 16:18:57 +0000 | [diff] [blame] | 52 | #if defined(FD_CLOEXEC) && !PIPE2_SUPPORTED |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 53 | bool SetCloexecFlag(int fd) { |
| 54 | int flags = ::fcntl(fd, F_GETFD); |
| 55 | if (flags == -1) |
| 56 | return false; |
| 57 | return (::fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == 0); |
Oleksiy Vyalov | ff9a072 | 2014-11-21 16:18:57 +0000 | [diff] [blame] | 58 | } |
| 59 | #endif |
| 60 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 61 | std::chrono::time_point<std::chrono::steady_clock> Now() { |
| 62 | return std::chrono::steady_clock::now(); |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 63 | } |
Oleksiy Vyalov | ff9a072 | 2014-11-21 16:18:57 +0000 | [diff] [blame] | 64 | } |
| 65 | |
Zachary Turner | 0b9d3ee | 2014-12-17 18:02:19 +0000 | [diff] [blame] | 66 | PipePosix::PipePosix() |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 67 | : m_fds{PipePosix::kInvalidDescriptor, PipePosix::kInvalidDescriptor} {} |
Chaoren Lin | a52f484 | 2015-04-29 17:36:58 +0000 | [diff] [blame] | 68 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 69 | PipePosix::PipePosix(int read_fd, int write_fd) : m_fds{read_fd, write_fd} {} |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 70 | |
Chaoren Lin | ec53482 | 2015-05-01 16:49:23 +0000 | [diff] [blame] | 71 | PipePosix::PipePosix(PipePosix &&pipe_posix) |
| 72 | : PipeBase{std::move(pipe_posix)}, |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 73 | m_fds{pipe_posix.ReleaseReadFileDescriptor(), |
| 74 | pipe_posix.ReleaseWriteFileDescriptor()} {} |
Chaoren Lin | ec53482 | 2015-05-01 16:49:23 +0000 | [diff] [blame] | 75 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 76 | PipePosix &PipePosix::operator=(PipePosix &&pipe_posix) { |
| 77 | PipeBase::operator=(std::move(pipe_posix)); |
| 78 | m_fds[READ] = pipe_posix.ReleaseReadFileDescriptor(); |
| 79 | m_fds[WRITE] = pipe_posix.ReleaseWriteFileDescriptor(); |
| 80 | return *this; |
Chaoren Lin | ec53482 | 2015-05-01 16:49:23 +0000 | [diff] [blame] | 81 | } |
| 82 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 83 | PipePosix::~PipePosix() { Close(); } |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 84 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 85 | Error PipePosix::CreateNew(bool child_processes_inherit) { |
| 86 | if (CanRead() || CanWrite()) |
| 87 | return Error(EINVAL, eErrorTypePOSIX); |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 88 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 89 | Error error; |
Oleksiy Vyalov | ff9a072 | 2014-11-21 16:18:57 +0000 | [diff] [blame] | 90 | #if PIPE2_SUPPORTED |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 91 | if (::pipe2(m_fds, (child_processes_inherit) ? 0 : O_CLOEXEC) == 0) |
| 92 | return error; |
Oleksiy Vyalov | ff9a072 | 2014-11-21 16:18:57 +0000 | [diff] [blame] | 93 | #else |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 94 | if (::pipe(m_fds) == 0) { |
Oleksiy Vyalov | ff9a072 | 2014-11-21 16:18:57 +0000 | [diff] [blame] | 95 | #ifdef FD_CLOEXEC |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 96 | if (!child_processes_inherit) { |
| 97 | if (!SetCloexecFlag(m_fds[0]) || !SetCloexecFlag(m_fds[1])) { |
| 98 | error.SetErrorToErrno(); |
| 99 | Close(); |
Zachary Turner | 0b9d3ee | 2014-12-17 18:02:19 +0000 | [diff] [blame] | 100 | return error; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 101 | } |
Oleksiy Vyalov | ff9a072 | 2014-11-21 16:18:57 +0000 | [diff] [blame] | 102 | } |
| 103 | #endif |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 104 | return error; |
| 105 | } |
| 106 | #endif |
Zachary Turner | b2df30d | 2014-10-08 20:38:41 +0000 | [diff] [blame] | 107 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 108 | error.SetErrorToErrno(); |
| 109 | m_fds[READ] = PipePosix::kInvalidDescriptor; |
| 110 | m_fds[WRITE] = PipePosix::kInvalidDescriptor; |
| 111 | return error; |
| 112 | } |
| 113 | |
| 114 | Error PipePosix::CreateNew(llvm::StringRef name, bool child_process_inherit) { |
| 115 | if (CanRead() || CanWrite()) |
| 116 | return Error("Pipe is already opened"); |
| 117 | |
| 118 | Error error; |
| 119 | if (::mkfifo(name.data(), 0660) != 0) |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 120 | error.SetErrorToErrno(); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 121 | |
| 122 | return error; |
Zachary Turner | 0b9d3ee | 2014-12-17 18:02:19 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 125 | Error PipePosix::CreateWithUniqueName(llvm::StringRef prefix, |
| 126 | bool child_process_inherit, |
| 127 | llvm::SmallVectorImpl<char> &name) { |
| 128 | llvm::SmallString<PATH_MAX> named_pipe_path; |
| 129 | llvm::SmallString<PATH_MAX> pipe_spec((prefix + ".%%%%%%").str()); |
| 130 | FileSpec tmpdir_file_spec; |
| 131 | tmpdir_file_spec.Clear(); |
| 132 | if (HostInfo::GetLLDBPath(ePathTypeLLDBTempSystemDir, tmpdir_file_spec)) { |
| 133 | tmpdir_file_spec.AppendPathComponent(pipe_spec.c_str()); |
| 134 | } else { |
| 135 | tmpdir_file_spec.AppendPathComponent("/tmp"); |
| 136 | tmpdir_file_spec.AppendPathComponent(pipe_spec.c_str()); |
| 137 | } |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 138 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 139 | // It's possible that another process creates the target path after we've |
| 140 | // verified it's available but before we create it, in which case we |
| 141 | // should try again. |
| 142 | Error error; |
| 143 | do { |
Malcolm Parsons | 771ef6d | 2016-11-02 20:34:10 +0000 | [diff] [blame] | 144 | llvm::sys::fs::createUniqueFile(tmpdir_file_spec.GetPath(), |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 145 | named_pipe_path); |
| 146 | error = CreateNew(named_pipe_path, child_process_inherit); |
| 147 | } while (error.GetError() == EEXIST); |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 148 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 149 | if (error.Success()) |
| 150 | name = named_pipe_path; |
| 151 | return error; |
Zachary Turner | 0b9d3ee | 2014-12-17 18:02:19 +0000 | [diff] [blame] | 152 | } |
| 153 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 154 | Error PipePosix::OpenAsReader(llvm::StringRef name, |
| 155 | bool child_process_inherit) { |
| 156 | if (CanRead() || CanWrite()) |
| 157 | return Error("Pipe is already opened"); |
| 158 | |
| 159 | int flags = O_RDONLY | O_NONBLOCK; |
| 160 | if (!child_process_inherit) |
| 161 | flags |= O_CLOEXEC; |
| 162 | |
| 163 | Error error; |
| 164 | int fd = ::open(name.data(), flags); |
| 165 | if (fd != -1) |
| 166 | m_fds[READ] = fd; |
| 167 | else |
| 168 | error.SetErrorToErrno(); |
| 169 | |
| 170 | return error; |
| 171 | } |
| 172 | |
| 173 | Error PipePosix::OpenAsWriterWithTimeout( |
| 174 | llvm::StringRef name, bool child_process_inherit, |
| 175 | const std::chrono::microseconds &timeout) { |
| 176 | if (CanRead() || CanWrite()) |
| 177 | return Error("Pipe is already opened"); |
| 178 | |
| 179 | int flags = O_WRONLY | O_NONBLOCK; |
| 180 | if (!child_process_inherit) |
| 181 | flags |= O_CLOEXEC; |
| 182 | |
| 183 | using namespace std::chrono; |
| 184 | const auto finish_time = Now() + timeout; |
| 185 | |
| 186 | while (!CanWrite()) { |
| 187 | if (timeout != microseconds::zero()) { |
| 188 | const auto dur = duration_cast<microseconds>(finish_time - Now()).count(); |
| 189 | if (dur <= 0) |
| 190 | return Error("timeout exceeded - reader hasn't opened so far"); |
Oleksiy Vyalov | 4536c45 | 2015-02-05 16:29:12 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 193 | errno = 0; |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 194 | int fd = ::open(name.data(), flags); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 195 | if (fd == -1) { |
| 196 | const auto errno_copy = errno; |
| 197 | // We may get ENXIO if a reader side of the pipe hasn't opened yet. |
| 198 | if (errno_copy != ENXIO) |
| 199 | return Error(errno_copy, eErrorTypePOSIX); |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 200 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 201 | std::this_thread::sleep_for( |
| 202 | milliseconds(OPEN_WRITER_SLEEP_TIMEOUT_MSECS)); |
| 203 | } else { |
| 204 | m_fds[WRITE] = fd; |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 205 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 206 | } |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 207 | |
Mehdi Amini | c1edf56 | 2016-11-11 04:29:25 +0000 | [diff] [blame] | 208 | return Error(); |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 209 | } |
| 210 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 211 | int PipePosix::GetReadFileDescriptor() const { return m_fds[READ]; } |
| 212 | |
| 213 | int PipePosix::GetWriteFileDescriptor() const { return m_fds[WRITE]; } |
| 214 | |
| 215 | int PipePosix::ReleaseReadFileDescriptor() { |
| 216 | const int fd = m_fds[READ]; |
| 217 | m_fds[READ] = PipePosix::kInvalidDescriptor; |
| 218 | return fd; |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 221 | int PipePosix::ReleaseWriteFileDescriptor() { |
| 222 | const int fd = m_fds[WRITE]; |
| 223 | m_fds[WRITE] = PipePosix::kInvalidDescriptor; |
| 224 | return fd; |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 225 | } |
| 226 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 227 | void PipePosix::Close() { |
| 228 | CloseReadFileDescriptor(); |
| 229 | CloseWriteFileDescriptor(); |
| 230 | } |
| 231 | |
| 232 | Error PipePosix::Delete(llvm::StringRef name) { |
Zachary Turner | 07db3f7 | 2017-03-21 05:47:57 +0000 | [diff] [blame^] | 233 | return llvm::sys::fs::remove(name); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | bool PipePosix::CanRead() const { |
| 237 | return m_fds[READ] != PipePosix::kInvalidDescriptor; |
| 238 | } |
| 239 | |
| 240 | bool PipePosix::CanWrite() const { |
| 241 | return m_fds[WRITE] != PipePosix::kInvalidDescriptor; |
| 242 | } |
| 243 | |
| 244 | void PipePosix::CloseReadFileDescriptor() { |
| 245 | if (CanRead()) { |
| 246 | close(m_fds[READ]); |
Zachary Turner | 0b9d3ee | 2014-12-17 18:02:19 +0000 | [diff] [blame] | 247 | m_fds[READ] = PipePosix::kInvalidDescriptor; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 248 | } |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 249 | } |
| 250 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 251 | void PipePosix::CloseWriteFileDescriptor() { |
| 252 | if (CanWrite()) { |
| 253 | close(m_fds[WRITE]); |
Zachary Turner | 0b9d3ee | 2014-12-17 18:02:19 +0000 | [diff] [blame] | 254 | m_fds[WRITE] = PipePosix::kInvalidDescriptor; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 255 | } |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 256 | } |
| 257 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 258 | Error PipePosix::ReadWithTimeout(void *buf, size_t size, |
| 259 | const std::chrono::microseconds &timeout, |
| 260 | size_t &bytes_read) { |
| 261 | bytes_read = 0; |
| 262 | if (!CanRead()) |
| 263 | return Error(EINVAL, eErrorTypePOSIX); |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 264 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 265 | const int fd = GetReadFileDescriptor(); |
Oleksiy Vyalov | d5f8b6a | 2015-01-13 23:19:40 +0000 | [diff] [blame] | 266 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 267 | SelectHelper select_helper; |
| 268 | select_helper.SetTimeout(timeout); |
| 269 | select_helper.FDSetRead(fd); |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 270 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 271 | Error error; |
| 272 | while (error.Success()) { |
| 273 | error = select_helper.Select(); |
| 274 | if (error.Success()) { |
| 275 | auto result = ::read(fd, reinterpret_cast<char *>(buf) + bytes_read, |
| 276 | size - bytes_read); |
| 277 | if (result != -1) { |
| 278 | bytes_read += result; |
| 279 | if (bytes_read == size || result == 0) |
| 280 | break; |
| 281 | } else { |
| 282 | error.SetErrorToErrno(); |
| 283 | break; |
| 284 | } |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 285 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 286 | } |
| 287 | return error; |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 288 | } |
| 289 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 290 | Error PipePosix::Write(const void *buf, size_t size, size_t &bytes_written) { |
| 291 | bytes_written = 0; |
| 292 | if (!CanWrite()) |
| 293 | return Error(EINVAL, eErrorTypePOSIX); |
| 294 | |
| 295 | const int fd = GetWriteFileDescriptor(); |
| 296 | SelectHelper select_helper; |
| 297 | select_helper.SetTimeout(std::chrono::seconds(0)); |
| 298 | select_helper.FDSetWrite(fd); |
| 299 | |
| 300 | Error error; |
| 301 | while (error.Success()) { |
| 302 | error = select_helper.Select(); |
| 303 | if (error.Success()) { |
| 304 | auto result = |
| 305 | ::write(fd, reinterpret_cast<const char *>(buf) + bytes_written, |
| 306 | size - bytes_written); |
| 307 | if (result != -1) { |
| 308 | bytes_written += result; |
| 309 | if (bytes_written == size) |
| 310 | break; |
| 311 | } else { |
| 312 | error.SetErrorToErrno(); |
| 313 | } |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 314 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 315 | } |
| 316 | return error; |
Greg Clayton | 100eb93 | 2014-07-02 21:10:39 +0000 | [diff] [blame] | 317 | } |