]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/smartall.h
Tweak smartalloc casting + prototypes
[bacula/bacula] / bacula / src / lib / smartall.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2016 Kern Sibbald
5
6    The original author of Bacula is Kern Sibbald, with contributions
7    from many others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    This notice must be preserved when any source code is 
15    conveyed and/or propagated.
16
17    Bacula(R) is a registered trademark of Kern Sibbald.
18 */
19 /*
20
21         Definitions for the smart memory allocator
22
23 */
24
25 #ifndef SMARTALLOC_H
26 #define SMARTALLOC_H
27
28 extern uint64_t DLL_IMP_EXP sm_max_bytes;
29 extern uint64_t DLL_IMP_EXP sm_bytes;
30 extern uint32_t DLL_IMP_EXP sm_max_buffers;
31 extern uint32_t DLL_IMP_EXP sm_buffers;
32
33 #ifdef  SMARTALLOC
34 #undef  SMARTALLOC
35 #define SMARTALLOC SMARTALLOC
36
37
38 extern void *sm_malloc(const char *fname, int lineno, unsigned int nbytes),
39             *sm_calloc(const char *fname, int lineno,
40                 unsigned int nelem, unsigned int elsize),
41             *sm_realloc(const char *fname, int lineno, void *ptr, unsigned int size),
42             *actuallymalloc(unsigned int size),
43             *actuallycalloc(unsigned int nelem, unsigned int elsize),
44             *actuallyrealloc(void *ptr, unsigned int size);
45 extern void sm_free(const char *fname, int lineno, void *fp);
46 extern void actuallyfree(void *cp),
47             sm_dump(bool bufdump, bool in_use=false), sm_static(int mode);
48 extern void sm_new_owner(const char *fname, int lineno, char *buf);
49
50 #ifdef SMCHECK
51 #define Dsm_check(lvl) if ((lvl)<=debug_level) sm_check(__FILE__, __LINE__, true)
52 extern void sm_check(const char *fname, int lineno, bool bufdump);
53 extern int sm_check_rtn(const char *fname, int lineno, bool bufdump);
54 #else
55 #define Dsm_check(lvl)
56 #define sm_check(f, l, fl)
57 #define sm_check_rtn(f, l, fl) 1
58 #endif
59
60
61 /* Redefine standard memory allocator calls to use our routines
62    instead. */
63
64 #define free(x)        sm_free(__FILE__, __LINE__, (x))
65 #define cfree(x)       sm_free(__FILE__, __LINE__, (x))
66 #define malloc(x)      sm_malloc(__FILE__, __LINE__, (x))
67 #define calloc(n,e)    sm_calloc(__FILE__, __LINE__, (n), (e))
68 #define realloc(p,x)   sm_realloc(__FILE__, __LINE__, (p), (x))
69
70 #else
71
72 /* If SMARTALLOC is disabled, define its special calls to default to
73    the standard routines.  */
74
75 #define actuallyfree(x)      free(x)
76 #define actuallymalloc(x)    malloc(x)
77 #define actuallycalloc(x,y)  calloc(x,y)
78 #define actuallyrealloc(x,y) realloc(x,y)
79 inline void sm_dump(int x, int y=0) {} /* with default arguments, we can't use a #define */
80 #define sm_static(x)
81 #define sm_new_owner(a, b, c)
82 #define sm_malloc(f, l, n)     malloc(n)
83 #define sm_free(f, l, n)       free(n)
84 #define sm_check(f, l, fl)
85 #define sm_check_rtn(f, l, fl) 1
86
87 extern void *b_malloc(const char *file, int line, size_t size);
88 #define malloc(x) b_malloc(__FILE__, __LINE__, (x))
89
90 #define Dsm_check(lvl)
91 #define sm_check(f, l, fl)
92 #define sm_check_rtn(f, l, fl) 1
93
94 #endif
95
96 #ifdef SMARTALLOC
97
98 #define New(type) new(__FILE__, __LINE__) type
99
100 /* We do memset(0) because it's not possible to memset a class when
101  * using subclass with virtual functions
102  */
103
104 class SMARTALLOC
105 {
106 public:
107
108 void *operator new(size_t s, const char *fname, int line)
109 {
110    size_t size =  s > sizeof(int) ? (unsigned int)s : sizeof(int);
111    void *p = sm_malloc(fname, line, size);
112    memset(p, 0, size);
113    return p;
114 }
115 void *operator new[](size_t s, const char *fname, int line)
116 {
117    size_t size =  s > sizeof(int) ? (unsigned int)s : sizeof(int);
118    void *p = sm_malloc(fname, line, size);
119    memset(p, 0, size);
120    return p;
121 }
122
123 void  operator delete(void *ptr)
124 {
125    free(ptr);
126 }
127 void  operator delete[](void *ptr, size_t /*i*/)
128 {
129    free(ptr);
130 }
131
132 void  operator delete(void *ptr, const char * /*fname*/, int /*line*/)
133 {
134    free(ptr);
135 }
136 void  operator delete[](void *ptr, size_t /*i*/,
137                         const char * /*fname*/, int /*line*/)
138 {
139    free(ptr);
140 }
141
142 private:
143 void *operator new(size_t s) throw() { (void)s; return 0; }
144 void *operator new[](size_t s) throw() { (void)s; return 0; }
145 };
146
147 #else
148
149 #define New(type) new type
150
151 class SMARTALLOC
152 {
153    public:
154       void *operator new(size_t s) {
155          void *p = malloc(s);
156          memset(p, 0, s);
157          return p;
158       }
159       void *operator new[](size_t s) {
160          void *p = malloc(s);
161          memset(p, 0, s);
162          return p;
163       }
164       void  operator delete(void *ptr) {
165           free(ptr);
166       }
167       void  operator delete[](void *ptr, size_t i) {
168           free(ptr);
169       }
170 };
171 #endif  /* SMARTALLOC */
172 #endif  /* !SMARTALLOC_H */