aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/debugger/SkJsonWriteBuffer.h
blob: 0e0d5d60e1f307685ab8580c26a4659fb8005ca5 (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
/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkJsonWriteBuffer_DEFINED
#define SkJsonWriteBuffer_DEFINED

#include "SkWriteBuffer.h"

#include "SkJSONCPP.h"

class SkPath;
class UrlDataManager;

class SkJsonWriteBuffer final : public SkWriteBuffer {
public:
    SkJsonWriteBuffer(UrlDataManager* urlDataManager)
        : fUrlDataManager(urlDataManager)
        , fJson(Json::objectValue) {}

    void writePad32(const void* buffer, size_t bytes) override;
    void writeByteArray(const void* data, size_t size) override;
    void writeBool(bool value) override;
    void writeScalar(SkScalar value) override;
    void writeScalarArray(const SkScalar* value, uint32_t count) override;
    void writeInt(int32_t value) override;
    void writeIntArray(const int32_t* value, uint32_t count) override;
    void writeUInt(uint32_t value) override;
    void writeString(const char* value) override;

    void writeFlattenable(const SkFlattenable* flattenable) override;
    void writeColor(SkColor color) override;
    void writeColorArray(const SkColor* color, uint32_t count) override;
    void writeColor4f(const SkColor4f& color) override;
    void writeColor4fArray(const SkColor4f* color, uint32_t count) override;
    void writePoint(const SkPoint& point) override;
    void writePointArray(const SkPoint* point, uint32_t count) override;
    void writeMatrix(const SkMatrix& matrix) override;
    void writeIRect(const SkIRect& rect) override;
    void writeRect(const SkRect& rect) override;
    void writeRegion(const SkRegion& region) override;
    void writePath(const SkPath& path) override;
    size_t writeStream(SkStream* stream, size_t length) override;
    void writeImage(const SkImage*) override;
    void writeTypeface(SkTypeface* typeface) override;
    void writePaint(const SkPaint& paint) override;

    const Json::Value& getValue() const { return fJson; }

private:
    void append(const char* type, const Json::Value& value);

    UrlDataManager* fUrlDataManager;
    Json::Value fJson;
};

#endif