Coverage for Doctrine_Export_Sqlite

Back to coverage report

1 <?php
2 /*
3  *  $Id: Sqlite.php 2702 2007-10-03 21:43:22Z 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.com>.
20  */
21 Doctrine::autoload('Doctrine_Export');
22 /**
23  * Doctrine_Export_Sqlite
24  *
25  * @package     Doctrine
26  * @subpackage  Export
27  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
28  * @author      Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
29  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
30  * @link        www.phpdoctrine.com
31  * @since       1.0
32  * @version     $Revision: 2702 $
33  */
34 class Doctrine_Export_Sqlite extends Doctrine_Export
35 {
36     /**
37      * drop an existing database
38      *
39      * @param string $name                  name of the database that should be dropped
40      * @throws Doctrine_Export_Exception    if the database file does not exist
41      * @throws Doctrine_Export_Exception    if something failed during the removal of the database file
42      * @return void
43      */
44     public function dropDatabase($name)
45     {
46         $databaseFile = $this->conn->getDatabaseFile($name);
47         if ( ! @file_exists($databaseFile)) {
48             throw new Doctrine_Export_Exception('database does not exist');
49         }
50         $result = @unlink($databaseFile);
51         if ( ! $result) {
52             throw new Doctrine_Export_Exception('could not remove the database file');
53         }
54     }
55
56     /**
57      * Get the stucture of a field into an array
58      *
59      * @param string    $table         name of the table on which the index is to be created
60      * @param string    $name         name of the index to be created
61      * @param array     $definition        associative array that defines properties of the index to be created.
62      *                                 Currently, only one property named FIELDS is supported. This property
63      *                                 is also an associative with the names of the index fields as array
64      *                                 indexes. Each entry of this array is set to another type of associative
65      *                                 array that specifies properties of the index that are specific to
66      *                                 each field.
67      *
68      *                                Currently, only the sorting property is supported. It should be used
69      *                                 to define the sorting direction of the index. It may be set to either
70      *                                 ascending or descending.
71      *
72      *                                Not all DBMS support index sorting direction configuration. The DBMS
73      *                                 drivers of those that do not support it ignore this property. Use the
74      *                                 function support() to determine whether the DBMS driver can manage indexes.
75
76      *                                 Example
77      *                                    array(
78      *                                        'fields' => array(
79      *                                            'user_name' => array(
80      *                                                'sorting' => 'ascending'
81      *                                            ),
82      *                                            'last_login' => array()
83      *                                        )
84      *                                    )
85      * @throws PDOException
86      * @return void
87      */
88     public function createIndexSql($table, $name, array $definition)
89     {
90         $name  = $this->conn->formatter->getIndexName($name);
91         $name  = $this->conn->quoteIdentifier($name);
92         $query = 'CREATE INDEX ' . $name . ' ON ' . $table;
93         $query .= ' (' . $this->getIndexFieldDeclarationList($definition['fields']) . ')';
94
95         return $query;
96     }
97     /**
98      * getIndexFieldDeclarationList
99      * Obtain DBMS specific SQL code portion needed to set an index
100      * declaration to be used in statements like CREATE TABLE.
101      *
102      * @return string   
103      */
104     public function getIndexFieldDeclarationList(array $fields)
105     {
106         $declFields = array();
107
108         foreach ($fields as $fieldName => $field) {
109             $fieldString = $this->conn->quoteIdentifier($fieldName);
110
111             if (is_array($field)) {
112                 if (isset($field['sorting'])) {
113                     $sort = strtoupper($field['sorting']);
114                     switch ($sort) {
115                         case 'ASC':
116                         case 'DESC':
117                             $fieldString .= ' ' . $sort;
118                             break;
119                         default:
120                             throw new Doctrine_Export_Exception('Unknown index sorting option given.');
121                     }
122                 }
123             } else {
124                 $fieldString = $this->conn->quoteIdentifier($field);
125             }
126             $declFields[] = $fieldString;
127         }
128         return implode(', ', $declFields);
129     }
130     /**
131      * create a new table
132      *
133      * @param string $name   Name of the database that should be created
134      * @param array $fields  Associative array that contains the definition of each field of the new table
135      *                       The indexes of the array entries are the names of the fields of the table an
136      *                       the array entry values are associative arrays like those that are meant to be
137      *                       passed with the field definitions to get[Type]Declaration() functions.
138      *                          array(
139      *                              'id' => array(
140      *                                  'type' => 'integer',
141      *                                  'unsigned' => 1
142      *                                  'notnull' => 1
143      *                                  'default' => 0
144      *                              ),
145      *                              'name' => array(
146      *                                  'type' => 'text',
147      *                                  'length' => 12
148      *                              ),
149      *                              'password' => array(
150      *                                  'type' => 'text',
151      *                                  'length' => 12
152      *                              )
153      *                          );
154      * @param array $options  An associative array of table options:
155      *
156      * @return void
157      */
158     public function createTableSql($name, array $fields, array $options = array())
159     {
160         if ( ! $name) {
161             throw new Doctrine_Export_Exception('no valid table name specified');
162         }
163         
164         if (empty($fields)) {
165             throw new Doctrine_Export_Exception('no fields specified for table '.$name);
166         }
167         $queryFields = $this->getFieldDeclarationList($fields);
168         
169         $autoinc = false;
170         foreach($fields as $field) {
171             if (isset($field['autoincrement']) && $field['autoincrement'] || 
172               (isset($field['autoinc']) && $field['autoinc'])) {
173                 $autoinc = true;
174                 break;
175             }
176         }
177
178         if ( ! $autoinc && isset($options['primary']) && ! empty($options['primary'])) {
179             $keyColumns = array_values($options['primary']);
180             $keyColumns = array_map(array($this->conn, 'quoteIdentifier'), $keyColumns);
181             $queryFields.= ', PRIMARY KEY('.implode(', ', $keyColumns).')';
182         }
183
184         $name  = $this->conn->quoteIdentifier($name, true);
185         $sql   = 'CREATE TABLE ' . $name . ' (' . $queryFields;
186
187         if ($check = $this->getCheckDeclaration($fields)) {
188             $sql .= ', ' . $check;
189         }
190
191         if (isset($options['checks']) && $check = $this->getCheckDeclaration($options['checks'])) {
192             $sql .= ', ' . $check;
193         }
194
195         $sql .= ')';
196
197         $query[] = $sql;
198
199         if (isset($options['indexes']) && ! empty($options['indexes'])) {
200             foreach ($options['indexes'] as $index => $definition) {
201                 $query[] = $this->createIndexSql($name, $index, $definition);
202             }
203         }
204         return $query;
205         
206         
207         /**
208         try {
209
210             if ( ! empty($fk)) {
211                 $this->conn->beginTransaction();
212             }
213
214             $ret   = $this->conn->exec($query);
215
216             if ( ! empty($fk)) {
217                 foreach ($fk as $definition) {
218
219                     $query = 'CREATE TRIGGER doctrine_' . $name . '_cscd_delete '
220                            . 'AFTER DELETE ON ' . $name . ' FOR EACH ROW '
221                            . 'BEGIN '
222                            . 'DELETE FROM ' . $definition['foreignTable'] . ' WHERE ';
223
224                     $local = (array) $definition['local'];
225                     foreach((array) $definition['foreign'] as $k => $field) {
226                         $query .= $field . ' = old.' . $local[$k] . ';';
227                     }
228
229                     $query .= 'END;';
230
231                     $this->conn->exec($query);
232                 }
233
234                 $this->conn->commit();
235             }
236
237
238         } catch(Doctrine_Exception $e) {
239
240             $this->conn->rollback();
241
242             throw $e;
243         }
244         */
245     }
246     /**
247      * getAdvancedForeignKeyOptions
248      * Return the FOREIGN KEY query section dealing with non-standard options
249      * as MATCH, INITIALLY DEFERRED, ON UPDATE, ...
250      *
251      * @param array $definition         foreign key definition
252      * @return string
253      * @access protected
254      */
255     public function getAdvancedForeignKeyOptions(array $definition)
256     {
257         $query = '';
258         if (isset($definition['match'])) {
259             $query .= ' MATCH ' . $definition['match'];
260         }
261         if (isset($definition['onUpdate'])) {
262             $query .= ' ON UPDATE ' . $definition['onUpdate'];
263         }
264         if (isset($definition['onDelete'])) {
265             $query .= ' ON DELETE ' . $definition['onDelete'];
266         }
267         if (isset($definition['deferrable'])) {
268             $query .= ' DEFERRABLE';
269         } else {
270             $query .= ' NOT DEFERRABLE';
271         }
272         if (isset($definition['feferred'])) {
273             $query .= ' INITIALLY DEFERRED';
274         } else {
275             $query .= ' INITIALLY IMMEDIATE';
276         }
277         return $query;
278     }
279     /**
280      * create sequence
281      *
282      * @param string    $seqName        name of the sequence to be created
283      * @param string    $start          start value of the sequence; default is 1
284      * @param array     $options  An associative array of table options:
285      *                          array(
286      *                              'comment' => 'Foo',
287      *                              'charset' => 'utf8',
288      *                              'collate' => 'utf8_unicode_ci',
289      *                          );
290      * @return boolean
291      */
292     public function createSequence($seqName, $start = 1, array $options = array())
293     {
294         $sequenceName   = $this->conn->quoteIdentifier($this->conn->getSequenceName($seqName), true);
295         $seqcolName     = $this->conn->quoteIdentifier($this->conn->getAttribute(Doctrine::ATTR_SEQCOL_NAME), true);
296         $query          = 'CREATE TABLE ' . $sequenceName . ' (' . $seqcolName . ' INTEGER PRIMARY KEY DEFAULT 0 NOT NULL)';
297
298         $this->conn->exec($query);
299
300         if ($start == 1) {
301             return true;
302         }
303
304         try {
305             $this->conn->exec('INSERT INTO ' . $sequenceName . ' (' . $seqcolName . ') VALUES (' . ($start-1) . ')');
306             return true;
307         } catch(Doctrine_Connection_Exception $e) {
308             // Handle error    
309
310             try {
311                 $result = $db->exec('DROP TABLE ' . $sequenceName);
312             } catch(Doctrine_Connection_Exception $e) {
313                 throw new Doctrine_Export_Exception('could not drop inconsistent sequence table');
314             }
315         }
316         throw new Doctrine_Export_Exception('could not create sequence table');
317     }
318     /**
319      * drop existing sequence
320      *
321      * @param string $sequenceName      name of the sequence to be dropped
322      * @return string
323      */
324     public function dropSequenceSql($sequenceName)
325     {
326         $sequenceName = $this->conn->quoteIdentifier($this->conn->getSequenceName($sequenceName), true);
327
328         return 'DROP TABLE ' . $sequenceName;
329     }
330     
331     public function alterTableSql($name, array $changes, $check = false)
332     {
333         if ( ! $name) {
334             throw new Doctrine_Export_Exception('no valid table name specified');
335         }
336         foreach ($changes as $changeName => $change) {
337             switch ($changeName) {
338                 case 'add':
339                 case 'change':
340                 case 'rename':
341                 case 'name':
342                     break;
343                 default:
344                     throw new Doctrine_Export_Exception('change type "' . $changeName . '" not yet supported');
345             }
346         }
347
348         if ($check) {
349             return true;
350         }
351
352         $query = '';
353         if ( ! empty($changes['name'])) {
354             $change_name = $this->conn->quoteIdentifier($changes['name']);
355             $query .= 'RENAME TO ' . $change_name;
356         }
357
358         if ( ! empty($changes['add']) && is_array($changes['add'])) {
359             foreach ($changes['add'] as $fieldName => $field) {
360                 if ($query) {
361                     $query.= ', ';
362                 }
363                 $query.= 'ADD ' . $this->getDeclaration($field['type'], $fieldName, $field);
364             }
365         }
366
367         $rename = array();
368         if ( ! empty($changes['rename']) && is_array($changes['rename'])) {
369             foreach ($changes['rename'] as $fieldName => $field) {
370                 $rename[$field['name']] = $fieldName;
371             }
372         }
373
374         if ( ! empty($changes['change']) && is_array($changes['change'])) {
375             foreach ($changes['change'] as $fieldName => $field) {
376                 if ($query) {
377                     $query.= ', ';
378                 }
379                 if (isset($rename[$fieldName])) {
380                     $oldFieldName = $rename[$fieldName];
381                     unset($rename[$fieldName]);
382                 } else {
383                     $oldFieldName = $fieldName;
384                 }
385                 $oldFieldName = $this->conn->quoteIdentifier($oldFieldName, true);
386                 $query .= 'CHANGE ' . $oldFieldName . ' ' 
387                         . $this->getDeclaration($field['definition']['type'], $fieldName, $field['definition']);
388             }
389         }
390
391         if ( ! empty($rename) && is_array($rename)) {
392             foreach ($rename as $renameName => $renamedField) {
393                 if ($query) {
394                     $query.= ', ';
395                 }
396                 $field = $changes['rename'][$renamedField];
397                 $renamedField = $this->conn->quoteIdentifier($renamedField, true);
398                 $query .= 'CHANGE ' . $renamedField . ' '
399                         . $this->getDeclaration($field['definition']['type'], $field['name'], $field['definition']);
400             }
401         }
402
403         if ( ! $query) {
404             return false;
405         }
406
407         $name = $this->conn->quoteIdentifier($name, true);
408         
409         return 'ALTER TABLE ' . $name . ' ' . $query;
410     }
411 }