Delete chrome.mediaGalleriesPrivate because the functionality unique to it has since...
[chromium-blink-merge.git] / cc / resources / resource_pool.h
blob72467c90ebfdb116a30e823b4b57f6c2d79377e5
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CC_RESOURCES_RESOURCE_POOL_H_
6 #define CC_RESOURCES_RESOURCE_POOL_H_
8 #include <list>
10 #include "base/memory/scoped_ptr.h"
11 #include "cc/base/cc_export.h"
12 #include "cc/output/renderer.h"
13 #include "cc/resources/resource.h"
14 #include "cc/resources/resource_format.h"
16 namespace cc {
17 class ScopedResource;
19 class CC_EXPORT ResourcePool {
20 public:
21 static scoped_ptr<ResourcePool> Create(ResourceProvider* resource_provider,
22 GLenum target,
23 ResourceFormat default_format) {
24 return make_scoped_ptr(new ResourcePool(resource_provider,
25 target,
26 default_format));
29 virtual ~ResourcePool();
31 scoped_ptr<ScopedResource> AcquireResource(const gfx::Size& size,
32 ResourceFormat format);
33 void ReleaseResource(scoped_ptr<ScopedResource>);
35 void SetResourceUsageLimits(size_t max_memory_usage_bytes,
36 size_t max_unused_memory_usage_bytes,
37 size_t max_resource_count);
39 void ReduceResourceUsage();
40 // This might block if |wait_if_needed| is true and one of the currently
41 // busy resources has a read lock fence that needs to be waited upon before
42 // it can be locked for write again.
43 void CheckBusyResources(bool wait_if_needed);
45 size_t total_memory_usage_bytes() const { return memory_usage_bytes_; }
46 size_t acquired_memory_usage_bytes() const {
47 return memory_usage_bytes_ - unused_memory_usage_bytes_;
49 size_t total_resource_count() const { return resource_count_; }
50 size_t acquired_resource_count() const {
51 return resource_count_ - unused_resources_.size();
53 size_t busy_resource_count() const { return busy_resources_.size(); }
55 ResourceFormat default_format() const { return default_format_; }
57 protected:
58 ResourcePool(ResourceProvider* resource_provider,
59 GLenum target,
60 ResourceFormat default_format);
62 bool ResourceUsageTooHigh();
64 private:
65 void DidFinishUsingResource(ScopedResource* resource);
67 ResourceProvider* resource_provider_;
68 const GLenum target_;
69 // TODO(peterp): Remove the format state and let the clients keep track of
70 // this instead.
71 const ResourceFormat default_format_;
72 size_t max_memory_usage_bytes_;
73 size_t max_unused_memory_usage_bytes_;
74 size_t max_resource_count_;
75 size_t memory_usage_bytes_;
76 size_t unused_memory_usage_bytes_;
77 size_t resource_count_;
79 typedef std::list<ScopedResource*> ResourceList;
80 ResourceList unused_resources_;
81 ResourceList busy_resources_;
83 DISALLOW_COPY_AND_ASSIGN(ResourcePool);
86 } // namespace cc
88 #endif // CC_RESOURCES_RESOURCE_POOL_H_