OpenShot Audio Library | OpenShotAudio 0.4.0
Loading...
Searching...
No Matches
juce_AllocationHooks.cpp
1/*
2 ==============================================================================
3
4 This file is part of the JUCE library.
5 Copyright (c) 2022 - Raw Material Software Limited
6
7 JUCE is an open source library subject to commercial or open-source
8 licensing.
9
10 The code included in this file is provided under the terms of the ISC license
11 http://www.isc.org/downloads/software-support-policy/isc-license. Permission
12 To use, copy, modify, and/or distribute this software for any purpose with or
13 without fee is hereby granted provided that the above copyright notice and
14 this permission notice appear in all copies.
15
16 JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
17 EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
18 DISCLAIMED.
19
20 ==============================================================================
21*/
22
23#if JUCE_ENABLE_ALLOCATION_HOOKS
24
25namespace juce
26{
27
28static AllocationHooks& getAllocationHooksForThread()
29{
30 thread_local AllocationHooks hooks;
31 return hooks;
32}
33
34void notifyAllocationHooksForThread()
35{
36 getAllocationHooksForThread().listenerList.call ([] (AllocationHooks::Listener& l)
37 {
38 l.newOrDeleteCalled();
39 });
40}
41
42}
43
44void* operator new (size_t s)
45{
47 return std::malloc (s);
48}
49
50void* operator new[] (size_t s)
51{
53 return std::malloc (s);
54}
55
56void operator delete (void* p) noexcept
57{
59 std::free (p);
60}
61
62void operator delete[] (void* p) noexcept
63{
65 std::free (p);
66}
67
68void operator delete (void* p, size_t) noexcept
69{
71 std::free (p);
72}
73
74void operator delete[] (void* p, size_t) noexcept
75{
77 std::free (p);
78}
79
80namespace juce
81{
82
83//==============================================================================
84UnitTestAllocationChecker::UnitTestAllocationChecker (UnitTest& test)
85 : unitTest (test)
86{
87 getAllocationHooksForThread().addListener (this);
88}
89
90UnitTestAllocationChecker::~UnitTestAllocationChecker() noexcept
91{
92 getAllocationHooksForThread().removeListener (this);
93 unitTest.expectEquals ((int) calls, 0, "new or delete was incorrectly called while allocation checker was active");
94}
95
96void UnitTestAllocationChecker::newOrDeleteCalled() noexcept { ++calls; }
97
98}
99
100#endif