forked from muatik/mysqlDiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbDiffs.php
executable file
·185 lines (142 loc) · 3.93 KB
/
dbDiffs.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
<?php
/**
* http://github.com/muatik/dbDiffs
* http://cookingthecode.com/a48_Veritabanlari-Arasindaki-Farklar
* Mustafa Atik
* Apr 14 2011
* */
require_once('db.php');
require_once('arrays.php');
class dbDiffs
{
public $db;
public function __construct(){
// tablo karşılaştırma kriterleri.
$this->tableFields=array(
'ENGINE','TABLE_COLLATION','TABLE_COMMENT'
);
// sütun karşılaştırma kriterleri
$this->columnFields=array(
'COLUMN_TYPE','COLUMN_DEFAULT','IS_NULLABLE',
'CHARACTER_SET_NAME','COLLATION_NAME',
'COLUMN_KEY','EXTRA','COLUMN_COMMENT'
);
$this->db=new db();
$this->db->database='information_schema';
}
/**
* Adı belirtilen iki veritabanını arasındaki farklılıkları bulur
* @param db1 birinci veritabanının adı
* @param db2 ikinci veritabanının adı
* @return array
* */
public function check($db1Name,$db2Name){
$diffs=new stdClass;
$db1=new stdClass;
$db2=new stdClass;
$db1->tables=$this->fetchTables($db1Name);
$db2->tables=$this->fetchTables($db2Name);
// db1'in db2'den farklı tabloları alınıyor
$diffs->tableDiff=arrays::diff(
$db2->tables,$db1->tables,'TABLE_NAME','to'
);
// db2'in db1'den farklı tabloları alınıyor
$diffs->tableDiffr=arrays::diff(
$db2->tables,$db1->tables,'TABLE_NAME','from'
);
// ikisinde de olan tablo listesi hazırlanıyor
$tables=arrays::intersect(
$db1->tables,$db2->tables,'TABLE_NAME'
);
foreach($tables as $t){
// iki tablo yapısı karşılaştırılıyor
$tblDiff=$this->compareObjects(
$db1->tables[$t],
$db2->tables[$t],
$this->tableFields
);
if(count($tblDiff)>0)
$diffs->tables[$t]->structure=$tblDiff;
// tablo sütunları çekiliyor
$t1Clm=$this->fetchColumns($db1Name,$t);
$t2Clm=$this->fetchColumns($db2Name,$t);
// db1 tablosu ile db2 tablosu arasındaki sütun
// farklılıklarına bakılıyor
$diffs->tables[$t]->columnDiff=arrays::diff(
$t1Clm,$t2Clm,'COLUMN_NAME','to'
);
// ve tam tersi, db2'nin db1'den farkları
$diffs->tables[$t]->columnDiffr=arrays::diff(
$t1Clm,$t2Clm,'COLUMN_NAME','from'
);
// ikisinde de olan sütun listesi hazırlanıyor
$columns=arrays::intersect(
$t1Clm,$t2Clm,'COLUMN_NAME'
);
foreach($columns as $c){
// iki tablo yapısı karşılaştırılıyor
$cDiff=$this->compareObjects(
$t1Clm[$c],
$t2Clm[$c],
$this->columnFields
);
if(count($cDiff)>0)
$diffs->tables[$t]->columns[$c]=$cDiff;
}
}
return $diffs;
}
/**
* iki nesneyi belirtilen alanlara göre karşılaştırır ve
* uyuşmazlıkları verir.
* @param object o1 ilk nesne
* @param object o2 ikinci nesne
* @param filelds karşılaştırmanın yapılacağı nesne özellikleri
* @return array farklılıklar
* */
private function compareObjects($o1,$o2,$fields){
$diffs=array();
foreach($fields as $f){
if($o1->$f==$o2->$f) continue;
$diff=array('field'=>$f,'value1'=>$o1->$f,
'value2'=>$o2->$f
);
$diffs[]=$diff;
}
return $diffs;
}
/**
* Belirtilen veritabanındaki tablo kayıtlarını verir.
* @param db veritabanının adı
* */
public function fetchTables($db){
$sql='select * from TABLES
where TABLE_SCHEMA=\''.$db.'\'';
$rs=$this->db->fetch($sql);
$rs2=array();
foreach($rs as $i)
$rs2[$i->TABLE_NAME]=$i;
return $rs2;
}
/**
* Belirtilen tablodaki sütun kayıtlarını verir.
* */
public function fetchColumns($db,$table){
$sql='select * from COLUMNS
where TABLE_SCHEMA=\''.$db.'\' and TABLE_NAME=\''.$table.'\'';
$rs=$this->db->fetch($sql);
$rs2=array();
foreach($rs as $i)
$rs2[$i->COLUMN_NAME]=$i;
return $rs2;
}
/**
* Erişim iznine sahip veritabanlarının listesini verir.
* */
public function getDbList(){
return $this->db->fetch(
'select SCHEMA_NAME as name from SCHEMATA'
);
}
}
?>