Restructure objects around generic_rw() accessor
[babeltrace.git] / include / babeltrace / format.h
1 #ifndef _BABELTRACE_FORMAT_H
2 #define _BABELTRACE_FORMAT_H
3
4 /*
5 * BabelTrace
6 *
7 * Trace Format Header
8 *
9 * Copyright 2010, 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 *
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:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 */
21
22 #include <babeltrace/types.h>
23 #include <stdint.h>
24 #include <stdio.h>
25 #include <glib.h>
26
27 /* Parent trace descriptor */
28 struct trace_descriptor {
29 };
30
31 struct format {
32 GQuark name;
33
34 struct trace_descriptor *(*open_trace)(const char *path, int flags);
35 void (*close_trace)(struct trace_descriptor *descriptor);
36 };
37
38 struct format *bt_lookup_format(GQuark qname);
39 void bt_fprintf_format_list(FILE *fp);
40 int bt_register_format(struct format *format);
41
42 /* TBD: format unregistration */
43
44 #endif /* _BABELTRACE_FORMAT_H */
This page took 0.029426 seconds and 4 git commands to generate.