X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fust-metadata.cpp;h=566799efd08b2016e7ce24edeeadb3cd70937d04;hb=bacc39bbfbccc984d2b558b41cf8ab42a8592d09;hp=b507f7870e687841abe139c17b1a805b42c97612;hpb=8957eb485bb4d777f075109f6c658b842352aa68;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/ust-metadata.cpp b/src/bin/lttng-sessiond/ust-metadata.cpp index b507f7870..566799efd 100644 --- a/src/bin/lttng-sessiond/ust-metadata.cpp +++ b/src/bin/lttng-sessiond/ust-metadata.cpp @@ -15,6 +15,7 @@ #include #include #include +#include #include "ust-registry.hpp" #include "ust-clock.hpp" @@ -841,6 +842,16 @@ int ust_metadata_event_statedump(struct ust_registry_session *session, if (chan->chan_id == -1U) return 0; + /* + * We don't want to output an event's metadata before its parent + * stream's metadata. If the stream's metadata hasn't been output yet, + * skip this event. Its metadata will be output when we output the + * stream's metadata. + */ + if (!chan->metadata_dumped || event->metadata_dumped) { + return 0; + } + ret = lttng_metadata_printf(session, "event {\n" " name = \"%s\";\n" @@ -899,7 +910,7 @@ end: int ust_metadata_channel_statedump(struct ust_registry_session *session, struct ust_registry_channel *chan) { - int ret = 0; + int ret; /* Don't dump metadata events */ if (chan->chan_id == -1U) @@ -918,37 +929,65 @@ int ust_metadata_channel_statedump(struct ust_registry_session *session, "struct event_header_compact" : "struct event_header_large"); if (ret) { - goto end; + return ret; } if (chan->ctx_fields) { ret = lttng_metadata_printf(session, " event.context := struct {\n"); if (ret) { - goto end; + return ret; } } ret = _lttng_context_metadata_statedump(session, chan->nr_ctx_fields, chan->ctx_fields); if (ret) { - goto end; + return ret; } if (chan->ctx_fields) { ret = lttng_metadata_printf(session, " };\n"); if (ret) { - goto end; + return ret; } } ret = lttng_metadata_printf(session, "};\n\n"); + if (ret) { + return ret; + } + /* Flag success of metadata dump. */ chan->metadata_dumped = 1; -end: - return ret; + /* + * Output the metadata of any existing event. + * + * Sort the events by id. This is not necessary, but it's nice to have + * a more predictable order in the metadata file. + */ + std::vector events; + { + cds_lfht_iter event_iter; + ust_registry_event *event; + cds_lfht_for_each_entry(chan->events->ht, &event_iter, event, + node.node) { + events.push_back(event); + } + } + + std::sort(events.begin(), events.end(), + [] (ust_registry_event *a, ust_registry_event *b) { + return a->id < b->id; + }); + + for (ust_registry_event *event : events) { + ust_metadata_event_statedump(session, chan, event); + } + + return 0; } static