xref: /AOO41X/main/sal/cpprt/operators_new_delete.cxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_sal.hxx"
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #ifdef WNT /* avoid 'std::bad_alloc' unresolved externals */
32*cdf0e10cSrcweir #define _CRTIMP
33*cdf0e10cSrcweir #define _NTSDK
34*cdf0e10cSrcweir #endif /* WNT */
35*cdf0e10cSrcweir 
36*cdf0e10cSrcweir #ifndef INCLUDED_ALGORITHM
37*cdf0e10cSrcweir #include <algorithm>
38*cdf0e10cSrcweir #define INCLUDED_ALGORITHM
39*cdf0e10cSrcweir #endif
40*cdf0e10cSrcweir 
41*cdf0e10cSrcweir #ifndef INCLUDED_NEW
42*cdf0e10cSrcweir #include <new>
43*cdf0e10cSrcweir #define INCLUDED_NEW
44*cdf0e10cSrcweir #endif
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir #ifndef INCLUDED_STRING_H
47*cdf0e10cSrcweir #include <string.h>
48*cdf0e10cSrcweir #define INCLUDED_STRING_H
49*cdf0e10cSrcweir #endif
50*cdf0e10cSrcweir #include <osl/diagnose.h>
51*cdf0e10cSrcweir #include <rtl/alloc.h>
52*cdf0e10cSrcweir 
53*cdf0e10cSrcweir using std::nothrow_t;
54*cdf0e10cSrcweir 
55*cdf0e10cSrcweir // =======================================================================
56*cdf0e10cSrcweir // AllocatorTraits
57*cdf0e10cSrcweir // =======================================================================
58*cdf0e10cSrcweir 
59*cdf0e10cSrcweir namespace
60*cdf0e10cSrcweir {
61*cdf0e10cSrcweir 
62*cdf0e10cSrcweir struct AllocatorTraits
63*cdf0e10cSrcweir {
64*cdf0e10cSrcweir 	typedef char const signature_type[8];
65*cdf0e10cSrcweir 	const signature_type & m_signature;
66*cdf0e10cSrcweir 
67*cdf0e10cSrcweir 	explicit AllocatorTraits (signature_type const & s) SAL_THROW(())
68*cdf0e10cSrcweir 		: m_signature (s)
69*cdf0e10cSrcweir 	{}
70*cdf0e10cSrcweir 
71*cdf0e10cSrcweir 	std::size_t size (std::size_t n) const SAL_THROW(())
72*cdf0e10cSrcweir 	{
73*cdf0e10cSrcweir 		n = std::max(n, std::size_t(1));
74*cdf0e10cSrcweir #if OSL_DEBUG_LEVEL > 0
75*cdf0e10cSrcweir 		n += sizeof(signature_type);
76*cdf0e10cSrcweir #endif  /* OSL_DEBUG_LEVEL  */
77*cdf0e10cSrcweir 		return n;
78*cdf0e10cSrcweir 	}
79*cdf0e10cSrcweir 
80*cdf0e10cSrcweir 	void* init (void * p) const SAL_THROW(())
81*cdf0e10cSrcweir 	{
82*cdf0e10cSrcweir #if OSL_DEBUG_LEVEL > 0
83*cdf0e10cSrcweir 		memcpy (p, m_signature, sizeof(signature_type));
84*cdf0e10cSrcweir 		p = static_cast<char*>(p) + sizeof(signature_type);
85*cdf0e10cSrcweir #endif  /* OSL_DEBUG_LEVEL */
86*cdf0e10cSrcweir 		return p;
87*cdf0e10cSrcweir 	}
88*cdf0e10cSrcweir 
89*cdf0e10cSrcweir 	void* fini (void * p) const SAL_THROW(())
90*cdf0e10cSrcweir 	{
91*cdf0e10cSrcweir #if OSL_DEBUG_LEVEL > 0
92*cdf0e10cSrcweir 		p = static_cast<char*>(p) - sizeof(signature_type);
93*cdf0e10cSrcweir 		if (memcmp (p, m_signature, sizeof(signature_type)) != 0)
94*cdf0e10cSrcweir 		{
95*cdf0e10cSrcweir 			OSL_ENSURE(0, "operator delete mismatch");
96*cdf0e10cSrcweir 		}
97*cdf0e10cSrcweir #endif  /* OSL_DEBUG_LEVEL */
98*cdf0e10cSrcweir 		return p;
99*cdf0e10cSrcweir 	}
100*cdf0e10cSrcweir };
101*cdf0e10cSrcweir 
102*cdf0e10cSrcweir // =======================================================================
103*cdf0e10cSrcweir 
104*cdf0e10cSrcweir struct VectorTraits : public AllocatorTraits
105*cdf0e10cSrcweir {
106*cdf0e10cSrcweir 	static const signature_type g_signature;
107*cdf0e10cSrcweir 
108*cdf0e10cSrcweir 	VectorTraits() SAL_THROW(())
109*cdf0e10cSrcweir 		: AllocatorTraits (g_signature)
110*cdf0e10cSrcweir 	{}
111*cdf0e10cSrcweir };
112*cdf0e10cSrcweir 
113*cdf0e10cSrcweir struct ScalarTraits : public AllocatorTraits
114*cdf0e10cSrcweir {
115*cdf0e10cSrcweir 	static const signature_type g_signature;
116*cdf0e10cSrcweir 
117*cdf0e10cSrcweir 	ScalarTraits() SAL_THROW(())
118*cdf0e10cSrcweir 		: AllocatorTraits (g_signature)
119*cdf0e10cSrcweir 	{}
120*cdf0e10cSrcweir };
121*cdf0e10cSrcweir 
122*cdf0e10cSrcweir const AllocatorTraits::signature_type VectorTraits::g_signature = "new[]()";
123*cdf0e10cSrcweir const AllocatorTraits::signature_type ScalarTraits::g_signature = "new()  ";
124*cdf0e10cSrcweir 
125*cdf0e10cSrcweir } // anonymous namespace
126*cdf0e10cSrcweir 
127*cdf0e10cSrcweir // =======================================================================
128*cdf0e10cSrcweir // Allocator
129*cdf0e10cSrcweir // =======================================================================
130*cdf0e10cSrcweir 
131*cdf0e10cSrcweir static void default_handler (void)
132*cdf0e10cSrcweir {
133*cdf0e10cSrcweir 	// Multithreading race in 'std::set_new_handler()' call sequence below.
134*cdf0e10cSrcweir 	throw std::bad_alloc();
135*cdf0e10cSrcweir }
136*cdf0e10cSrcweir 
137*cdf0e10cSrcweir // =======================================================================
138*cdf0e10cSrcweir 
139*cdf0e10cSrcweir static void* allocate (
140*cdf0e10cSrcweir 	std::size_t n, AllocatorTraits const & rTraits)
141*cdf0e10cSrcweir 	SAL_THROW((std::bad_alloc))
142*cdf0e10cSrcweir {
143*cdf0e10cSrcweir 	n = rTraits.size (n);
144*cdf0e10cSrcweir 	for (;;)
145*cdf0e10cSrcweir 	{
146*cdf0e10cSrcweir 		void * p = rtl_allocateMemory (sal_Size(n));
147*cdf0e10cSrcweir 		if (p != 0)
148*cdf0e10cSrcweir 			return rTraits.init (p);
149*cdf0e10cSrcweir 
150*cdf0e10cSrcweir 		std::new_handler d = default_handler, f = std::set_new_handler (d);
151*cdf0e10cSrcweir 		if (f != d)
152*cdf0e10cSrcweir 			std::set_new_handler (f);
153*cdf0e10cSrcweir 
154*cdf0e10cSrcweir 		if (f == 0)
155*cdf0e10cSrcweir 			throw std::bad_alloc();
156*cdf0e10cSrcweir 		(*f)();
157*cdf0e10cSrcweir 	}
158*cdf0e10cSrcweir }
159*cdf0e10cSrcweir 
160*cdf0e10cSrcweir // =======================================================================
161*cdf0e10cSrcweir 
162*cdf0e10cSrcweir static void* allocate (
163*cdf0e10cSrcweir 	std::size_t n, AllocatorTraits const & rTraits, std::nothrow_t const &)
164*cdf0e10cSrcweir 	SAL_THROW(())
165*cdf0e10cSrcweir {
166*cdf0e10cSrcweir 	try
167*cdf0e10cSrcweir 	{
168*cdf0e10cSrcweir 		return allocate (n, rTraits);
169*cdf0e10cSrcweir 	}
170*cdf0e10cSrcweir 	catch (std::bad_alloc const &)
171*cdf0e10cSrcweir 	{
172*cdf0e10cSrcweir 		return (0);
173*cdf0e10cSrcweir 	}
174*cdf0e10cSrcweir }
175*cdf0e10cSrcweir 
176*cdf0e10cSrcweir // =======================================================================
177*cdf0e10cSrcweir 
178*cdf0e10cSrcweir static void deallocate (void * p, AllocatorTraits const & rTraits)
179*cdf0e10cSrcweir 	SAL_THROW(())
180*cdf0e10cSrcweir {
181*cdf0e10cSrcweir 	if (p)
182*cdf0e10cSrcweir 	{
183*cdf0e10cSrcweir 		rtl_freeMemory (rTraits.fini(p));
184*cdf0e10cSrcweir 	}
185*cdf0e10cSrcweir }
186*cdf0e10cSrcweir 
187*cdf0e10cSrcweir // =======================================================================
188*cdf0e10cSrcweir // T * p = new T; delete p;
189*cdf0e10cSrcweir // =======================================================================
190*cdf0e10cSrcweir 
191*cdf0e10cSrcweir void* SAL_CALL operator new (std::size_t n) throw (std::bad_alloc)
192*cdf0e10cSrcweir {
193*cdf0e10cSrcweir 	return allocate (n, ScalarTraits());
194*cdf0e10cSrcweir }
195*cdf0e10cSrcweir 
196*cdf0e10cSrcweir // =======================================================================
197*cdf0e10cSrcweir 
198*cdf0e10cSrcweir void SAL_CALL operator delete (void * p) throw ()
199*cdf0e10cSrcweir {
200*cdf0e10cSrcweir 	deallocate (p, ScalarTraits());
201*cdf0e10cSrcweir }
202*cdf0e10cSrcweir 
203*cdf0e10cSrcweir // =======================================================================
204*cdf0e10cSrcweir // T * p = new(nothrow) T; delete(nothrow) p;
205*cdf0e10cSrcweir // =======================================================================
206*cdf0e10cSrcweir 
207*cdf0e10cSrcweir void* SAL_CALL operator new (std::size_t n, std::nothrow_t const &) throw ()
208*cdf0e10cSrcweir {
209*cdf0e10cSrcweir 	return allocate (n, ScalarTraits(), nothrow_t());
210*cdf0e10cSrcweir }
211*cdf0e10cSrcweir 
212*cdf0e10cSrcweir // =======================================================================
213*cdf0e10cSrcweir 
214*cdf0e10cSrcweir void SAL_CALL operator delete (void * p, std::nothrow_t const &) throw ()
215*cdf0e10cSrcweir {
216*cdf0e10cSrcweir 	deallocate (p, ScalarTraits());
217*cdf0e10cSrcweir }
218*cdf0e10cSrcweir 
219*cdf0e10cSrcweir // =======================================================================
220*cdf0e10cSrcweir // T * p = new T[n]; delete[] p;
221*cdf0e10cSrcweir // =======================================================================
222*cdf0e10cSrcweir 
223*cdf0e10cSrcweir void* SAL_CALL operator new[] (std::size_t n) throw (std::bad_alloc)
224*cdf0e10cSrcweir {
225*cdf0e10cSrcweir 	return allocate (n, VectorTraits());
226*cdf0e10cSrcweir }
227*cdf0e10cSrcweir 
228*cdf0e10cSrcweir // =======================================================================
229*cdf0e10cSrcweir 
230*cdf0e10cSrcweir void SAL_CALL operator delete[] (void * p) throw ()
231*cdf0e10cSrcweir {
232*cdf0e10cSrcweir 	deallocate (p, VectorTraits());
233*cdf0e10cSrcweir }
234*cdf0e10cSrcweir 
235*cdf0e10cSrcweir // =======================================================================
236*cdf0e10cSrcweir // T * p = new(nothrow) T[n]; delete(nothrow)[] p;
237*cdf0e10cSrcweir // =======================================================================
238*cdf0e10cSrcweir 
239*cdf0e10cSrcweir void* SAL_CALL operator new[] (std::size_t n, std::nothrow_t const &) throw ()
240*cdf0e10cSrcweir {
241*cdf0e10cSrcweir 	return allocate (n, VectorTraits(), nothrow_t());
242*cdf0e10cSrcweir }
243*cdf0e10cSrcweir 
244*cdf0e10cSrcweir // =======================================================================
245*cdf0e10cSrcweir 
246*cdf0e10cSrcweir void SAL_CALL operator delete[] (void * p, std::nothrow_t const &) throw ()
247*cdf0e10cSrcweir {
248*cdf0e10cSrcweir 	deallocate (p, VectorTraits());
249*cdf0e10cSrcweir }
250*cdf0e10cSrcweir 
251*cdf0e10cSrcweir // =======================================================================
252