summaryrefslogtreecommitdiffstats
path: root/reladminif/dbobject.cc
blob: eabe794e5a572095ac44f37e72c8e0c179f93166 (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
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
/*
* This file is part of rasdaman community.
*
* Rasdaman community is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Rasdaman community is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with rasdaman community.  If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Peter Baumann /
rasdaman GmbH.
*
* For more information please see <http://www.rasdaman.org>
* or contact Peter Baumann via <baumann@rasdaman.com>.
*/
/*************************************************************************
 *
 *
 * PURPOSE:
 *   Code with embedded SQL for relational DBMS
 *
 *
 * COMMENTS:
 *   none
 *
 ***********************************************************************/

// mainly for ostringstream:
#include <iostream>
#include <string>
#include <sstream>
#include <fstream>
#include <cstring>

using namespace std;

#include "objectbroker.hh"
#include "dbobject.hh"
#include "adminif.hh"
#include "externs.h"
#include "raslib/rmdebug.hh"
#include "raslib/error.hh"
#include "eoid.hh"

#ifdef RMANBENCHMARK
RMTimer DBObject::readTimer = RMTimer("DBObject","read");
RMTimer DBObject::updateTimer = RMTimer("DBObject","update");
RMTimer DBObject::insertTimer = RMTimer("DBObject","insert");
RMTimer DBObject::deleteTimer = RMTimer("DBObject","delete");
#endif

const char*
BinaryRepresentation::fileTag = "RMAN";

void
DBObject::printStatus(unsigned int level, std::ostream& stream) const
	{
	char* indent = new char[level*2 +1];
	for (int j = 0; j < level*2 ; j++)
		indent[j] = ' ';
	indent[level*2] = '\0';
	
	stream << indent; 
	stream << myOId;
	delete[] indent;
	indent=0;
	}

r_Bytes
DBObject::getTotalStorageSize() const
	{
	return 0;
	}

r_Bytes
DBObject::getMemorySize() const
	{
	return sizeof(DBObject);
	}

void
DBObject::setCached(bool newCached)
	{
	RMDBGONCE(10, RMDebug::module_adminif, "DBObject", "setCached(" << (int)newCached << ") " << myOId);
	_isCached = newCached;
	}

bool
DBObject::isCached() const
	{
	RMDBGONCE(10, RMDebug::module_adminif, "DBObject", "isCached()" << (int) _isCached)
	return _isCached;
	}

void
DBObject::destroy()
	{
	RMDBGENTER(10, RMDebug::module_adminif, "DBObject", "destroy() " << myOId);
#ifdef RMANDEBUG
	OId tempid(myOId); 
#endif
  	if (referenceCount == 0)
		{
		if (!_isCached)
			{
			//exception may be possible when !isModified()
			if (!AdminIf::isReadOnlyTA())
				{
				RMDBGMIDDLE(10, RMDebug::module_adminif, "DBObject", "deleting object " << myOId);
				delete this;//is dynamic and may be deleted
				}
			else	{
				if (!_isPersistent)
					{
					RMDBGMIDDLE(10, RMDebug::module_adminif, "DBObject", "deleting object " << myOId);
					//is dynamic and may be deleted
					delete this;
					}
				}
			}
		}
#ifdef RMANDEBUG 
	RMDBGEXIT(10, RMDebug::module_adminif, "DBObject", "destroy() " << tempid);
#else
	RMDBGEXIT(10, RMDebug::module_adminif, "DBObject", "destroy()");
#endif
	}

void
DBObject::release()
	{
	RMDBGONCE(10, RMDebug::module_adminif, "DBObject", "release() ");
	//no dynamic memory
	}

void DBObject::incrementReferenceCount(void)
	{
	RMDBGONCE(10, RMDebug::module_adminif, "DBObject", "incrementReferenceCount() " << referenceCount);
	referenceCount++;
	}

void DBObject::decrementReferenceCount(void)
	{
	RMDBGONCE(10, RMDebug::module_adminif, "DBObject", "decrementReferenceCount() " <<referenceCount);
	referenceCount--;
	if (referenceCount == 0)
		destroy();
	}

int
DBObject::getReferenceCount(void) const
	{
	RMDBGONCE(10, RMDebug::module_adminif, "DBObject", "getReferenceCount() " <<referenceCount);
	return referenceCount;
	}

//public:
DBObject::DBObject()
	:	_isInDatabase(false),
		_isPersistent(false),
		_isModified(true),
		_isCached(false),
		referenceCount(0),
		objecttype(OId::INVALID),
		myOId(0)
	{
	RMDBGONCE(10, RMDebug::module_adminif, "DBObject", "DBObject() " << myOId);
	}

DBObject::DBObject(const DBObject& old)
	:	_isInDatabase(old._isInDatabase),
		_isPersistent(old._isPersistent),
		_isModified(old._isModified),
		_isCached(old._isCached),
		referenceCount(old.referenceCount),
		objecttype(old.objecttype),
		myOId(old.myOId)
	{
	RMDBGONCE(10, RMDebug::module_adminif, "DBObject", "DBObject(const DBObject& old)" << myOId);
	}

//constructs an object and reads it from the database.  the oid must match the type of the object.
//a r_Error::r_Error_ObjectUnknown is thrown when the oid is not in the database.
DBObject::DBObject(const OId& id) throw (r_Error)
	:	referenceCount(0),
		_isCached(false),
		myOId(id),
		objecttype(id.getType())
	{
	//flags must be set by readFromDb()
	RMDBGONCE(10, RMDebug::module_adminif, "DBObject", "DBObject(" << myOId << ")");
	}

DBObject&
DBObject::operator=(const DBObject& old)
	{
	RMDBGONCE(10, RMDebug::module_adminif, "DBObject", "operator=(" << old.myOId << ")");
	if (this != &old)
		{
		_isPersistent = old._isPersistent;
		_isInDatabase = old._isInDatabase;
		_isModified = old._isModified;
		_isCached = old._isCached;
		objecttype = old.objecttype;
		myOId = old.myOId;
		}
	return *this;
	}

//setPersistent(true) makes the object persistent as soon as validate is called.
//a r_Error::r_Error_TransactionReadOnly is thrown when the transaction is readonly. 
void
DBObject::setPersistent(bool newPersistent) throw (r_Error)
	{
	RMDBGENTER(6, RMDebug::module_adminif, "DBObject", "setPersistent(" << (int)newPersistent << ") " << myOId);
	if (newPersistent)
	     {//make object persistent 
		if (!_isPersistent)
			{//object is not persistent
			if (!AdminIf::isReadOnlyTA())
				{//may be written to database
				OId::allocateOId(myOId, objecttype);
				_isPersistent = true;
				_isModified = true;
				ObjectBroker::registerDBObject(this);
				RMDBGMIDDLE(6, RMDebug::module_adminif, "DBObject", "persistent\t: yes, was not persistent");
				}
			else	{//read only transaction
				RMDBGEXIT(6, RMDebug::module_adminif, "DBObject", "ReadOnlyTransaction");
				RMInit::logOut << "DBObject::setPersistent() read only transaction" << endl;
				throw r_Error(r_Error::r_Error_TransactionReadOnly);
				}
			}
		else	{//is already persitent
			RMDBGMIDDLE(6, RMDebug::module_adminif, "DBObject", "persistent\t: yes, was already persistent");
			}
		}
	else	{//delete the object from database
		if (_isPersistent)
			{
			if (!AdminIf::isReadOnlyTA())
				{//may be deleted to database
				RMDBGMIDDLE(6, RMDebug::module_adminif, "DBObject", "persistent\t: no, was persistent");
				_isPersistent = false;
				_isModified = true;
				}
			else	{//read only transaction
				RMDBGEXIT(6, RMDebug::module_adminif, "DBObject", "ReadOnlyTransaction");
				RMInit::logOut << "DBObject::setPersistent() read only transaction" << endl;
				throw r_Error(r_Error::r_Error_TransactionReadOnly);
				}
			}
		else	{
			RMDBGMIDDLE(6, RMDebug::module_adminif, "DBObject", "persistent\t: no, was not persistent");
			}
		}
	RMDBGEXIT(6, RMDebug::module_adminif, "DBObject", "setPersistent(" << (int)newPersistent << ") " << myOId);
	}
	
//tells if an object is persistent.
bool
DBObject::isPersistent() const
	{
	RMDBGONCE(6, RMDebug::module_adminif, "DBObject", "isPersistent()" << (int)_isPersistent); 
	return _isPersistent;
	}

//writes the object to database/deletes it or updates it.
//a r_Error::r_Error_TransactionReadOnly is thrown when the transaction is readonly. 
void
DBObject::validate() throw (r_Error)
	{
	RMDBGENTER(9, RMDebug::module_adminif, "DBObject", "validate() " << myOId);
	if (_isModified)
		{
		if (!AdminIf::isReadOnlyTA())
			{
			if (!AdminIf::isAborted())
				{
				if (_isInDatabase)
					{
					if (_isPersistent)
						{
						RMDBGMIDDLE(11, RMDebug::module_adminif, "DBObject", "is persistent and modified and in database");
#ifdef RMANBENCHMARK
						updateTimer.resume();
#endif
						this->updateInDb();
#ifdef RMANBENCHMARK
						updateTimer.pause();
#endif
						}
					else	{
						RMDBGMIDDLE(11, RMDebug::module_adminif, "DBObject", "is not persistent and in database");
#ifdef RMANBENCHMARK
						deleteTimer.resume();
#endif
						this->deleteFromDb();
#ifdef RMANBENCHMARK
						deleteTimer.pause();
#endif
						}
					}
				else	{
					if (_isPersistent)
						{
						RMDBGMIDDLE(11, RMDebug::module_adminif, "DBObject", "is persistent and modified and not in database");

#ifdef RMANBENCHMARK
						insertTimer.resume();
#endif
						this->insertInDb();
#ifdef RMANBENCHMARK
						insertTimer.pause();
#endif
						}
					else	{
						//donīt do anything: not in db and not persistent
						}
					}
				}
			else	{
				//donīt do anything: is aborted
				}
			}
		else	{
			//donīt do anything: is read only
			}
		}
	else	{
		//donīt do anything: not modified
		}
	RMDBGEXIT(9, RMDebug::module_adminif, "DBObject", "validate() " << myOId);
	}

void
DBObject::setModified() throw (r_Error)
	{
	RMDBGENTER(8, RMDebug::module_adminif, "DBObject", "setModified() " << myOId);
	if (!AdminIf::isReadOnlyTA())
		_isModified = true;
	else	{
		RMDBGMIDDLE(5, RMDebug::module_adminif, "DBObject", "readonly transaction " << myOId);
		//this happens really a lot.
		//RMInit::logOut << "DBObject::setModified() read only transaction" << endl;
		//throw r_Error(r_Error::r_Error_TransactionReadOnly);
		_isModified = true;
		}
	RMDBGEXIT(8, RMDebug::module_adminif, "DBObject", "setModified() " << myOId);
	}

bool
DBObject::isModified() const
	{
	RMDBGONCE(8, RMDebug::module_adminif, "DBObject", "isModified() " << (int)_isModified);  
	return _isModified;
	}

OId
DBObject::getOId() const
	{
	RMDBGONCE(8, RMDebug::module_adminif, "DBObject", "getOId() " << myOId);  
	return myOId;
	}

EOId
DBObject::getEOId() const
	{
        RMDBGONCE(8, RMDebug::module_adminif, "DBObject", "getEOId() " << myOId);  
	return EOId(myOId);
	}

OId::OIdType
DBObject::getObjectType() const
	{
	RMDBGONCE(8, RMDebug::module_adminif, "DBObject", "getObjectType() " << objecttype);  
	return objecttype;
	}

DBObject::~DBObject()
	{
	RMDBGENTER(10, RMDebug::module_adminif, "DBObject", "~DBObject() " << myOId);
	ObjectBroker::deregisterDBObject(myOId);
	RMDBGEXIT(10, RMDebug::module_adminif, "DBObject", "~DBObject() " << myOId);
	}

void
DBObject::updateInDb() throw (r_Error)
	{
	RMDBGENTER(10, RMDebug::module_adminif, "DBObject", "updateInDb() " << myOId);
	_isModified = false;
	_isInDatabase = true;
	_isPersistent = true;
	RMDBGEXIT(10, RMDebug::module_adminif, "DBObject", "updateInDb() " << myOId);
	}

//writes the object into the database.  the object must not be in the database.
void
DBObject::insertInDb() throw (r_Error)
	{
	RMDBGENTER(10, RMDebug::module_adminif, "DBObject", "insertInDb() " << myOId);
	_isModified = false;
	_isInDatabase = true;
	_isPersistent = true;
	RMDBGEXIT(10, RMDebug::module_adminif, "DBObject", "insertInDb() " << myOId);
	}

void
DBObject::deleteFromDb() throw (r_Error)
	{
	RMDBGENTER(10, RMDebug::module_adminif, "DBObject", "deleteFromDb() " << myOId);
	_isModified = false;
	_isInDatabase = false;
	_isPersistent = false;
	RMDBGEXIT(10, RMDebug::module_adminif, "DBObject", "deleteFromDb() " << myOId);
	}

void
DBObject::readFromDb() throw (r_Error)
	{
	RMDBGENTER(10, RMDebug::module_adminif, "DBObject", "readFromDb() " << myOId);
	_isPersistent = true;
	_isModified = false;
	_isInDatabase = true;
	RMDBGEXIT(10, RMDebug::module_adminif, "DBObject", "readFromDb() " << myOId);
	}

BinaryRepresentation
DBObject::getBinaryRepresentation() const throw (r_Error)
	{
	RMInit::logOut << "getBinaryRepresentation() for " << objecttype << " not implemented" << endl;
	throw r_Error(BINARYEXPORTNOTSUPPORTEDFOROBJECT);
	}

void
DBObject::setBinaryRepresentation(const BinaryRepresentation& br) throw (r_Error)
	{
	RMInit::logOut << "setBinaryRepresentation() for " << objecttype << " not implemented" << endl;
	throw r_Error(BINARYIMPORTNOTSUPPORTEDFOROBJECT);
	}

char*
DBObject::getBinaryName() const
	{
	//if we use 64bit oids we have at most 20 digits + "_" + type
	ostringstream o;
	o << (int)objecttype << '_' << myOId.getCounter() << ".raw";
	const char* temp = o.str().c_str();
	char* retval = new char[strlen(temp) + 1];
	memcpy(retval, temp, strlen(temp) + 1);
	return retval;
	}