Sqlite.php 14.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php
/*
 *  $Id$
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information, see
 * <http://www.phpdoctrine.com>.
 */
21
Doctrine::autoload('Doctrine_DataDict');
22
/**
23 24 25
 * @package     Doctrine
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
26
 * @author      Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
27 28 29 30 31
 * @version     $Revision$
 * @category    Object Relational Mapping
 * @link        www.phpdoctrine.com
 * @since       1.0
 */
zYne's avatar
zYne committed
32
class Doctrine_DataDict_Sqlite extends Doctrine_DataDict {
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
    /**
     * Obtain DBMS specific SQL code portion needed to declare an text type
     * field to be used in statements like CREATE TABLE.
     *
     * @param array $field  associative array with the name of the properties
     *      of the field being declared as array indexes. Currently, the types
     *      of supported field properties are as follows:
     *
     *      length
     *          Integer value that determines the maximum length of the text
     *          field. If this argument is missing the field should be
     *          declared to have the longest length allowed by the DBMS.
     *
     *      default
     *          Text value to be used as default for this field.
     *
     *      notnull
     *          Boolean flag that indicates whether this field is constrained
     *          to not be set to null.
zYne's avatar
zYne committed
52
     * @author Lukas Smith (PEAR MDB2 library)
53 54 55
     * @return string  DBMS specific SQL code portion that should be used to
     *      declare the specified field.
     */
56
    public function getNativeDeclaration(array $field) {
57 58
        switch ($field['type']) {
            case 'text':
zYne's avatar
zYne committed
59 60 61 62
            case 'object':
            case 'array':
            case 'string':
            case 'char':
63
            case 'gzip':
zYne's avatar
zYne committed
64 65 66 67 68 69
            case 'varchar':
                $length = (isset($field['length']) && $field['length']) ? $field['length'] : null;

                $fixed  = ((isset($field['fixed']) && $field['fixed']) || $field['type'] == 'char') ? true : false;

                return $fixed ? ($length ? 'CHAR('.$length.')' : 'CHAR('.$this->conn->getAttribute(Doctrine::ATTR_DEFAULT_TEXTFLD_LENGTH).')')
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
                    : ($length ? 'VARCHAR('.$length.')' : 'TEXT');
            case 'clob':
                if (!empty($field['length'])) {
                    $length = $field['length'];
                    if ($length <= 255) {
                        return 'TINYTEXT';
                    } elseif ($length <= 65535) {
                        return 'TEXT';
                    } elseif ($length <= 16777215) {
                        return 'MEDIUMTEXT';
                    }
                }
                return 'LONGTEXT';
            case 'blob':
                if (!empty($field['length'])) {
                    $length = $field['length'];
                    if ($length <= 255) {
                        return 'TINYBLOB';
                    } elseif ($length <= 65535) {
                        return 'BLOB';
                    } elseif ($length <= 16777215) {
                        return 'MEDIUMBLOB';
                    }
                }
                return 'LONGBLOB';
zYne's avatar
zYne committed
95
            case 'enum':
96 97
            case 'integer':
            case 'boolean':
98
                return 'INTEGER';
99 100 101 102 103 104 105
            case 'date':
                return 'DATE';
            case 'time':
                return 'TIME';
            case 'timestamp':
                return 'DATETIME';
            case 'float':
zYne's avatar
zYne committed
106 107 108
            case 'double':
                return 'DOUBLE';//($db->options['fixed_float'] ? '('.
                    //($db->options['fixed_float']+2).','.$db->options['fixed_float'].')' : '');
109 110 111 112
            case 'decimal':
                $length = !empty($field['length']) ? $field['length'] : 18;
                return 'DECIMAL('.$length.','.$db->options['decimal_places'].')';
        }
113
        throw new Doctrine_DataDict_Sqlite_Exception('Unknown datatype ' . $field['type']);
114 115
    }
    /**
116
     * Maps a native array description of a field to Doctrine datatype and length
117 118 119 120
     *
     * @param array  $field native field description
     * @return array containing the various possible types, length, sign, fixed
     */
zYne's avatar
zYne committed
121 122 123 124
    public function getPortableDeclaration(array $field) {
        $dbType = strtolower($field['type']);
        $length = ( ! empty($field['length'])) ? $field['length'] : null;
        $unsigned = ( ! empty($field['unsigned'])) ? $field['unsigned'] : null;
125 126
        $fixed = null;
        $type = array();
zYne's avatar
zYne committed
127
        switch ($dbType) {
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
            case 'boolean':
                $type[] = 'boolean';
                break;
            case 'tinyint':
                $type[] = 'integer';
                $type[] = 'boolean';
                if (preg_match('/^(is|has)/', $field['name'])) {
                    $type = array_reverse($type);
                }
                $unsigned = preg_match('/ unsigned/i', $field['type']);
                $length = 1;
                break;
            case 'smallint':
                $type[] = 'integer';
                $unsigned = preg_match('/ unsigned/i', $field['type']);
                $length = 2;
                break;
            case 'mediumint':
                $type[] = 'integer';
                $unsigned = preg_match('/ unsigned/i', $field['type']);
                $length = 3;
                break;
            case 'int':
            case 'integer':
            case 'serial':
                $type[] = 'integer';
                $unsigned = preg_match('/ unsigned/i', $field['type']);
                $length = 4;
                break;
            case 'bigint':
            case 'bigserial':
                $type[] = 'integer';
                $unsigned = preg_match('/ unsigned/i', $field['type']);
                $length = 8;
                break;
            case 'clob':
            case 'tinytext':
            case 'mediumtext':
            case 'longtext':
            case 'text':
            case 'varchar':
            case 'varchar2':
                $fixed = false;
            case 'char':
                $type[] = 'text';
                if ($length == '1') {
                    $type[] = 'boolean';
                    if (preg_match('/^(is|has)/', $field['name'])) {
                        $type = array_reverse($type);
                    }
zYne's avatar
zYne committed
178
                } elseif (strstr($dbType, 'text')) {
179 180 181 182 183
                    $type[] = 'clob';
                }
                if ($fixed !== false) {
                    $fixed = true;
                }
zYne's avatar
zYne committed
184
            break;
185 186 187
            case 'date':
                $type[] = 'date';
                $length = null;
zYne's avatar
zYne committed
188
            break;
189 190 191 192
            case 'datetime':
            case 'timestamp':
                $type[] = 'timestamp';
                $length = null;
zYne's avatar
zYne committed
193
            break;
194 195 196
            case 'time':
                $type[] = 'time';
                $length = null;
zYne's avatar
zYne committed
197
            break;
198 199 200 201
            case 'float':
            case 'double':
            case 'real':
                $type[] = 'float';
zYne's avatar
zYne committed
202 203
                $length = null;
            break;
204 205 206
            case 'decimal':
            case 'numeric':
                $type[] = 'decimal';
zYne's avatar
zYne committed
207 208
                $length = null;
            break;
209 210 211 212 213 214
            case 'tinyblob':
            case 'mediumblob':
            case 'longblob':
            case 'blob':
                $type[] = 'blob';
                $length = null;
zYne's avatar
zYne committed
215
            break;
216 217 218 219 220 221
            case 'year':
                $type[] = 'integer';
                $type[] = 'date';
                $length = null;
                break;
            default:
zYne's avatar
zYne committed
222
                throw new Doctrine_DataDict_Sqlite_Exception('unknown database attribute type: '.$dbType);
223 224 225 226
        }

        return array($type, $length, $unsigned, $fixed);
    }
zYne's avatar
zYne committed
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
    /**
     * Obtain DBMS specific SQL code portion needed to declare an integer type
     * field to be used in statements like CREATE TABLE.
     *
     * @param string  $name   name the field to be declared.
     * @param array  $field   associative array with the name of the properties
     *                        of the field being declared as array indexes.
     *                        Currently, the types of supported field
     *                        properties are as follows:
     *
     *                       unsigned
     *                        Boolean flag that indicates whether the field
     *                        should be declared as unsigned integer if
     *                        possible.
     *
     *                       default
     *                        Integer value to be used as default for this
     *                        field.
     *
     *                       notnull
     *                        Boolean flag that indicates whether this field is
     *                        constrained to not be set to null.
     * @return string  DBMS specific SQL code portion that should be used to
     *                 declare the specified field.
     * @access protected
     */
    public function getIntegerDeclaration($name, array $field) {
        $default = $autoinc = '';
255 256
        $type    = $this->getNativeDeclaration($field);

zYne's avatar
zYne committed
257 258
        if(isset($field['autoincrement']) && $field['autoincrement']) {
            $autoinc = ' PRIMARY KEY AUTOINCREMENT';
259 260
            $type    = 'INTEGER';
        } elseif(array_key_exists('default', $field)) {
zYne's avatar
zYne committed
261 262 263
            if ($field['default'] === '') {
                $field['default'] = empty($field['notnull']) ? null : 0;
            }
264
            $default = ' DEFAULT ' . $this->conn->quote($field['default'], $field['type']);
zYne's avatar
zYne committed
265 266 267 268 269 270 271 272 273 274
        }/**
        elseif (empty($field['notnull'])) {
            $default = ' DEFAULT NULL';
        }
        */

        $notnull  = (isset($field['notnull']) && $field['notnull']) ? ' NOT NULL' : '';
        $unsigned = (isset($field['unsigned']) && $field['unsigned']) ? ' UNSIGNED' : '';

        $name = $this->conn->quoteIdentifier($name, true);
275
        return $name . ' ' . $type . $unsigned . $default . $notnull . $autoinc;
zYne's avatar
zYne committed
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
    /**
     * lists all databases
     *
     * @return array
     */
    public function listDatabases() {

    }
    /**
     * lists all availible database functions
     *
     * @return array
     */
    public function listFunctions() {
    
    }
    /**
     * lists all database triggers
     *
     * @param string|null $database
     * @return array
     */
    public function listTriggers($database = null) {

    }
    /**
     * lists all database sequences
     *
     * @param string|null $database
     * @return array
     */
    public function listSequences($database = null) { 
    
    }
    /**
     * lists table constraints
     *
     * @param string $table     database table name
     * @return array
     */
    public function listTableConstraints($table) {
    
    }
    /**
     * lists table constraints
     *
     * @param string $table     database table name
     * @return array
     */
326
    public function listTableColumns($table) {
zYne's avatar
zYne committed
327

328
        $sql    = 'PRAGMA table_info(' . $table . ')';
zYne's avatar
zYne committed
329 330 331 332
        $result = $this->dbh->query($sql)->fetchAll(PDO::FETCH_ASSOC);

        $description = array();
        $columns     = array();
333
        foreach($result as $key => $val) {
zYne's avatar
zYne committed
334 335 336 337 338 339 340 341 342 343
            $description = array(
                    'name'    => $val['name'],
                    'type'    => $val['type'],
                    'notnull' => (bool) $val['notnull'],
                    'default' => $val['dflt_value'],
                    'primary' => (bool) $val['pk'],
                    );
            $columns[$val['name']] = new Doctrine_Schema_Column($description);
        }
        return $columns;
344 345 346 347 348 349 350 351
    }
    /**
     * lists table constraints
     *
     * @param string $table     database table name
     * @return array
     */
    public function listTableIndexes($table) {
352 353 354 355 356 357 358
        $sql     =  'PRAGMA index_list(' . $table . ')';
        $result  = $this->dbh->query($sql)->fetchAll(PDO::FETCH_ASSOC);

        $indexes = array();
        foreach($result as $key => $val) {

        }
359 360
    }
    /**
zYne's avatar
zYne committed
361
     * lists tables
362 363 364 365 366
     *
     * @param string|null $database
     * @return array
     */
    public function listTables($database = null) {
367 368 369
        $sql = "SELECT name FROM sqlite_master WHERE type = 'table' "
             . "UNION ALL SELECT name FROM sqlite_temp_master "
             . "WHERE type = 'table' ORDER BY name";
zYne's avatar
zYne committed
370 371 372

        $tables = array();
        $stmt   = $this->dbh->query($sql);
zYne's avatar
zYne committed
373
        
zYne's avatar
zYne committed
374 375 376 377 378 379
        $data   = $stmt->fetchAll(PDO::FETCH_COLUMN);

        foreach($data as $table) {
            $tables[] = new Doctrine_Schema_Table(array('name' => $table));
        }
        return $tables;
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
    }
    /**
     * lists table triggers
     *
     * @param string $table     database table name
     * @return array
     */
    public function listTableTriggers($table) { 
    
    }
    /**
     * lists table views
     *
     * @param string $table     database table name
     * @return array
     */
    public function listTableViews($table) { 
    
    }
    /**
     * lists database users
     *
     * @return array
     */
    public function listUsers() { 
    
    }
    /**
     * lists database views
     *
     * @param string|null $database
     * @return array
     */
    public function listViews($database = null) { 
    
    }
}
417