rollback to 3428, before the mysterious removal of libs/* at 3431/3432
[ardour.git] / libs / pbd / 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 <cstdlib>
22 #include <iostream>
23 #include <vector>
24
25 #include <pbd/pool.h>
26 #include <pbd/error.h>
27
28 using namespace std;
29 using namespace PBD;
30
31 Pool::Pool (string n, unsigned long item_size, unsigned long nitems)
32 {
33         _name = n;
34
35         free_list = new RingBuffer<void*> (nitems);
36
37         /* since some overloaded ::operator new() might use this,
38            its important that we use a "lower level" allocator to
39            get more space.  
40         */
41
42         block = malloc (nitems * item_size);
43
44         void **ptrlist = (void **) malloc (sizeof (void *)  * nitems);
45
46         for (unsigned long i = 0; i < nitems; i++) {
47                 ptrlist[i] = static_cast<void *> (static_cast<char*>(block) + (i * item_size));
48         }
49
50         free_list->write (ptrlist, nitems);
51
52         free (ptrlist);
53 }
54
55 Pool::~Pool ()
56 {
57         free (block);
58 }
59
60 void *
61 Pool::alloc ()
62 {
63         void *ptr;
64
65 //      cerr << _name << " pool " << " alloc, thread = " << pthread_name() << " space = " << free_list->read_space() << endl;
66
67         if (free_list->read (&ptr, 1) < 1) {
68                 fatal << "CRITICAL: " << _name << " POOL OUT OF MEMORY - RECOMPILE WITH LARGER SIZE!!" << endmsg;
69                 /*NOTREACHED*/
70                 return 0;
71         } else {
72                 return ptr;
73         }
74 }
75
76 void            
77 Pool::release (void *ptr)
78 {
79         free_list->write (&ptr, 1);
80 //      cerr << _name << ": release, now has " << free_list->read_space() << endl;
81 }
82
83 /*---------------------------------------------*/
84
85 MultiAllocSingleReleasePool::MultiAllocSingleReleasePool (string n, unsigned long isize, unsigned long nitems) 
86         : Pool (n, isize, nitems),
87         m_lock(0)
88 {
89 }
90
91 MultiAllocSingleReleasePool::~MultiAllocSingleReleasePool ()
92 {
93     if(m_lock) delete m_lock;
94 }
95
96 SingleAllocMultiReleasePool::SingleAllocMultiReleasePool (string n, unsigned long isize, unsigned long nitems) 
97         : Pool (n, isize, nitems),
98     m_lock(0)
99 {
100 }
101
102 SingleAllocMultiReleasePool::~SingleAllocMultiReleasePool ()
103 {
104     if(m_lock) delete m_lock;
105 }
106
107 void*
108 MultiAllocSingleReleasePool::alloc ()
109 {
110         void *ptr;
111     if(!m_lock) {
112         m_lock = new Glib::Mutex();
113         // umm, I'm not sure that this doesn't also allocate memory.
114         if(!m_lock) error << "cannot create Glib::Mutex in pool.cc" << endmsg;
115     }
116     
117     Glib::Mutex::Lock guard(*m_lock);
118         ptr = Pool::alloc ();
119         return ptr;
120 }
121
122 void
123 MultiAllocSingleReleasePool::release (void* ptr)
124 {
125         Pool::release (ptr);
126 }
127
128 void*
129 SingleAllocMultiReleasePool::alloc ()
130 {
131         return Pool::alloc ();
132 }
133
134 void
135 SingleAllocMultiReleasePool::release (void* ptr)
136 {
137     if(!m_lock) {
138         m_lock = new Glib::Mutex();
139         // umm, I'm not sure that this doesn't also allocate memory.
140         if(!m_lock) error << "cannot create Glib::Mutex in pool.cc" << endmsg;
141     }
142     Glib::Mutex::Lock guard(*m_lock);
143         Pool::release (ptr);
144 }
145