summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Refcountable.cpp
blob: 46178ac6b4694ce0536789f5e1f0ae75726f4f9a (plain)
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
// $Id$

#include "Refcountable.h"
#include "Destroy_Callback.h"

#include "tao/debug.h"

#if ! defined (__ACE_INLINE__)
#include "Refcountable.inl"
#endif /* __ACE_INLINE__ */

ACE_RCSID(RT_Notify, TAO_NS_Refcountable, "$Id$")

TAO_NS_Refcountable::TAO_NS_Refcountable (void)
  :refcount_ (1)
{
}

TAO_NS_Refcountable::~TAO_NS_Refcountable ()
{
}

CORBA::ULong
TAO_NS_Refcountable::_incr_refcnt (void)
{
  ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, ace_mon, this->lock_, 0);

  if (TAO_debug_level > 0 )
    ACE_DEBUG ((LM_DEBUG,"object:%x  incr refcount = %d\n", this, refcount_+1 ));


  return this->refcount_++;
}

CORBA::ULong
TAO_NS_Refcountable::_decr_refcnt (void)
{
  {
    ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, ace_mon, this->lock_, 0);

    if (TAO_debug_level > 0 )
      ACE_DEBUG ((LM_DEBUG,"object:%x  decr refcount = %d\n", this, refcount_-1 ));

    this->refcount_--;
    if (this->refcount_ != 0)
      return this->refcount_;
  }

  if (this->destroy_callback_ != 0)
    this->destroy_callback_->release ();

  return 0;
}

void
TAO_NS_Refcountable::destroy_callback (TAO_NS_Destroy_Callback* destroy_callback)
{
  destroy_callback_ = destroy_callback;
}