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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 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 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 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 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
<?php
class SpotStruct_pgsql extends SpotStruct_abs {
/*
* Optimize / analyze (database specific) a number of hightraffic
* tables.
* This function does not modify any schema or data
*/
function analyze() {
$this->_dbcon->rawExec("VACUUM ANALYZE spots");
$this->_dbcon->rawExec("VACUUM ANALYZE spotsfull");
$this->_dbcon->rawExec("VACUUM ANALYZE commentsxover");
$this->_dbcon->rawExec("VACUUM ANALYZE commentsfull");
$this->_dbcon->rawExec("VACUUM ANALYZE sessions");
$this->_dbcon->rawExec("VACUUM ANALYZE filters");
$this->_dbcon->rawExec("VACUUM ANALYZE spotteridblacklist");
$this->_dbcon->rawExec("VACUUM ANALYZE filtercounts");
$this->_dbcon->rawExec("VACUUM ANALYZE spotstatelist");
$this->_dbcon->rawExec("VACUUM ANALYZE users");
$this->_dbcon->rawExec("VACUUM ANALYZE cache");
} # analyze
/*
* Converts a 'spotweb' internal datatype to a
* database specific datatype
*/
function swDtToNative($colType) {
switch(strtoupper($colType)) {
case 'INTEGER' : $colType = 'integer'; break;
case 'UNSIGNED INTEGER' : $colType = 'bigint'; break;
case 'BIGINTEGER' : $colType = 'bigint'; break;
case 'UNSIGNED BIGINTEGER' : $colType = 'bigint'; break;
case 'BOOLEAN' : $colType = 'boolean'; break;
case 'MEDIUMBLOB' : $colType = 'bytea'; break;
} # switch
return $colType;
} # swDtToNative
/*
* Converts a database native datatype to a spotweb native
* datatype
*/
function nativeDtToSw($colInfo) {
switch(strtolower($colInfo)) {
case 'integer' : $colInfo = 'INTEGER'; break;
case 'bigint' : $colInfo = 'BIGINTEGER'; break;
case 'boolean' : $colInfo = 'BOOLEAN'; break;
case 'bytea' : $colInfo = 'MEDIUMBLOB'; break;
} # switch
return $colInfo;
} # nativeDtToSw
/* checks if an index exists */
function indexExists($idxname, $tablename) {
$q = $this->_dbcon->arrayQuery("SELECT indexname FROM pg_indexes WHERE schemaname = CURRENT_SCHEMA() AND tablename = '%s' AND indexname = '%s'",
Array($tablename, $idxname));
return !empty($q);
} # indexExists
/* checks if a column exists */
function columnExists($tablename, $colname) {
$q = $this->_dbcon->arrayQuery("SELECT column_name FROM information_schema.columns
WHERE table_schema = CURRENT_SCHEMA() AND table_name = '%s' AND column_name = '%s'",
Array($tablename, $colname));
return !empty($q);
} # columnExists
/* checks if a fts text index exists */
function ftsExists($ftsname, $tablename, $colList) {
foreach($colList as $num => $col) {
$indexInfo = $this->getIndexInfo($ftsname . '_' . $num, $tablename);
if ((empty($indexInfo)) || (strtolower($indexInfo[0]['column_name']) != strtolower($col))) {
return false;
} # if
} # foreach
return true;
} # ftsExists
/* creates a full text index */
function createFts($ftsname, $tablename, $colList) {
foreach($colList as $num => $col) {
$indexInfo = $this->getIndexInfo($ftsname . '_' . $num, $tablename);
if ((empty($indexInfo)) || (strtolower($indexInfo[0]['column_name']) != strtolower($col))) {
$this->dropIndex($ftsname . '_' . $num, $tablename);
$this->addIndex($ftsname . '_' . $num, 'FULLTEXT', $tablename, array($col));
} # if
} # foreach
} # createFts
/* drops a fulltext index */
function dropFts($ftsname, $tablename, $colList) {
foreach($colList as $num => $col) {
$this->dropIndex($ftsname . '_' . $num, $tablename);
} # foreach
} # dropFts
/* returns FTS info */
function getFtsInfo($ftsname, $tablename, $colList) {
$ftsList = array();
foreach($colList as $num => $col) {
$tmpIndex = $this->getIndexInfo($ftsname . '_' . $num, $tablename);
if (!empty($tmpIndex)) {
$ftsList[] = $tmpIndex[0];
} # if
} # foreach
return $ftsList;
} # getFtsInfo
/*
* Adds an index, but first checks if the index doesn't
* exist already.
*
* $idxType can be either 'UNIQUE', '' or 'FULLTEXT'
*/
function addIndex($idxname, $idxType, $tablename, $colList) {
if (!$this->indexExists($idxname, $tablename)) {
switch($idxType) {
case 'UNIQUE': {
$this->_dbcon->rawExec("CREATE UNIQUE INDEX " . $idxname . " ON " . $tablename . "(" . implode(",", $colList) . ")");
break;
} # case
case 'FULLTEXT' : {
$this->_dbcon->rawExec("CREATE INDEX " . $idxname . " ON " . $tablename . " USING gin(to_tsvector('dutch', " . implode(",", $colList) . "))");
break;
} # case
default : {
$this->_dbcon->rawExec("CREATE INDEX " . $idxname . " ON " . $tablename . "(" . implode(",", $colList) . ")");
} # default
} # switch
} # if
} # addIndex
/* drops an index if it exists */
function dropIndex($idxname, $tablename) {
/*
* Make sure the table exists, else this will return an error
* and return a fatal
*/
if (!$this->tableExists($tablename)) {
return ;
} # if
if ($this->indexExists($idxname, $tablename)) {
$this->_dbcon->rawExec("DROP INDEX " . $idxname);
} # if
} # dropIndex
/* adds a column if the column doesn't exist yet */
function addColumn($colName, $tablename, $colType, $colDefault, $notNull, $collation) {
if (!$this->columnExists($tablename, $colName)) {
# set the DEFAULT value
if (strlen($colDefault) != 0) {
$colDefault = 'DEFAULT ' . $colDefault;
} # if
# Convert the column type to a type we use in PostgreSQL
$colType = $this->swDtToNative($colType);
/*
* Only pgsql 9.1 (only just released) supports per-column collation, so for now
* we ignore this
*/
switch(strtolower($collation)) {
case 'utf8' :
case 'ascii' :
case 'ascii_bin' :
case '' : $colSetting = ''; break;
default : throw new Exception("Invalid collation setting");
} # switch
# and define the 'NOT NULL' part
switch($notNull) {
case true : $nullStr = 'NOT NULL'; break;
default : $nullStr = '';
} # switch
$this->_dbcon->rawExec("ALTER TABLE " . $tablename .
" ADD COLUMN " . $colName . " " . $colType . " " . $colSetting . " " . $colDefault . " " . $nullStr);
} # if
} # addColumn
/* alters a column - does not check if the column doesn't adhere to the given definition */
function modifyColumn($colName, $tablename, $colType, $colDefault, $notNull, $collation, $what) {
# set the DEFAULT value
if (strlen($colDefault) != 0) {
$colDefault = 'DEFAULT ' . $colDefault;
} # if
# Convert the column type to a type we use in PostgreSQL
$colType = $this->swDtToNative($colType);
/*
* Only pgsql 9.1 (only just released) supports per-column collation, so for now
* we ignore this
*/
switch(strtolower($collation)) {
case 'utf8' :
case 'ascii' :
case 'ascii_bin' :
case '' : $colSetting = ''; break;
default : throw new Exception("Invalid collation setting");
} # switch
# and define the 'NOT NULL' part
switch($notNull) {
case true : $nullStr = 'NOT NULL'; break;
default : $nullStr = '';
} # switch
# Alter the column type
$this->_dbcon->rawExec("ALTER TABLE " . $tablename . " ALTER COLUMN " . $colName . " TYPE " . $colType);
# Change the default value (if one set, else drop it)
if (strlen($colDefault) > 0) {
$this->_dbcon->rawExec("ALTER TABLE " . $tablename . " ALTER COLUMN " . $colName . " SET " . $colDefault);
} else {
$this->_dbcon->rawExec("ALTER TABLE " . $tablename . " ALTER COLUMN " . $colName . " DROP DEFAULT");
} # if
# and changes the null/not-null constraint
if (strlen($notNull) > 0) {
$this->_dbcon->rawExec("ALTER TABLE " . $tablename . " ALTER COLUMN " . $colName . " SET NOT NULL");
} else {
$this->_dbcon->rawExec("ALTER TABLE " . $tablename . " ALTER COLUMN " . $colName . " DROP NOT NULL");
} # if
} # modifyColumn
/* drops a column */
function dropColumn($colName, $tablename) {
if ($this->columnExists($tablename, $colName)) {
$this->_dbcon->rawExec("ALTER TABLE " . $tablename . " DROP COLUMN " . $colName);
} # if
} # dropColumn
/* checks if a table exists */
function tableExists($tablename) {
$q = $this->_dbcon->arrayQuery("SELECT tablename FROM pg_tables WHERE schemaname = CURRENT_SCHEMA() AND (tablename = '%s')", array($tablename));
return !empty($q);
} # tableExists
/* creates an empty table with only an ID field. Collation should be either UTF8 or ASCII */
function createTable($tablename, $collation) {
if (!$this->tableExists($tablename)) {
/*
* Only pgsql 9.1 (only just released) supports per-column collation, so for now
* we ignore this
*/
switch(strtolower($collation)) {
case 'utf8' :
case 'ascii' :
case '' : $colSetting = ''; break;
default : throw new Exception("Invalid collation setting");
} # switch
$this->_dbcon->rawExec("CREATE TABLE " . $tablename . " (id SERIAL PRIMARY KEY) " . $colSetting);
} # if
} # createTable
/* drop a table */
function dropTable($tablename) {
if ($this->tableExists($tablename)) {
$this->_dbcon->rawExec("DROP TABLE " . $tablename);
} # if
} # dropTable
/* dummy - postgresql doesn't know storage engines of course */
function alterStorageEngine($tablename, $engine) {
return false;
} # alterStorageEngine
/* rename a table */
function renameTable($tablename, $newTableName) {
$this->_dbcon->rawExec("ALTER TABLE " . $tablename . " RENAME TO " . $newTableName);
} # renameTable
/* drop a foreign key constraint */
function dropForeignKey($tablename, $colname, $reftable, $refcolumn, $action) {
/* SQL from http://stackoverflow.com/questions/1152260/postgres-sql-to-list-table-foreign-keys */
$q = $this->_dbcon->arrayQuery("SELECT
tc.constraint_name AS CONSTRAINT_NAME,
tc.table_name AS TABLE_NAME,
tc.constraint_schema AS TABLE_SCHEMA,
kcu.column_name AS COLUMN_NAME,
ccu.table_name AS REFERENCED_TABLE_NAME,
ccu.column_name AS REFERENCED_COLUMN_NAME
FROM
information_schema.table_constraints AS tc
JOIN information_schema.key_column_usage AS kcu ON tc.constraint_name = kcu.constraint_name
JOIN information_schema.constraint_column_usage AS ccu ON ccu.constraint_name = tc.constraint_name
WHERE constraint_type = 'FOREIGN KEY'
AND tc.TABLE_SCHEMA = CURRENT_SCHEMA()
AND tc.TABLE_NAME = '%s'
AND kcu.COLUMN_NAME = '%s'
AND ccu.table_name = '%s'
AND ccu.column_name = '%s'",
Array($tablename, $colname, $reftable, $refcolumn));
if (!empty($q)) {
foreach($q as $res) {
$this->_dbcon->rawExec("ALTER TABLE " . $tablename . " DROP CONSTRAINT " . $res['constraint_name']);
} # foreach
} # if
} # dropForeignKey
/* create a foreign key constraint */
function addForeignKey($tablename, $colname, $reftable, $refcolumn, $action) {
/* SQL from http://stackoverflow.com/questions/1152260/postgres-sql-to-list-table-foreign-keys */
$q = $this->_dbcon->arrayQuery("SELECT
tc.constraint_name AS CONSTRAINT_NAME,
tc.table_name AS TABLE_NAME,
tc.constraint_schema AS TABLE_SCHEMA,
kcu.column_name AS COLUMN_NAME,
ccu.table_name AS REFERENCED_TABLE_NAME,
ccu.column_name AS REFERENCED_COLUMN_NAME
FROM
information_schema.table_constraints AS tc
JOIN information_schema.key_column_usage AS kcu ON tc.constraint_name = kcu.constraint_name
JOIN information_schema.constraint_column_usage AS ccu ON ccu.constraint_name = tc.constraint_name
WHERE constraint_type = 'FOREIGN KEY'
AND tc.TABLE_SCHEMA = CURRENT_SCHEMA()
AND tc.TABLE_NAME = '%s'
AND kcu.COLUMN_NAME = '%s'
AND ccu.table_name = '%s'
AND ccu.column_name = '%s'",
Array($tablename, $colname, $reftable, $refcolumn));
if (empty($q)) {
$this->_dbcon->rawExec("ALTER TABLE " . $tablename . " ADD FOREIGN KEY (" . $colname . ")
REFERENCES " . $reftable . " (" . $refcolumn . ") " . $action);
} # if
} # addForeignKey
/* Returns in a fixed format, column information */
function getColumnInfo($tablename, $colname) {
$q = $this->_dbcon->arrayQuery("SELECT column_name AS \"COLUMN_NAME\",
column_default AS \"COLUMN_DEFAULT\",
is_nullable AS \"IS_NULLABLE\",
data_type AS \"DATA_TYPE\",
numeric_precision AS \"NUMERIC_PRECISION\",
CASE
WHEN (data_type = 'character varying') THEN 'varchar(' || character_maximum_length || ')'
WHEN (data_type = 'integer') THEN 'integer'
WHEN (data_type = 'bigint') THEN 'bigint'
WHEN (data_type = 'boolean') THEN 'boolean'
WHEN (data_type = 'text') THEN 'text'
WHEN (data_type = 'bytea') THEN 'bytea'
END as \"COLUMN_TYPE\",
character_set_name AS \"CHARACTER_SET_NAME\",
collation_name AS \"COLLATION_NAME\"
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA = CURRENT_SCHEMA()
AND TABLE_NAME = '%s'
AND COLUMN_NAME = '%s'",
Array($tablename, $colname));
if (!empty($q)) {
$q = $q[0];
$q['NOTNULL'] = ($q['IS_NULLABLE'] != 'YES');
# a default value has to given, so make it compareable to what we define
if ((strlen($q['COLUMN_DEFAULT']) == 0) && (is_string($q['COLUMN_DEFAULT']))) {
$q['COLUMN_DEFAULT'] = "''";
} # if
/*
* PostgreSQL per default explicitly typecasts the value, but
* we cannot do this, so we strip the default value of its typecast
*/
if (strpos($q['COLUMN_DEFAULT'], ':') !== false) {
$elems = explode(':', $q['COLUMN_DEFAULT']);
$q['COLUMN_DEFAULT'] = $elems[0];
} # if
} # if
return $q;
} # getColumnInfo
/* Returns in a fixed format, index information */
function getIndexInfo($idxname, $tablename) {
$q = $this->_dbcon->arrayQuery("SELECT *
FROM pg_indexes
WHERE schemaname = CURRENT_SCHEMA()
AND tablename = '%s'
AND indexname = '%s'", Array($tablename, $idxname));
if (empty($q)) {
return array();
} # if
# a index name has to be unique
$q = $q[0];
# is the index marked as unique
$tmpAr = explode(" ", $q['indexdef']);
$isNotUnique = (strtolower($tmpAr[1]) != 'unique');
# retrieve the column list and seperate the column definition per comma
preg_match_all("/\((.*)\)/", $q['indexdef'], $tmpAr);
$colList = explode(",", $tmpAr[1][0]);
$colList = array_map('trim', $colList);
# gin indexes (fulltext search) only have 1 column, so we excempt them
$idxInfo = array();
if (stripos($tmpAr[1][0], 'to_tsvector') === false) {
for($i = 0; $i < count($colList); $i++) {
$idxInfo[] = array('column_name' => $colList[$i],
'non_unique' => (int) $isNotUnique,
'index_type' => 'BTREE'
);
} # foreach
} else {
# extract the column name
preg_match_all("/\((.*)\)/U", $colList[1], $tmpAr);
# and create the index info
$idxInfo[] = array('column_name' => $tmpAr[1][0],
'non_unique' => (int) $isNotUnique,
'index_type' => 'FULLTEXT');
} # else
return $idxInfo;
} # getIndexInfo
} # class
|