blob: 43a852a63d7e44cc601c15b8190b90a7f140863b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
--- cpp.orig/include/IceUtil/Shared.h 2011-06-15 21:43:58.000000000 +0200
+++ cpp/include/IceUtil/Shared.h 2012-09-10 11:43:58.000000000 +0200
@@ -50,6 +50,11 @@
//
// A non thread-safe base class for reference-counted types.
//
+// IceUtil::SimpleSharedUnsafeDestructor
+// =====================
+//
+// A non thread-safe base class for reference-counted types - destructor might throw.
+//
// IceUtil::Shared
// ===============
//
@@ -109,6 +114,57 @@ private:
bool _noDelete;
};
+class ICE_UTIL_API SimpleSharedUnsafeDestructor
+{
+public:
+
+ SimpleSharedUnsafeDestructor();
+ SimpleSharedUnsafeDestructor(const SimpleSharedUnsafeDestructor&);
+
+ virtual ~SimpleSharedUnsafeDestructor() ICE_NOEXCEPT_FALSE
+ {
+ }
+
+ SimpleSharedUnsafeDestructor& operator=(const SimpleSharedUnsafeDestructor&)
+ {
+ return *this;
+ }
+
+ void __incRef()
+ {
+ assert(_ref >= 0);
+ ++_ref;
+ }
+
+ void __decRef()
+ {
+ assert(_ref > 0);
+ if(--_ref == 0)
+ {
+ if(!_noDelete)
+ {
+ _noDelete = true;
+ delete this;
+ }
+ }
+ }
+
+ int __getRef() const
+ {
+ return _ref;
+ }
+
+ void __setNoDelete(bool b)
+ {
+ _noDelete = b;
+ }
+
+private:
+
+ int _ref;
+ bool _noDelete;
+};
+
class ICE_UTIL_API Shared
{
public:
|