/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk
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
<?php

class DBRes implements Iterator {
 var $arr;
  
 public function __construct() {
    $this->arr = array();
 }
 
 public function push(&$obj) {
    array_push($this->arr, $obj);
 }
 
 public function fetch($flags = 0) {
    return array_shift($this->arr);
 }

 function rewind() {
    reset($this->arr);
 }
 function current() {
    return current($this->arr);
 }
 function key() {
    return key($this->arr);
 }
 function next() {
    each($this->arr);    
 }

 function valid() {
	// We don't expect 'false' elements in array (all are arrays)
    return current($this->arr)?true:false;
 }
 
 function rowCount() {
    return sizeof($this->arr);
 }
}

class DATABASE {
 var $dbh, $connected;
 var $driver;
 var $odbc;
 
 var $server;
 var $dbname;
 
 var $text_quote = '\'';
 var $col_quote_l = "\"";
 var $col_quote_r = "\"";
 var $tbl_quote_l = "";
 var $tbl_quote_r = "";

 var $debug_sql = 0;

 const GLOBAL_QUERY = 0x0001;
 const SINGLE_RESULT = 0x0002;
 const FETCH_NUM = 0x0100;

 
 function __construct(&$server) {
    $this->server = $server;

    if (($server['charset'])&&(preg_match("/UTF.*8/i", $server['charset']))) {
	unset($this->server['charset']);
    }

    if ($server['sqldrv']) $this->driver = $server['sqldrv'];
    else $this->driver = $server['driver'];

    // Connect on first query to avoid repetitions...
    //$this->ReConnect();
 }
 
 function ReConnect() {
    $server = &$this->server;

    if (($this->connected)||($this->dbh)) {
	$this->connected = false;
	$this->dbh = false;
    }
    
    $pdo_opts = array();
    if ($server['persistent']) {
	$pdo_opts[PDO::ATTR_PERSISTENT] = true;
    }

    if ($this->debug_sql) {
        echo " * Connecting to {$server['driver']}\n";
    }

     try {
        $this->odbc = false;
	
	switch($server['driver']) {
	  case "odbc":
	    if ($server['source']) {
		$this->dbh = new PDO ("odbc:" . $server['source'], $server['user'], $server['password'], $pdo_opts);
		
		$this->dbname = $server['source'];
		$this->connected = true;
	    } else {
		if ($server['database']) {
		    $dbtext = ";DATABASE=" . $server['database'];
		    $this->dbname = $server['database'];
		    $this->connected = true;
		} else $dbtext = "";
		
		if ($server['timeout']) {
		    if ($server['ping']) {
                        if ($this->debug_sql) {
                            echo " * Ping {$server['host']}\n";
                        }

			if ((!is_array($server['ping']))&&((!$server['host'])||(!$server['port'])))
			    throw new ADEIException(translate("The ping-before-connection feature is requiring the database's host and port to be excplicitly specified."));
			    
			$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
			if ($socket) {
			    socket_set_nonblock($socket);
			
			    if (is_array($ping))
				$res = @socket_connect($socket, $server['ping']['host'], $server['ping']['port']);
			    else
				$res = @socket_connect($socket, $server['host'], $server['port']);
			
			    if (!$res) {
				$res = socket_select($r = array($socket), $w = array($socket), $e = array($socket), floor($server['timeout']/1000000), $server['timeout']%1000000);
				if ($res == 1) $res = true;
				else $res = false;
			    }
			    socket_close($socket);
			    
			    if (!$res) {
				throw new ADEIException(translate("Error probing the connection to the database at %s:%s (timeout expired)", $server['host'], $server['port']));
			    }
			}
		    }
		
		    $timeout = floor($server['timeout'] / 1000000);
		    if (!$timeout) $timeout = 1;
		    
		    $pdo_opts[PDO::ATTR_TIMEOUT] = $timeout;
		    $this->dbh = @new PDO ("odbc:DRIVER=" . $server['subdrv'] . ";SERVER=" . $server['host'] . ";PORT=" . ($server['port']?$server['port']:"1433") . $dbtext . ";PROTOCOL=TCPIP;UID=" . $server['user'] . ";PWD=" . $server['password'], NULL, NULL, $pdo_opts);
		} else {
		    $this->dbh = new PDO ("odbc:DRIVER=" . $server['subdrv'] . ";SERVER=" . $server['host'] . ";PORT=" . ($server['port']?$server['port']:"1433") . $dbtext . ";PROTOCOL=TCPIP;UID=" . $server['user'] . ";PWD=" . $server['password'], NULL, NULL, $pdo_opts);
		}
	    }

	    $this->odbc = true;
	  break;
	  default:	
#	    echo "connecting\n";
#	    print_r($server);
	    if ($server['database']) {
		$this->dbh = new PDO (
		    $server['driver'] . ":host=" . $server['host'] . ($server['port']?(";port=" . $server['port']):"") . ";dbname=" . $server['database'], 
		    $server['user'], 
		    $server['password'],
		    $pdo_opts
		);
		$this->dbname = $server['database'];	    
		$this->connected = true;
	    } else {
    		$this->dbh = new PDO (
		    $server['driver'] . ":host=" . $server['host'] . ($server['port']?(";port=" . $server['port']):""), 
		    $server['user'], 
		    $server['password'],
		    $pdo_opts
		);
		$this->connected = false;
	    }
#	    echo "connected\n";
#	    exit;
	}
	
	    /* Single check for single scheme */
	switch ($this->driver) {
	    case "dblib":
		$this->driver="mssql";
	    case "mssql":
		$this->dbh->query("SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED");
		    // Table quotes are added in DBReader setup configuration (since mda/dbo prefixes should be outside quotes)
		$this->col_quote_l = "[";
		$this->tbl_quote_l = "";
		$this->col_quote_r = "]";
		$this->tbl_quote_r = "";
	    break;
	    case "mysql":
		$this->col_quote_l = "`";
		$this->tbl_quote_l = "`";
		$this->col_quote_r = "`";
		$this->tbl_quote_r = "`";
	    break;
	}
	
	 $this->dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
    } catch(PDOException $e) {
	$this->dbh = NULL;
	$this->connected = false;

	$errmsg = $this->RecodeMessage($e->getMessage());
	if ($this->dbname)
	    throw new ADEIException(translate("Error connecting to the server \"%s\" database \"%s\": %s", $server['title'], $this->dbname, $errmsg), $e->getCode());
	else
	    throw new ADEIException(translate("Error connecting to the server \"%s\": %s", $server['title'], $errmsg), $e->getCode());
    }
 }
 
 function RecodeMessage($msg) {
    if (($msg)&&($this->server['charset'])) {
	$rec = iconv($this->server['charset'], "UTF-8", $msg);
	if (!$rec) {
	    throw new ADEIException(translate("The message received from server (%s) could not be translated from source charset (%s) to UTF-8. Please, check the server charset in configuration.", $this->server['title'], $this->server['charset']));
	}

	return $rec;
    }

    return $msg;    
 }

/*
 function RecodeData($data) {
 }
*/ 

 static function GetConnectionString(array &$server, array &$options = NULL, &$application = NULL) {
    if (strtolower($server['driver']) == 'mysql') {
	if ((!$application)||($application == 'mysqldump')) {
	    return "-h" . $server['host'] . ($server['port']?(":" . $server['port']):"") . " -u" . $server['user'] . " -p" . $server['password'] . " " . $server['database'];
	} else throw new ADEIException(translate("The required application (\"%s\") is not supported at the moment", $application));
    } else throw new ADEIException(translate("The supplied connection (\"%s\") is not supported at the moment", $server['driver']));
 }
 

 function Query($sql, $flags = 0) {
    if (!$this->dbh) 
        $this->ReConnect();

    if ((!$this->connected)&&(($flags&DATABASE::GLOBAL_QUERY)==0))
	 throw new ADEIException(translate("The database is not specified"));

    try {
	if ($this->odbc) {
		//	This is to prevent spurious odbc errors:
	    $stmt = $this->Prepare($sql, $flags);
	    $stmt->execute();
	
	    $resp = new DBRes();
	    if ($flags&DATABASE::SINGLE_RESULT) {
		$row = $stmt->fetch(($flags&DATABASE::FETCH_NUM)?PDO::FETCH_NUM:PDO::FETCH_ASSOC);
		if ($row) $resp->push($row);
	    } else {
	    	while ($row = $stmt->fetch(($flags&DATABASE::FETCH_NUM)?PDO::FETCH_NUM:PDO::FETCH_ASSOC)) {
		    $resp->push($row);
		}
	    }
	} else {
            if ($this->debug_sql) {
                echo " * " . $sql . "\n";
            }

	    //echo $sql . "\n\n";
	    $resp = $this->dbh->query($sql);
	    $resp->setFetchMode(($flags&DATABASE::FETCH_NUM)?PDO::FETCH_NUM:PDO::FETCH_ASSOC);
	}
    } catch (PDOException $e) {
    	$errmsg = $this->RecodeMessage($e->getMessage());
	throw new ADEIException(translate("SQL Query (%s) is failed with error: %s", $sql, $errmsg));
    }
//    echo "done\n";
    
    if (!$resp) {
	$e = $this->dbh->errorInfo();
    	$errmsg = $this->RecodeMessage($e[2]);
	throw new ADEIException(translate("SQL Query (%s) is failed. SQL Error: %u, Driver Error: %u, Message: %s ", $sql, $e[0], $e[1], $errmsg) . "[$sql]");
    }

    return $resp;
 }

 function Prepare($sql, $flags = 0) {
    if (!$this->dbh) 
        $this->ReConnect();
    
    if ($this->debug_sql) {
        echo " * " . $sql . "\n";
    }

    if ((!$this->connected)&&(($flags&DATABASE::GLOBAL_QUERY)==0))
	 throw new ADEIException(translate("The database is not specified"));

    try {
	$stmt = $this->dbh->prepare($sql);
    } catch (PDOException $e) {
	$throw = true;
	
	    // Link fault, retrying
	if ($e->getCode() == "08S01") {
	    try {
//		echo "Reconnecting\n";
		$this->Reconnect();
//		echo "Preparing New STMT\n";
		$stmt = $this->dbh->prepare($sql);
//		echo "Done\n";
		$throw = false;
	    } catch (PDOException $e2) {
	    }
	}
	if ($throw) {
	    $errmsg = $this->RecodeMessage($e->getMessage());
	    throw new ADEIException(translate("Can not prepare SQL query for execution, Server: %s, Database: %s, Error: %s [%s]", $this->server['title'], $this->dbname, $errmsg, $sql), $e->getCode());
	}
    }

    if (!$stmt) {
	$e = $this->dbh->errorInfo();
	$errmsg = $this->RecodeMessage($e[2]);
	throw new ADEIException(translate("Preparation of the SQL Query (%s) is failed. Server: %s, Database: %s, SQL Error: %u, Driver Error: %u, Message: %s [%s]", $sql, $this->server['title'], $this->dbname, $e[0], $e[1], $errmsg, $sql));
    }

    return $stmt;
 }

/*
 function statementBindColumn($stmt, $column, &$var, $type = PDO::PARAM_LOB) {
    $stmt->bindColumn($column, $var, $type);
 }

 function statementBindParam($stmt, $param, &$var, $type = PDO::PARAM_LOB) {
    $stmt->bindColumn($param, $var, $type);
 }
*/

 function InsertRequest($table, $values) {
    $columns = array_keys($values);

    $res = "INSERT INTO " . $this->tbl_quote_l . $table . $this->tbl_quote_r;

    if ($columns[0] === 0) {
	$res .= " VALUES(" . join(",", $values) . ")";
	// Inserting as array of all values
    } else {
	$res .= " (" . $this->col_quote_l . join($this->col_quote_r . "," . $this->col_quote_l, array_keys($values)) . $this->col_quote_r . ")";
	$res .= " VALUES(" . join(",", $values) . ")";
    }

    return $res;
 }

 function SelectRequest($table, $columns="*", array $req = NULL) {
    $res = "SELECT ";
    if ($req['limit']) {
	switch ($this->driver) {
	    case "mssql":
		$res .= "TOP " . $req['limit'] . " ";
	    break;
	    case "mysql":
		$suffix = " LIMIT " . $req['limit'];
	    break;
	    default:
		throw new ADEIException(translate("Don't know how to handle LIMIT for '%s'", $this->driver));
	}
    }
    
    if (is_array($columns)) {
	$last = array_pop($columns);
	if (!$last) 
	    throw new ADEIException(translate("Columns list is empty"));
	
	foreach ($columns as $item) {
	    $res .=  "\"" . $item/*['column']*/ . "\", ";
	}
	$res .= "\"" . $last . "\"";
    
    } else $res .= $columns;
    
    if (preg_match("/^[(\s]*SELECT/i", $table)) {
	$res .= " FROM " . $table;
    } else {
	$res .= " FROM " . $this->tbl_quote_l . $table . $this->tbl_quote_r;
    }

    if ($req['condition']) $cond = " WHERE " . $req['condition'];
    else $cond = "";
    
    if ($req['sampling']) {
	if (is_array($req['sampling'])) {
	    $slicer = $req['sampling']['slicer'];
	    $selector = $req['sampling']['selector'];
	} else {
	    $slicer = $req['sampling']['slicer'];
	    $selector = $req['sampling']['slicer'];
	}
	
	switch ($this->driver) {
	    case "mysql":
		$res .= ", (SELECT MAX($selector) AS tmptbl_sel FROM {$this->tbl_quote_l}$table{$this->tbl_quote_r} $cond GROUP BY FLOOR($slicer)) AS tmptbl";
		$res .= " WHERE  tmptbl.tmptbl_sel = $selector";
	    break;
	    default:
		$res .= " WHERE $selector IN (SELECT MAX($selector) FROM {$this->tbl_quote_l}$table{$this->tbl_quote_r} $cond GROUP BY FLOOR($slicer))";
	}
    } else {
	$res .= $cond;
    }
    if ($req['group']) $res .= " GROUP BY " . $req['group'];
    if ($req['order']) $res .= " ORDER BY " . $req['order'];
    
    return $res . $suffix;
 }

 function GetTimeFormat() {
//    if ($this->time_format) return $this->time_format;
    
    switch ($this->driver) {
	case "mysql":
	    return "\'YmdHis\'";
	case "mssql":
	    return "\'Ymd H:i:s\'";
	    /* Hm. Didn't work from Linux
	    return "Y-d-m H:i:s";*/
	    /* We can't use '.u' since it is formated with 6 digits after the 
	    decimal point, while the MSSQL complains if there are more than 3
	    return "Y-d-m H:i:s.u";*/
	default:
	    throw new ADEIException(translate("The date format for \"%s\" is not known", $this->driver));
    }
 }
 
 function SQLFunction($function, $args) {
    switch (strtolower($function)) {
     case "concat":
	switch($this->driver) {
	 case "mssql":
	    return "$args[0] + $args[1]";
	 default:
	    return "CONCAT({$args[0]}, {$args[1]})";
	}
     default:
        $res = "{$function}(";
        if ($args) {
    	    $res .= array_shift($args);
	    foreach ($args as $arg)
		$res .= ", $arg";
	    $res .= ")";
	}
	return $res;
    }
 }
 
 function GetTimeRequest($column_name) {
    switch ($this->driver) {
	case "mssql":
		// This seems never worked so far...
	    return "CONVERT(CHAR(24), {$this->col_quote_l}$column_name{$this->col_quote_r}, 21)";
	default:
	    return "{$this->col_quote_l}$column_name{$this->col_quote_r}";
    }
 }
 
 function  GetSlicerRequest($column_name) {
    switch ($this->driver) {
	case "mssql":
	    return "DATEDIFF(SECOND, '1970-01-01', {$this->col_quote_l}$column_name{$this->col_quote_r})";
	default:
	    return "{$this->col_quote_l}$column_name{$this->col_quote_r}";
    }
 }
 
 function ShowDatabases() {
    switch ($this->driver) {
	case "mysql":
	    return $this->Query("SHOW DATABASES", DATABASE::GLOBAL_QUERY|DATABASE::FETCH_NUM);
	case "mssql":
	    return $this->Query("SELECT name FROM master..sysdatabases", DATABASE::GLOBAL_QUERY|DATABASE::FETCH_NUM);
	default:
	    throw new ADEIException(translate("The ShowDatabases for \"%s\" is not implemented", $this->driver));
    }
 } 
 
 function ShowTables() {
    switch ($this->driver) {
	case "mysql":
	    return $this->Query("SHOW TABLES", DATABASE::FETCH_NUM);
	case "mssql":
		/* Bugs in ODBC/MySQL (with segm. in some cases,
		possibly http://bugs.php.net/bug.php?id=33533&edit=1
		*/
/*
	    $db = new DATABASE($this->server);
	    return $db->Query(" SELECT name AS gid FROM sysobjects WHERE type = 'U'");
*/

	    return $this->Query("SELECT name AS gid FROM sysobjects WHERE (type = 'U' OR type = 'V') ORDER BY gid ASC", DATABASE::FETCH_NUM);
	default:
	    throw new ADEIException(translate("The ShowTables for \"%s\" is not implemented", $this->driver));
    }
 }

 function FixTableName($table) {
    switch ($this->driver) {
	case "mssql":
	    $table = preg_replace("/^\[?mda\]?\./", "", $table);
	    $table = preg_replace("/(^\[|\]$)/", "", $table);
	break;
    }
    return $table;
 }

 function ShowColumns($table) {
    switch ($this->driver) {
	case "mysql":
	    return $this->Query("SHOW COLUMNS FROM `$table`", DATABASE::FETCH_NUM);
	case "mssql":
		/* we could get here problems if several non-equal tables with 
		different prefixes (mda,dbo) are present */
	    $table = $this->FixTableName($table);
/*	    $table = preg_replace("/^\[?mda\]?\./", "", $table);
	    $table = preg_replace("/(^\[|\]$)/", "", $table);*/
	    return $this->Query("SELECT name FROM (SELECT DISTINCT TOP 65535 name=syscolumns.name, type=systypes.name, length=syscolumns.length, objname=sysobjects.name, colid=syscolumns.colid
		FROM sysobjects 
		JOIN syscolumns ON sysobjects.id = syscolumns.id 
		JOIN systypes ON syscolumns.xtype=systypes.xtype
		WHERE (sysobjects.xtype='U' OR sysobjects.xtype='V')  AND sysobjects.name='$table'
		ORDER BY sysobjects.name,syscolumns.colid) AS tmptable", DATABASE::FETCH_NUM);
	default:
	    throw new ADEIException(translate("SHOW COLUMNS not implemented for %s", $this->driver));
    }
 }
 
 function CreateDatabase($dbname) {
    $this->Query("CREATE DATABASE `$dbname`", DATABASE::GLOBAL_QUERY);
 }
 
 
 function GetDatabaseList($filter = false) {
    $resp = $this->ShowDatabases();

    $dblist = array();

    foreach ($resp as $row) {
	$name = $row[0];
	if ((!$filter)||(preg_match($filter, $name))) {
	    $dblist[$name] = array(
		'name' => $name
	    );
	}
    }
    
    return $dblist;
 }

 function SQLTime($time) {
/*
    if (is_int($time))
	return strftime("%Y%m%d%H%M%S", $time);
    else {
	return strftime("%Y%m%d%H%M%S", floor($time)) . substr(sprintf("%.6F", $time - floor($time)), 1);
    }
*/
    return strftime("%Y%m%d%H%M%S", floor($time));

 }
 
 function __sleep() {
    return array('server', 'dbname', 'driver', 'odbc', 'connected');
 }
 
 function __wakeup() {
    $this->dbh = NULL;
    $this->connected = false;
 }
}


/* expecting rows in a form: chan1,chan2,...,chan#,time  */
class DATABASEData implements Iterator {
 var $reader;
 var $stmt;
 var $row;
 var $time;
 var $flags;
 
 const EMPTY_ON_ERROR = 1;
 
 function __construct(READER &$reader, PDOStatement &$stmt, $flags = 0) {
    $this->reader = &$reader;
    $this->stmt = &$stmt;
    $this->flags = $flags;
 }
 
 function rewind() {
    try {
	$this->stmt->execute();
	$this->next();
    } catch(PDOException $e) {
	if ($this->flags&DATABASEData::EMPTY_ON_ERROR) {
	    unset($this->row);
	} else {
	    throw new ADEIException(translate("SQL request is failed with error") . ": " . $e->getMessage(), $e->getCode());
	}
    }
 }
 
    // current element
 function current() {
    return $this->row;
 }
 
    // current key (PHP rounding to integer :()
 function key() {
/*    echo $this->time;
    echo "  -  ";
    echo date('Y-m-d', $this->reader->ExportUnixTime($this->time));
    echo "\n";*/
    return $this->reader->ExportUnixTime($this->time);
 }
 
    // advvance to next (and returns it or false)
 function next() {
    try {
	$this->row = $this->stmt->fetch(PDO::FETCH_NUM);
	if ($this->row) {
	    $last = sizeof($this->row) - 1;
	    $this->time = $this->row[$last];
	    unset($this->row[$last]);
	}
    } catch(PDOException $e) {
//	$err = $this->RecodeMessage($e->getMessage());
	$err = $e->getMessage();
	throw new ADEIException(translate("SQL error: %s", $err));
    }
 }
 
    // checks if there is current element
 function valid() {
    return $this->row?true:false;
 }
}

?>