File: embeddable.C

package info (click to toggle)
ball 1.5.0%2Bgit20180813.37fc53c-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 239,888 kB
  • sloc: cpp: 326,149; ansic: 4,208; python: 2,303; yacc: 1,778; lex: 1,099; xml: 958; sh: 322; makefile: 95
file content (226 lines) | stat: -rw-r--r-- 5,951 bytes parent folder | download | duplicates (9)
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
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
// $Id: embeddable.C,v 1.18 2005/12/23 17:02:33 amoll Exp $
//

#include <BALL/CONCEPT/embeddable.h>

#undef BALL_DEBUG

namespace BALL
{

	Embeddable::Embeddable(const String& identifier)
		
		:	identifier_(identifier)
	{
		#ifdef BALL_DEBUG
			Log.info() << "constructing Embeddable(const String& identified = '" 
								 << identifier << "') [this = " << (void*)this << "]" << std::endl;
		#endif
	}

	Embeddable::Embeddable(const Embeddable& embeddable)
		
		:	identifier_(embeddable.identifier_)
	{
		#ifdef BALL_DEBUG
			Log.info() << "copy constructing Embeddable(embeddable = " << (void*)&embeddable 
								 <<" [this = " << (void*)this << "]" << std::endl;
		#endif
	}

	Embeddable::~Embeddable()
		
	{
		#ifdef BALL_DEBUG
			Log.info() << "destructing Embeddable [this = " << (void*)this << "]" << std::endl;
		#endif
		// make sure destructed instances are securely unregistered
		unregisterInstance_(this);
		identifier_ = "<destructed>";
	}

	const String& Embeddable::getIdentifier() const
		
	{
		return identifier_;
	}

	void Embeddable::setIdentifier(const String& identifier)
		
	{
		identifier_ = identifier;
	}

	void Embeddable::registerThis() 
		
	{
		if (typeid(*this) != typeid(BALL::Embeddable))
		{
			Log.error() << "Warning: derived class " << typeid(*this).name() << " was derived from BALL::Embeddable, but the macro "
									<< "BALL_EMBEDDABLE(...) was not specified in the class declaration!" << std::endl;
		}
		registerInstance_(typeid(BALL::Embeddable), this);
	}

	void Embeddable::unregisterThis() 
		
	{
		Embeddable::unregisterInstance_(this);
	}


	void Embeddable::registerInstance_(const std::type_info& type, const Embeddable* instance) 
		
	{
		// retrieve the class name
		const char* class_id_string = type.name();
		Embeddable* e_ptr = const_cast<Embeddable*>(instance);

		if (instance_to_type_map_.has(e_ptr))
		{
			EmbeddableVector& v = instance_vectors_[class_id_string];

			// Check whether we have that one already...
			if (std::find(v.begin(), v.end(), instance) == v.end())
			{
				// store the pointer to the instance in the instance vector...
				v.push_back(const_cast<Embeddable*>(instance));
			}

			return;
		}

		// this is in fact a new registration
		if (!instance_vectors_.has(class_id_string))
		{
			// create a new vector for instances of this type
			instance_vectors_.insert(class_id_string, EmbeddableVector());
		}
		// store the pointer to the instance in the instance vector...
		instance_vectors_[class_id_string].push_back(e_ptr);
		
		// ...and in the hash map for fast retrieval of the class id string
		instance_to_type_map_.insert(std::pair<Embeddable*, string>(e_ptr, class_id_string));
		#ifdef BALL_DEBUG
			Log.info() << "Embeddable::registerInstance_: registering " << class_id_string 
								 << " @ " << (void*)instance << std::endl;
		#endif
	}

	void Embeddable::unregisterInstance_(const Embeddable* const_instance) 
		
	{
		// for convenience, we use const pointers in the map, but const ptr
		// for registerInstance/unregisterInstance, since it is *logically* const.
		Embeddable* instance = const_cast<Embeddable*>(const_instance);

		// check whether this instance was registered...
		if (!instance_to_type_map_.has(instance))
		{
			return;
		}

		// retrieve the class id string for this specific instance
		string class_id_string = instance_to_type_map_[instance];
		if (!instance_vectors_.has(class_id_string))
		{
			// something terrible has happened: the instance was in the
			// hash map but not in the vector!
			Log.error() << "Embeddable::unregisterInstance_: Internal error: "
									<< "instance_vectors_ and instance_to_type_map_ are inconsistent!" << std::endl;
			return;
		}

		// remove the instance from all instance vectors
		HashMap<String, std::vector<Embeddable*> >::Iterator it = instance_vectors_.begin();
		for (; it != instance_vectors_.end(); ++it)
		{
			EmbeddableVector& v = it->second;
			EmbeddableVector::iterator last = std::remove(v.begin(), v.end(), instance);
			if (last != v.end())
			{
				v.erase(last);
			}
		}

		// remove it from the instance hash map
		instance_to_type_map_.erase(instance);
		#ifdef BALL_DEBUG
			Log.info() << "Embeddable::unregisterInstance_: unregistering " << (void*)instance << std::endl;
		#endif
	}

	Size Embeddable::countInstances_(const std::type_info& type) 
		
	{
		// check whether we got a vector with that name
		if (instance_vectors_.has(type.name()))
		{
			// retrieve the size of the coresponding instance vector
			return (Size)instance_vectors_[type.name()].size();
		}

		return 0;
	}

	Embeddable* Embeddable::getInstance_(const std::type_info& type, Position index)
		
	{
		// check whether we got a vector with that name
		if (instance_vectors_.has(type.name()))
		{
			EmbeddableVector& v = instance_vectors_[type.name()];
			if (v.size() > index)
			{
				return v[index];
			}
		}

		return 0;
	}

	Embeddable* Embeddable::getInstance_(const std::type_info& type, const String& identifier)
		
	{
		// check whether we got a vector with that name
		if (instance_vectors_.has(type.name()))
		{
			// walk along the vector, return the first instance
			// whose identifier matches
			EmbeddableVector::iterator it = instance_vectors_[type.name()].begin();	
			for (; it != instance_vectors_[type.name()].end(); ++it)
			{
				if ((*it)->getIdentifier() == identifier)
				{
					return *it;
				}
			}
		}

		return 0;
	}

	StringHashMap<Embeddable::EmbeddableVector>				
		Embeddable::instance_vectors_;

	HashMap<Embeddable*, string>	
		Embeddable::instance_to_type_map_;	


	void Embeddable::dump(std::ostream& s, Size depth) const
		
	{
		BALL_DUMP_STREAM_PREFIX(s);
		
		BALL_DUMP_DEPTH(s, depth);
		BALL_DUMP_HEADER(s, this, this);

		BALL_DUMP_DEPTH(s, depth);
		s << "number of instances: " << countInstances_(typeid(this)) << std::endl;
		BALL_DUMP_STREAM_SUFFIX(s);
	}

} // namespace