d8a90c9c72c63ad1b2dd9f0b532420e2801d3a04
[folly.git] / folly / test / SingletonTestStructs.h
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #pragma once
17
18 #include <memory>
19 #include <stdexcept>
20 #include <vector>
21
22 #include <glog/logging.h>
23
24 #include <folly/portability/GTest.h>
25
26 // A simple class that tracks how often instances of the class and
27 // subclasses are created, and the ordering.  Also tracks a global
28 // unique counter for each object.
29 std::atomic<size_t> global_counter(19770326);
30
31 struct Watchdog {
32   static std::vector<Watchdog*>& creation_order() {
33     static std::vector<Watchdog*> ret;
34     return ret;
35   }
36
37   Watchdog() : serial_number(++global_counter) {
38     creation_order().push_back(this);
39   }
40
41   ~Watchdog() {
42     if (creation_order().back() != this) {
43       LOG(FATAL) << "Watchdog destruction order mismatch";
44     }
45     creation_order().pop_back();
46   }
47
48   const size_t serial_number;
49   size_t livingWatchdogCount() const { return creation_order().size(); }
50
51   Watchdog(const Watchdog&) = delete;
52   Watchdog& operator=(const Watchdog&) = delete;
53   Watchdog(Watchdog&&) noexcept = default;
54   Watchdog& operator=(Watchdog&&) noexcept = default;
55 };
56
57 // Some basic types we use for tracking.
58 struct ChildWatchdog : public Watchdog {};
59 struct GlobalWatchdog : public Watchdog {};
60 struct UnregisteredWatchdog : public Watchdog {};