-
Notifications
You must be signed in to change notification settings - Fork 78
/
fUnbufferedResult.php
786 lines (664 loc) · 18.8 KB
/
fUnbufferedResult.php
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
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
<?php
/**
* Representation of an unbuffered result from a query against the fDatabase class
*
* @copyright Copyright (c) 2007-2011 Will Bond
* @author Will Bond [wb] <[email protected]>
* @license http://flourishlib.com/license
*
* @package Flourish
* @link http://flourishlib.com/fUnbufferedResult
*
* @version 1.0.0b13
* @changes 1.0.0b13 Added a workaround for iconv having issues in MAMP 1.9.4+ [wb, 2011-07-26]
* @changes 1.0.0b12 Fixed MSSQL to have a properly reset row array, added ::silenceNotices(), fixed pdo_dblib on Windows when using the Microsoft DBLib driver [wb, 2011-05-09]
* @changes 1.0.0b11 Fixed some bugs with the mysqli extension and prepared statements [wb, 2010-08-28]
* @changes 1.0.0b10 Backwards Compatibility Break - removed ODBC support [wb, 2010-07-31]
* @changes 1.0.0b9 Added IBM DB2 support [wb, 2010-04-13]
* @changes 1.0.0b8 Added support for prepared statements [wb, 2010-03-02]
* @changes 1.0.0b7 Fixed a bug with decoding MSSQL national column when using an ODBC connection [wb, 2009-09-18]
* @changes 1.0.0b6 Added the method ::unescape(), changed ::tossIfNoRows() to return the object for chaining [wb, 2009-08-12]
* @changes 1.0.0b5 Added the method ::asObjects() to allow for returning objects instead of associative arrays [wb, 2009-06-23]
* @changes 1.0.0b4 Fixed a bug with not properly converting SQL Server text to UTF-8 [wb, 2009-06-18]
* @changes 1.0.0b3 Added support for Oracle, various bug fixes [wb, 2009-05-04]
* @changes 1.0.0b2 Updated for new fCore API [wb, 2009-02-16]
* @changes 1.0.0b The initial implementation [wb, 2008-05-07]
*/
class fUnbufferedResult implements Iterator
{
/**
* If notices should be hidden for broken database drivers
*
* @var boolean
*/
static private $silence_notices = FALSE;
/**
* Composes text using fText if loaded
*
* @param string $message The message to compose
* @param mixed $component A string or number to insert into the message
* @param mixed ...
* @return string The composed and possible translated message
*/
static protected function compose($message)
{
$args = array_slice(func_get_args(), 1);
if (class_exists('fText', FALSE)) {
return call_user_func_array(
array('fText', 'compose'),
array($message, $args)
);
} else {
return vsprintf($message, $args);
}
}
/**
* This works around a bug in MAMP 1.9.4+ and PHP 5.3 where iconv()
* does not seem to properly assign the return value to a variable, but
* does work when returning the value.
*
* @param string $in_charset The incoming character encoding
* @param string $out_charset The outgoing character encoding
* @param string $string The string to convert
* @return string The converted string
*/
static private function iconv($in_charset, $out_charset, $string)
{
return iconv($in_charset, $out_charset, $string);
}
/**
* Turns off notices about broken database extensions much as the MSSQL DBLib driver
*
* @return void
*/
static public function silenceNotices()
{
self::$silence_notices = TRUE;
}
/**
* The character set to transcode from for MSSQL queries
*
* @var string
*/
private $character_set = NULL;
/**
* The current row of the result set
*
* @var array
*/
private $current_row = NULL;
/**
* The database object the result was created from
*
* @var fDatabase
*/
private $database = NULL;
/**
* The database extension
*
* @var string
*/
private $extension = NULL;
/**
* If rows should be converted to objects
*
* @var boolean
*/
private $output_objects = FALSE;
/**
* The position of the pointer in the result set
*
* @var integer
*/
private $pointer;
/**
* The result resource
*
* @var resource
*/
private $result = NULL;
/**
* The SQL query
*
* @var string
*/
private $sql = '';
/**
* Holds the data types for each column to allow for on-the-fly unescaping
*
* @var array
*/
private $unescape_map = array();
/**
* The SQL from before translation
*
* @var string
*/
private $untranslated_sql = NULL;
/**
* Configures the result set
*
* @internal
*
* @param fDatabase $database The database object this result was created from
* @param string $character_set MSSQL only: the character set to transcode from since MSSQL doesn't do UTF-8
* @return fUnbufferedResult
*/
public function __construct($database, $character_set=NULL)
{
if (!$database instanceof fDatabase) {
throw new fProgrammerException(
'The database object provided does not appear to be a descendant of fDatabase'
);
}
$this->database = $database;
$this->extension = $this->database->getExtension();
$this->character_set = $character_set;
}
/**
* Frees up the result object
*
* @internal
*
* @return void
*/
public function __destruct()
{
if (!is_resource($this->result) && !is_object($this->result)) {
return;
}
// stdClass results are holders for prepared statements, so we don't
// want to free them since it would break fStatement
if ($this->result instanceof stdClass) {
if ($this->extension == 'msyqli') {
$this->result->statement->free_result();
}
unset($this->result);
return;
}
switch ($this->extension) {
case 'ibm_db2':
db2_free_result($this->result);
break;
case 'mssql':
mssql_free_result($this->result);
break;
case 'mysql':
mysql_free_result($this->result);
break;
case 'mysqli':
mysqli_free_result($this->result);
break;
case 'oci8':
oci_free_statement($this->result);
break;
case 'pgsql':
pg_free_result($this->result);
break;
case 'sqlite':
unset($this->result);
break;
case 'sqlsrv':
sqlsrv_free_stmt($this->result);
break;
case 'pdo':
$this->result->closeCursor();
break;
}
$this->result = NULL;
}
/**
* All requests that hit this method should be requests for callbacks
*
* @internal
*
* @param string $method The method to create a callback for
* @return callback The callback for the method requested
*/
public function __get($method)
{
return array($this, $method);
}
/**
* Gets the next row from the result and assigns it to the current row
*
* @return void
*/
private function advanceCurrentRow()
{
$type = $this->database->getType();
switch ($this->extension) {
case 'ibm_db2':
$row = db2_fetch_assoc($this->result);
break;
case 'mssql':
// For some reason the mssql extension will return an empty row even
// when now rows were returned, so we have to explicitly check for this
if ($this->pointer == 0 && !mssql_num_rows($this->result)) {
$row = FALSE;
} else {
$row = mssql_fetch_assoc($this->result);
if (empty($row)) {
mssql_fetch_batch($this->result);
$row = mssql_fetch_assoc($this->result);
}
if (!empty($row)) {
$row = $this->fixDblibMSSQLDriver($row);
}
}
break;
case 'mysql':
$row = mysql_fetch_assoc($this->result);
break;
case 'mysqli':
if (!$this->result instanceof stdClass) {
$row = mysqli_fetch_assoc($this->result);
} else {
$meta = $this->result->statement->result_metadata();
$row_references = array();
while ($field = $meta->fetch_field()) {
$row_references[] = &$fetched_row[$field->name];
}
call_user_func_array(array($this->result->statement, 'bind_result'), $row_references);
$this->result->statement->fetch();
$row = array();
foreach($fetched_row as $key => $val) {
$row[$key] = $val;
}
unset($row_references);
$meta->free_result();
}
break;
case 'oci8':
$row = oci_fetch_assoc($this->result);
break;
case 'pgsql':
$row = pg_fetch_assoc($this->result);
break;
case 'sqlite':
$row = sqlite_fetch_array($this->result, SQLITE_ASSOC);
break;
case 'sqlsrv':
$resource = $this->result instanceof stdClass ? $this->result->statement : $this->result;
$row = sqlsrv_fetch_array($resource, SQLSRV_FETCH_ASSOC);
break;
case 'pdo':
$row = $this->result->fetch(PDO::FETCH_ASSOC);
if (!empty($row) && $type == 'mssql') {
$row = $this->fixDblibMSSQLDriver($row);
}
break;
}
// Fix uppercase column names to lowercase
if ($row && ($type == 'oracle' || ($type == 'db2' && $this->extension != 'ibm_db2'))) {
$row = array_change_key_case($row);
}
// This is an unfortunate fix that required for databases that don't support limit
// clauses with an offset. It prevents unrequested columns from being returned.
if (isset($row['flourish__row__num'])) {
unset($row['flourish__row__num']);
}
// This decodes the data coming out of MSSQL into UTF-8
if ($row && $type == 'mssql') {
if ($this->character_set) {
foreach ($row as $key => $value) {
if (!is_string($value) || strpos($key, '__flourish_mssqln_') === 0 || isset($row['fmssqln__' . $key]) || preg_match('#[\x0-\x8\xB\xC\xE-\x1F]#', $value)) {
continue;
}
$row[$key] = self::iconv($this->character_set, 'UTF-8', $value);
}
}
$row = $this->decodeMSSQLNationalColumns($row);
// This resets the array pointer so that
// current() will work as expected
reset($row);
}
if ($this->unescape_map) {
foreach ($this->unescape_map as $column => $type) {
if (!isset($row[$column])) { continue; }
$row[$column] = $this->database->unescape($type, $row[$column]);
}
}
$this->current_row = $row;
}
/**
* Sets the object to return rows as objects instead of associative arrays (the default)
*
* @return fUnbufferedResult The result object, to allow for method chaining
*/
public function asObjects()
{
$this->output_objects = TRUE;
return $this;
}
/**
* Returns the current row in the result set (required by iterator interface)
*
* @throws fNoRowsException When the query did not return any rows
* @throws fNoRemainingException When there are no rows left in the result
* @internal
*
* @return array|stdClass The current row
*/
public function current()
{
$this->validateState();
// Primes the result set
if ($this->pointer === NULL) {
$this->pointer = 0;
$this->advanceCurrentRow();
}
if(!$this->current_row && $this->pointer == 0) {
throw new fNoRowsException('The query did not return any rows');
} elseif (!$this->current_row) {
throw new fNoRemainingException('There are no remaining rows');
}
if ($this->output_objects) {
return (object) $this->current_row;
}
return $this->current_row;
}
/**
* Decodes national (unicode) character data coming out of MSSQL into UTF-8
*
* @param array $row The row from the database
* @return array The fixed row
*/
private function decodeMSSQLNationalColumns($row)
{
if (strpos($this->sql, 'fmssqln__') === FALSE) {
return $row;
}
$columns = array_keys($row);
foreach ($columns as $column) {
if (substr($column, 0, 9) != 'fmssqln__') {
continue;
}
$real_column = substr($column, 9);
$row[$real_column] = self::iconv('UCS-2LE', 'UTF-8', $this->database->unescape('blob', $row[$column]));
unset($row[$column]);
}
return $row;
}
/**
* Returns the row next row in the result set (where the pointer is currently assigned to)
*
* @throws fNoRowsException When the query did not return any rows
* @throws fNoRemainingException When there are no rows left in the result
*
* @return array|stdClass The next row in the result
*/
public function fetchRow()
{
$this->validateState();
$row = $this->current();
$this->next();
return $row;
}
/**
* Warns the user about bugs in the DBLib driver for MSSQL, fixes some bugs
*
* @param array $row The row from the database
* @return array The fixed row
*/
private function fixDblibMSSQLDriver($row)
{
static $using_dblib = array();
if (!isset($using_dblib[$this->extension])) {
// If it is not a windows box we are definitely not using dblib
if (!fCore::checkOS('windows')) {
$using_dblib[$this->extension] = FALSE;
// Check this windows box for dblib
} else {
ob_start();
phpinfo(INFO_MODULES);
$module_info = ob_get_contents();
ob_end_clean();
if ($this->extension == 'pdo_mssql') {
$using_dblib[$this->extension] = preg_match('#MSSQL_70#i', $module_info, $match);
} else {
$using_dblib[$this->extension] = !preg_match('#FreeTDS#i', $module_info, $match);
}
}
}
if (!$using_dblib[$this->extension]) {
return $row;
}
foreach ($row as $key => $value) {
if ($value === ' ') {
$row[$key] = '';
if (!self::$silence_notices) {
trigger_error(
self::compose(
'A single space was detected coming out of the database and was converted into an empty string - see %s for more information',
'http://bugs.php.net/bug.php?id=26315'
),
E_USER_NOTICE
);
}
}
if (!self::$silence_notices && strlen($key) == 30) {
trigger_error(
self::compose(
'A column name exactly 30 characters in length was detected coming out of the database - this column name may be truncated, see %s for more information.',
'http://bugs.php.net/bug.php?id=23990'
),
E_USER_NOTICE
);
}
if (!self::$silence_notices && strlen($value) == 256) {
trigger_error(
self::compose(
'A value exactly 255 characters in length was detected coming out of the database - this value may be truncated, see %s for more information.',
'http://bugs.php.net/bug.php?id=37757'
),
E_USER_NOTICE
);
}
}
return $row;
}
/**
* Returns the result
*
* @internal
*
* @return mixed The result of the query
*/
public function getResult()
{
$this->validateState();
return $this->result;
}
/**
* Returns the SQL used in the query
*
* @return string The SQL used in the query
*/
public function getSQL()
{
return $this->sql;
}
/**
* Returns the SQL as it was before translation
*
* @return string The SQL from before translation
*/
public function getUntranslatedSQL()
{
return $this->untranslated_sql;
}
/**
* Returns the current row number (required by iterator interface)
*
* @throws fNoRowsException When the query did not return any rows
* @throws fNoRemainingException When there are no rows left in the result
* @internal
*
* @return integer The current row number
*/
public function key()
{
$this->validateState();
if ($this->pointer === NULL) {
$this->current();
}
return $this->pointer;
}
/**
* Advances to the next row in the result (required by iterator interface)
*
* @throws fNoRowsException When the query did not return any rows
* @throws fNoRemainingException When there are no rows left in the result
* @internal
*
* @return void
*/
public function next()
{
$this->validateState();
if ($this->pointer === NULL) {
$this->current();
}
$this->advanceCurrentRow();
$this->pointer++;
}
/**
* Rewinds the query (required by iterator interface)
*
* @internal
*
* @return void
*/
public function rewind()
{
$this->validateState();
if (!empty($this->pointer)) {
throw new fProgrammerException(
'Unbuffered database results can not be iterated through multiple times'
);
}
}
/**
* Sets the result from the query
*
* @internal
*
* @param mixed $result The result from the query
* @return void
*/
public function setResult($result)
{
$this->result = $result;
}
/**
* Sets the SQL used in the query
*
* @internal
*
* @param string $sql The SQL used in the query
* @return void
*/
public function setSQL($sql)
{
$this->sql = $sql;
}
/**
* Sets the SQL from before translation
*
* @internal
*
* @param string $untranslated_sql The SQL from before translation
* @return void
*/
public function setUntranslatedSQL($untranslated_sql)
{
$this->untranslated_sql = $untranslated_sql;
}
/**
* Throws an fNoResultException if the query did not return any rows
*
* @throws fNoRowsException When the query did not return any rows
*
* @param string $message The message to use for the exception if there are no rows in this result set
* @return fUnbufferedResult The result object, to allow for method chaining
*/
public function tossIfNoRows($message=NULL)
{
try {
$this->current();
} catch (fNoRowsException $e) {
if ($message !== NULL) {
$e->setMessage($message);
}
throw $e;
}
return $this;
}
/**
* Sets the result object to unescape all values as they are retrieved from the object
*
* The data types should be from the list of types supported by
* fDatabase::unescape().
*
* @param array $column_data_type_map An associative array with column names as the keys and the data types as the values
* @return fUnbufferedResult The result object, to allow for method chaining
*/
public function unescape($column_data_type_map)
{
if (!is_array($column_data_type_map)) {
throw new fProgrammerException(
'The column to data type map specified, %s, does not appear to be an array',
$column_data_type_map
);
}
$this->unescape_map = $column_data_type_map;
return $this;
}
/**
* Returns if the query has any rows left
*
* @return boolean If the iterator is still valid
*/
public function valid()
{
$this->validateState();
if ($this->pointer === NULL) {
$this->advanceCurrentRow();
$this->pointer = 0;
}
return !empty($this->current_row);
}
/**
* Throws an exception if this object has been deconstructed already
*
* @return void
*/
private function validateState()
{
if ($this->result === NULL) {
throw new fProgrammerException('This unbuffered result has been fully fetched, or replaced by a newer result');
}
}
}
/**
* Copyright (c) 2007-2011 Will Bond <[email protected]>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/