GM6000 Digital Heater Controller Branch: main
SDX-1330
New_TS.h
Go to the documentation of this file.
1#ifndef Cpl_Memory_x_testsupport_New_TS_h_
2#define Cpl_Memory_x_testsupport_New_TS_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include <stddef.h>
16
17
18///
19namespace Cpl {
20///
21namespace Memory {
22
23
24/** This class provides methods to access the unit testing support
25 for overriding the global new/delete operators. The main purpose is to
26 be able to trigger memory allocation failures. It also provides
27 limited memory leak detection.
28
29 NOTE: THIS INTERFACE IS **NOT** THREAD SAFE!!
30
31 */
32class New_TS
33{
34public:
35 /** This method will cause the next call(s) to 'new' to return a
36 null pointer.
37 */
38 static void disable( void );
39
40 /** This method 'undos' the disable() call, i.e. the next call(s) to
41 new will succeed (assuming there is actual heap memory available).
42 This is the default/startup state of the Test heap.
43 */
44 static void enable( void );
45
46 /** This method is used to set the 'expected' delta between the number
47 of calls to new and delete. The default is a delta of zero, i.e.
48 a delete call for every new call.
49 */
50 static void setNewDelete_delta( long delta, bool ignoreDelta=false );
51
52
53public:
54 /// New/Delete metrics
55 struct Stats
56 {
57 ///
58 unsigned long m_numNewCalls;
59 ///
60 unsigned long m_numNewCallsFailed; // Failed do to being 'disabled'
61 ///
62 unsigned long m_numDeleteCalls;
63 ///
64 unsigned long m_numDeleteCalls_withNullPtr;
65 ///
66 size_t m_bytesAllocated;
67 };
68
69
70 /** This method returns and optionally clears the metrics collected
71 with respect to Test heap. The caller is responsible for providing
72 the memory for the returned metrics.
73 */
74 static void getStats( Stats& stats, bool resetStats = true );
75
76 /** This method unconditionally clears the stats
77 */
78 static void clearStats();
79
80
81};
82
83
84}; // end namespaces
85};
86#endif // end header latch
87
This class provides methods to access the unit testing support for overriding the global new/delete o...
Definition New_TS.h:33
static void disable(void)
This method will cause the next call(s) to 'new' to return a null pointer.
static void enable(void)
This method 'undos' the disable() call, i.e.
static void clearStats()
This method unconditionally clears the stats.
static void setNewDelete_delta(long delta, bool ignoreDelta=false)
This method is used to set the 'expected' delta between the number of calls to new and delete.
static void getStats(Stats &stats, bool resetStats=true)
This method returns and optionally clears the metrics collected with respect to Test heap.
New/Delete metrics.
Definition New_TS.h:56
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20