babeltrace lib cleanup, folded with open/remove trace functions
[babeltrace.git] / include / babeltrace / context.h
CommitLineData
b469d2dd
JD
1#ifndef _BABELTRACE_CONTEXT_H
2#define _BABELTRACE_CONTEXT_H
3
4/*
5 * BabelTrace
6 *
7 * context header
8 *
9 * Copyright 2012 EfficiOS Inc. and Linux Foundation
10 *
11 * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12 * Julien Desfossez <julien.desfossez@efficios.com>
13 *
6cba487f
MD
14 * Permission is hereby granted, free of charge, to any person obtaining
15 * a copy of this software and associated documentation files (the
16 * "Software"), to deal in the Software without restriction, including
17 * without limitation the rights to use, copy, modify, merge, publish,
18 * distribute, sublicense, and/or sell copies of the Software, and to
19 * permit persons to whom the Software is furnished to do so, subject to
20 * the following conditions:
b469d2dd 21 *
6cba487f
MD
22 * The above copyright notice and this permission notice shall be
23 * included in all copies or substantial portions of the Software.
b469d2dd
JD
24 */
25
26struct trace_collection;
6cba487f 27struct GHashTable;
b469d2dd
JD
28
29/*
6cba487f
MD
30 * The context represents the object in which a trace_collection is
31 * open. As long as this structure is allocated, the trace_collection is
32 * open and the traces it contains can be read and seeked by the
33 * iterators and callbacks.
b469d2dd 34 *
6cba487f
MD
35 * It has to be created with the bt_context_create() function and
36 * destroyed by calling one more bt_context_put() than bt_context_get()
b469d2dd
JD
37 */
38struct bt_context {
39 struct trace_collection *tc;
6cba487f 40 GHashTable *trace_handles;
b469d2dd 41 int refcount;
842c2b97 42 int last_trace_handle_id;
b469d2dd
JD
43};
44
45/*
46 * bt_context_create : create a Babeltrace context
47 *
6cba487f
MD
48 * Allocate a new context. The creation of the context sets the refcount
49 * to 1.
b469d2dd
JD
50 *
51 * Returns an allocated context on success and NULL on error
52 */
6cba487f 53struct bt_context *bt_context_create(void);
b469d2dd
JD
54
55/*
6cba487f 56 * bt_context_add_trace : Add a trace by path to the context
b469d2dd 57 *
6cba487f
MD
58 * Open a trace
59 *
60 * Return the trace handle id of the opened trace
61 */
62int bt_context_add_trace(struct bt_context *ctx, const char *path,
63 const char *format);
64
65/*
66 * bt_context_add_traces: Open a trace recursively
67 *
68 * Find each trace presents in the subdirectory starting from the given path
69 *
70 * Return: 0 on success, nonzero on failure.
71 * The caller has the responsiblity to free the array
72 */
73int bt_context_add_traces(struct bt_context *ctx, const char *path,
74 const char *format);
75
76/*
77 * bt_context_remove_trace: Remove a trace from the context.
78 *
79 * Effectively closing the trace.
b469d2dd 80 */
6cba487f 81void bt_context_remove_trace(struct bt_context *ctx, int trace_id);
b469d2dd
JD
82
83/*
6cba487f
MD
84 * bt_context_get and bt_context_put : increments and decrement the
85 * refcount of the context
b469d2dd 86 *
6cba487f
MD
87 * These functions ensures that the context won't be destroyed when it
88 * is in use. The same number of get and put (plus one extra put to
89 * release the initial reference done at creation) has to be done to
90 * destroy a context.
b469d2dd 91 *
6cba487f
MD
92 * When the context refcount is decremented to 0 by a bt_context_put,
93 * the context is freed.
b469d2dd 94 */
6cba487f
MD
95void bt_context_get(struct bt_context *ctx);
96void bt_context_put(struct bt_context *ctx);
b469d2dd
JD
97
98#endif /* _BABELTRACE_CONTEXT_H */
This page took 0.027017 seconds and 4 git commands to generate.