docs: Add supported versions and fix-backport policy
[lttng-tools.git] / src / common / pipe.hpp
CommitLineData
9fd92637 1/*
ab5be9fa 2 * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
9fd92637 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
9fd92637 5 *
9fd92637
DG
6 */
7
8#ifndef LTTNG_PIPE_H
9#define LTTNG_PIPE_H
10
c9e313bc 11#include <common/macros.hpp>
0038180d
JG
12#include <common/make-unique-wrapper.hpp>
13
14#include <pthread.h>
40dde31f 15#include <sys/types.h>
9fd92637
DG
16
17enum lttng_pipe_state {
18 LTTNG_PIPE_STATE_OPENED = 1,
19 LTTNG_PIPE_STATE_CLOSED = 2,
20};
21
0038180d
JG
22/* Close both side of pipe. */
23int lttng_pipe_close(struct lttng_pipe *pipe);
4520fdac 24void lttng_pipe_destroy(struct lttng_pipe *pipe);
0038180d 25
9fd92637 26struct lttng_pipe {
0038180d
JG
27 using uptr = std::unique_ptr<
28 lttng_pipe,
4520fdac 29 lttng::memory::create_deleter_class<lttng_pipe, lttng_pipe_destroy>::deleter>;
0038180d 30
9fd92637
DG
31 /* Read: 0, Write: 1. */
32 int fd[2];
33 /*
34 * Flags of the pipe once opened. pipe(2) specifies either O_NONBLOCK or
35 * O_CLOEXEC can be used. Flags are set using fcntl(2) call.
36 */
37 int flags;
38
39 /*
40 * These states are protected by the operation mutex below.
41 */
42 enum lttng_pipe_state r_state;
43 enum lttng_pipe_state w_state;
44
45 /* Held for each read(2) operation. */
46 pthread_mutex_t read_mutex;
47 /* Held for each write(2) operation. */
48 pthread_mutex_t write_mutex;
49};
50
51/*
52 * Return 1 if read side is open else 0.
53 */
40b66b26 54static inline int lttng_pipe_is_read_open(const struct lttng_pipe *pipe)
9fd92637
DG
55{
56 return pipe->r_state == LTTNG_PIPE_STATE_OPENED ? 1 : 0;
57}
58
59/*
60 * Return 1 if write side is open else 0.
61 */
40b66b26 62static inline int lttng_pipe_is_write_open(const struct lttng_pipe *pipe)
9fd92637
DG
63{
64 return pipe->w_state == LTTNG_PIPE_STATE_OPENED ? 1 : 0;
65}
66
40b66b26 67static inline int lttng_pipe_get_readfd(const struct lttng_pipe *pipe)
9fd92637
DG
68{
69 return pipe->fd[0];
70}
71
40b66b26 72static inline int lttng_pipe_get_writefd(const struct lttng_pipe *pipe)
9fd92637
DG
73{
74 return pipe->fd[1];
75}
76
77struct lttng_pipe *lttng_pipe_open(int flags);
28f23191 78struct lttng_pipe *lttng_pipe_named_open(const char *path, mode_t mode, int flags);
9fd92637
DG
79int lttng_pipe_write_close(struct lttng_pipe *pipe);
80int lttng_pipe_read_close(struct lttng_pipe *pipe);
9fd92637
DG
81
82ssize_t lttng_pipe_read(struct lttng_pipe *pipe, void *buf, size_t count);
28f23191 83ssize_t lttng_pipe_write(struct lttng_pipe *pipe, const void *buf, size_t count);
55dfb029 84/* Returns and releases the read end of the pipe. */
55dfb029
JG
85int lttng_pipe_release_readfd(struct lttng_pipe *pipe);
86/* Returns and releases the write end of the pipe. */
55dfb029 87int lttng_pipe_release_writefd(struct lttng_pipe *pipe);
9fd92637
DG
88
89#endif /* LTTNG_PIPE_H */
This page took 0.084095 seconds and 4 git commands to generate.