The Pedigree Project  0.1
PointerGuard.h
1 /*
2  * Copyright (c) 2008-2014, Pedigree Developers
3  *
4  * Please see the CONTRIB file in the root of the source tree for a full
5  * list of contributors.
6  *
7  * Permission to use, copy, modify, and distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 #ifndef POINTERGUARD_H
21 #define POINTERGUARD_H
22 
23 #include "pedigree/kernel/Log.h"
24 #include "pedigree/kernel/processor/types.h"
25 
29 template <class T>
31 {
32  public:
33  PointerGuard(T *p = 0, bool bArray = false)
34  : m_Pointer(p), m_Wrapper(0), m_Array(bArray)
35  {
36  // NOTICE("PointerGuard: Guarding pointer [" <<
37  // reinterpret_cast<uintptr_t>(m_Pointer) << "]");
38  }
39 
40  PointerGuard(T **p = 0, bool bArray = false)
41  : m_Pointer(*p), m_Wrapper(p), m_Array(bArray)
42  {
43  // NOTICE("PointerGuard: Guarding pointer [" <<
44  // reinterpret_cast<uintptr_t>(m_Pointer) << "]");
45  }
46 
47  virtual ~PointerGuard()
48  {
49  // NOTICE("PointerGuard: Out-of-scope, deleting guarded pointer [" <<
50  // reinterpret_cast<uintptr_t>(m_Pointer) << "]");
51  if (m_Pointer)
52  {
53  if (m_Array)
54  delete[] m_Pointer;
55  else
56  delete m_Pointer;
57  m_Pointer = 0;
58  }
59 
60  if (m_Wrapper)
61  {
62  *m_Wrapper = 0;
63  }
64  }
65 
71  {
72  ERROR("PointerGuard: copy constructor called");
73  m_Pointer = 0;
74  m_Wrapper = 0;
75  }
76 
77  PointerGuard<T> &operator=(PointerGuard<T> &p)
78  {
79  ERROR("PointerGuard: operator = called");
80  m_Pointer = 0;
81  m_Wrapper = 0;
82  }
83 
84  private:
85  T *m_Pointer;
86  T **m_Wrapper;
87  bool m_Array;
88 };
89 
90 #endif
PointerGuard(PointerGuard< T > &p)
Definition: PointerGuard.h:70
#define ERROR(text)
Definition: Log.h:82