Accommodate newly introduced source(s) in our MSVC project (libpbd)
[ardour.git] / libs / pbd / pbd / tlsf.h
1 /*
2  * Copyright (C) 2016 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  *
18  */
19 #ifndef _tlsf_h_
20 #define _tlsf_h_
21
22 #include <string>
23
24 #ifndef LIBPBD_API
25 #include "pbd/libpbd_visibility.h"
26 #endif
27
28 namespace PBD {
29
30 class LIBPBD_API TLSF
31 {
32 public:
33         TLSF (std::string name, size_t bytes);
34         ~TLSF ();
35
36         void set_name (const std::string& n) { _name = n; }
37
38         static void * lalloc (void* pool, void* ptr, size_t /* oldsize*/, size_t newsize) {
39                 return static_cast<TLSF*>(pool)->_realloc (ptr, newsize);
40         }
41
42         void* malloc (size_t size) { return _malloc (size); }
43
44         void* realloc (void *ptr, size_t newsize) { return _realloc (ptr, newsize); }
45
46         void free (void* ptr) { _free (ptr); }
47
48         size_t get_used_size () const;
49         size_t get_max_size () const;
50
51 private:
52         std::string _name;
53         char*_mp;
54
55         void* _malloc (size_t);
56         void* _realloc (void *, size_t);
57         void  _free (void *);
58 };
59
60 } /* namespace */
61 #endif // _reallocpool_h_