blob: 7c43dbe5050c501c81f270518b447380f8ff24ca (
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
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
|
// $Id: Dump.cpp 80826 2008-03-04 14:51:23Z wotte $
#include "ace/Dump.h"
#include "ace/Guard_T.h"
#include "ace/Thread_Mutex.h"
#include "ace/Object_Manager.h"
#include "ace/Log_Msg.h"
ACE_RCSID(ace, Dump, "$Id: Dump.cpp 80826 2008-03-04 14:51:23Z wotte $")
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
// Implementations (very simple for now...)
ACE_Dumpable::~ACE_Dumpable (void)
{
ACE_TRACE ("ACE_Dumpable::~ACE_Dumpable");
}
ACE_Dumpable::ACE_Dumpable (const void *this_ptr)
: this_ (this_ptr)
{
ACE_TRACE ("ACE_Dumpable::ACE_Dumpable");
}
ACE_Dumpable_Ptr::ACE_Dumpable_Ptr (const ACE_Dumpable *dumper)
: dumper_ (dumper)
{
ACE_TRACE ("ACE_Dumpable_Ptr::ACE_Dumpable_Ptr");
}
const ACE_Dumpable *
ACE_Dumpable_Ptr::operator->() const
{
ACE_TRACE ("ACE_Dumpable_Ptr::operator->");
return this->dumper_;
}
void
ACE_Dumpable_Ptr::operator= (const ACE_Dumpable *dumper) const
{
ACE_TRACE ("ACE_Dumpable_Ptr::operator=");
if (this->dumper_ != dumper)
{
delete const_cast <ACE_Dumpable *> (this->dumper_);
(const_cast<ACE_Dumpable_Ptr *> (this))->dumper_ = dumper;
}
}
ACE_ODB::ACE_ODB (void)
// Let the Tuple default constructor initialize object_table_
: current_size_ (0)
{
ACE_TRACE ("ACE_ODB::ACE_ODB");
}
ACE_ODB *
ACE_ODB::instance (void)
{
ACE_TRACE ("ACE_ODB::instance");
if (ACE_ODB::instance_ == 0)
{
ACE_MT (ACE_Thread_Mutex *lock =
ACE_Managed_Object<ACE_Thread_Mutex>::get_preallocated_object
(ACE_Object_Manager::ACE_DUMP_LOCK);
ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, *lock, 0));
if (ACE_ODB::instance_ == 0)
ACE_NEW_RETURN (ACE_ODB::instance_,
ACE_ODB,
0);
}
return ACE_ODB::instance_;
}
void
ACE_ODB::dump_objects (void)
{
ACE_TRACE ("ACE_ODB::dump_objects");
for (int i = 0; i < this->current_size_; i++)
{
if (this->object_table_[i].this_ != 0)
// Dump the state of the object.
this->object_table_[i].dumper_->dump ();
}
}
// This method registers a new <dumper>. It detects
// duplicates and simply overwrites them.
void
ACE_ODB::register_object (const ACE_Dumpable *dumper)
{
ACE_TRACE ("ACE_ODB::register_object");
int i;
int slot = 0;
for (i = 0; i < this->current_size_; i++)
{
if (this->object_table_[i].this_ == 0)
slot = i;
else if (this->object_table_[i].this_ == dumper->this_)
{
slot = i;
break;
}
}
if (i == this->current_size_)
{
slot = this->current_size_++;
ACE_ASSERT (this->current_size_ < ACE_ODB::MAX_TABLE_SIZE);
}
this->object_table_[slot].this_ = dumper->this_;
this->object_table_[slot].dumper_ = dumper;
}
void
ACE_ODB::remove_object (const void *this_ptr)
{
ACE_TRACE ("ACE_ODB::remove_object");
int i;
for (i = 0; i < this->current_size_; i++)
{
if (this->object_table_[i].this_ == this_ptr)
break;
}
if (i < this->current_size_)
{
this->object_table_[i].this_ = 0;
this->object_table_[i].dumper_ = 0;
}
}
ACE_ODB *ACE_ODB::instance_ = 0;
ACE_END_VERSIONED_NAMESPACE_DECL
|