struct bt_context is opaque
[babeltrace.git] / include / babeltrace / context.h
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 *
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:
21 *
22 * The above copyright notice and this permission notice shall be
23 * included in all copies or substantial portions of the Software.
24 */
25
26 /* struct bt_context is opaque to the user */
27 struct bt_context;
28
29 /*
30 * bt_context_create : create a Babeltrace context
31 *
32 * Allocate a new context. The creation of the context sets the refcount
33 * to 1.
34 *
35 * Returns an allocated context on success and NULL on error
36 */
37 struct bt_context *bt_context_create(void);
38
39 /*
40 * bt_context_add_trace : Add a trace by path to the context
41 *
42 * Open a trace
43 *
44 * Return the trace handle id of the opened trace
45 */
46 int bt_context_add_trace(struct bt_context *ctx, const char *path,
47 const char *format);
48
49 /*
50 * bt_context_add_traces: Open a trace recursively
51 *
52 * Find each trace present in the subdirectory starting from the given
53 * path, and add them to the context.
54 *
55 * Return: 0 on success, nonzero on failure.
56 */
57 int bt_context_add_traces(struct bt_context *ctx, const char *path,
58 const char *format);
59
60 /*
61 * bt_context_remove_trace: Remove a trace from the context.
62 *
63 * Effectively closing the trace.
64 */
65 void bt_context_remove_trace(struct bt_context *ctx, int trace_id);
66
67 /*
68 * bt_context_get and bt_context_put : increments and decrement the
69 * refcount of the context
70 *
71 * These functions ensures that the context won't be destroyed when it
72 * is in use. The same number of get and put (plus one extra put to
73 * release the initial reference done at creation) has to be done to
74 * destroy a context.
75 *
76 * When the context refcount is decremented to 0 by a bt_context_put,
77 * the context is freed.
78 */
79 void bt_context_get(struct bt_context *ctx);
80 void bt_context_put(struct bt_context *ctx);
81
82 #endif /* _BABELTRACE_CONTEXT_H */
This page took 0.03068 seconds and 4 git commands to generate.