ctf: add metadata decoder config. and `strict-metadata` param in src.ctf.fs
[babeltrace.git] / plugins / ctf / common / metadata / decoder.h
CommitLineData
1e649dff
PP
1#ifndef _METADATA_DECODER_H
2#define _METADATA_DECODER_H
3
4/*
5 * Copyright 2016-2017 - Philippe Proulx <pproulx@efficios.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 */
17
18#include <stdint.h>
a2a54545 19#include <stdbool.h>
1e649dff
PP
20
21struct bt_ctf_trace;
22
23/* A CTF metadata decoder object */
24struct ctf_metadata_decoder;
25
26/* CTF metadata decoder status */
27enum ctf_metadata_decoder_status {
28 CTF_METADATA_DECODER_STATUS_OK = 0,
29 CTF_METADATA_DECODER_STATUS_ERROR = -1,
30 CTF_METADATA_DECODER_STATUS_INCOMPLETE = -2,
31 CTF_METADATA_DECODER_STATUS_INVAL_VERSION = -3,
32 CTF_METADATA_DECODER_STATUS_IR_VISITOR_ERROR = -4,
33};
34
a2a54545
PP
35/* Decoding configuration */
36struct ctf_metadata_decoder_config {
37 int64_t clock_class_offset_s;
38 int64_t clock_class_offset_ns;
39 bool strict;
40};
41
1e649dff 42/*
a2a54545
PP
43 * Creates a CTF metadata decoder. `name` is this decoder's trace's
44 * name.
1e649dff
PP
45 *
46 * Returns `NULL` on error.
47 */
48BT_HIDDEN
55314f2a 49struct ctf_metadata_decoder *ctf_metadata_decoder_create(
a2a54545
PP
50 const struct ctf_metadata_decoder_config *config,
51 const char *name);
1e649dff
PP
52
53/*
54 * Destroys a CTF metadata decoder that you created with
55 * ctf_metadata_decoder_create().
56 */
57BT_HIDDEN
58void ctf_metadata_decoder_destroy(
59 struct ctf_metadata_decoder *metadata_decoder);
60
61/*
62 * Decodes a new chunk of CTF metadata.
63 *
64 * This function reads the metadata from the current position of `fp`
65 * until the end of this file stream. If it finds new information (new
66 * event class, new stream class, or new clock class), it appends this
67 * information to the decoder's trace object (as returned by
68 * ctf_metadata_get_trace()), or it creates this trace.
69 *
70 * The metadata can be packetized or not.
71 *
72 * The metadata chunk needs to be complete and scannable, that is,
73 * zero or more complete top-level blocks. If it's incomplete, this
74 * function returns `CTF_METADATA_DECODER_STATUS_INCOMPLETE`. If this
75 * function returns `CTF_METADATA_DECODER_STATUS_INCOMPLETE`, then you
76 * need to call it again with the same metadata and more to make it
77 * complete. For example:
78 *
79 * First call: event { name = hell
80 * Second call: event { name = hello_world; ... };
81 *
82 * If the conversion from the metadata text to CTF IR objects fails,
83 * this function returns `CTF_METADATA_DECODER_STATUS_IR_VISITOR_ERROR`.
84 *
85 * If everything goes as expected, this function returns
86 * `CTF_METADATA_DECODER_STATUS_OK`.
87 */
88BT_HIDDEN
89enum ctf_metadata_decoder_status ctf_metadata_decoder_decode(
90 struct ctf_metadata_decoder *metadata_decoder, FILE *fp);
91
92/*
93 * Returns a new reference to the current CTF IR trace object which is
94 * the result of the metadata decoding process.
95 *
96 * The trace object, once created, remains the same until you call
97 * ctf_metadata_decoder_destroy().
98 */
99BT_HIDDEN
100struct bt_ctf_trace *ctf_metadata_decoder_get_trace(
101 struct ctf_metadata_decoder *metadata_decoder);
102
103/*
104 * Checks whether or not a given metadata file stream is packetized, and
105 * if so, sets `*byte_order` to the byte order of the first packet.
106 */
107BT_HIDDEN
108bool ctf_metadata_decoder_is_packetized(FILE *fp, int *byte_order);
109
110/*
111 * Decodes a packetized metadata file stream to a NULL-terminated
112 * text buffer using the given byte order.
113 */
114BT_HIDDEN
115int ctf_metadata_decoder_packetized_file_stream_to_buf(
116 FILE *fp, char **buf, int byte_order);
117
118#endif /* _METADATA_DECODER_H */
This page took 0.030307 seconds and 4 git commands to generate.