summaryrefslogtreecommitdiff
path: root/classes/Plugin_DataObject.php
blob: d5cecf0f7eb57a8a09774367d58bb0d442a1ab34 (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
<?php
/*
 * StatusNet - the distributed open-source microblogging tool
 * Copyright (C) 2008, 2009, StatusNet, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }

require_once INSTALLDIR.'/classes/Memcached_DataObject.php';

abstract class Plugin_DataObject extends Memcached_DataObject
{
    function table() {
        static $table = null;
        if($table == null) {
            $table = array();
            $DB = $this->getDatabaseConnection();
            $dbtype = $DB->phptype;
            $tableDef = $this->tableDef();
            foreach($tableDef->columns as $columnDef){
                switch(strtoupper($columnDef->type)) {
                    /*shamelessly copied from DB_DataObject_Generator*/
                    case 'INT':
                    case 'INT2':    // postgres
                    case 'INT4':    // postgres
                    case 'INT8':    // postgres
                    case 'SERIAL4': // postgres
                    case 'SERIAL8': // postgres
                    case 'INTEGER':
                    case 'TINYINT':
                    case 'SMALLINT':
                    case 'MEDIUMINT':
                    case 'BIGINT':
                        $type = DB_DATAOBJECT_INT;
                        if ($columnDef->size == 1) {
                            $type +=  DB_DATAOBJECT_BOOL;
                        }
                        break;
                   
                    case 'REAL':
                    case 'DOUBLE':
                    case 'DOUBLE PRECISION': // double precision (firebird)
                    case 'FLOAT':
                    case 'FLOAT4': // real (postgres)
                    case 'FLOAT8': // double precision (postgres)
                    case 'DECIMAL':
                    case 'MONEY':  // mssql and maybe others
                    case 'NUMERIC':
                    case 'NUMBER': // oci8 
                        $type = DB_DATAOBJECT_INT; // should really by FLOAT!!! / MONEY...
                        break;
                        
                    case 'YEAR':
                        $type = DB_DATAOBJECT_INT; 
                        break;
                        
                    case 'BIT':
                    case 'BOOL':   
                    case 'BOOLEAN':   
                    
                        $type = DB_DATAOBJECT_BOOL;
                        // postgres needs to quote '0'
                        if ($dbtype == 'pgsql') {
                            $type +=  DB_DATAOBJECT_STR;
                        }
                        break;
                        
                    case 'STRING':
                    case 'CHAR':
                    case 'VARCHAR':
                    case 'VARCHAR2':
                    case 'TINYTEXT':
                    
                    case 'ENUM':
                    case 'SET':         // not really but oh well
                    
                    case 'POINT':       // mysql geometry stuff - not really string - but will do..
                    
                    case 'TIMESTAMPTZ': // postgres
                    case 'BPCHAR':      // postgres
                    case 'INTERVAL':    // postgres (eg. '12 days')
                    
                    case 'CIDR':        // postgres IP net spec
                    case 'INET':        // postgres IP
                    case 'MACADDR':     // postgress network Mac address.
                    
                    case 'INTEGER[]':   // postgres type
                    case 'BOOLEAN[]':   // postgres type
                    
                        $type = DB_DATAOBJECT_STR;
                        break;
                    
                    case 'TEXT':
                    case 'MEDIUMTEXT':
                    case 'LONGTEXT':
                        
                        $type = DB_DATAOBJECT_STR + DB_DATAOBJECT_TXT;
                        break;
                    
                    
                    case 'DATE':    
                        $type = DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE;
                        break;
                        
                    case 'TIME':    
                        $type = DB_DATAOBJECT_STR + DB_DATAOBJECT_TIME;
                        break;    
                        
                    
                    case 'DATETIME': 
                         
                        $type = DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME;
                        break;    
                        
                    case 'TIMESTAMP': // do other databases use this???
                        
                        $type = ($dbtype == 'mysql') ?
                            DB_DATAOBJECT_MYSQLTIMESTAMP : 
                            DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME;
                        break;    
                        
                    
                    case 'BLOB':       /// these should really be ignored!!!???
                    case 'TINYBLOB':
                    case 'MEDIUMBLOB':
                    case 'LONGBLOB':
                    
                    case 'CLOB': // oracle character lob support
                    
                    case 'BYTEA':   // postgres blob support..
                        $type = DB_DATAOBJECT_STR + DB_DATAOBJECT_BLOB;
                        break;
                        
                    default:
                        throw new Exception("Cannot handle datatype: $columnDef->type");
                }
                if(! $columnDef->nullable) {
                    $type+=DB_DATAOBJECT_NOTNULL;
                }
                $table[$columnDef->name]=$type;
            }
        }
        return $table;
    }

    function keys() {
        static $keys = null;
        if($keys == null) {
            $keys = array();
            $tableDef = $this->tableDef();
            foreach($tableDef->columns as $columnDef){
                if($columnDef->key != null){
                    $keys[] = $columnDef->name;
                }
            }
        }
        return $keys;
    }

    function sequenceKey() {
        static $sequenceKey = null;
        if($sequenceKey == null) {
            $sequenceKey = array(false,false);
            $tableDef = $this->tableDef();
            foreach($tableDef->columns as $columnDef){
                if($columnDef->key == 'PRI' && $columnDef->auto_increment){
                    $sequenceKey=array($columnDef->name,true);
                }
            }
        }
        return $sequenceKey;
    }

    /**
    * Get the TableDef object that represents the table backing this class
    * Ideally, this function would a static function, but PHP doesn't allow
    * abstract static functions
    * @return TableDef TableDef instance
    */
    abstract function tableDef();
}