aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/trace/slime_trace_serializer.h
blob: 61b36a121ef6fb3c19c15b873e208926c0335a26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/vespalib/trace/tracevisitor.h>
#include <vespa/vespalib/data/slime/cursor.h>
#include <stack>

namespace vespalib {

class TraceNode;

/**
 * A serializer of TraceNodes using the TraceVisitor API. The serialized order of the nodes are NOT
 * guaranteed to be in the same order as the original.
 */
class SlimeTraceSerializer : public TraceVisitor
{
public:
    SlimeTraceSerializer(slime::Cursor & cursor);
    void visit(const TraceNode & node) override;
    static const Memory TIMESTAMP;
    static const Memory PAYLOAD;
    static const Memory CHILDREN;
private:
    static void addTimestamp(slime::Cursor & current, const TraceNode & node);
    static void addPayload(slime::Cursor & current, const TraceNode & node);
    void addChildrenCursors(slime::Cursor & current, const TraceNode & node);
    void addChildrenCursorsToStack(slime::Cursor & childrenArray, const TraceNode & node);
    std::stack<slime::Cursor *> _cursors;
};

}