SoPlex Doxygen Documentation
spxalloc.h
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the class library */
4 /* SoPlex --- the Sequential object-oriented simPlex. */
5 /* */
6 /* Copyright (C) 1996-2012 Konrad-Zuse-Zentrum */
7 /* fuer Informationstechnik Berlin */
8 /* */
9 /* SoPlex is distributed under the terms of the ZIB Academic Licence. */
10 /* */
11 /* You should have received a copy of the ZIB Academic License */
12 /* along with SoPlex; see the file COPYING. If not email to soplex@zib.de. */
13 /* */
14 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 /**@file spxalloc.h
17  * @brief Memory allocation routines.
18  */
19 #ifndef _SPXALLOC_H_
20 #define _SPXALLOC_H_
21 
22 #include <iostream>
23 #include <stdlib.h>
24 #include <assert.h>
25 
26 #include "spxdefines.h"
27 #include "spxout.h"
28 
29 #include "exceptions.h"
30 
31 namespace soplex
32 {
33 /**@name Memory allocation routines
34  * @ingroup Elementary
35  * Here we have cover functions for malloc/realloc/free, to make sure
36  * that we allays succeed. Otherwise an exception is thrown.
37  *
38  * We use templates to get the types right, otherwise casts would have
39  * been neccessary.
40  */
41 //@{
42 /**@brief Allocate memory.
43  * @param p some pointer
44  * @param n the number of elements \p p will point to.
45  * @throw SPxMemoryException if memory could not be allocated.
46  */
47 template <class T>
48 inline void spx_alloc(T& p, int n)
49 {
50  assert(p == 0);
51  assert(n >= 0);
52 
53  if (n == 0)
54  n = 1;
55 
56  p = reinterpret_cast<T>(malloc(sizeof(*p) * n));
57 
58  if (0 == p)
59  {
60  MSG_ERROR( spxout << "EMALLC01 malloc: Out of memory - cannot allocate "
61  << sizeof(*p) * n << " bytes" << std::endl; )
62  throw(SPxMemoryException("XMALLC01 malloc: Could not allocate enough memory") );
63  }
64 }
65 
66 /**@brief Change amount of allocated memory.
67  * @param p some pointer
68  * @param n the number of elements p should point to.
69  * @throw SPxMemoryException if memory could not be allocated.
70  */
71 template <class T>
72 inline void spx_realloc(T& p, int n)
73 {
74  assert(n >= 0);
75 
76  if (n == 0)
77  n = 1;
78 
79  T pp = reinterpret_cast<T>(realloc(p, sizeof(*p) * n));
80 
81  if (0 == pp)
82  {
83  MSG_ERROR( spxout << "EMALLC02 realloc: Out of memory - cannot allocate "
84  << sizeof(*p) * n << " bytes" << std::endl; )
85  throw(SPxMemoryException("XMALLC02 realloc: Could not allocate enough memory") );
86  }
87  p=pp;
88 }
89 
90 /// Release memory
91 template <class T>
92 inline void spx_free(T& p)
93 {
94  assert(p != 0);
95  free(p);
96 
97  p = 0;
98 }
99 
100 //@}
101 } // namespace soplex
102 
103 
104 #endif // _SPXALLOC_H_
105 
106 //-----------------------------------------------------------------------------
107 //Emacs Local Variables:
108 //Emacs mode:c++
109 //Emacs c-basic-offset:3
110 //Emacs tab-width:8
111 //Emacs indent-tabs-mode:nil
112 //Emacs End:
113 //-----------------------------------------------------------------------------