Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / gpu / command_buffer / service / memory_program_cache.h
1 // Copyright (c) 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.
4
5 #ifndef GPU_COMMAND_BUFFER_SERVICE_MEMORY_PROGRAM_CACHE_H_
6 #define GPU_COMMAND_BUFFER_SERVICE_MEMORY_PROGRAM_CACHE_H_
7
8 #include <map>
9 #include <string>
10
11 #include "base/containers/hash_tables.h"
12 #include "base/containers/mru_cache.h"
13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h"
15 #include "gpu/command_buffer/service/gles2_cmd_decoder.h"
16 #include "gpu/command_buffer/service/program_cache.h"
17 #include "gpu/command_buffer/service/shader_translator.h"
18
19 namespace gpu {
20 namespace gles2 {
21
22 // Program cache that stores binaries completely in-memory
23 class GPU_EXPORT MemoryProgramCache : public ProgramCache {
24  public:
25   MemoryProgramCache();
26   explicit MemoryProgramCache(const size_t max_cache_size_bytes);
27   ~MemoryProgramCache() override;
28
29   ProgramLoadResult LoadLinkedProgram(
30       GLuint program,
31       Shader* shader_a,
32       const ShaderTranslatorInterface* translator_a,
33       Shader* shader_b,
34       const ShaderTranslatorInterface* translator_b,
35       const LocationMap* bind_attrib_location_map,
36       const ShaderCacheCallback& shader_callback) override;
37   void SaveLinkedProgram(GLuint program,
38                          const Shader* shader_a,
39                          const ShaderTranslatorInterface* translator_a,
40                          const Shader* shader_b,
41                          const ShaderTranslatorInterface* translator_b,
42                          const LocationMap* bind_attrib_location_map,
43                          const ShaderCacheCallback& shader_callback) override;
44
45   void LoadProgram(const std::string& program) override;
46
47  private:
48   void ClearBackend() override;
49
50   class ProgramCacheValue : public base::RefCounted<ProgramCacheValue> {
51    public:
52     ProgramCacheValue(GLsizei length,
53                       GLenum format,
54                       const char* data,
55                       const std::string& program_hash,
56                       const char* shader_0_hash,
57                       const AttributeMap& attrib_map_0,
58                       const UniformMap& uniform_map_0,
59                       const VaryingMap& varying_map_0,
60                       const char* shader_1_hash,
61                       const AttributeMap& attrib_map_1,
62                       const UniformMap& uniform_map_1,
63                       const VaryingMap& varying_map_1,
64                       MemoryProgramCache* program_cache);
65
66     GLsizei length() const {
67       return length_;
68     }
69
70     GLenum format() const {
71       return format_;
72     }
73
74     const char* data() const {
75       return data_.get();
76     }
77
78     const std::string& shader_0_hash() const {
79       return shader_0_hash_;
80     }
81
82     const AttributeMap& attrib_map_0() const {
83       return attrib_map_0_;
84     }
85
86     const UniformMap& uniform_map_0() const {
87       return uniform_map_0_;
88     }
89
90     const VaryingMap& varying_map_0() const {
91       return varying_map_0_;
92     }
93
94     const std::string& shader_1_hash() const {
95       return shader_1_hash_;
96     }
97
98     const AttributeMap& attrib_map_1() const {
99       return attrib_map_1_;
100     }
101
102     const UniformMap& uniform_map_1() const {
103       return uniform_map_1_;
104     }
105
106     const VaryingMap& varying_map_1() const {
107       return varying_map_1_;
108     }
109
110    private:
111     friend class base::RefCounted<ProgramCacheValue>;
112
113     ~ProgramCacheValue();
114
115     const GLsizei length_;
116     const GLenum format_;
117     const scoped_ptr<const char[]> data_;
118     const std::string program_hash_;
119     const std::string shader_0_hash_;
120     const AttributeMap attrib_map_0_;
121     const UniformMap uniform_map_0_;
122     const VaryingMap varying_map_0_;
123     const std::string shader_1_hash_;
124     const AttributeMap attrib_map_1_;
125     const UniformMap uniform_map_1_;
126     const VaryingMap varying_map_1_;
127     MemoryProgramCache* const program_cache_;
128
129     DISALLOW_COPY_AND_ASSIGN(ProgramCacheValue);
130   };
131
132   friend class ProgramCacheValue;
133
134   typedef base::MRUCache<std::string,
135                          scoped_refptr<ProgramCacheValue> > ProgramMRUCache;
136
137   const size_t max_size_bytes_;
138   size_t curr_size_bytes_;
139   ProgramMRUCache store_;
140
141   DISALLOW_COPY_AND_ASSIGN(MemoryProgramCache);
142 };
143
144 }  // namespace gles2
145 }  // namespace gpu
146
147 #endif  // GPU_COMMAND_BUFFER_SERVICE_MEMORY_PROGRAM_CACHE_H_