Loading [MathJax]/extensions/TeX/newcommand.js
 deal.II version GIT relicensing-3012-g95e643124d 2025-04-03 05:00:00+00:00
\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}} \newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=} \newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]} \newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
enable_observer_pointer.cc
Go to the documentation of this file.
1// ------------------------------------------------------------------------
2//
3// SPDX-License-Identifier: LGPL-2.1-or-later
4// Copyright (C) 1998 - 2023 by the deal.II authors
5//
6// This file is part of the deal.II library.
7//
8// Part of the source code is dual licensed under Apache-2.0 WITH
9// LLVM-exception OR LGPL-2.1-or-later. Detailed license information
10// governing the source code and code contributions can be found in
11// LICENSE.md and CONTRIBUTING.md at the top level directory of deal.II.
12//
13// ------------------------------------------------------------------------
14
18
19#include <algorithm>
20#include <iostream>
21#include <string>
22#include <typeinfo>
23
25
26
27static const char *unknown_subscriber = "unknown subscriber";
28
29
31
32
34 EnableObserverPointer &&subscriptor) noexcept
35 : counter(0)
36 , object_info(subscriptor.object_info)
37{
38 for (auto *const validity_ptr : subscriptor.validity_pointers)
39 *validity_ptr = false;
40 subscriptor.validity_pointers.clear();
41}
42
43
44
46{
47 for (auto *const validity_ptr : validity_pointers)
48 *validity_ptr = false;
49 object_info = nullptr;
50}
51
52
53void
55{
56 // Check whether there are still subscriptions to this object. If so, output
57 // the actual name of the class to which this object belongs, i.e. the most
58 // derived class. Note that the name may be mangled, so it need not be the
59 // clear-text class name. However, you can obtain the latter by running the
60 // c++filt program over the output.
61 if constexpr (running_in_debug_mode())
62 {
63 // If there are still active pointers, show a message and kill the
64 // program. However, under some circumstances, this is not so desirable.
65 // For example, in code like this:
66 //
67 // Triangulation tria;
68 // DoFHandler *dh = new DoFHandler(tria);
69 // ...some function that throws an exception
70 //
71 // the exception will lead to the destruction of the triangulation, but
72 // since the dof_handler is on the heap it will not be destroyed. This
73 // will trigger an assertion in the triangulation. If we kill the program
74 // at this point, we will never be able to learn what caused the problem.
75 // In this situation, just display a message and continue the program.
76 if (counter != 0)
77 {
78 if (std::uncaught_exceptions() == 0)
79 {
80 std::string infostring;
81 for (const auto &map_entry : counter_map)
82 {
83 if (map_entry.second > 0)
84 infostring +=
85 "\n from Subscriber " + std::string(map_entry.first);
86 }
87
88 if (infostring.empty())
89 infostring = "<none>";
90
92 ExcInUse(counter.load(),
93 object_info->name(),
94 infostring));
95 }
96 else
97 {
98 std::cerr
99 << "---------------------------------------------------------"
100 << std::endl
101 << "An object pointed to by a ObserverPointer is being destroyed."
102 << std::endl
103 << "Under normal circumstances, this would abort the program."
104 << std::endl
105 << "However, another exception is being processed at the"
106 << std::endl
107 << "moment, so the program will continue to run to allow"
108 << std::endl
109 << "this exception to be processed." << std::endl
110 << "---------------------------------------------------------"
111 << std::endl;
112 }
113 }
114 }
115}
116
117
118
121{
122 for (auto *const validity_ptr : s.validity_pointers)
123 *validity_ptr = false;
124 s.validity_pointers.clear();
125 object_info = s.object_info;
126 return *this;
127}
128
129
130
131void
132EnableObserverPointer::subscribe(std::atomic<bool> *const validity,
133 const std::string &id) const
134{
135 std::lock_guard<std::mutex> lock(mutex);
136
137 if (object_info == nullptr)
138 object_info = &typeid(*this);
139 ++counter;
140
141 const std::string &name = id.empty() ? unknown_subscriber : id;
142
143 ++counter_map[name];
144
145 *validity = true;
146 validity_pointers.push_back(validity);
147}
148
149
150
151void
152EnableObserverPointer::unsubscribe(std::atomic<bool> *const validity,
153 const std::string &id) const
154{
155 const std::string &name = id.empty() ? unknown_subscriber : id;
156
157 if (counter == 0)
158 {
160 // This is for the case that we do not abort after the exception
161 return;
162 }
163
164 std::lock_guard<std::mutex> lock(mutex);
165
166 map_iterator it = counter_map.find(name);
167 if (it == counter_map.end())
168 {
169 AssertNothrow(it != counter_map.end(),
170 ExcNoSubscriber(object_info->name(), name));
171 // This is for the case that we do not abort after the exception
172 return;
173 }
174 if (it->second == 0)
175 {
176 AssertNothrow(it->second > 0, ExcNoSubscriber(object_info->name(), name));
177 // This is for the case that we do not abort after the exception
178 return;
179 }
180
181 auto validity_ptr_it =
182 std::find(validity_pointers.begin(), validity_pointers.end(), validity);
183 if (validity_ptr_it == validity_pointers.end())
184 {
186 validity_ptr_it != validity_pointers.end(),
188 "This EnableObserverPointer object does not know anything about the supplied pointer!"));
189 return;
190 }
191
192 validity_pointers.erase(validity_ptr_it);
193 --counter;
194 --it->second;
195}
196
197
198
199void
204
void check_no_subscribers() const noexcept
void subscribe(std::atomic< bool > *const validity, const std::string &identifier="") const
decltype(counter_map)::iterator map_iterator
EnableObserverPointer & operator=(const EnableObserverPointer &)
std::atomic< unsigned int > counter
void unsubscribe(std::atomic< bool > *const validity, const std::string &identifier="") const
std::map< std::string, unsigned int > counter_map
std::vector< std::atomic< bool > * > validity_pointers
const std::type_info * object_info
#define DEAL_II_NAMESPACE_OPEN
Definition config.h:35
constexpr bool running_in_debug_mode()
Definition config.h:73
#define DEAL_II_NAMESPACE_CLOSE
Definition config.h:36
static const char * unknown_subscriber
#define AssertNothrow(cond, exc)
static ::ExceptionBase & ExcNoSubscriber(std::string arg1, std::string arg2)
static ::ExceptionBase & ExcInUse(int arg1, std::string arg2, std::string arg3)
static ::ExceptionBase & ExcMessage(std::string arg1)
LogStream deallog
Definition logstream.cc:38