advance compilation to include plugin_ui.cc
[ardour.git] / libs / pbd3 / pool.cc
1 /*
2     Copyright (C) 1998-99 Paul Barton-Davis
3  
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #include <iostream>
22 #include <sys/mman.h>
23 #include <vector>
24
25 #include <pbd/pool.h>
26 #include <pbd/error.h>
27 #include <pbd/stl_delete.h>
28 #include <pbd/pthread_utils.h>
29
30 using namespace std;
31
32 Pool::Pool (string n, unsigned long item_size, unsigned long nitems)
33 {
34         _name = n;
35
36         free_list = new RingBuffer<void*> (nitems);
37
38         /* since some overloaded ::operator new() might use this,
39            its important that we use a "lower level" allocator to
40            get more space.  
41         */
42
43         block = malloc (nitems * item_size);
44
45         void **ptrlist = (void **) malloc (sizeof (void *)  * nitems);
46
47         for (unsigned long i = 0; i < nitems; i++) {
48                 ptrlist[i] = static_cast<void *> (static_cast<char*>(block) + (i * item_size));
49         }
50
51         free_list->write (ptrlist, nitems);
52
53         free (ptrlist);
54 }
55
56 Pool::~Pool ()
57 {
58         free (block);
59 }
60
61 void *
62 Pool::alloc ()
63 {
64         void *ptr;
65
66 //      cerr << _name << " pool " << " alloc, thread = " << pthread_name() << " space = " << free_list->read_space() << endl;
67
68         if (free_list->read (&ptr, 1) < 1) {
69                 fatal << "CRITICAL: " << _name << " POOL OUT OF MEMORY - RECOMPILE WITH LARGER SIZE!!" << endmsg;
70                 /*NOTREACHED*/
71                 return 0;
72         } else {
73                 return ptr;
74         }
75 };
76
77 void            
78 Pool::release (void *ptr)
79 {
80         free_list->write (&ptr, 1);
81 //      cerr << _name << ": release, now has " << free_list->read_space() << endl;
82 }
83
84 /*---------------------------------------------*/
85
86 MultiAllocSingleReleasePool::MultiAllocSingleReleasePool (string n, unsigned long isize, unsigned long nitems) 
87         : Pool (n, isize, nitems)
88 {
89         pthread_mutex_init (&lock, 0);
90 }
91
92 MultiAllocSingleReleasePool::~MultiAllocSingleReleasePool ()
93 {
94 }
95
96 SingleAllocMultiReleasePool::SingleAllocMultiReleasePool (string n, unsigned long isize, unsigned long nitems) 
97         : Pool (n, isize, nitems)
98 {
99         pthread_mutex_init (&lock, 0);
100 }
101
102 SingleAllocMultiReleasePool::~SingleAllocMultiReleasePool ()
103 {
104 }
105
106 void*
107 MultiAllocSingleReleasePool::alloc ()
108 {
109         void *ptr;
110         pthread_mutex_lock (&lock);
111         ptr = Pool::alloc ();
112         pthread_mutex_unlock (&lock);
113         return ptr;
114 }
115
116 void
117 MultiAllocSingleReleasePool::release (void* ptr)
118 {
119         Pool::release (ptr);
120 }
121
122 void*
123 SingleAllocMultiReleasePool::alloc ()
124 {
125         return Pool::alloc ();
126 }
127
128 void
129 SingleAllocMultiReleasePool::release (void* ptr)
130 {
131         pthread_mutex_lock (&lock);
132         Pool::release (ptr);
133         pthread_mutex_unlock (&lock);
134 }
135