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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
|
<?php defined('SYSPATH') or die('No direct script access.');
/**
* PostgreSQL 8.1+ Database Driver
*
* $Id$
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
*/
class Database_Pgsql_Driver extends Database_Driver {
// Database connection link
protected $link;
protected $db_config;
/**
* Sets the config for the class.
*
* @param array database configuration
*/
public function __construct($config)
{
$this->db_config = $config;
Kohana::log('debug', 'PgSQL Database Driver Initialized');
}
public function connect()
{
// Check if link already exists
if (is_resource($this->link))
return $this->link;
// Import the connect variables
extract($this->db_config['connection']);
// Persistent connections enabled?
$connect = ($this->db_config['persistent'] == TRUE) ? 'pg_pconnect' : 'pg_connect';
// Build the connection info
$port = isset($port) ? 'port=\''.$port.'\'' : '';
$host = isset($host) ? 'host=\''.$host.'\' '.$port : ''; // if no host, connect with the socket
$connection_string = $host.' dbname=\''.$database.'\' user=\''.$user.'\' password=\''.$pass.'\'';
// Make the connection and select the database
if ($this->link = $connect($connection_string))
{
if ($charset = $this->db_config['character_set'])
{
echo $this->set_charset($charset);
}
// Clear password after successful connect
$this->config['connection']['pass'] = NULL;
return $this->link;
}
return FALSE;
}
public function query($sql)
{
// Only cache if it's turned on, and only cache if it's not a write statement
if ($this->db_config['cache'] AND ! preg_match('#\b(?:INSERT|UPDATE|SET)\b#i', $sql))
{
$hash = $this->query_hash($sql);
if ( ! isset(self::$query_cache[$hash]))
{
// Set the cached object
self::$query_cache[$hash] = new Pgsql_Result(pg_query($this->link, $sql), $this->link, $this->db_config['object'], $sql);
}
return self::$query_cache[$hash];
}
return new Pgsql_Result(pg_query($this->link, $sql), $this->link, $this->db_config['object'], $sql);
}
public function set_charset($charset)
{
$this->query('SET client_encoding TO '.pg_escape_string($this->link, $charset));
}
public function escape_table($table)
{
if (!$this->db_config['escape'])
return $table;
return '"'.str_replace('.', '"."', $table).'"';
}
public function escape_column($column)
{
if (!$this->db_config['escape'])
return $column;
if (strtolower($column) == 'count(*)' OR $column == '*')
return $column;
// This matches any modifiers we support to SELECT.
if ( ! preg_match('/\b(?:all|distinct)\s/i', $column))
{
if (stripos($column, ' AS ') !== FALSE)
{
// Force 'AS' to uppercase
$column = str_ireplace(' AS ', ' AS ', $column);
// Runs escape_column on both sides of an AS statement
$column = array_map(array($this, __FUNCTION__), explode(' AS ', $column));
// Re-create the AS statement
return implode(' AS ', $column);
}
return preg_replace('/[^.*]+/', '"$0"', $column);
}
$parts = explode(' ', $column);
$column = '';
for ($i = 0, $c = count($parts); $i < $c; $i++)
{
// The column is always last
if ($i == ($c - 1))
{
$column .= preg_replace('/[^.*]+/', '"$0"', $parts[$i]);
}
else // otherwise, it's a modifier
{
$column .= $parts[$i].' ';
}
}
return $column;
}
public function regex($field, $match = '', $type = 'AND ', $num_regexs)
{
$prefix = ($num_regexs == 0) ? '' : $type;
return $prefix.' '.$this->escape_column($field).' REGEXP \''.$this->escape_str($match).'\'';
}
public function notregex($field, $match = '', $type = 'AND ', $num_regexs)
{
$prefix = $num_regexs == 0 ? '' : $type;
return $prefix.' '.$this->escape_column($field).' NOT REGEXP \''.$this->escape_str($match) . '\'';
}
public function limit($limit, $offset = 0)
{
return 'LIMIT '.$limit.' OFFSET '.$offset;
}
public function stmt_prepare($sql = '')
{
is_object($this->link) or $this->connect();
return new Kohana_Mysqli_Statement($sql, $this->link);
}
public function compile_select($database)
{
$sql = ($database['distinct'] == TRUE) ? 'SELECT DISTINCT ' : 'SELECT ';
$sql .= (count($database['select']) > 0) ? implode(', ', $database['select']) : '*';
if (count($database['from']) > 0)
{
$sql .= "\nFROM ";
$sql .= implode(', ', $database['from']);
}
if (count($database['join']) > 0)
{
$sql .= ' '.$database['join']['type'].'JOIN ('.implode(', ', $database['join']['tables']).') ON '.implode(' AND ', $database['join']['conditions']);
}
if (count($database['where']) > 0)
{
$sql .= "\nWHERE ";
}
$sql .= implode("\n", $database['where']);
if (count($database['groupby']) > 0)
{
$sql .= "\nGROUP BY ";
$sql .= implode(', ', $database['groupby']);
}
if (count($database['having']) > 0)
{
$sql .= "\nHAVING ";
$sql .= implode("\n", $database['having']);
}
if (count($database['orderby']) > 0)
{
$sql .= "\nORDER BY ";
$sql .= implode(', ', $database['orderby']);
}
if (is_numeric($database['limit']))
{
$sql .= "\n";
$sql .= $this->limit($database['limit'], $database['offset']);
}
return $sql;
}
public function escape_str($str)
{
if (!$this->db_config['escape'])
return $str;
is_resource($this->link) or $this->connect();
return pg_escape_string($this->link, $str);
}
public function list_tables()
{
$sql = 'SELECT table_schema || \'.\' || table_name FROM information_schema.tables WHERE table_schema NOT IN (\'pg_catalog\', \'information_schema\')';
$result = $this->query($sql)->result(FALSE, PGSQL_ASSOC);
$retval = array();
foreach ($result as $row)
{
$retval[] = current($row);
}
return $retval;
}
public function show_error()
{
return pg_last_error($this->link);
}
public function list_fields($table, $query = FALSE)
{
static $tables;
if (is_object($query))
{
if (empty($tables[$table]))
{
$tables[$table] = array();
foreach ($query as $row)
{
$tables[$table][] = $row->Field;
}
}
return $tables[$table];
}
// WOW...REALLY?!?
// Taken from http://www.postgresql.org/docs/7.4/interactive/catalogs.html
$query = $this->query('SELECT
-- Field
pg_attribute.attname AS "Field",
-- Type
CASE pg_type.typname
WHEN \'int2\' THEN \'smallint\'
WHEN \'int4\' THEN \'int\'
WHEN \'int8\' THEN \'bigint\'
WHEN \'varchar\' THEN \'varchar(\' || pg_attribute.atttypmod-4 || \')\'
ELSE pg_type.typname
END AS "Type",
-- Null
CASE WHEN pg_attribute.attnotnull THEN \'NO\'
ELSE \'YES\'
END AS "Null",
-- Default
CASE pg_type.typname
WHEN \'varchar\' THEN substring(pg_attrdef.adsrc from \'^(.*).*$\')
ELSE pg_attrdef.adsrc
END AS "Default"
FROM pg_class
INNER JOIN pg_attribute
ON (pg_class.oid=pg_attribute.attrelid)
INNER JOIN pg_type
ON (pg_attribute.atttypid=pg_type.oid)
LEFT JOIN pg_attrdef
ON (pg_class.oid=pg_attrdef.adrelid AND pg_attribute.attnum=pg_attrdef.adnum)
WHERE pg_class.relname=\''.$this->escape_str($table).'\' AND pg_attribute.attnum>=1 AND NOT pg_attribute.attisdropped
ORDER BY pg_attribute.attnum');
$fields = array();
foreach ($query as $row)
{
$fields[$row->Field]=$row->Type;
}
return $fields;
}
public function field_data($table)
{
// TODO: This whole function needs to be debugged.
$query = pg_query('SELECT * FROM '.$this->escape_table($table).' LIMIT 1', $this->link);
$fields = pg_num_fields($query);
$table = array();
for ($i=0; $i < $fields; $i++)
{
$table[$i]['type'] = pg_field_type($query, $i);
$table[$i]['name'] = pg_field_name($query, $i);
$table[$i]['len'] = pg_field_prtlen($query, $i);
}
return $table;
}
} // End Database_Pgsql_Driver Class
/**
* PostgreSQL Result
*/
class Pgsql_Result extends Database_Result {
// Data fetching types
protected $fetch_type = 'pgsql_fetch_object';
protected $return_type = PGSQL_ASSOC;
/**
* Sets up the result variables.
*
* @param resource query result
* @param resource database link
* @param boolean return objects or arrays
* @param string SQL query that was run
*/
public function __construct($result, $link, $object = TRUE, $sql)
{
$this->result = $result;
// If the query is a resource, it was a SELECT, SHOW, DESCRIBE, EXPLAIN query
if (is_resource($result))
{
// Its an DELETE, INSERT, REPLACE, or UPDATE query
if (preg_match('/^(?:delete|insert|replace|update)\s+/i', trim($sql), $matches))
{
$this->insert_id = (strtolower($matches[0]) == 'insert') ? $this->insert_id() : FALSE;
$this->total_rows = pg_affected_rows($this->result);
}
else
{
$this->current_row = 0;
$this->total_rows = pg_num_rows($this->result);
$this->fetch_type = ($object === TRUE) ? 'pg_fetch_object' : 'pg_fetch_array';
}
}
else
{
throw new Kohana_Database_Exception('database.error', pg_last_error().' - '.$sql);
}
// Set result type
$this->result($object);
// Store the SQL
$this->sql = $sql;
}
/**
* Magic __destruct function, frees the result.
*/
public function __destruct()
{
if (is_resource($this->result))
{
pg_free_result($this->result);
}
}
public function result($object = TRUE, $type = PGSQL_ASSOC)
{
$this->fetch_type = ((bool) $object) ? 'pg_fetch_object' : 'pg_fetch_array';
// This check has to be outside the previous statement, because we do not
// know the state of fetch_type when $object = NULL
// NOTE - The class set by $type must be defined before fetching the result,
// autoloading is disabled to save a lot of stupid overhead.
if ($this->fetch_type == 'pg_fetch_object')
{
$this->return_type = (is_string($type) AND Kohana::auto_load($type)) ? $type : 'stdClass';
}
else
{
$this->return_type = $type;
}
return $this;
}
public function as_array($object = NULL, $type = PGSQL_ASSOC)
{
return $this->result_array($object, $type);
}
public function result_array($object = NULL, $type = PGSQL_ASSOC)
{
$rows = array();
if (is_string($object))
{
$fetch = $object;
}
elseif (is_bool($object))
{
if ($object === TRUE)
{
$fetch = 'pg_fetch_object';
// NOTE - The class set by $type must be defined before fetching the result,
// autoloading is disabled to save a lot of stupid overhead.
$type = (is_string($type) AND Kohana::auto_load($type)) ? $type : 'stdClass';
}
else
{
$fetch = 'pg_fetch_array';
}
}
else
{
// Use the default config values
$fetch = $this->fetch_type;
if ($fetch == 'pg_fetch_object')
{
$type = (is_string($type) AND Kohana::auto_load($type)) ? $type : 'stdClass';
}
}
while ($row = $fetch($this->result, NULL, $type))
{
$rows[] = $row;
}
return $rows;
}
public function insert_id()
{
if ($this->insert_id === NULL)
{
$query = 'SELECT LASTVAL() AS insert_id';
$result = pg_query($link, $query);
$insert_id = pg_fetch_array($result, NULL, PGSQL_ASSOC);
$this->insert_id = $insert_id['insert_id'];
}
return $this->insert_id;
}
public function seek($offset)
{
if ( ! $this->offsetExists($offset))
return FALSE;
return pg_result_seek($this->result, $offset);
}
public function list_fields()
{
$field_names = array();
while ($field = pg_field_name($this->result))
{
$field_names[] = $field->name;
}
return $field_names;
}
/**
* ArrayAccess: offsetGet
*/
public function offsetGet($offset)
{
if ( ! $this->seek($offset))
return FALSE;
// Return the row by calling the defined fetching callback
$fetch = $this->fetch_type;
return $fetch($this->result, NULL, $this->return_type);
}
} // End Pgsql_Result Class
/**
* PostgreSQL Prepared Statement (experimental)
*/
class Kohana_Pgsql_Statement {
protected $link = NULL;
protected $stmt;
public function __construct($sql, $link)
{
$this->link = $link;
$this->stmt = $this->link->prepare($sql);
return $this;
}
public function __destruct()
{
$this->stmt->close();
}
// Sets the bind parameters
public function bind_params()
{
$argv = func_get_args();
return $this;
}
// sets the statement values to the bound parameters
public function set_vals()
{
return $this;
}
// Runs the statement
public function execute()
{
return $this;
}
}
|