Cleanup: apply `include-what-you-use` guideline for `mbstate_t`
[lttng-ust.git] / liblttng-ust / ust-core.c
... / ...
CommitLineData
1/*
2 * ust-core.c
3 *
4 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; only
9 * version 2.1 of the License.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#define _LGPL_SOURCE
22#include <stddef.h>
23#include <stdlib.h>
24#include <lttng/ust-events.h>
25#include <usterr-signal-safe.h>
26#include "lttng-tracer-core.h"
27#include "jhash.h"
28
29static CDS_LIST_HEAD(lttng_transport_list);
30
31struct lttng_transport *lttng_transport_find(const char *name)
32{
33 struct lttng_transport *transport;
34
35 cds_list_for_each_entry(transport, &lttng_transport_list, node) {
36 if (!strcmp(transport->name, name))
37 return transport;
38 }
39 return NULL;
40}
41
42/**
43 * lttng_transport_register - LTT transport registration
44 * @transport: transport structure
45 *
46 * Registers a transport which can be used as output to extract the data out of
47 * LTTng. Called with ust_lock held.
48 */
49void lttng_transport_register(struct lttng_transport *transport)
50{
51 cds_list_add_tail(&transport->node, &lttng_transport_list);
52}
53
54/**
55 * lttng_transport_unregister - LTT transport unregistration
56 * @transport: transport structure
57 * Called with ust_lock held.
58 */
59void lttng_transport_unregister(struct lttng_transport *transport)
60{
61 cds_list_del(&transport->node);
62}
63
64/*
65 * Needed by comm layer.
66 */
67struct lttng_enum *lttng_ust_enum_get_from_desc(struct lttng_session *session,
68 const struct lttng_enum_desc *enum_desc)
69{
70 struct lttng_enum *_enum;
71 struct cds_hlist_head *head;
72 struct cds_hlist_node *node;
73 size_t name_len = strlen(enum_desc->name);
74 uint32_t hash;
75
76 hash = jhash(enum_desc->name, name_len, 0);
77 head = &session->enums_ht.table[hash & (LTTNG_UST_ENUM_HT_SIZE - 1)];
78 cds_hlist_for_each_entry(_enum, node, head, hlist) {
79 assert(_enum->desc);
80 if (_enum->desc == enum_desc)
81 return _enum;
82 }
83 return NULL;
84}
85
86size_t lttng_ust_dummy_get_size(struct lttng_ctx_field *field, size_t offset)
87{
88 size_t size = 0;
89
90 size += lib_ring_buffer_align(offset, lttng_alignof(char));
91 size += sizeof(char); /* tag */
92 return size;
93}
94
95void lttng_ust_dummy_record(struct lttng_ctx_field *field,
96 struct lttng_ust_lib_ring_buffer_ctx *ctx,
97 struct lttng_channel *chan)
98{
99 char sel_char = (char) LTTNG_UST_DYNAMIC_TYPE_NONE;
100
101 lib_ring_buffer_align_ctx(ctx, lttng_alignof(sel_char));
102 chan->ops->event_write(ctx, &sel_char, sizeof(sel_char));
103}
104
105void lttng_ust_dummy_get_value(struct lttng_ctx_field *field,
106 struct lttng_ctx_value *value)
107{
108 value->sel = LTTNG_UST_DYNAMIC_TYPE_NONE;
109}
110
111int lttng_context_is_app(const char *name)
112{
113 if (strncmp(name, "$app.", strlen("$app.")) != 0) {
114 return 0;
115 }
116 return 1;
117}
This page took 0.023867 seconds and 4 git commands to generate.