OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #ifndef SkValidatingReadBuffer_DEFINED | 8 #ifndef SkValidatingReadBuffer_DEFINED |
9 #define SkValidatingReadBuffer_DEFINED | 9 #define SkValidatingReadBuffer_DEFINED |
10 | 10 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 // binary data and arrays | 50 // binary data and arrays |
51 virtual bool readByteArray(void* value, size_t size) SK_OVERRIDE; | 51 virtual bool readByteArray(void* value, size_t size) SK_OVERRIDE; |
52 virtual bool readColorArray(SkColor* colors, size_t size) SK_OVERRIDE; | 52 virtual bool readColorArray(SkColor* colors, size_t size) SK_OVERRIDE; |
53 virtual bool readIntArray(int32_t* values, size_t size) SK_OVERRIDE; | 53 virtual bool readIntArray(int32_t* values, size_t size) SK_OVERRIDE; |
54 virtual bool readPointArray(SkPoint* points, size_t size) SK_OVERRIDE; | 54 virtual bool readPointArray(SkPoint* points, size_t size) SK_OVERRIDE; |
55 virtual bool readScalarArray(SkScalar* values, size_t size) SK_OVERRIDE; | 55 virtual bool readScalarArray(SkScalar* values, size_t size) SK_OVERRIDE; |
56 | 56 |
57 // helpers to get info about arrays and binary data | 57 // helpers to get info about arrays and binary data |
58 virtual uint32_t getArrayCount() SK_OVERRIDE; | 58 virtual uint32_t getArrayCount() SK_OVERRIDE; |
59 | 59 |
60 virtual void readBitmap(SkBitmap* bitmap) SK_OVERRIDE; | |
61 // TODO: Implement this (securely) when needed | 60 // TODO: Implement this (securely) when needed |
62 virtual SkTypeface* readTypeface() SK_OVERRIDE; | 61 virtual SkTypeface* readTypeface() SK_OVERRIDE; |
63 | 62 |
64 virtual bool validate(bool isValid) SK_OVERRIDE; | 63 virtual bool validate(bool isValid) SK_OVERRIDE; |
65 virtual bool isValid() const SK_OVERRIDE; | 64 virtual bool isValid() const SK_OVERRIDE; |
66 | 65 |
67 virtual bool validateAvailable(size_t size) SK_OVERRIDE; | 66 virtual bool validateAvailable(size_t size) SK_OVERRIDE; |
68 | 67 |
69 private: | 68 private: |
70 bool readArray(void* value, size_t size, size_t elementSize); | 69 bool readArray(void* value, size_t size, size_t elementSize); |
71 | 70 |
72 void setMemory(const void* data, size_t size); | 71 void setMemory(const void* data, size_t size); |
73 | 72 |
74 static bool IsPtrAlign4(const void* ptr) { | 73 static bool IsPtrAlign4(const void* ptr) { |
75 return SkIsAlign4((uintptr_t)ptr); | 74 return SkIsAlign4((uintptr_t)ptr); |
76 } | 75 } |
77 | 76 |
78 bool fError; | 77 bool fError; |
79 | 78 |
80 typedef SkReadBuffer INHERITED; | 79 typedef SkReadBuffer INHERITED; |
81 }; | 80 }; |
82 | 81 |
83 #endif // SkValidatingReadBuffer_DEFINED | 82 #endif // SkValidatingReadBuffer_DEFINED |
OLD | NEW |