Coverage for Doctrine_Transaction_Mysql

Back to coverage report

1 <?php
2 /*
3  *  $Id: Mysql.php 2963 2007-10-21 06:23:59Z Jonathan.Wage $
4  *
5  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
6  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
7  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
8  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
9  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
10  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
11  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
12  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
13  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
14  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
15  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16  *
17  * This software consists of voluntary contributions made by many individuals
18  * and is licensed under the LGPL. For more information, see
19  * <http://www.phpdoctrine.org>.
20  */
21 Doctrine::autoload('Doctrine_Transaction');
22 /**
23  *
24  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
25  * @author      Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
26  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
27  * @package     Doctrine
28  * @subpackage  Transaction
29  * @link        www.phpdoctrine.org
30  * @since       1.0
31  * @version     $Revision: 2963 $
32  */
33 class Doctrine_Transaction_Mysql extends Doctrine_Transaction
34 {
35     /**
36      * createSavepoint
37      * creates a new savepoint
38      *
39      * @param string $savepoint     name of a savepoint to set
40      * @return void
41      */
42     protected function createSavePoint($savepoint)
43     {
44         $query = 'SAVEPOINT ' . $savepoint;
45
46         return $this->conn->execute($query);
47     }
48
49     /**
50      * releaseSavePoint
51      * releases given savepoint
52      *
53      * @param string $savepoint     name of a savepoint to release
54      * @return void
55      */
56     protected function releaseSavePoint($savepoint)
57     {
58         $query = 'RELEASE SAVEPOINT ' . $savepoint;
59
60         return $this->conn->execute($query);
61     }
62
63     /**
64      * rollbackSavePoint
65      * releases given savepoint
66      *
67      * @param string $savepoint     name of a savepoint to rollback to
68      * @return void
69      */
70     protected function rollbackSavePoint($savepoint)
71     {
72         $query = 'ROLLBACK TO SAVEPOINT ' . $savepoint;
73
74         return $this->conn->execute($query);
75     }
76
77     /**
78      * Set the transacton isolation level.
79      *
80      * @param   string  standard isolation level
81      *                  READ UNCOMMITTED (allows dirty reads)
82      *                  READ COMMITTED (prevents dirty reads)
83      *                  REPEATABLE READ (prevents nonrepeatable reads)
84      *                  SERIALIZABLE (prevents phantom reads)
85      *
86      * @throws Doctrine_Transaction_Exception           if using unknown isolation level
87      * @throws PDOException                             if something fails at the PDO level
88      * @return void
89      */
90     public function setIsolation($isolation)
91     {
92         switch ($isolation) {
93             case 'READ UNCOMMITTED':
94             case 'READ COMMITTED':
95             case 'REPEATABLE READ':
96             case 'SERIALIZABLE':
97                 break;
98             default:
99                 throw new Doctrine_Transaction_Exception('Isolation level ' . $isolation . ' is not supported.');
100         }
101
102         $query = 'SET SESSION TRANSACTION ISOLATION LEVEL ' . $isolation;
103
104         return $this->conn->execute($query);
105     }
106
107     /**
108      * getTransactionIsolation
109      *
110      * @return string               returns the current session transaction isolation level
111      */
112     public function getIsolation()
113     {
114         return $this->conn->fetchOne('SELECT @@tx_isolation');
115     }
116 }