6 * Copyright 2011-2012 EfficiOS Inc. and Linux Foundation
8 * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 * Julien Desfossez <julien.desfossez@efficios.com>
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 #include <babeltrace/babeltrace.h>
31 #include <babeltrace/context.h>
32 #include <babeltrace/context-internal.h>
33 #include <babeltrace/trace-handle.h>
34 #include <babeltrace/trace-handle-internal.h>
35 #include <babeltrace/trace-collection.h>
36 #include <babeltrace/format.h>
37 #include <babeltrace/format-internal.h>
38 #include <babeltrace/babeltrace-internal.h>
44 #include <fcntl.h> /* For O_RDONLY */
49 void remove_trace_handle(struct bt_trace_handle
*handle
);
51 struct bt_context
*bt_context_create(void)
53 struct bt_context
*ctx
;
55 ctx
= g_new0(struct bt_context
, 1);
57 /* Negative handle id are errors. */
58 ctx
->last_trace_handle_id
= 0;
60 /* Instanciate the trace handle container */
61 ctx
->trace_handles
= g_hash_table_new_full(g_direct_hash
,
63 (GDestroyNotify
) remove_trace_handle
);
65 ctx
->current_iterator
= NULL
;
66 ctx
->tc
= g_new0(struct trace_collection
, 1);
67 bt_init_trace_collection(ctx
->tc
);
72 int bt_context_add_trace(struct bt_context
*ctx
, const char *path
,
73 const char *format_name
,
74 void (*packet_seek
)(struct bt_stream_pos
*pos
, size_t index
,
76 struct bt_mmap_stream_list
*stream_list
,
79 struct bt_trace_descriptor
*td
;
80 struct bt_format
*fmt
;
81 struct bt_trace_handle
*handle
;
84 if (!ctx
|| !format_name
|| (!path
&& !stream_list
))
87 fmt
= bt_lookup_format(g_quark_from_string(format_name
));
89 fprintf(stderr
, "[error] [Context] Format \"%s\" unknown.\n\n",
95 td
= fmt
->open_trace(path
, O_RDONLY
, packet_seek
, NULL
);
97 fprintf(stderr
, "[warning] [Context] Cannot open_trace of format %s at path %s.\n",
103 td
= fmt
->open_mmap_trace(stream_list
, packet_seek
, metadata
);
105 fprintf(stderr
, "[error] [Context] Cannot open_mmap_trace of format %s.\n\n",
112 /* Create an handle for the trace */
113 handle
= bt_trace_handle_create(ctx
);
115 fprintf(stderr
, "[error] [Context] Creating trace handle %s .\n\n",
120 handle
->format
= fmt
;
123 strncpy(handle
->path
, path
, PATH_MAX
);
124 handle
->path
[PATH_MAX
- 1] = '\0';
127 ret
= bt_trace_collection_add(ctx
->tc
, td
);
129 goto error_destroy_handle
;
132 fmt
->set_handle(td
, handle
);
133 if (fmt
->set_context
)
134 fmt
->set_context(td
, ctx
);
136 if (fmt
->convert_index_timestamp
) {
137 ret
= fmt
->convert_index_timestamp(td
);
139 goto error_collection_del
;
142 if (fmt
->timestamp_begin
) {
143 ret
= fmt
->timestamp_begin(td
, handle
, BT_CLOCK_REAL
,
144 &handle
->real_timestamp_begin
);
145 if (ret
< 0 && ret
!= -ENOENT
) {
147 goto error_collection_del
;
150 if (fmt
->timestamp_end
) {
151 ret
= fmt
->timestamp_end(td
, handle
, BT_CLOCK_REAL
,
152 &handle
->real_timestamp_end
);
153 if (ret
< 0 && ret
!= -ENOENT
) {
155 goto error_collection_del
;
158 if (fmt
->timestamp_begin
) {
159 ret
= fmt
->timestamp_begin(td
, handle
, BT_CLOCK_CYCLES
,
160 &handle
->cycles_timestamp_begin
);
161 if (ret
< 0 && ret
!= -ENOENT
) {
163 goto error_collection_del
;
166 if (fmt
->timestamp_end
) {
167 ret
= fmt
->timestamp_end(td
, handle
, BT_CLOCK_CYCLES
,
168 &handle
->cycles_timestamp_end
);
169 if (ret
< 0 && ret
!= -ENOENT
) {
171 goto error_collection_del
;
175 /* Add new handle to container */
176 g_hash_table_insert(ctx
->trace_handles
,
177 (gpointer
) (unsigned long) handle
->id
,
182 error_collection_del
:
183 /* Remove from containers */
184 bt_trace_collection_remove(handle
->td
->ctx
->tc
, handle
->td
);
185 error_destroy_handle
:
186 bt_trace_handle_destroy(handle
);
188 closeret
= fmt
->close_trace(td
);
190 fprintf(stderr
, "Error in close_trace callback\n");
196 int bt_context_remove_trace(struct bt_context
*ctx
, int handle_id
)
206 * Remove the handle. remove_trace_handle will be called
209 if (!g_hash_table_remove(ctx
->trace_handles
,
210 (gpointer
) (unsigned long) handle_id
)) {
219 void bt_context_destroy(struct bt_context
*ctx
)
224 * Remove all traces. The g_hash_table_destroy will call
225 * remove_trace_handle on each element.
227 g_hash_table_destroy(ctx
->trace_handles
);
229 bt_finalize_trace_collection(ctx
->tc
);
231 /* ctx->tc should always be valid */
232 assert(ctx
->tc
!= NULL
);
237 void bt_context_get(struct bt_context
*ctx
)
243 void bt_context_put(struct bt_context
*ctx
)
247 if (ctx
->refcount
== 0)
248 bt_context_destroy(ctx
);
252 void remove_trace_handle(struct bt_trace_handle
*handle
)
256 if (!handle
->td
->ctx
)
258 /* Remove from containers */
259 bt_trace_collection_remove(handle
->td
->ctx
->tc
, handle
->td
);
260 /* Close the trace */
261 ret
= handle
->format
->close_trace(handle
->td
);
263 fprintf(stderr
, "Error in close_trace callback\n");
266 bt_trace_handle_destroy(handle
);
This page took 0.034655 seconds and 4 git commands to generate.