]> git.sesse.net Git - movit/blob - resource_pool.cpp
Merge branch 'master' into epoxy
[movit] / resource_pool.cpp
1 #include <assert.h>
2 #include <pthread.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <algorithm>
6 #include <map>
7 #include <string>
8 #include <utility>
9 #include <epoxy/gl.h>
10
11 #include "init.h"
12 #include "resource_pool.h"
13 #include "util.h"
14
15 using namespace std;
16
17 namespace movit {
18
19 ResourcePool::ResourcePool(size_t program_freelist_max_length,
20                            size_t texture_freelist_max_bytes,
21                            size_t fbo_freelist_max_length)
22         : program_freelist_max_length(program_freelist_max_length),
23           texture_freelist_max_bytes(texture_freelist_max_bytes),
24           fbo_freelist_max_length(fbo_freelist_max_length),
25           texture_freelist_bytes(0)
26 {
27         pthread_mutex_init(&lock, NULL);
28 }
29
30 ResourcePool::~ResourcePool()
31 {
32         assert(program_refcount.empty());
33
34         for (list<GLuint>::const_iterator freelist_it = program_freelist.begin();
35              freelist_it != program_freelist.end();
36              ++freelist_it) {
37                 delete_program(*freelist_it);
38         }
39         assert(programs.empty());
40         assert(program_shaders.empty());
41
42         for (list<GLuint>::const_iterator freelist_it = texture_freelist.begin();
43              freelist_it != texture_freelist.end();
44              ++freelist_it) {
45                 GLuint free_texture_num = *freelist_it;
46                 assert(texture_formats.count(free_texture_num) != 0);
47                 texture_freelist_bytes -= estimate_texture_size(texture_formats[free_texture_num]);
48                 texture_formats.erase(free_texture_num);
49                 glDeleteTextures(1, &free_texture_num);
50                 check_error();
51         }
52         assert(texture_formats.empty());
53         assert(texture_freelist_bytes == 0);
54
55         for (list<GLuint>::const_iterator freelist_it = fbo_freelist.begin();
56              freelist_it != fbo_freelist.end();
57              ++freelist_it) {
58                 GLuint free_fbo_num = *freelist_it;
59                 assert(fbo_formats.count(free_fbo_num) != 0);
60                 fbo_formats.erase(free_fbo_num);
61                 glDeleteFramebuffers(1, &free_fbo_num);
62                 check_error();
63         }
64         assert(fbo_formats.empty());
65 }
66
67 void ResourcePool::delete_program(GLuint glsl_program_num)
68 {
69         bool found_program = false;
70         for (map<pair<string, string>, GLuint>::iterator program_it = programs.begin();
71              program_it != programs.end();
72              ++program_it) {
73                 if (program_it->second == glsl_program_num) {
74                         programs.erase(program_it);
75                         found_program = true;
76                         break;
77                 }
78         }
79         assert(found_program);
80         glDeleteProgram(glsl_program_num);
81
82         map<GLuint, pair<GLuint, GLuint> >::iterator shader_it =
83                 program_shaders.find(glsl_program_num);
84         assert(shader_it != program_shaders.end());
85
86         glDeleteShader(shader_it->second.first);
87         glDeleteShader(shader_it->second.second);
88         program_shaders.erase(shader_it);
89 }
90
91 GLuint ResourcePool::compile_glsl_program(const string& vertex_shader, const string& fragment_shader)
92 {
93         GLuint glsl_program_num;
94         pthread_mutex_lock(&lock);
95         const pair<string, string> key(vertex_shader, fragment_shader);
96         if (programs.count(key)) {
97                 // Already in the cache. Increment the refcount, or take it off the freelist
98                 // if it's zero.
99                 glsl_program_num = programs[key];
100                 map<GLuint, int>::iterator refcount_it = program_refcount.find(glsl_program_num);
101                 if (refcount_it != program_refcount.end()) {
102                         ++refcount_it->second;
103                 } else {
104                         list<GLuint>::iterator freelist_it =
105                                 find(program_freelist.begin(), program_freelist.end(), glsl_program_num);
106                         assert(freelist_it != program_freelist.end());
107                         program_freelist.erase(freelist_it);
108                         program_refcount.insert(make_pair(glsl_program_num, 1));
109                 }
110         } else {
111                 // Not in the cache. Compile the shaders.
112                 glsl_program_num = glCreateProgram();
113                 GLuint vs_obj = compile_shader(vertex_shader, GL_VERTEX_SHADER);
114                 GLuint fs_obj = compile_shader(fragment_shader, GL_FRAGMENT_SHADER);
115                 glAttachShader(glsl_program_num, vs_obj);
116                 check_error();
117                 glAttachShader(glsl_program_num, fs_obj);
118                 check_error();
119                 glLinkProgram(glsl_program_num);
120                 check_error();
121
122                 GLint success;
123                 glGetProgramiv(glsl_program_num, GL_LINK_STATUS, &success);
124                 if (success == GL_FALSE) {
125                         GLchar error_log[1024] = {0};
126                         glGetProgramInfoLog(glsl_program_num, 1024, NULL, error_log);
127                         fprintf(stderr, "Error linking program: %s\n", error_log);
128                         exit(1);
129                 }
130
131                 if (movit_debug_level == MOVIT_DEBUG_ON) {
132                         // Output shader to a temporary file, for easier debugging.
133                         static int compiled_shader_num = 0;
134                         char filename[256];
135                         sprintf(filename, "chain-%03d.frag", compiled_shader_num++);
136                         FILE *fp = fopen(filename, "w");
137                         if (fp == NULL) {
138                                 perror(filename);
139                                 exit(1);
140                         }
141                         fprintf(fp, "%s\n", fragment_shader.c_str());
142                         fclose(fp);
143                 }
144
145                 programs.insert(make_pair(key, glsl_program_num));
146                 program_refcount.insert(make_pair(glsl_program_num, 1));
147                 program_shaders.insert(make_pair(glsl_program_num, make_pair(vs_obj, fs_obj)));
148         }
149         pthread_mutex_unlock(&lock);
150         return glsl_program_num;
151 }
152
153 void ResourcePool::release_glsl_program(GLuint glsl_program_num)
154 {
155         pthread_mutex_lock(&lock);
156         map<GLuint, int>::iterator refcount_it = program_refcount.find(glsl_program_num);
157         assert(refcount_it != program_refcount.end());
158
159         if (--refcount_it->second == 0) {
160                 program_refcount.erase(refcount_it);
161                 assert(find(program_freelist.begin(), program_freelist.end(), glsl_program_num)
162                         == program_freelist.end());
163                 program_freelist.push_front(glsl_program_num);
164                 if (program_freelist.size() > program_freelist_max_length) {
165                         delete_program(program_freelist.back());
166                         program_freelist.pop_back();
167                 }
168         }
169
170         pthread_mutex_unlock(&lock);
171 }
172
173 GLuint ResourcePool::create_2d_texture(GLint internal_format, GLsizei width, GLsizei height)
174 {
175         pthread_mutex_lock(&lock);
176         // See if there's a texture on the freelist we can use.
177         for (list<GLuint>::iterator freelist_it = texture_freelist.begin();
178              freelist_it != texture_freelist.end();
179              ++freelist_it) {
180                 GLuint texture_num = *freelist_it;
181                 map<GLuint, Texture2D>::const_iterator format_it = texture_formats.find(texture_num);
182                 assert(format_it != texture_formats.end());
183                 if (format_it->second.internal_format == internal_format &&
184                     format_it->second.width == width &&
185                     format_it->second.height == height) {
186                         texture_freelist_bytes -= estimate_texture_size(format_it->second);
187                         texture_freelist.erase(freelist_it);
188                         pthread_mutex_unlock(&lock);
189                         return texture_num;
190                 }
191         }
192
193         // Find any reasonable format given the internal format; OpenGL validates it
194         // even though we give NULL as pointer.
195         GLenum format;
196         switch (internal_format) {
197         case GL_RGBA32F_ARB:
198         case GL_RGBA16F_ARB:
199         case GL_RGBA8:
200         case GL_SRGB8_ALPHA8:
201                 format = GL_RGBA;
202                 break;
203         case GL_RGB32F:
204         case GL_RGB16F:
205         case GL_RGB8:
206                 format = GL_RGB;
207                 break;
208         case GL_RG32F:
209         case GL_RG16F:
210         case GL_RG8:
211                 format = GL_RG;
212                 break;
213         case GL_R32F:
214         case GL_R16F:
215         case GL_R8:
216                 format = GL_RED;
217                 break;
218         default:
219                 // TODO: Add more here as needed.
220                 assert(false);
221         }
222
223         // Same with type; GLES is stricter than desktop OpenGL here.
224         GLenum type;
225         switch (internal_format) {
226         case GL_RGBA32F_ARB:
227         case GL_RGBA16F_ARB:
228         case GL_RGB32F:
229         case GL_RGB16F:
230         case GL_RG32F:
231         case GL_RG16F:
232         case GL_R32F:
233         case GL_R16F:
234                 type = GL_FLOAT;
235                 break;
236         case GL_SRGB8_ALPHA8:
237         case GL_RGBA8:
238         case GL_RGB8:
239         case GL_RG8:
240         case GL_R8:
241                 type = GL_UNSIGNED_BYTE;
242                 break;
243         default:
244                 // TODO: Add more here as needed.
245                 assert(false);
246         }
247
248
249         GLuint texture_num;
250         glGenTextures(1, &texture_num);
251         check_error();
252         glBindTexture(GL_TEXTURE_2D, texture_num);
253         check_error();
254         glTexImage2D(GL_TEXTURE_2D, 0, internal_format, width, height, 0, format, type, NULL);
255         check_error();
256         glBindTexture(GL_TEXTURE_2D, 0);
257         check_error();
258
259         Texture2D texture_format;
260         texture_format.internal_format = internal_format;
261         texture_format.width = width;
262         texture_format.height = height;
263         assert(texture_formats.count(texture_num) == 0);
264         texture_formats.insert(make_pair(texture_num, texture_format));
265
266         pthread_mutex_unlock(&lock);
267         return texture_num;
268 }
269
270 void ResourcePool::release_2d_texture(GLuint texture_num)
271 {
272         pthread_mutex_lock(&lock);
273         texture_freelist.push_front(texture_num);
274         assert(texture_formats.count(texture_num) != 0);
275         texture_freelist_bytes += estimate_texture_size(texture_formats[texture_num]);
276
277         while (texture_freelist_bytes > texture_freelist_max_bytes) {
278                 GLuint free_texture_num = texture_freelist.front();
279                 texture_freelist.pop_front();
280                 assert(texture_formats.count(free_texture_num) != 0);
281                 texture_freelist_bytes -= estimate_texture_size(texture_formats[free_texture_num]);
282                 texture_formats.erase(free_texture_num);
283                 glDeleteTextures(1, &free_texture_num);
284                 check_error();
285
286                 // Delete any FBO related to this texture.
287                 for (list<GLuint>::iterator fbo_freelist_it = fbo_freelist.begin();
288                      fbo_freelist_it != fbo_freelist.end(); ) {
289                         GLuint fbo_num = *fbo_freelist_it;
290                         map<GLuint, FBO>::const_iterator format_it = fbo_formats.find(fbo_num);
291                         assert(format_it != fbo_formats.end());
292                         if (format_it->second.texture_num == free_texture_num) {
293                                 glDeleteFramebuffers(1, &fbo_num);
294                                 fbo_freelist.erase(fbo_freelist_it++);
295                         } else {
296                                 ++fbo_freelist_it;
297                         }
298                 }
299         }
300         pthread_mutex_unlock(&lock);
301 }
302
303 GLuint ResourcePool::create_fbo(void *context, GLuint texture_num)
304 {
305         pthread_mutex_lock(&lock);
306         // See if there's an FBO on the freelist we can use.
307         for (list<GLuint>::iterator freelist_it = fbo_freelist.begin();
308              freelist_it != fbo_freelist.end();
309              ++freelist_it) {
310                 GLuint fbo_num = *freelist_it;
311                 map<GLuint, FBO>::const_iterator format_it = fbo_formats.find(fbo_num);
312                 assert(format_it != fbo_formats.end());
313                 if (format_it->second.context == context &&
314                     format_it->second.texture_num == texture_num) {
315                         fbo_freelist.erase(freelist_it);
316                         pthread_mutex_unlock(&lock);
317                         return fbo_num;
318                 }
319         }
320
321         // Create a new one.
322         GLuint fbo_num;
323         glGenFramebuffers(1, &fbo_num);
324         check_error();
325         glBindFramebuffer(GL_FRAMEBUFFER, fbo_num);
326         check_error();
327         glFramebufferTexture2D(
328                 GL_FRAMEBUFFER,
329                 GL_COLOR_ATTACHMENT0,
330                 GL_TEXTURE_2D,
331                 texture_num,
332                 0);
333         check_error();
334         GLenum status = glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
335         assert(status == GL_FRAMEBUFFER_COMPLETE);
336         glBindFramebuffer(GL_FRAMEBUFFER, 0);
337         check_error();
338
339         FBO fbo_format;
340         fbo_format.context = context;
341         fbo_format.texture_num = texture_num;
342         assert(fbo_formats.count(fbo_num) == 0);
343         fbo_formats.insert(make_pair(fbo_num, fbo_format));
344
345         pthread_mutex_unlock(&lock);
346         return fbo_num;
347 }
348
349 void ResourcePool::release_fbo(GLuint fbo_num)
350 {
351         pthread_mutex_lock(&lock);
352         fbo_freelist.push_front(fbo_num);
353         assert(fbo_formats.count(fbo_num) != 0);
354
355         while (fbo_freelist.size() > fbo_freelist_max_length) {
356                 GLuint free_fbo_num = fbo_freelist.front();
357                 fbo_freelist.pop_front();
358                 assert(fbo_formats.count(free_fbo_num) != 0);
359                 fbo_formats.erase(free_fbo_num);
360                 glDeleteFramebuffers(1, &free_fbo_num);
361                 check_error();
362         }
363         pthread_mutex_unlock(&lock);
364 }
365
366 size_t ResourcePool::estimate_texture_size(const Texture2D &texture_format)
367 {
368         size_t bytes_per_pixel;
369
370         switch (texture_format.internal_format) {
371         case GL_RGBA32F_ARB:
372                 bytes_per_pixel = 16;
373                 break;
374         case GL_RGBA16F_ARB:
375                 bytes_per_pixel = 8;
376                 break;
377         case GL_RGB32F_ARB:
378                 bytes_per_pixel = 12;
379                 break;
380         case GL_RGB16F_ARB:
381                 bytes_per_pixel = 6;
382                 break;
383         case GL_RGBA8:
384         case GL_SRGB8_ALPHA8:
385                 bytes_per_pixel = 4;
386                 break;
387         case GL_RGB8:
388         case GL_SRGB8:
389                 bytes_per_pixel = 3;
390                 break;
391         case GL_RG32F:
392                 bytes_per_pixel = 8;
393                 break;
394         case GL_RG16F:
395                 bytes_per_pixel = 4;
396                 break;
397         case GL_R32F:
398                 bytes_per_pixel = 4;
399                 break;
400         case GL_R16F:
401                 bytes_per_pixel = 2;
402                 break;
403         case GL_R8:
404                 bytes_per_pixel = 1;
405                 break;
406         default:
407                 // TODO: Add more here as needed.
408                 assert(false);
409         }
410
411         return texture_format.width * texture_format.height * bytes_per_pixel;
412 }
413
414 }  // namespace movit