forked from ifsnop/mysqldump-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysqldump.php
507 lines (440 loc) · 14.6 KB
/
mysqldump.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
<?php
class Mysqldump
{
const MAXLINESIZE = 1000000;
// This can be set both on constructor or manually
public $host;
public $user;
public $pass;
public $db;
public $fileName = 'dump.sql';
// Internal stuff
private $settings = array();
private $tables = array();
private $views = array();
private $dbHandler;
private $defaultSettings = array(
'include-tables' => array(),
'exclude-tables' => array(),
'compress' => CompressMethod::NONE,
'no-data' => false,
'add-drop-table' => false,
'single-transaction' => true,
'lock-tables' => false,
'add-locks' => true,
'extended-insert' => true
);
private $compressManager;
/**
* Constructor of Mysqldump. Note that in the case of an SQLite database connection, the filename must be in the $db parameter.
*
* @param string $db Database name
* @param string $user SQL account username
* @param string $pass SQL account password
* @param string $host SQL server to connect to
* @return null
*/
public function __construct($db = '', $user = '', $pass = '', $host = 'localhost', $type="mysql", $settings = null, $pdo_options = array(PDO::ATTR_PERSISTENT => true, PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION))
{
$this->db = $db;
$this->user = $user;
$this->pass = $pass;
$this->host = $host;
$this->type = strtolower($type);
$this->pdo_options = $pdo_options;
$this->settings = $this->extend($this->defaultSettings, $settings);
}
/**
* jquery style extend, merges arrays (without errors if the passed
* values are not arrays)
*
* @param array $args default settings
* @param array $extended user settings
*
* @return array $extended merged user settings with default settings
*/
public function extend()
{
$args = func_get_args();
$extended = array();
if (is_array($args) && count($args) > 0) {
foreach ($args as $array) {
if (is_array($array)) {
$extended = array_merge($extended, $array);
}
}
}
return $extended;
}
/**
* Connect with PDO
*
* @return bool
*/
private function connect()
{
// Connecting with PDO
try {
switch ($this->type){
case 'sqlite':
$this->dbHandler = new PDO("sqlite:" . $this->db, null, null, $this->pdo_options);
break;
case 'mysql': case 'pgsql': case 'dblib':
$this->dbHandler = new PDO($this->type . ":host=" . $this->host.";dbname=" . $this->db, $this->user, $this->pass, $this->pdo_options);
// Fix for always-unicode output
$this->dbHandler->exec("SET NAMES utf8");
break;
default:
throw new \Exception("Unsupported database type: " . $this->type, 3);
}
} catch (PDOException $e) {
throw new \Exception("Connection to " . $this->type . " failed with message: " .
$e->getMessage(), 3);
}
$this->dbHandler->setAttribute(PDO::ATTR_ORACLE_NULLS, PDO::NULL_NATURAL);
$this->adapter = new TypeAdapter($this->type);
}
/**
* Main call
*
* @param string $filename Name of file to write sql dump to
* @return bool
*/
public function start($filename = '')
{
// Output file can be redefined here
if ( !empty($filename) ) {
$this->fileName = $filename;
}
// We must set a name to continue
if ( empty($this->fileName) ) {
throw new \Exception("Output file name is not set", 1);
}
// Connect to database
$this->connect();
// Create a new compressManager to manage compressed output
$this->compressManager = CompressManagerFactory::create($this->settings['compress']);
if (! $this->compressManager->open($this->fileName)) {
throw new \Exception("Output file is not writable", 2);
}
// Formating dump file
$this->compressManager->write($this->getHeader());
// Listing all tables from database
$this->tables = array();
foreach ($this->dbHandler->query($this->adapter->show_tables($this->db)) as $row) {
if (empty($this->settings['include-tables']) || (! empty($this->settings['include-tables']) && in_array(current($row), $this->settings['include-tables'], true))) {
array_push($this->tables, current($row));
}
}
// Exporting tables one by one
foreach ($this->tables as $table) {
if (in_array($table, $this->settings['exclude-tables'], true)) {
continue;
}
$is_table = $this->getTableStructure($table);
if (true === $is_table && false === $this->settings['no-data']) {
$this->listValues($table);
}
}
// Exporting views one by one
foreach ($this->views as $view) {
$this->compressManager->write($view);
}
$this->compressManager->close();
}
/**
* Returns header for dump file
*
* @return null
*/
private function getHeader()
{
// Some info about software, source and time
$header = "-- sqldump-php SQL Dump\n" .
"-- https://github.com/clouddueling/mysqldump-php\n" .
"--\n" .
"-- Host: {$this->host}\n" .
"-- Generation Time: " . date('r') . "\n\n" .
"--\n" .
"-- Database: `{$this->db}`\n" .
"--\n\n";
return $header;
}
/**
* Table structure extractor
*
* @param string $tablename Name of table to export
* @return null
*/
private function getTableStructure($tablename)
{
$stmt = $this->adapter->show_create_table($tablename);
foreach ($this->dbHandler->query($stmt) as $r) {
if (isset($r['Create Table'])) {
$this->compressManager->write("-- " .
"--------------------------------------------------------" .
"\n\n" .
"--\n" .
"-- Table structure for table `$tablename`\n--\n\n");
if ($this->settings['add-drop-table']) {
$this->compressManager->write("DROP TABLE IF EXISTS `$tablename`;\n\n");
}
$this->compressManager->write($r['Create Table'] . ";\n\n");
return true;
}
if ( isset($r['Create View']) ) {
$view = "-- " .
"--------------------------------------------------------" .
"\n\n";
$view .= "--\n-- Table structure for view `$tablename`\n--\n\n";
$view .= $r['Create View'] . ";\n\n";
$this->views[] = $view;
return false;
}
}
}
/**
* Table rows extractor
*
* @param string $tablename Name of table to export
* @return null
*/
private function listValues($tablename)
{
$this->compressManager->write(
"--\n" .
"-- Dumping data for table `$tablename`\n" .
"--\n\n"
);
if ($this->settings['single-transaction']) {
$this->dbHandler->exec($this->adapter->start_transaction());
}
if ($this->settings['lock-tables']) {
$lockstmt = $this->adapter->lock_table($tablename);
if(strlen($lockstmt)){
$this->dbHandler->exec($lockstmt);
}
}
if ( $this->settings['add-locks'] ) {
$this->compressManager->write($this->adapter->start_add_lock_table($tablename));
}
$onlyOnce = true; $lineSize = 0;
$stmt = "SELECT * FROM `$tablename`";
foreach ($this->dbHandler->query($stmt, PDO::FETCH_NUM) as $r) {
$vals = array();
foreach ($r as $val) {
$vals[] = is_null($val) ? "NULL" :
$this->dbHandler->quote($val);
}
if ($onlyOnce || !$this->settings['extended-insert'] ) {
$lineSize += $this->compressManager->write("INSERT INTO `$tablename` VALUES (" . implode(",", $vals) . ")");
$onlyOnce = false;
} else {
$lineSize += $this->compressManager->write(",(" . implode(",", $vals) . ")");
}
if ( ($lineSize > Mysqldump::MAXLINESIZE) ||
!$this->settings['extended-insert'] ) {
$onlyOnce = true;
$lineSize = $this->compressManager->write(";\n");
}
}
if (! $onlyOnce) {
$this->compressManager->write(";\n");
}
if ($this->settings['add-locks']) {
$this->compressManager->write($this->adapter->end_add_lock_table($tablename));
}
if ($this->settings['single-transaction']) {
$this->dbHandler->exec($this->adapter->commit_transaction());
}
if ($this->settings['lock-tables']) {
$lockstmt = $this->adapter->unlock_table($tablename);
if(strlen($lockstmt)){
$this->dbHandler->exec($lockstmt);
}
}
}
}
/**
* Enum with all available compression methods
*
*/
abstract class CompressMethod
{
const NONE = 0;
const GZIP = 1;
const BZIP2 = 2;
public static $enums = array(
"None",
"Gzip",
"Bzip2"
);
public static function isValid($c)
{
return in_array($c, self::$enums);
}
}
abstract class CompressManagerFactory
{
private $fileHandle = null;
public static function create($c)
{
$c = ucfirst(strtolower($c));
if (! CompressMethod::isValid($c)) {
throw new \Exception("Compression method is invalid", 1);
}
$method = "Compress" . $c;
return new $method();
}
}
class CompressBzip2 extends CompressManagerFactory
{
public function __construct()
{
if (! function_exists("bzopen")) {
throw new \Exception("Compression is enabled, but bzip2 lib is not installed or configured properly", 1);
}
}
public function open($filename)
{
$this->fileHandler = bzopen($filename . ".bz2", "w");
if (false === $this->fileHandler) {
return false;
}
return true;
}
public function write($str)
{
$bytesWritten = 0;
if (false === ($bytesWritten = bzwrite($this->fileHandler, $str))) {
throw new \Exception("Writting to file failed! Probably, there is no more free space left?", 4);
}
return $bytesWritten;
}
public function close()
{
return bzclose($this->fileHandler);
}
}
class CompressGzip extends CompressManagerFactory
{
public function __construct()
{
if (! function_exists("gzopen") ) {
throw new \Exception("Compression is enabled, but gzip lib is not installed or configured properly", 1);
}
}
public function open($filename)
{
$this->fileHandler = gzopen($filename . ".gz", "wb");
if (false === $this->fileHandler) {
return false;
}
return true;
}
public function write($str)
{
$bytesWritten = 0;
if (false === ($bytesWritten = gzwrite($this->fileHandler, $str))) {
throw new \Exception("Writting to file failed! Probably, there is no more free space left?", 4);
}
return $bytesWritten;
}
public function close()
{
return gzclose($this->fileHandler);
}
}
class CompressNone extends CompressManagerFactory
{
public function open($filename)
{
$this->fileHandler = fopen($filename, "wb");
if (false === $this->fileHandler) {
return false;
}
return true;
}
public function write($str)
{
$bytesWritten = 0;
if (false === ($bytesWritten = fwrite($this->fileHandler, $str))) {
throw new \Exception("Writting to file failed! Probably, there is no more free space left?", 4);
}
return $bytesWritten;
}
public function close()
{
return fclose($this->fileHandler);
}
}
class TypeAdapter
{
public function __construct($type){
$this->type = $type;
}
public function show_create_table($tablename){
switch($this->type){
case 'sqlite':
return "select tbl_name as 'Table', sql as 'Create Table' from sqlite_master where type='table' and tbl_name='$tablename'";
default:
return "SHOW CREATE TABLE `$tablename`";
}
}
public function show_tables($dbName){
switch($this->type){
case 'sqlite':
return "SELECT tbl_name FROM sqlite_master where type='table'";
default:
return "SELECT TABLE_NAME AS tbl_name FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE='BASE TABLE' AND TABLE_SCHEMA='$dbName'";
}
}
public function start_transaction(){
switch($this->type){
case 'sqlite':
return "BEGIN EXCLUSIVE";
default:
return "SET GLOBAL TRANSACTION ISOLATION LEVEL REPEATABLE READ; START TRANSACTION";
}
}
public function commit_transaction(){
switch($this->type){
case 'sqlite':
return "COMMIT";
default:
return "SET GLOBAL TRANSACTION ISOLATION LEVEL REPEATABLE READ; START TRANSACTION";
}
}
public function lock_table($tablename){
switch($this->type){
case 'sqlite':
return "";
default:
return "LOCK TABLES `$tablename` READ LOCAL";
}
}
public function unlock_table($tablename){
switch($this->type){
case 'sqlite':
return "";
default:
return "UNLOCK TABLES";
}
}
public function start_add_lock_table($tablename){
switch($this->type){
case 'sqlite':
return "\n";
default:
return "LOCK TABLES `$tablename` WRITE;\n";
}
}
public function end_add_lock_table($tablename){
switch($this->type){
case 'sqlite':
return "\n";
default:
return "UNLOCK TABLES;\n";
}
}
}