blob: 0ec5c2c3932187472d4f284f441b6c8c017d04d1 [file] [log] [blame]
junov@chromium.org7b537062012-11-06 18:58:43 +00001
2/*
3 * Copyright 2012 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 */
8
9#ifndef SkTileGrid_DEFINED
10#define SkTileGrid_DEFINED
11
robertphillips@google.com770963f2014-04-18 18:04:41 +000012#include "SkBBHFactory.h"
junov@chromium.org7b537062012-11-06 18:58:43 +000013#include "SkBBoxHierarchy.h"
junov@chromium.org3cb834b2012-12-13 16:39:53 +000014#include "SkPictureStateTree.h"
junov@chromium.org7b537062012-11-06 18:58:43 +000015
16/**
17 * Subclass of SkBBoxHierarchy that stores elements in buckets that correspond
18 * to tile regions, disposed in a regular grid. This is useful when the tile
19 * structure that will be use in search() calls is known prior to insertion.
20 * Calls to search will return in constant time.
21 *
22 * Note: Current implementation of search() only supports looking-up regions
23 * that are an exact match to a single tile. Implementation could be augmented
24 * to support arbitrary rectangles, but performance would be sub-optimal.
25 */
26class SkTileGrid : public SkBBoxHierarchy {
27public:
commit-bot@chromium.orgac90d1d2013-10-24 11:24:38 +000028 enum {
29 // Number of tiles for which data is allocated on the stack in
30 // SkTileGrid::search. If malloc becomes a bottleneck, we may consider
31 // increasing this number. Typical large web page, say 2k x 16k, would
32 // require 512 tiles of size 256 x 256 pixels.
33 kStackAllocationTileCount = 1024
34 };
35
36 typedef void* (*SkTileGridNextDatumFunctionPtr)(SkTDArray<void*>** tileData, SkAutoSTArray<kStackAllocationTileCount, int>& tileIndices);
junov@chromium.org3cb834b2012-12-13 16:39:53 +000037
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +000038 SkTileGrid(int xTileCount, int yTileCount, const SkTileGridFactory::TileGridInfo& info,
junov@chromium.org3cb834b2012-12-13 16:39:53 +000039 SkTileGridNextDatumFunctionPtr nextDatumFunction);
junov@chromium.org7b537062012-11-06 18:58:43 +000040
41 virtual ~SkTileGrid();
42
43 /**
44 * Insert a data pointer and corresponding bounding box
45 * @param data The data pointer, may be NULL
46 * @param bounds The bounding box, should not be empty
47 * @param defer Ignored, TileArray does not defer insertions
48 */
49 virtual void insert(void* data, const SkIRect& bounds, bool) SK_OVERRIDE;
50
51 virtual void flushDeferredInserts() SK_OVERRIDE {};
52
53 /**
54 * Populate 'results' with data pointers corresponding to bounding boxes that intersect 'query'
55 * The query argument is expected to be an exact match to a tile of the grid
56 */
57 virtual void search(const SkIRect& query, SkTDArray<void*>* results) SK_OVERRIDE;
58
59 virtual void clear() SK_OVERRIDE;
60
61 /**
62 * Gets the number of insertions
63 */
64 virtual int getCount() const SK_OVERRIDE;
65
commit-bot@chromium.orgc22d1392014-02-03 18:08:33 +000066 virtual int getDepth() const SK_OVERRIDE { return -1; }
67
commit-bot@chromium.org4b32bd52013-03-15 15:06:03 +000068 virtual void rewindInserts() SK_OVERRIDE;
69
junov@chromium.org3cb834b2012-12-13 16:39:53 +000070 // Used by search() and in SkTileGridHelper implementations
71 enum {
72 kTileFinished = -1,
73 };
tfarina@chromium.org9f9d5822013-12-18 22:15:12 +000074
75 int tileCount(int x, int y); // For testing only.
76
junov@chromium.org7b537062012-11-06 18:58:43 +000077private:
junov@chromium.org3cb834b2012-12-13 16:39:53 +000078 SkTDArray<void*>& tile(int x, int y);
junov@chromium.org7b537062012-11-06 18:58:43 +000079
junov@chromium.org29b19e52013-02-27 18:35:16 +000080 int fXTileCount, fYTileCount, fTileCount;
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +000081 SkTileGridFactory::TileGridInfo fInfo;
junov@chromium.org3cb834b2012-12-13 16:39:53 +000082 SkTDArray<void*>* fTileData;
junov@chromium.org7b537062012-11-06 18:58:43 +000083 int fInsertionCount;
junov@chromium.orgadc58e42012-11-07 17:38:38 +000084 SkIRect fGridBounds;
junov@chromium.org3cb834b2012-12-13 16:39:53 +000085 SkTileGridNextDatumFunctionPtr fNextDatumFunction;
junov@chromium.org7b537062012-11-06 18:58:43 +000086
junov@chromium.org7b537062012-11-06 18:58:43 +000087 typedef SkBBoxHierarchy INHERITED;
88};
89
junov@chromium.org3cb834b2012-12-13 16:39:53 +000090/**
91 * Generic implementation for SkTileGridNextDatumFunctionPtr. user code may instantiate
92 * this template to get a valid SkTileGridNextDatumFunction implementation
93 *
94 * Returns the next element of tileData[i][tileIndices[i]] for all i and advances
95 * tileIndices[] past them. The order in which data are returned by successive
96 * calls to this method must reflect the order in which the were originally
97 * recorded into the tile grid.
98 *
99 * \param tileData array of pointers to arrays of tile data
100 * \param tileIndices per-tile data indices, indices are incremented for tiles that contain
101 * the next datum.
102 * \tparam T a type to which it is safe to cast a datum and that has an operator <
103 * such that 'a < b' is true if 'a' was inserted into the tile grid before 'b'.
104 */
105template <typename T>
commit-bot@chromium.orgac90d1d2013-10-24 11:24:38 +0000106void* SkTileGridNextDatum(SkTDArray<void*>** tileData, SkAutoSTArray<SkTileGrid::kStackAllocationTileCount, int>& tileIndices) {
scroggo@google.com28f99512013-02-22 15:46:00 +0000107 T* minVal = NULL;
junov@chromium.org3cb834b2012-12-13 16:39:53 +0000108 int tileCount = tileIndices.count();
tomhudson@google.com1aa51292013-04-05 14:21:04 +0000109 int minIndex = tileCount;
110 int maxIndex = 0;
111 // Find the next Datum; track where it's found so we reduce the size of the second loop.
junov@chromium.org3cb834b2012-12-13 16:39:53 +0000112 for (int tile = 0; tile < tileCount; ++tile) {
113 int pos = tileIndices[tile];
114 if (pos != SkTileGrid::kTileFinished) {
115 T* candidate = (T*)(*tileData[tile])[pos];
scroggo@google.com28f99512013-02-22 15:46:00 +0000116 if (NULL == minVal || (*candidate) < (*minVal)) {
junov@chromium.org3cb834b2012-12-13 16:39:53 +0000117 minVal = candidate;
tomhudson@google.com1aa51292013-04-05 14:21:04 +0000118 minIndex = tile;
119 maxIndex = tile;
120 } else if (!((*minVal) < (*candidate))) {
121 // We don't require operator==; if !(candidate<minVal) && !(minVal<candidate),
122 // candidate==minVal and we have to add this tile to the range searched.
123 maxIndex = tile;
junov@chromium.org3cb834b2012-12-13 16:39:53 +0000124 }
125 }
126 }
127 // Increment indices past the next datum
scroggo@google.com28f99512013-02-22 15:46:00 +0000128 if (minVal != NULL) {
tomhudson@google.com1aa51292013-04-05 14:21:04 +0000129 for (int tile = minIndex; tile <= maxIndex; ++tile) {
junov@chromium.org3cb834b2012-12-13 16:39:53 +0000130 int pos = tileIndices[tile];
131 if (pos != SkTileGrid::kTileFinished && (*tileData[tile])[pos] == minVal) {
132 if (++(tileIndices[tile]) >= tileData[tile]->count()) {
133 tileIndices[tile] = SkTileGrid::kTileFinished;
134 }
135 }
136 }
137 return minVal;
138 }
139 return NULL;
140}
junov@chromium.org7b537062012-11-06 18:58:43 +0000141
skia.committer@gmail.com61b05dc2012-12-14 02:02:06 +0000142#endif