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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
|
////////////////////////////////////////////////////////////////////////////////
// The Loki Library
// Copyright (c) 2005 Peter Kmmel
// Permission to use, copy, modify, distribute and sell this software for any
// purpose is hereby granted without fee, provided that the above copyright
// notice appear in all copies and that both that copyright notice and this
// permission notice appear in supporting documentation.
// The authors make no representations about the
// suitability of this software for any purpose. It is provided "as is"
// without express or implied warranty.
////////////////////////////////////////////////////////////////////////////////
// $Id: Dependencies.cpp 823 2007-05-08 10:48:40Z lfittl $
#include <iostream>
#include <loki/SmallObj.h>
#include <loki/Function.h>
using namespace Loki;
////////////////////////////////////////////////////////////////////////////////////
//
// Data object for all singletons
//
////////////////////////////////////////////////////////////////////////////////////
template<template <class> class T, int Nr>
struct SingletonDataObject
{
SingletonDataObject() {std::cout<<"new SingletonDataObject"<<Nr<<"\n\n";}
~SingletonDataObject(){std::cout<<"delete SingletonDataObject"<<Nr<<"\n\n";}
int i[Nr];
};
////////////////////////////////////////////////////////////////////////////////////
//
// How to use LongevityLifetime policies
// DieAsSmallObjectParent/DieAsSmallObjectChild with SmallObjects?
//
////////////////////////////////////////////////////////////////////////////////////
// LongevityLifetime::DieAsSmallObjectParent is the default lifetime
// of SmallObject template:
typedef Loki::SmallObject<>
SmallObject_DieAs;
class MySmallObject_DieAs : public SmallObject_DieAs
{};
typedef SingletonHolder
<
MySmallObject_DieAs,
CreateUsingNew,
LongevityLifetime::DieAsSmallObjectChild
>
Singleton_with_MySmallObject_DieAs;
////////////////////////////////////////////////////////////////////////////////////
//
// How to use LongevityLifetime policies
// DieAsSmallObjectParent/DieAsSmallObjectChild with
// classes containing a Functor/Function?
//
////////////////////////////////////////////////////////////////////////////////////
struct MyFunctionObject_DieAs
{
MyFunctionObject_DieAs()
{
functor = Functor<void> (this, &MyFunctionObject_DieAs::f);
function = Function< void()>(this, &MyFunctionObject_DieAs::f);
}
void f(){}
Functor<void> functor;
Function<void()> function;
};
typedef SingletonHolder
<
MyFunctionObject_DieAs,
CreateUsingNew,
LongevityLifetime::DieAsSmallObjectChild
>
Singleton_MyFunctionObject_DieAs;
////////////////////////////////////////////////////////////////////////////////////
//
// Test code for LongevityLifetime Policy
//
////////////////////////////////////////////////////////////////////////////////////
template<template <class> class Lifetime>
struct Master_die_first
{
Master_die_first()
{
data = &Singleton::Instance();
}
virtual ~Master_die_first(){}
typedef Master_die_first<Lifetime> ThisType;
typedef SingletonDataObject<Lifetime,888> MasterSingleton;
typedef SingletonHolder<MasterSingleton,CreateUsingNew,Lifetime> Singleton;
MasterSingleton* data;
};
template<template <class> class Lifetime>
struct Master_die_last
{
Master_die_last()
{
data = &Singleton::Instance();
}
virtual ~Master_die_last(){}
typedef Master_die_last<Lifetime> ThisType;
typedef SingletonDataObject<Lifetime,555> MasterSingleton;
typedef SingletonHolder<MasterSingleton,CreateUsingNew,Lifetime> Singleton;
MasterSingleton* data;
};
typedef Master_die_first<LongevityLifetime::DieFirst>
Master1_die_first;
typedef Master_die_last<LongevityLifetime::DieLast>
Master1_die_last;
class B1_die_first;
class B1_die_last;
typedef SingletonHolder<B1_die_first,CreateUsingNew,
LongevityLifetime::DieFirst
> Follower1_Singleton_B1_die_first;
typedef SingletonHolder<B1_die_last,CreateUsingNew,
LongevityLifetime::DieLast
> Follower1_Singleton_B1_die_last;
class B1_die_first : public Master1_die_last
{
public:
B1_die_first(){std::cout<<"new B1_die_first, look for SingletonDataObject555\n\n";}
~B1_die_first(){std::cout<<"delete B1_die_first, look for SingletonDataObject555\n\n";}
};
class B1_die_last : public Master1_die_first
{
public:
B1_die_last(){std::cout<<"new B1_die_last, look for SingletonDataObject888\n\n";}
~B1_die_last(){std::cout<<"delete B1_die_last, look for SingletonDataObject888\n\n";}
};
// test of FollowIntoDeath policy, not supported by msvc 7.1 compiler
#if !defined(_MSC_VER) || (_MSC_VER>=1400)
////////////////////////////////////////////////////////////////////////////////////
//
// How to use FollowIntoDeath with SmallObjects?
//
////////////////////////////////////////////////////////////////////////////////////
typedef Loki::SmallObject
<
LOKI_DEFAULT_THREADING_NO_OBJ_LEVEL,
LOKI_DEFAULT_CHUNK_SIZE,
LOKI_MAX_SMALL_OBJECT_SIZE,
LOKI_DEFAULT_OBJECT_ALIGNMENT,
FollowIntoDeath::With<DefaultLifetime>::AsMasterLifetime
>
MySmallObjectBase;
struct MySmallObject : public MySmallObjectBase
{
};
typedef SingletonHolder
<
MySmallObject,
CreateUsingNew,
FollowIntoDeath::AfterMaster<MySmallObjectBase::ObjAllocatorSingleton>::IsDestroyed
>
Singleton_of_with_a_MySmallObject;
////////////////////////////////////////////////////////////////////////////////////
//
// Test code for FollowIntoDeath policy
//
////////////////////////////////////////////////////////////////////////////////////
template<template <class> class Lifetime>
struct Master1
{
Master1()
{
data = &Singleton::Instance();
}
virtual ~Master1(){}
typedef Master1<Lifetime> ThisType;
typedef SingletonDataObject<Lifetime,1> MasterSingleton;
typedef SingletonHolder<MasterSingleton,CreateUsingNew,Lifetime> Singleton;
MasterSingleton* data;
};
typedef Master1<FollowIntoDeath::With<DefaultLifetime>::AsMasterLifetime>
Master1_DefaultLifetime;
typedef Master1<FollowIntoDeath::With<NoDestroy>::AsMasterLifetime>
Master1_NoDestroy;
typedef Master1<FollowIntoDeath::With<PhoenixSingleton>::AsMasterLifetime>
Master1_PhoenixSingleton;
typedef Master1<FollowIntoDeath::With<DeletableSingleton>::AsMasterLifetime>
Master1_DeletableSingleton;
class B1_DefaultLifetime : public Master1_DefaultLifetime
{
public:
B1_DefaultLifetime(){std::cout<<"new B1_DefaultLifetime\n";}
~B1_DefaultLifetime(){std::cout<<"delete B1_DefaultLifetime\n";}
};
class B1_NoDestroy : public Master1_NoDestroy
{
public:
B1_NoDestroy(){std::cout<<"new B1_NoDestroy. B1_NoDestroy must not be deleted\n";}
~B1_NoDestroy(){std::cout<<"delete B1_NoDestroy\n";}
};
class B1_PhoenixSingleton : public Master1_PhoenixSingleton
{
public:
B1_PhoenixSingleton(){std::cout<<"new B1_PhoenixSingleton\n";}
~B1_PhoenixSingleton(){std::cout<<"delete B1_PhoenixSingleton\n";}
};
class B1_DeletableSingleton : public Master1_DeletableSingleton
{
public:
B1_DeletableSingleton(){std::cout<<"new B1_DeletableSingleton\n";}
~B1_DeletableSingleton(){std::cout<<"delete B1_DeletableSingleton\n";}
};
typedef SingletonHolder<B1_DefaultLifetime,CreateUsingNew,
FollowIntoDeath::AfterMaster<Master1_DefaultLifetime::MasterSingleton>::IsDestroyed
> Follower1_Singleton_DefaultLifetime;
typedef SingletonHolder<B1_NoDestroy,CreateUsingNew,
FollowIntoDeath::AfterMaster<Master1_NoDestroy::MasterSingleton>::IsDestroyed
> Follower1_Singleton_NoDestroy;
typedef SingletonHolder<B1_PhoenixSingleton,CreateUsingNew,
FollowIntoDeath::AfterMaster<Master1_PhoenixSingleton::MasterSingleton>::IsDestroyed
> Follower1_Singleton_PhoenixSingleton;
typedef SingletonHolder<B1_DeletableSingleton,CreateUsingNew,
FollowIntoDeath::AfterMaster<Master1_DeletableSingleton::MasterSingleton>::IsDestroyed
> Follower1_Singleton_DeletableSingleton;
////////////////////////////////////////////////////////////////////////////////////
//
// Test code for FollowIntoDeath policy with reverse instantiation
//
////////////////////////////////////////////////////////////////////////////////////
template<template <class> class Lifetime>
struct Master2
{
Master2()
{
// don't create a MasterSingleton2 object!!
// to test the FollowIntoDeath policy
}
virtual ~Master2(){}
typedef Master2<Lifetime> ThisType;
typedef SingletonDataObject<Lifetime,2> MasterSingleton;
typedef SingletonHolder<MasterSingleton,CreateUsingNew,Lifetime> Singleton;
MasterSingleton* data;
};
typedef Master2<FollowIntoDeath::With<DefaultLifetime>::AsMasterLifetime>
Master2_DefaultLifetime;
typedef Master2<FollowIntoDeath::With<NoDestroy>::AsMasterLifetime>
Master2_NoDestroy;
typedef Master2<FollowIntoDeath::With<PhoenixSingleton>::AsMasterLifetime>
Master2_PhoenixSingleton;
typedef Master2<FollowIntoDeath::With<DeletableSingleton>::AsMasterLifetime>
Master2_DeletableSingleton;
class B2_DefaultLifetime : public Master2_DefaultLifetime
{
public:
B2_DefaultLifetime(){std::cout<<"new B2_DefaultLifetime\n";}
~B2_DefaultLifetime(){std::cout<<"delete B2_DefaultLifetime\n";}
};
class B2_NoDestroy : public Master2_NoDestroy
{
public:
B2_NoDestroy(){std::cout<<"new B2_NoDestroy. B2_NoDestroy must not be deleted\n";}
~B2_NoDestroy(){std::cout<<"delete B2_NoDestroy\n";}
};
class B2_PhoenixSingleton : public Master2_PhoenixSingleton
{
public:
B2_PhoenixSingleton(){std::cout<<"new B2_PhoenixSingleton\n";}
~B2_PhoenixSingleton(){std::cout<<"delete B2_PhoenixSingleton\n";}
};
class B2_DeletableSingleton : public Master2_DeletableSingleton
{
public:
B2_DeletableSingleton(){std::cout<<"new B2_DeletableSingleton\n";}
~B2_DeletableSingleton(){std::cout<<"delete B2_DeletableSingleton\n";}
};
typedef SingletonHolder<B2_DefaultLifetime,CreateUsingNew,
FollowIntoDeath::AfterMaster<Master2_DefaultLifetime::MasterSingleton>::IsDestroyed
> Follower2_Singleton_DefaultLifetime;
typedef SingletonHolder<B2_NoDestroy,CreateUsingNew,
FollowIntoDeath::AfterMaster<Master2_NoDestroy::MasterSingleton>::IsDestroyed
> Follower2_Singleton_NoDestroy;
typedef SingletonHolder<B2_PhoenixSingleton,CreateUsingNew,
FollowIntoDeath::AfterMaster<Master2_PhoenixSingleton::MasterSingleton>::IsDestroyed
> Follower2_Singleton_PhoenixSingleton;
typedef SingletonHolder<B2_DeletableSingleton,CreateUsingNew,
FollowIntoDeath::AfterMaster<Master2_DeletableSingleton::MasterSingleton>::IsDestroyed
> Follower2_Singleton_DeletableSingleton;
#endif //#if !defined(_MSC_VER) || (_MSC_VER>=1400)
////////////////////////////////////////////////////////////////////////////////////
//
// detect memory leaks on MSVC Ide
//
////////////////////////////////////////////////////////////////////////////////////
#ifdef _MSC_VER
#include <crtdbg.h>
#include <cassert>
void heap_debug()
{
int tmpFlag = _CrtSetDbgFlag( _CRTDBG_REPORT_FLAG );
// Turn on leak-checking bit
tmpFlag |= _CRTDBG_LEAK_CHECK_DF;
//tmpFlag |= _CRTDBG_CHECK_MasterLWMasterYS_DF;
// Turn off CRT block checking bit
tmpFlag &= ~_CRTDBG_CHECK_CRT_DF;
// Set flag to the new value
_CrtSetDbgFlag( tmpFlag );
}
#endif
////////////////////////////////////////////////////////////////////////////////////
//
// main
//
////////////////////////////////////////////////////////////////////////////////////
int main()
{
#ifdef _MSC_VER
heap_debug();
#endif
void* p;
p = static_cast<void*>(&Singleton_with_MySmallObject_DieAs::Instance());
p = static_cast<void*>(&Singleton_MyFunctionObject_DieAs::Instance());
std::cout<<"\n";
p = static_cast<void*>(&Follower1_Singleton_B1_die_first::Instance());
p = static_cast<void*>(&Follower1_Singleton_B1_die_last::Instance());
// test of FollowIntoDeath policy, not supported by msvc 7.1 compiler
#if !defined(_MSC_VER) || (_MSC_VER>=1400)
std::cout << "\nMaster1:\n\n";
p = static_cast<void*>(&Follower1_Singleton_DefaultLifetime::Instance());
p = static_cast<void*>(&Follower1_Singleton_PhoenixSingleton::Instance());
p = static_cast<void*>(&Follower1_Singleton_DeletableSingleton::Instance());
std::cout << "\n\nMaster2:\n\n";
B2_DefaultLifetime *def2 = &Follower2_Singleton_DefaultLifetime::Instance();
def2->data = &Master2_DefaultLifetime::Singleton::Instance();
B2_PhoenixSingleton *pho2 = &Follower2_Singleton_PhoenixSingleton::Instance();
pho2->data = &Master2_PhoenixSingleton::Singleton::Instance();
B2_DeletableSingleton *del2 = &Follower2_Singleton_DeletableSingleton::Instance();
del2->data = &Master2_DeletableSingleton::Singleton::Instance();
// memory leak when code is enabled
//#define ENABLE_MEMORY_LEAK
#ifdef ENABLE_MEMORY_LEAK
p = static_cast<void*>(&Follower1_Singleton_NoDestroy::Instance());
B2_NoDestroy *no2 = &Follower2_Singleton_NoDestroy::Instance();
no2->data = &Master2_NoDestroy::Singleton::Instance();
#endif
#endif //#if !defined(_MSC_VER) || (_MSC_VER>=1400)
#if defined(__BORLANDC__) || defined(_MSC_VER)
system("PAUSE");
#endif
std::cout << "\nnow leaving main \n";
std::cout << "________________________________\n\n";
return 0;
}
|