-
Notifications
You must be signed in to change notification settings - Fork 5
/
pudl.php
824 lines (567 loc) · 21.1 KB
/
pudl.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
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
<?php
if (!function_exists('is_owner')) {
/** @suppress PhanRedefineFunction */
function is_owner($path) { return $path; }
}
require_once(is_owner(__DIR__.'/pudlInclude.inc.php'));
abstract class pudl {
use pudlCte;
use pudlAuth;
use pudlJson;
use pudlAlias;
use pudlRedis;
use pudlQuery;
use pudlUnion;
use pudlTable;
use pudlSelect;
use pudlInsert;
use pudlUpdate;
use pudlDelete;
use pudlStatic;
use pudlCompare;
use pudlCounter;
use pudlRequire;
use pudlCallback;
use pudlInternal;
use pudlTransaction;
////////////////////////////////////////////////////////////////////////////
// CONSTRUCTOR
// $DATA IS A KEY/VALUE PAIR LIST WITH CONFIGURATION DETAILS
////////////////////////////////////////////////////////////////////////////
public function __construct($options) {
// PRE-PROCESS OPTIONS
$options = self::_options($options);
//SANITIZE DATA
//TODO: create a method to parse and validate every possible $options item
if (empty($options['username'])) $options['username'] = '';
if (empty($options['password'])) $options['password'] = '';
if (empty($options['database'])) $options['database'] = '';
if (empty($options['server'])) $options['server'] = 'localhost';
if (empty($options['prefix'])) $options['prefix'] = [];
if (empty($options['persistent'])) $options['persistent'] = false;
if (empty($options['key'])) $options['key'] = NULL;
if (empty($options['salt'])) $options['salt'] = '';
if (empty($options['readonly'])) $options['readonly'] = false;
if (empty($options['offline'])) $options['offline'] = false;
if (!isset($options['timeout'])) $options['timeout'] = 10;
//SET INITIAL DATA
$this->microtime = microtime(true);
$this->time = (int) $this->microtime;
//STORE CREDENTIALS IN SECURED AREA HIDDEN FROM VAR_DUMP/VAR_EXPORT
$this->updateAuth($options);
//INITIALIZE REDIS CONNECTION
if (!empty($options['redis'])) {
$this->redis($options['redis']);
} else {
$this->redis = new pudlVoid;
}
//CONNECT TO SERVER
if (!$options['offline']) $this->connect();
}
////////////////////////////////////////////////////////////////////////////
// DESTRUCTOR - FORCE ERASE SENSITIVE CONFIGURATION DATA
////////////////////////////////////////////////////////////////////////////
public function __destruct() {
$this->_auth(NULL);
}
////////////////////////////////////////////////////////////////////////////
// INVOKE THIS OBJECT
// STRING: EXECUTE THE SQL QUERY STRING
// ARRAY: GENERATE A SQL QUERY STRING THROUGH SELEX, AND EXECUTE IT
////////////////////////////////////////////////////////////////////////////
public function __invoke($query) {
if (is_null($this->log)) {
$this->log = false;
throw new pudlException(
$this,
'Cannot run PUDL queries from within logging functions'
);
}
//CONVERT FROM A STRING RESULT TO JUST A STRING
if ($query instanceof pudlStringResult) {
$query = (string) $query;
}
//SELEX
if (pudl_array($query) || func_num_args() > 1) {
return call_user_func_array(
[$this, 'selex'],
func_get_args()
);
}
//UNIONS
if ($this->inUnion()) {
$this->union[] = $query;
return true;
}
//PERFORMANCE PROFILING DATA
if (!empty($this->bench)) $microtime = microtime(true);
//PREPEND CTE
if ($this->isCte()) {
$query = $this->_cte($query);
}
//STORE THE QUERY STRING LOCALLY
$this->query = $query;
//STORE TRANSACTION INFORMATION
if (pudl_array($this->transaction)) $this->transaction[] = $query;
//RETURN A STRING
$string = end($this->string);
if ($string === true) {
$result = new pudlStringResult($this, $string);
array_pop($this->string);
//EXECUTE SUBQUERY
} else if ($string instanceof pudlString) {
array_pop($this->string);
return $this($string . '(' . $query . ')');
//RETURN A SUBQUERY STRING
} else if ($string !== false) {
$this->query = '(' . $this->query . ')';
$result = new pudlStringResult($this, $string);
array_pop($this->string);
return $result;
//CACHE THE QUERY IN REDIS
} else if ($this->cache && is_object($this->redis) && !($this->redis instanceof pudlVoid)) {
$this->stats['total']++;
try {
$hash = $this->cachekey;
if (empty($hash)) $hash = $this->hash($query);
if ($this->cache < 0) {
$this->stats['total']--;
$this->purge($hash);
$result = new pudlCacheResult($this, [], '');
} else {
if ($this->recache) {
$data = false;
} else {
$data = $this->redis->get("pudl:$hash");
}
if ($data === false || is_null($data)) {
$result = $this->missed($query);
if (!$this->error() && !$result->error()) {
$data = $result->complete();
// DONT CACHE EMPTY RESULT SETS
if (!empty($data)) {
$this->redis->set("pudl:$hash", $data, $this->cache);
}
$result = new pudlCacheResult($this, $data, $hash);
}
} else if (!empty($data) && pudl_array($data)) {
$this->stats['hits']++;
$result = new pudlCacheResult($this, $data, $hash);
}
}
} catch (RedisException $e) {}
if (empty($result) || !($result instanceof pudlResult)) {
$result = $this->missed($query);
}
//PROCESS THE QUERY NORMALLY
} else {
$this->stats['total']++;
$this->stats['queries']++;
$result = $this->process($query);
}
//LOG QUERY
if ($this->log) {
$this->log = NULL;
$this->trigger('log', $this, $result);
$this->log = false;
}
//RESET CACHE INFORMATION FOR NEXT QUERY
$this->decache();
//PERFORMANCE PROFILING DATA
if (!empty($this->bench)) {
$bench = $this->bench;
$bench($query, $microtime, microtime(true), $this);
}
//ERROR REPORTING
$errno = $this->errno();
if (!empty($errno)) {
if ($this->trigger('debug', $this, $result) === NULL) {
$error = $this->error();
if ($result instanceof pudlResult) {
$error .= "\n" . $result->error();
}
throw new pudlException($this, $error, $errno);
}
}
//RETURN FINAL RESULT
return $result;
}
////////////////////////////////////////////////////////////////////////////
// CREATE AN INSTANCE OF THIS OBJECT
////////////////////////////////////////////////////////////////////////////
public static function instance($options) {
// PRE-PROCESS OPTIONS
$options = self::_options($options);
// DETERMINE DATABASE TYPE BASED ON CALLED CLASS
if (get_called_class() !== __CLASS__) {
$type = str_ireplace(__CLASS__, '', get_called_class());
if (!empty($type)) $options['type'] = $type;
}
// ATTEMPT TO DETERMINE DATABASE TYPE FROM PROVIDED SERVER INFO
if (empty($options['type']) && !empty($options['server'])) {
if (is_resource($options['server'])) {
switch (strtolower(get_resource_type($options['server']))) {
case 'mysql link persistent':
$options['persistent'] = true; // FALL THROUGH CASE
case 'mysql link':
$options['type'] = 'MySQL-deprecated';
break;
case 'pgsql link persistent':
$options['persistent'] = true; // FALL THROUGH CASE
case 'pgsql link':
$options['type'] = 'PostgreSQL';
break;
case 'odbc link persistent':
$options['persistent'] = true; // FALL THROUGH CASE
case 'odbc link':
$options['type'] = 'ODBC';
break;
case 'mssql link persistent':
$options['persistent'] = true; // FALL THROUGH CASE
case 'mssql link':
$options['type'] = 'Microsoft-deprecated';
break;
case 'sql server connection persistent':
$options['persistent'] = true; // FALL THROUGH CASE
case 'sql server connection':
$options['type'] = 'Microsoft';
break;
}
} else {
switch (true) {
case pudl_array($options['server']):
$options['type'] = 'Galera';
break;
case $options['server'] instanceof mysqli:
$options['type'] = 'MySQL';
break;
case $options['server'] instanceof SQLite3:
$options['type'] = 'Sqlite';
break;
case $options['server'] instanceof PDO:
$options['type'] = 'PDO';
break;
}
}
}
// NO DATABASE TYPE SPECIFIED
if (empty($options['type'])) {
throw new pudlValueException(NULL,
'No database type or server specified'
);
}
// GET THE ENGINE TYPE PHP PATH/FILE
$engine = static::_engine($options['type']);
if (empty($engine)) {
throw new pudlValueException(NULL,
'Unknown Database Server Type: ' . $options['type']
);
}
require_once(is_owner(__DIR__ . end($engine)));
$class = 'pudl' . reset($engine);
return new $class($options);
}
////////////////////////////////////////////////////////////////////////////
// PROCESS THE SQL QUERY THROUGH THE DATABASE ENGINE
// RETURNS INSTANCE OF PUDLRESULT
////////////////////////////////////////////////////////////////////////////
abstract protected function process($query);
////////////////////////////////////////////////////////////////////////////
// GET THE ERROR CODE OF THE MOST RECENT SQL QUERY
////////////////////////////////////////////////////////////////////////////
abstract public function errno();
////////////////////////////////////////////////////////////////////////////
// GET THE ERROR TEXT OF THE MOST RECENT SQL QUERY
////////////////////////////////////////////////////////////////////////////
abstract public function error();
////////////////////////////////////////////////////////////////////////////
// FORCE A WAIT STATE ON THE DATABASE ENGINE
////////////////////////////////////////////////////////////////////////////
public function wait($wait=true) {
return $this;
}
////////////////////////////////////////////////////////////////////////////
// FORCE A SYNCHRONIZATION OF THE DATABASE STORAGE SYSTEM
////////////////////////////////////////////////////////////////////////////
public function sync() {
return $this;
}
////////////////////////////////////////////////////////////////////////////
// CONNECT TO THE DATABASE SERVER
////////////////////////////////////////////////////////////////////////////
public function connect() {}
////////////////////////////////////////////////////////////////////////////
// DISCONNECT FROM THE DATABASE SERVER
////////////////////////////////////////////////////////////////////////////
public function disconnect($trigger=true) {
if ($trigger) $this->trigger('disconnect');
}
////////////////////////////////////////////////////////////////////////////
// GET THE RAW DATABASE CONNECTION HANDLE
////////////////////////////////////////////////////////////////////////////
public function connection() {
return $this->connection;
}
////////////////////////////////////////////////////////////////////////////
// GET THE MOST RECENTLY EXECUTED SQL QUERY STRING
////////////////////////////////////////////////////////////////////////////
public function query() {
return $this->query;
}
////////////////////////////////////////////////////////////////////////////
// ENABLE LOGGING
////////////////////////////////////////////////////////////////////////////
public function log() {
if (is_null($this->log)) {
$this->log = false;
throw new pudlException(
$this,
'Cannot change logging status while in log callback'
);
}
$this->log = true;
return $this;
}
////////////////////////////////////////////////////////////////////////////
// GET A LIST OF FIELDS FOR THE GIVEN $TABLES
////////////////////////////////////////////////////////////////////////////
public function listFields($tables, $prefix='') {
if (!pudl_array($tables)) $tables = [$tables];
$return = [];
foreach ($tables as $key => $table) {
if (in_array($key, ['on', 'clause', 'using'], true)) continue;
if (pudl_array($table)) {
if (is_int($key)) $key = '';
$return += $this->listFields($table, $key);
} else {
$table = (string) $table;
if (isset($this->listcache[$table])) {
$list = $this->listcache[$table];
} else {
$list = $this->_fields($table);
$this->listcache[$table] = $list;
}
foreach ($list as $item) {
$item = array_change_key_case($item);
$item['table'] = $table;
$item['prefix'] = is_int($key) ? $prefix : $key;
$return[$item['field']] = $item;
}
}
}
return $return;
}
////////////////////////////////////////////////////////////////////////////
// GET A LIST OF FIELDS FOR THE GIVEN $TABLE
////////////////////////////////////////////////////////////////////////////
protected function _fields($table) {
return $this(
'SHOW COLUMNS FROM ' . $this->_table($table)
)->complete();
}
////////////////////////////////////////////////////////////////////////////
// RUN "EXPLAIN" ON THE GIVEN SQL QUERY STRING
// TODO: add support for "EXPLAIN ANALYZE" after $db->analize is removed
////////////////////////////////////////////////////////////////////////////
public function explain($query, $format=NULL) {
$explain = 'EXPLAIN';
if (!empty($format)) {
$explain .= ' FORMAT=' . strtoupper($this->_value($format));
}
$result = $this($explain . ' (' . $query . ')');
if ($result instanceof pudlStringResult) return $result;
$return = '';
while ($data = $result()) {
$return .= print_r($data, true);
}
$result->free();
return $return;
}
////////////////////////////////////////////////////////////////////////////
// CHECK TO SEE IF THE GIVEN $ID VALUE EXISTS WITHIN THE GIVEN $TABLE
////////////////////////////////////////////////////////////////////////////
public function idExists($table, $col, $id=false) {
return $this->cellId($table, $col, $col, $id) !== false;
}
////////////////////////////////////////////////////////////////////////////
// CHECK TO SEE IF THE GIVEN $CLAUSE IS TRUE FOR THE GIVEN $TABLE
////////////////////////////////////////////////////////////////////////////
public function clauseExists($table, $clause) {
return $this->cell($table, true, $clause) !== false;
}
////////////////////////////////////////////////////////////////////////////
// GET THE NUMBER OF ROWS FOUND
////////////////////////////////////////////////////////////////////////////
public function found() {
$result = $this('SELECT FOUND_ROWS()');
if ($result instanceof pudlStringResult) return $result;
$return = $result->completeCell();
return $return === false ? $return : (int) $return;
}
////////////////////////////////////////////////////////////////////////////
// ???
////////////////////////////////////////////////////////////////////////////
public function listItems($type, $like=false, $limit=false, $offset=false) {
$query = 'SHOW ' . $type;
if (!empty($like)) $query .= ' LIKE ' . $this->_value($like);
$query .= $this->_limit($limit, $offset);
$result = $this($query);
if ($result instanceof pudlStringResult) return $result;
$return = [];
while ($data = $result->row()) {
$return[reset($data)] = end($data);
}
$result->free();
return $return;
}
////////////////////////////////////////////////////////////////////////////
// GET THE GLOBAL STATUS
////////////////////////////////////////////////////////////////////////////
public function globals($like=false, $limit=false, $offset=false) {
return $this->listItems('GLOBAL STATUS', $like, $limit, $offset);
}
////////////////////////////////////////////////////////////////////////////
// GET VARIABLES
////////////////////////////////////////////////////////////////////////////
public function variables($like=false, $limit=false, $offset=false) {
return $this->listItems('VARIABLES', $like, $limit, $offset);
}
////////////////////////////////////////////////////////////////////////////
// GET THE DATABASE SERVER STATUS
////////////////////////////////////////////////////////////////////////////
public function status($like=false, $limit=false, $offset=false) {
return $this->listItems('STATUS', $like, $limit, $offset);
}
////////////////////////////////////////////////////////////////////////////
// ENABLE QUERY BENCHMARKING
////////////////////////////////////////////////////////////////////////////
public function benchmark($benchmark) {
$this->bench = $benchmark;
}
////////////////////////////////////////////////////////////////////////////
// GET THE APPLICATION SYNCED TIME
////////////////////////////////////////////////////////////////////////////
public function time($source=NULL) {
if (empty($source)) {
return is_object($this->time)
? $this->time->time()
: $this->time;
}
$this->time = $source;
}
////////////////////////////////////////////////////////////////////////////
// GET THE APPLICATION SYNCED MICRO-TIME
////////////////////////////////////////////////////////////////////////////
public function microtime($source=NULL) {
if (empty($source)) {
return is_object($this->microtime)
? $this->microtime->microtime()
: $this->microtime;
}
$this->microtime = $source;
}
////////////////////////////////////////////////////////////////////////////
// SET THE TIMEOUT VALUE
////////////////////////////////////////////////////////////////////////////
public function timeout($timeout) {}
////////////////////////////////////////////////////////////////////////////
// GET THE DATABASE SERVER FOR THE ACTIVE CONNECTION
////////////////////////////////////////////////////////////////////////////
public function server() {
if ($this->connected) {
return $this->connected;
}
$auth = $this->auth();
return $auth['server'];
}
////////////////////////////////////////////////////////////////////////////
// CHECK IF WE'RE IN STRING-GENERATOR MODE
////////////////////////////////////////////////////////////////////////////
public function isString() {
return end($this->string);
}
////////////////////////////////////////////////////////////////////////////
// ENABLE STRING-GENERATOR MODE
// PUDL WONT EXECUTE SQL QUERY AFTER GENERATING IT
////////////////////////////////////////////////////////////////////////////
public function string() {
$this->string[] = true;
return $this;
}
////////////////////////////////////////////////////////////////////////////
// DISABLE STRING-GENERATOR MODE
////////////////////////////////////////////////////////////////////////////
public function destring() {
$this->string = [];
return $this;
}
////////////////////////////////////////////////////////////////////////////
// DISABLE STRING-GENERATOR MODE
////////////////////////////////////////////////////////////////////////////
public function decursion() {
$this->_depth = 0;
return $this;
}
////////////////////////////////////////////////////////////////////////////
// SET THE NEXT QUERY TO BE A SUB-QUERY WITH "IN"
////////////////////////////////////////////////////////////////////////////
public function in() {
$this->string[] = ' IN ';
return $this;
}
////////////////////////////////////////////////////////////////////////////
// SET THE NEXT QUERY TO BE A SUB-QUERY WITH "NOT IN"
////////////////////////////////////////////////////////////////////////////
public function notIn() {
$this->string[] = ' NOT IN ';
return $this;
}
////////////////////////////////////////////////////////////////////////////
// SET A VARIABLE ON THE DATABASE SERVER
////////////////////////////////////////////////////////////////////////////
public function variable($variable, $value, $global=false) {
$query = 'SET ';
$query .= $this->_value(new pudlGlobal($variable, $global));
$query .= '=';
$query .= $this->_value($value);
return $this($query);
}
////////////////////////////////////////////////////////////////////////////
// DATE/TIME
////////////////////////////////////////////////////////////////////////////
public function datetime($time=false) {
if ($time === false) $time = $this->time();
if (!is_int($time)) $time = ctype_digit($time)
? ((int) $time)
: strtotime($time);
// CANNOT BE SELF:: OR STATIC:: BECAUSE PHP SCOPING IS BROKEN
return pudlFunction::from_unixtime($time);
}
////////////////////////////////////////////////////////////////////////////
// GET THE LOCAL FILE SYSTEM PATH OF THE PUDL LIBRARY
////////////////////////////////////////////////////////////////////////////
public static function dir() {
return __DIR__;
}
////////////////////////////////////////////////////////////////////////////
// MEMBER VARIABLES
////////////////////////////////////////////////////////////////////////////
/** @var bool */ private $log = false;
/** @var bool */ private $bench = false;
/** @var ?string */ private $query = NULL;
/** @var int */ private $time = 0;
/** @var float */ private $microtime = 0.0;
/** @var array */ private $listcache = [];
/** @var mixed */ protected $connection = NULL;
/** @var ?string */ protected $connected = NULL;
/** @var array */ protected $string = [];
/** @var int */ protected $_depth = 0;
////////////////////////////////////////////////////////////////////////////
// PUDL VERSION INFORMATION
////////////////////////////////////////////////////////////////////////////
const version = '3.1.1';
const version_id = 30101;
const version_major = 3;
const version_minor = 1;
const version_release = 1;
}