blob: 254afdb5124b4ce14694f48e15f0f13566ca5f4d (
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
|
<?php
/**
* TMasterSlaveDbTransaction class file.
*
* @author Yves Berkholz <godzilla80[at]gmx[dot]net>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2010 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id$
* @package System.Testing.Data.Distributed.MasterSlave
*/
Prado::using('System.Data.TDbTransaction');
/**
* TMasterSlaveDbTransaction class
*
* IMPORTANT!!!
* BETA Version - Use with care and NOT in production environment (only tested with MySql)
*
* TMasterSlaveDbTransaction represents a DB transaction in master/slave senario.
*
* @author Yves Berkholz <godzilla80[at]gmx[dot]net>
* @version $Id$
* @package System.Testing.Data.Distributed.MasterSlave
* @since 4.0
*/
class TMasterSlaveDbTransaction extends TDbTransaction
{
/**
* @var boolean
*/
private $_compatible = false;
/**
* Constructor.
* @param TDbConnection the connection associated with this transaction
* @see TDbConnection::beginTransaction
*/
public function __construct(TDbConnection $connection)
{
if($connection instanceof ISlaveDbConnection)
{
$this->_compatible = true;
$master = $connection->getMasterConnection();
$master->setForceMaster(TMasterSlaveDbConnectionForceMaster::ON_TRANSACTION);
Prado::log('contstuct, ForceMaster: ON_TRANSACTION', TLogger::DEBUG, 'System.Testing.Data.Distributed.MasterSlave.TMasterSlaveDbTransaction');
parent::__construct($master);
}
else
{
if($connection instanceof IMasterSlaveDbConnection)
{
$this->_compatible = true;
$connection->setForceMaster(TMasterSlaveDbConnectionForceMaster::ON_TRANSACTION);
Prado::log('contstuct, ForceMaster: ON_TRANSACTION', TLogger::DEBUG, 'System.TestingData.Distributed.MasterSlave.TMasterSlaveDbTransaction');
}
parent::__construct($connection);
}
}
/**
* Commits a transaction.
* @throws TDbException if the transaction or the DB connection is not active.
*/
public function commit()
{
if($this->_compatible) $this->getConnection()->setForceMaster(TMasterSlaveDbConnectionForceMaster::OFF_AUTOMATIC);
Prado::log('commit, ForceMaster: OFF_AUTOMATIC', TLogger::DEBUG, 'System.Testing.Data.Distributed.MasterSlave.TMasterSlaveDbTransaction');
parent::commit();
}
/**
* Rolls back a transaction.
* @throws TDbException if the transaction or the DB connection is not active.
*/
public function rollback()
{
if($this->_compatible) $this->getConnection()->setForceMaster(TMasterSlaveDbConnectionForceMaster::OFF_AUTOMATIC);
Prado::log('rollback, ForceMaster: OFF_AUTOMATIC', TLogger::DEBUG, 'System.Testing.Data.Distributed.MasterSlave.TMasterSlaveDbTransaction');
parent::rollback();
}
}
?>
|