aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/trace/SkChromeTracingTracer.h
blob: 987031641bfe1a018921cf1cf4dafbd4b94bb216 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkChromeTracingTracer_DEFINED
#define SkChromeTracingTracer_DEFINED

#include "SkEventTracer.h"
#include "SkEventTracingPriv.h"
#include "SkJSONCPP.h"
#include "SkSpinlock.h"
#include "SkString.h"
#include "SkTHash.h"

/**
 * A SkEventTracer implementation that logs events to JSON for viewing with chrome://tracing.
 */
class SkChromeTracingTracer : public SkEventTracer {
public:
    SkChromeTracingTracer(const char* filename);
    ~SkChromeTracingTracer() override;

    SkEventTracer::Handle addTraceEvent(char phase,
                                        const uint8_t* categoryEnabledFlag,
                                        const char* name,
                                        uint64_t id,
                                        int numArgs,
                                        const char** argNames,
                                        const uint8_t* argTypes,
                                        const uint64_t* argValues,
                                        uint8_t flags) override;

    void updateTraceEventDuration(const uint8_t* categoryEnabledFlag,
                                  const char* name,
                                  SkEventTracer::Handle handle) override;

    const uint8_t* getCategoryGroupEnabled(const char* name) override {
        return fCategories.getCategoryGroupEnabled(name);
    }

    const char* getCategoryGroupName(const uint8_t* categoryEnabledFlag) override {
        return fCategories.getCategoryGroupName(categoryEnabledFlag);
    }

private:
    void flush();

    enum {
        // Events are currently 88 bytes, assuming 64-bit pointers and reasonable packing.
        // This is a first guess at a number that balances memory usage vs. time overhead of
        // allocating blocks.
        kEventsPerBlock = 10000,

        // Our current tracing macros only support up to 2 arguments
        kMaxArgs = 2,
    };

    struct TraceEvent {
        // Fields are ordered to minimize size due to alignment
        char fPhase;
        uint8_t fNumArgs;
        uint8_t fArgTypes[kMaxArgs];

        const char* fName;
        const char* fCategory;
        uint64_t fID;
        uint64_t fClockBegin;
        uint64_t fClockEnd;
        SkThreadID fThreadID;

        const char* fArgNames[kMaxArgs];
        uint64_t fArgValues[kMaxArgs];
    };

    typedef std::unique_ptr<TraceEvent[]> BlockPtr;
    BlockPtr createBlock();

    typedef SkTHashMap<uint64_t, const char*> BaseTypeResolver;
    TraceEvent* appendEvent(const TraceEvent&);
    Json::Value traceEventToJson(const TraceEvent&, BaseTypeResolver* baseTypeResolver);

    SkString fFilename;
    SkSpinlock fMutex;
    SkEventTracingCategories fCategories;
    BlockPtr fCurBlock;
    int fEventsInCurBlock;
    SkTArray<BlockPtr> fBlocks;
};

#endif