Send indexes in streaming mode
[lttng-tools.git] / src / bin / lttng-relayd / lttng-relayd.h
CommitLineData
b8aa1682
JD
1/*
2 * Copyright (C) 2012 - Julien Desfossez <jdesfossez@efficios.com>
3 * David Goulet <dgoulet@efficios.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
7717e361
MD
19#ifndef LTTNG_RELAYD_H
20#define LTTNG_RELAYD_H
b8aa1682
JD
21
22#define _LGPL_SOURCE
23#include <urcu.h>
24#include <urcu/wfqueue.h>
0f907de1 25#include <common/hashtable/hashtable.h>
1c20f0e2 26#include <common/index/lttng-index.h>
b8aa1682
JD
27
28/*
29 * Queue used to enqueue relay requests
30 */
31struct relay_cmd_queue {
b8aa1682 32 struct cds_wfq_queue queue;
7717e361 33 int32_t futex;
b8aa1682
JD
34};
35
36enum connection_type {
37 RELAY_DATA,
38 RELAY_CONTROL,
39};
40
41/*
42 * Represents a session for the relay point of view
43 */
44struct relay_session {
f7079f67
DG
45 /*
46 * This session id is used to identify a set of stream to a tracing session
47 * but also make sure we have a unique session id associated with a session
48 * daemon which can provide multiple data source.
49 */
b8aa1682
JD
50 uint64_t id;
51 struct lttcomm_sock *sock;
b8aa1682
JD
52};
53
54/*
55 * Represents a stream in the relay
56 */
57struct relay_stream {
58 uint64_t stream_handle;
173af62f 59 uint64_t prev_seq; /* previous data sequence number encountered */
7717e361 60 struct lttng_ht_node_ulong stream_n;
b8aa1682 61 struct relay_session *session;
9d1bbf21 62 struct rcu_head rcu_node;
7717e361 63 int fd;
1c20f0e2 64 /* FD on which to write the index data. */
309167d2 65 int index_fd;
173af62f 66
0f907de1
JD
67 char *path_name;
68 char *channel_name;
69 /* on-disk circular buffer of tracefiles */
70 uint64_t tracefile_size;
71 uint64_t tracefile_size_current;
72 uint64_t tracefile_count;
73 uint64_t tracefile_count_current;
74
173af62f
DG
75 /* Information telling us when to close the stream */
76 unsigned int close_flag:1;
77 uint64_t last_net_seq_num;
f7079f67
DG
78 /* Indicate if the stream was initialized for a data pending command. */
79 unsigned int data_pending_check_done:1;
b8aa1682
JD
80};
81
82/*
83 * Internal structure to map a socket with the corresponding session.
84 * A hashtable indexed on the socket FD is used for the lookups.
85 */
86struct relay_command {
87 struct lttcomm_sock *sock;
7717e361 88 struct relay_session *session;
b8aa1682
JD
89 struct cds_wfq_node node;
90 struct lttng_ht_node_ulong sock_n;
9d1bbf21 91 struct rcu_head rcu_node;
b8aa1682 92 enum connection_type type;
c5b6f4f0 93 unsigned int version_check_done:1;
0f907de1
JD
94 /* protocol version to use for this session */
95 uint32_t major;
96 uint32_t minor;
b8aa1682
JD
97};
98
0f907de1
JD
99extern char *opt_output_path;
100
7717e361 101#endif /* LTTNG_RELAYD_H */
This page took 0.031768 seconds and 4 git commands to generate.