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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
// file : tests/shared-ptr/driver.cxx
// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <string>
#include <cassert>
#include <cutl/shared-ptr.hxx>
using namespace cutl;
struct type
{
type (int x, char const* y) : x_ (x), y_ (y) {}
int x_;
std::string y_;
};
struct base1
{
virtual
~base1 () {}
base1 (int x) : x_ (x) {}
int x_;
};
struct base2
{
virtual
~base2 () {}
base2 (char const* y) : y_ (y) {}
std::string y_;
};
struct derived: base1, base2
{
derived (int x, char const* y) : base1 (x), base2 (y) {}
};
struct shared_type: shared_base
{
shared_type (int x, char const* y)
: x_ (x), y_ (y)
{
assert (ref_count (this) == 1);
}
int x_;
std::string y_;
};
int
main ()
{
//
// inc_ref, dec_ref, ref_count
//
// Non-polymorphic type.
//
{
type* x (new (shared) type (5, "foo"));
assert (ref_count (x) == 1);
inc_ref (x);
assert (ref_count (x) == 2);
dec_ref (x);
assert (ref_count (x) == 1);
dec_ref (x);
}
// Polymorphic type.
//
{
base2* x (new (shared) derived (5, "foo"));
assert (ref_count (x) == 1);
inc_ref (x);
assert (ref_count (x) == 2);
dec_ref (x);
assert (ref_count (x) == 1);
dec_ref (x);
}
// Shared type.
//
{
shared_type* x (new (shared) shared_type (5, "foo"));
assert (ref_count (x) == 1);
inc_ref (x);
assert (ref_count (x) == 2);
dec_ref (x);
assert (ref_count (x) == 1);
dec_ref (x);
}
// Error handling (this theoretically can segfault).
//
{
type* x (new type (5, "foo"));
try
{
inc_ref (x);
assert (false);
}
catch (not_shared const&)
{
}
delete x;
}
//
// shared_ptr
//
// Non-polymorphic type.
//
{
shared_ptr<type> x (new (shared) type (5, "foo"));
assert (x.count () == 1);
assert (x);
assert (x->x_ == 5);
assert ((*x).y_ == "foo");
{
shared_ptr<type> y (x);
assert (y.count () == 2);
}
{
shared_ptr<type> y;
y = x;
assert (y.count () == 2);
}
assert (x.count () == 1);
shared_ptr<type> y (x.release ());
assert (y.count () == 1);
}
// Polymorphic type.
//
{
shared_ptr<derived> x (new (shared) derived (5, "foo"));
assert (x.count () == 1);
{
shared_ptr<base2> y (x);
assert (y.count () == 2);
assert (y->y_ == "foo");
}
{
shared_ptr<base2> y;
y = x;
assert (y.count () == 2);
}
assert (x.count () == 1);
}
// Non-polymorphic type.
//
{
shared_ptr<shared_type> x (new (shared) shared_type (5, "foo"));
assert (x.count () == 1);
assert (x);
assert (x->x_ == 5);
assert ((*x).y_ == "foo");
assert (x->_ref_count () == 1);
x->_inc_ref ();
assert (x.count () == 2);
x->_dec_ref ();
assert (x.count () == 1);
{
shared_ptr<shared_type> y (x);
assert (y.count () == 2);
}
{
shared_ptr<shared_type> y;
y = x;
assert (y.count () == 2);
}
assert (x.count () == 1);
shared_ptr<shared_type> y (x.release ());
assert (y.count () == 1);
}
}
|