Loading [MathJax]/extensions/TeX/AMSsymbols.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.h
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
15#ifndef dealii_enable_observer_pointer_h
16#define dealii_enable_observer_pointer_h
17
18
19#include <deal.II/base/config.h>
20
22
23#include <atomic>
24#include <map>
25#include <mutex>
26#include <ostream>
27#include <string>
28#include <typeinfo>
29#include <vector>
30
32
33
34// Forward declaration
35template <typename T, typename P>
36class ObserverPointer;
37
38
74{
75public:
80
88
96
100 virtual ~EnableObserverPointer();
101
110
115 operator=(EnableObserverPointer &&) noexcept;
116
128 unsigned int
129 n_subscriptions() const;
130
134 template <typename StreamType>
135 void
136 list_subscribers(StreamType &stream) const;
137
141 void
142 list_subscribers() const;
143
155 int,
156 std::string,
157 std::string,
158 << "Object of class " << arg2 << " is still used by " << arg1
159 << " other objects."
160 << "\n\n"
161 << "(Additional information: " << arg3 << ")\n\n"
162 << "See the entry in the Frequently Asked Questions of "
163 << "deal.II (linked to from http://www.dealii.org/) for "
164 << "a lot more information on what this error means and "
165 << "how to fix programs in which it happens.");
166
173 std::string,
174 std::string,
175 << "No subscriber with identifier <" << arg2
176 << "> subscribes to this object of class " << arg1
177 << ". Consequently, it cannot be unsubscribed.");
193 template <class Archive>
194 void
195 serialize(Archive &ar, const unsigned int version);
196
197private:
213 mutable std::atomic<unsigned int> counter;
214
219 mutable std::map<std::string, unsigned int> counter_map;
220
224 using map_value_type = decltype(counter_map)::value_type;
225
229 using map_iterator = decltype(counter_map)::iterator;
230
235 mutable std::vector<std::atomic<bool> *> validity_pointers;
236
243 mutable const std::type_info *object_info;
244
250 static std::mutex mutex;
251
265 void
266 subscribe(std::atomic<bool> *const validity,
267 const std::string &identifier = "") const;
268
275 void
276 unsubscribe(std::atomic<bool> *const validity,
277 const std::string &identifier = "") const;
278
292 void
293 check_no_subscribers() const noexcept;
294
295 template <typename, typename>
296 friend class ObserverPointer;
297
299};
300
301
308using Subscriptor DEAL_II_DEPRECATED_EARLY_WITH_COMMENT(
309 "Use the new name of the class, EnableObserverPointer.") =
311
312
313//---------------------------------------------------------------------------
314
316 : counter(0)
317 , object_info(nullptr)
318{}
319
320
321
327
328
329
336
337
338
339inline unsigned int
344
345
346
347template <class Archive>
348inline void
349EnableObserverPointer::serialize(Archive &, const unsigned int)
350{
351 // do nothing, as explained in the
352 // documentation of this function
353}
354
355template <typename StreamType>
356inline void
358{
359 std::lock_guard<std::mutex> lock(mutex);
360
361 for (const auto &it : counter_map)
362 stream << it.second << '/' << counter << " subscriptions from \""
363 << it.first << '\"' << std::endl;
364}
365
367
368#endif
void check_no_subscribers() const noexcept
void subscribe(std::atomic< bool > *const validity, const std::string &identifier="") const
decltype(counter_map)::iterator map_iterator
void serialize(Archive &ar, const unsigned int version)
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
decltype(counter_map)::value_type map_value_type
const std::type_info * object_info
unsigned int n_subscriptions() const
#define DEAL_II_NAMESPACE_OPEN
Definition config.h:35
#define DEAL_II_NAMESPACE_CLOSE
Definition config.h:36
#define DeclException2(Exception2, type1, type2, outsequence)
static ::ExceptionBase & ExcNoSubscriber(std::string arg1, std::string arg2)
#define DeclException3(Exception3, type1, type2, type3, outsequence)
static ::ExceptionBase & ExcInUse(int arg1, std::string arg2, std::string arg3)