blob: ce573194f1d1bc4c3af9f28b306916c3e83a82ef [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com8a1c16f2008-12-17 15:59:43 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2008 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#ifndef SkImageRef_GlobalPool_DEFINED
11#define SkImageRef_GlobalPool_DEFINED
12
13#include "SkImageRef.h"
14
15class SkImageRef_GlobalPool : public SkImageRef {
16public:
17 // if pool is null, use the global pool
18 SkImageRef_GlobalPool(SkStream*, SkBitmap::Config, int sampleSize = 1);
19 virtual ~SkImageRef_GlobalPool();
20
21 // overrides
22 virtual Factory getFactory() const {
23 return Create;
24 }
25 static SkPixelRef* Create(SkFlattenableReadBuffer&);
26
27 // API to control the global pool
28
29 /** Return the amount specified as the budget for the cache (in bytes).
30 */
31 static size_t GetRAMBudget();
32
33 /** Set a new budget value for the cache.
34 */
35 static void SetRAMBudget(size_t);
36
37 /** Return how much ram is currently in use by the global cache.
38 */
39 static size_t GetRAMUsed();
40
41 /** Free up (approximately) enough such that the amount used by the cache
42 is <= the specified amount. Since some images may be "in use", the
43 amount actually freed may not always result in a ram usage value <=
44 to the requested amount. In addition, because of the
45 chunky nature of the cache, the resulting usage may be < the requested
46 amount.
47 */
48 static void SetRAMUsed(size_t usageInBytes);
49
50 static void DumpPool();
51
52protected:
53 virtual bool onDecode(SkImageDecoder* codec, SkStream* stream,
54 SkBitmap* bitmap, SkBitmap::Config config,
55 SkImageDecoder::Mode mode);
56
57 virtual void onUnlockPixels();
58
59 SkImageRef_GlobalPool(SkFlattenableReadBuffer&);
60
61private:
62 typedef SkImageRef INHERITED;
63};
64
65#endif