aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkValidatingReadBuffer.h
blob: 916bed4d75b98b5be1eb6afabcf97b45104a6cb6 (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
/*
 * Copyright 2013 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkValidatingReadBuffer_DEFINED
#define SkValidatingReadBuffer_DEFINED

#include "SkRefCnt.h"
#include "SkBitmapHeap.h"
#include "SkReadBuffer.h"
#include "SkWriteBuffer.h"
#include "SkPath.h"
#include "SkPicture.h"
#include "SkReader32.h"

class SkBitmap;

class SkValidatingReadBuffer : public SkReadBuffer {
public:
    SkValidatingReadBuffer(const void* data, size_t size);
    virtual ~SkValidatingReadBuffer();

    const void* skip(size_t size) SK_OVERRIDE;

    // primitives
    bool readBool() SK_OVERRIDE;
    SkColor readColor() SK_OVERRIDE;
    SkFixed readFixed() SK_OVERRIDE;
    int32_t readInt() SK_OVERRIDE;
    SkScalar readScalar() SK_OVERRIDE;
    uint32_t readUInt() SK_OVERRIDE;
    int32_t read32() SK_OVERRIDE;

    // strings -- the caller is responsible for freeing the string contents
    void readString(SkString* string) SK_OVERRIDE;
    void* readEncodedString(size_t* length, SkPaint::TextEncoding encoding) SK_OVERRIDE;

    // common data structures
    SkFlattenable* readFlattenable(SkFlattenable::Type type) SK_OVERRIDE;
    void skipFlattenable() SK_OVERRIDE;
    void readPoint(SkPoint* point) SK_OVERRIDE;
    void readMatrix(SkMatrix* matrix) SK_OVERRIDE;
    void readIRect(SkIRect* rect) SK_OVERRIDE;
    void readRect(SkRect* rect) SK_OVERRIDE;
    void readRegion(SkRegion* region) SK_OVERRIDE;
    void readPath(SkPath* path) SK_OVERRIDE;

    // binary data and arrays
    bool readByteArray(void* value, size_t size) SK_OVERRIDE;
    bool readColorArray(SkColor* colors, size_t size) SK_OVERRIDE;
    bool readIntArray(int32_t* values, size_t size) SK_OVERRIDE;
    bool readPointArray(SkPoint* points, size_t size) SK_OVERRIDE;
    bool readScalarArray(SkScalar* values, size_t size) SK_OVERRIDE;

    // helpers to get info about arrays and binary data
    uint32_t getArrayCount() SK_OVERRIDE;

    // TODO: Implement this (securely) when needed
    SkTypeface* readTypeface() SK_OVERRIDE;

    bool validate(bool isValid) SK_OVERRIDE;
    bool isValid() const SK_OVERRIDE;

    bool validateAvailable(size_t size) SK_OVERRIDE;

private:
    bool readArray(void* value, size_t size, size_t elementSize);

    void setMemory(const void* data, size_t size);

    static bool IsPtrAlign4(const void* ptr) {
        return SkIsAlign4((uintptr_t)ptr);
    }

    bool fError;

    typedef SkReadBuffer INHERITED;
};

#endif // SkValidatingReadBuffer_DEFINED