Commit | Line | Data |
---|---|---|
fda89c9b DG |
1 | /* |
2 | * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca> | |
3 | * | |
4 | * This program is free software; you can redistribute it and/or | |
5 | * modify it under the terms of the GNU General Public License | |
82a3637f DG |
6 | * as published by the Free Software Foundation; only version 2 |
7 | * of the License. | |
fda89c9b DG |
8 | * |
9 | * This program is distributed in the hope that it will be useful, | |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | * GNU General Public License for more details. | |
13 | * | |
14 | * You should have received a copy of the GNU General Public License | |
15 | * along with this program; if not, write to the Free Software | |
16 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
17 | */ | |
18 | ||
62499ad6 DG |
19 | #ifndef _LTT_TRACE_KERNEL_H |
20 | #define _LTT_TRACE_KERNEL_H | |
fda89c9b | 21 | |
9e78d6ae DG |
22 | #include <limits.h> |
23 | #include <urcu/list.h> | |
d4a2a84a | 24 | |
f3ed775e | 25 | #include <lttng/lttng.h> |
1e307fab | 26 | #include <lttng-kernel.h> |
54012638 | 27 | |
20fe2104 DG |
28 | /* Kernel event list */ |
29 | struct ltt_kernel_event_list { | |
30 | struct cds_list_head head; | |
31 | }; | |
32 | ||
8c0faa1d DG |
33 | /* Channel stream list */ |
34 | struct ltt_kernel_stream_list { | |
35 | struct cds_list_head head; | |
36 | }; | |
37 | ||
38 | /* Channel list */ | |
39 | struct ltt_kernel_channel_list { | |
40 | struct cds_list_head head; | |
41 | }; | |
42 | ||
20fe2104 DG |
43 | /* Kernel event */ |
44 | struct ltt_kernel_event { | |
20fe2104 | 45 | int fd; |
e953ef25 | 46 | int enabled; |
d65106b1 | 47 | struct lttng_kernel_context *ctx; |
f34daff7 | 48 | struct lttng_kernel_event *event; |
20fe2104 DG |
49 | struct cds_list_head list; |
50 | }; | |
51 | ||
52 | /* Kernel channel */ | |
53 | struct ltt_kernel_channel { | |
54 | int fd; | |
d36b8583 | 55 | int enabled; |
8c0faa1d DG |
56 | char *pathname; |
57 | unsigned int stream_count; | |
cbbbb275 | 58 | unsigned int event_count; |
d65106b1 | 59 | struct lttng_kernel_context *ctx; |
f3ed775e | 60 | struct lttng_channel *channel; |
20fe2104 | 61 | struct ltt_kernel_event_list events_list; |
8c0faa1d DG |
62 | struct ltt_kernel_stream_list stream_list; |
63 | struct cds_list_head list; | |
20fe2104 DG |
64 | }; |
65 | ||
aaf26714 DG |
66 | /* Metadata */ |
67 | struct ltt_kernel_metadata { | |
68 | int fd; | |
8c0faa1d | 69 | char *pathname; |
f3ed775e | 70 | struct lttng_channel *conf; |
aaf26714 DG |
71 | }; |
72 | ||
8c0faa1d DG |
73 | /* Channel stream */ |
74 | struct ltt_kernel_stream { | |
75 | int fd; | |
76 | char *pathname; | |
77 | int state; | |
78 | struct cds_list_head list; | |
79 | }; | |
80 | ||
20fe2104 DG |
81 | /* Kernel session */ |
82 | struct ltt_kernel_session { | |
83 | int fd; | |
8c0faa1d | 84 | int metadata_stream_fd; |
f3ed775e | 85 | int kconsumer_fds_sent; |
d9800920 | 86 | int consumer_fd; |
8c0faa1d DG |
87 | unsigned int channel_count; |
88 | unsigned int stream_count_global; | |
63053e7c | 89 | char *trace_path; |
aaf26714 | 90 | struct ltt_kernel_metadata *metadata; |
8c0faa1d | 91 | struct ltt_kernel_channel_list channel_list; |
fda89c9b DG |
92 | }; |
93 | ||
62499ad6 DG |
94 | /* |
95 | * Lookup functions. NULL is returned if not found. | |
96 | */ | |
97 | struct ltt_kernel_event *trace_kernel_get_event_by_name( | |
19e70852 | 98 | char *name, struct ltt_kernel_channel *channel); |
62499ad6 | 99 | struct ltt_kernel_channel *trace_kernel_get_channel_by_name( |
19e70852 DG |
100 | char *name, struct ltt_kernel_session *session); |
101 | ||
54012638 | 102 | /* |
c363b55d | 103 | * Create functions malloc() the data structure. |
54012638 | 104 | */ |
f9815039 | 105 | struct ltt_kernel_session *trace_kernel_create_session(char *path); |
62499ad6 DG |
106 | struct ltt_kernel_channel *trace_kernel_create_channel(struct lttng_channel *chan, char *path); |
107 | struct ltt_kernel_event *trace_kernel_create_event(struct lttng_event *ev); | |
108 | struct ltt_kernel_metadata *trace_kernel_create_metadata(char *path); | |
109 | struct ltt_kernel_stream *trace_kernel_create_stream(void); | |
54012638 | 110 | |
c363b55d DG |
111 | /* |
112 | * Destroy functions free() the data structure and remove from linked list if | |
113 | * it's applies. | |
114 | */ | |
62499ad6 DG |
115 | void trace_kernel_destroy_session(struct ltt_kernel_session *session); |
116 | void trace_kernel_destroy_metadata(struct ltt_kernel_metadata *metadata); | |
117 | void trace_kernel_destroy_channel(struct ltt_kernel_channel *channel); | |
118 | void trace_kernel_destroy_event(struct ltt_kernel_event *event); | |
119 | void trace_kernel_destroy_stream(struct ltt_kernel_stream *stream); | |
c363b55d | 120 | |
62499ad6 | 121 | #endif /* _LTT_TRACE_KERNEL_H */ |