struct ctf_event_declaration;
struct ctf_clock;
struct ctf_callsite;
+struct ctf_scanner;
+
+struct ctf_stream_packet_limits {
+ uint64_t begin;
+ uint64_t end;
+};
+
+struct ctf_stream_packet_timestamp {
+ struct ctf_stream_packet_limits cycles;
+ struct ctf_stream_packet_limits real;
+};
struct ctf_stream_definition {
struct ctf_stream_declaration *stream_class;
/* Event discarded information */
uint64_t events_discarded;
- uint64_t prev_real_timestamp; /* Start-of-last-packet timestamp in ns */
- uint64_t prev_real_timestamp_end; /* End-of-last-packet timestamp in ns */
- uint64_t prev_cycles_timestamp; /* Start-of-last-packet timestamp in cycles */
- uint64_t prev_cycles_timestamp_end; /* End-of-last-packet timestamp in cycles */
+ struct ctf_stream_packet_timestamp prev;
+ struct ctf_stream_packet_timestamp current;
char path[PATH_MAX]; /* Path to stream. '\0' for mmap traces */
};
GPtrArray *event_declarations; /* Array of all the struct bt_ctf_event_decl */
struct declaration_struct *packet_header_decl;
+ struct ctf_scanner *scanner;
+ int restart_root_decl;
uint64_t major;
uint64_t minor;
uint64_t events_lost;
};
-void ctf_print_discarded(FILE *fp, struct ctf_stream_definition *stream,
- int end_stream);
void ctf_update_current_packet_index(struct ctf_stream_definition *stream,
struct packet_index *prev_index,
struct packet_index *cur_index);
void ctf_print_timestamp(FILE *fp, struct ctf_stream_definition *stream,
uint64_t timestamp);
+int ctf_append_trace_metadata(struct bt_trace_descriptor *tdp,
+ FILE *metadata_fp);
#endif /* _BABELTRACE_CTF_TYPES_H */