blob: 377d8d968ba10b9169145e6ff146c2a1ca64a396 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
reed@android.com8a1c16f2008-12-17 15:59:43 +00008#ifndef SkPathHeap_DEFINED
9#define SkPathHeap_DEFINED
10
11#include "SkRefCnt.h"
12#include "SkChunkAlloc.h"
13#include "SkTDArray.h"
14
15class SkPath;
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000016class SkReadBuffer;
17class SkWriteBuffer;
reed@android.com8a1c16f2008-12-17 15:59:43 +000018
19class SkPathHeap : public SkRefCnt {
20public:
robertphillips@google.com4d73ac22012-06-13 18:54:08 +000021 SK_DECLARE_INST_COUNT(SkPathHeap)
22
23 SkPathHeap();
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000024 SkPathHeap(SkReadBuffer&);
reed@android.com8a1c16f2008-12-17 15:59:43 +000025 virtual ~SkPathHeap();
26
reed@android.coma6efe062010-03-05 18:46:37 +000027 /** Copy the path into the heap, and return the new total number of paths.
28 Thus, the returned value will be index+1, where index is the index of
29 this newly added (copied) path.
30 */
reed@android.com8a1c16f2008-12-17 15:59:43 +000031 int append(const SkPath&);
rmistry@google.comfbfcd562012-08-23 18:09:54 +000032
commit-bot@chromium.org8c2ee592014-03-07 18:42:15 +000033 /** Add the specified path to the heap using its gen ID to de-duplicate.
34 Returns the path's index in the heap + 1.
35 */
36 int insert(const SkPath&);
37
reed@android.com8a1c16f2008-12-17 15:59:43 +000038 // called during picture-playback
39 int count() const { return fPaths.count(); }
40 const SkPath& operator[](int index) const {
41 return *fPaths[index];
42 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +000043
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000044 void flatten(SkWriteBuffer&) const;
rmistry@google.comfbfcd562012-08-23 18:09:54 +000045
reed@android.com8a1c16f2008-12-17 15:59:43 +000046private:
47 // we store the paths in the heap (placement new)
48 SkChunkAlloc fHeap;
49 // we just store ptrs into fHeap here
50 SkTDArray<SkPath*> fPaths;
robertphillips@google.com4d73ac22012-06-13 18:54:08 +000051
commit-bot@chromium.org8c2ee592014-03-07 18:42:15 +000052 class LookupEntry {
53 public:
54 LookupEntry(const SkPath& path);
55
56 int storageSlot() const { return fStorageSlot; }
57 void setStorageSlot(int storageSlot) { fStorageSlot = storageSlot; }
58
59 static bool Less(const LookupEntry& a, const LookupEntry& b) {
60 return a.fGenerationID < b.fGenerationID;
61 }
62
63 private:
64 uint32_t fGenerationID; // the SkPath's generation ID
65 // the path's index in the heap + 1. It is 0 if the path is not yet in the heap.
skia.committer@gmail.come62513f2014-03-08 03:02:06 +000066 int fStorageSlot;
commit-bot@chromium.org8c2ee592014-03-07 18:42:15 +000067 };
68
69 SkTDArray<LookupEntry> fLookupTable;
70
71 SkPathHeap::LookupEntry* addIfNotPresent(const SkPath& path);
72
robertphillips@google.com4d73ac22012-06-13 18:54:08 +000073 typedef SkRefCnt INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +000074};
75
76#endif