e857381d3d1a9894230e6d25e933ec96090da0e1
[babeltrace.git] / plugins / plugin.c
1 /*
2 * plugin.c
3 *
4 * Babeltrace Plugin
5 *
6 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
8 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
29 const char *bt_plugin_get_name(struct bt_plugin *plugin)
30 {
31 const char *ret = NULL;
32
33 if (!plugin) {
34 goto end;
35 }
36
37 ret = plugin->name->str;
38 end:
39 return ret;
40 }
41
42 enum bt_plugin_status bt_plugin_set_name(struct bt_plugin *plugin,
43 const char *name)
44 {
45 enum bt_plugin_status ret = BT_PLUGIN_STATUS_OK;
46
47 if (!plugin || !name || name[0] == '\0') {
48 ret = BT_PLUGIN_STATUS_INVAL;
49 goto end;
50 }
51
52 g_string_assign(plugin->name, name);
53 end:
54 return ret;
55 }
56
57 enum bt_plugin_type bt_plugin_get_type(struct bt_plugin *plugin)
58 {
59 enum bt_plugin_type type = BT_PLUGIN_TYPE_UNKNOWN;
60
61 if (!plugin) {
62 goto end;
63 }
64
65 type = plugin->type;
66 end:
67 return type;
68 }
69
70 enum bt_plugin_status bt_plugin_set_error_stream(
71 struct bt_plugin *plugin, FILE *stream)
72 {
73 enum bt_plugin_status ret = BT_PLUGIN_STATUS_OK;
74
75 if (!plugin) {
76 ret = BT_PLUGIN_STATUS_INVAL;
77 goto end;
78 }
79
80 plugin->error_stream = stream;
81 end:
82 return ret;
83 }
84
85 void bt_plugin_get(struct bt_plugin *plugin)
86 {
87 if (!plugin) {
88 return;
89 }
90
91 bt_ctf_ref_get(&plugin->ref_count);
92 }
93
94 void bt_plugin_put(struct bt_plugin *plugin)
95 {
96 if (!plugin) {
97 return;
98 }
99
100 bt_ctf_ref_put(&plugin->ref_count);
101 }
This page took 0.03086 seconds and 3 git commands to generate.