blob: f4912f7809a11cf9948dff70420cd9d2ed6c4046 [file] [log] [blame]
Primiano Tucci76499cd2018-11-21 10:54:04 +01001/*
2 * Copyright (C) 2018 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
Primiano Tucci2c5488f2019-06-01 03:27:28 +010017#include "perfetto/ext/base/pipe.h"
Primiano Tucci76499cd2018-11-21 10:54:04 +010018
Primiano Tucci1366dd02020-12-02 10:17:10 +010019#include "perfetto/base/build_config.h"
20
Primiano Tuccid4d08d32020-12-08 15:35:13 +010021#include <fcntl.h> // For O_BINARY (Windows) and F_SETxx (UNIX)
22
Primiano Tucci1366dd02020-12-02 10:17:10 +010023#if PERFETTO_BUILDFLAG(PERFETTO_OS_WIN)
Primiano Tucci92d95dd2020-12-21 15:20:11 +010024#include <Windows.h>
25#include <namedpipeapi.h>
Primiano Tucci1366dd02020-12-02 10:17:10 +010026#else
Primiano Tucci76499cd2018-11-21 10:54:04 +010027#include <sys/types.h>
28#include <unistd.h>
Primiano Tucci1366dd02020-12-02 10:17:10 +010029#endif
Primiano Tucci76499cd2018-11-21 10:54:04 +010030
31#include "perfetto/base/logging.h"
32
33namespace perfetto {
34namespace base {
35
36Pipe::Pipe() = default;
37Pipe::Pipe(Pipe&&) noexcept = default;
38Pipe& Pipe::operator=(Pipe&&) = default;
39
40Pipe Pipe::Create(Flags flags) {
Primiano Tucci92d95dd2020-12-21 15:20:11 +010041 PlatformHandle fds[2];
Primiano Tucci1366dd02020-12-02 10:17:10 +010042#if PERFETTO_BUILDFLAG(PERFETTO_OS_WIN)
Primiano Tucci92d95dd2020-12-21 15:20:11 +010043 PERFETTO_CHECK(::CreatePipe(&fds[0], &fds[1], /*lpPipeAttributes=*/nullptr,
44 0 /*default size*/));
Primiano Tucci1366dd02020-12-02 10:17:10 +010045#else
Primiano Tucci76499cd2018-11-21 10:54:04 +010046 PERFETTO_CHECK(pipe(fds) == 0);
Primiano Tucci1366dd02020-12-02 10:17:10 +010047 PERFETTO_CHECK(fcntl(fds[0], F_SETFD, FD_CLOEXEC) == 0);
48 PERFETTO_CHECK(fcntl(fds[1], F_SETFD, FD_CLOEXEC) == 0);
49#endif
Primiano Tucci76499cd2018-11-21 10:54:04 +010050 Pipe p;
51 p.rd.reset(fds[0]);
52 p.wr.reset(fds[1]);
53
Primiano Tucci1366dd02020-12-02 10:17:10 +010054#if !PERFETTO_BUILDFLAG(PERFETTO_OS_WIN)
Primiano Tucci76499cd2018-11-21 10:54:04 +010055 if (flags == kBothNonBlock || flags == kRdNonBlock) {
56 int cur_flags = fcntl(*p.rd, F_GETFL, 0);
57 PERFETTO_CHECK(cur_flags >= 0);
58 PERFETTO_CHECK(fcntl(*p.rd, F_SETFL, cur_flags | O_NONBLOCK) == 0);
59 }
60
61 if (flags == kBothNonBlock || flags == kWrNonBlock) {
62 int cur_flags = fcntl(*p.wr, F_GETFL, 0);
63 PERFETTO_CHECK(cur_flags >= 0);
64 PERFETTO_CHECK(fcntl(*p.wr, F_SETFL, cur_flags | O_NONBLOCK) == 0);
65 }
Primiano Tucci1366dd02020-12-02 10:17:10 +010066#else
67 PERFETTO_CHECK(flags == kBothBlock);
68#endif
Primiano Tucci76499cd2018-11-21 10:54:04 +010069 return p;
70}
71
72} // namespace base
73} // namespace perfetto