-
Notifications
You must be signed in to change notification settings - Fork 0
/
Schema.php
190 lines (146 loc) · 3.16 KB
/
Schema.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
<?php
namespace TRW\ActiveRecord;
use PDO;
use Exception;
use TRW\ActiveRecord\BaseRecord;
/**
* このクラスはレコードクラスが使用しているテーブルのスキーマを表すクラス
*
* @access private
*/
class Schema {
/**
* スキーマの型を定義している.
*/
const
INTEGER = 'integer',
DOUBLE = 'double',
FLOAT = 'double',
STRING = 'string',
DATETIME = 'datetime';
/**
* データベーステーブル名.
*
* @var string
*/
private $table;
/**
* テーブルのスキーマ.
*
* 次の構造をしている<br>
* $schema = [ <br>
* 'name' => [ <br>
* 'type' => text, <br>
* 'null' => true, <br>
* 'key' => false, <br>
* 'default' => 'anonymous', <br>
* 'extra' => ''<br>
* ],<br>
* :<br>
* :<br>
* : <br>
* ];<br>
*
* @var array
*/
private $schema;
/**
* カラムの名前と値.
*
* 次の構造をしている<br>
* $columns =<br>
* [<br>
* 'id' => 1, <br>
* 'name' => 'foo' <br>
* 'age' => 20, <br>
* ];<br>
*
* @var array;
*/
private $columns;
/**
* カラムの名前とデフォルト値.
*
* @var array
*/
private $defaults;
public function __construct($table){
$this->table = $table;
}
/**
* テーブル名を返す.
*
* @param string $table
* @return string @param
*/
public function table($table = null){
if($table !== null){
return $this->table = $table;
}
return $this->table;
}
/**
* データベーステーブルのスキーマを返す.
*
* @return array データベーステーブルのスキーマ
*/
public function schema(){
if(empty($this->schema)){
$this->schema = BaseRecord::schema($this->table);
}
return $this->schema;
}
/**
* データベーステーブルのカラムとその情報を返す.
*
*
* @return array カラムとその情報
*/
public function columns(){
if(empty($this->columns)){
if(empty($this->schema)){
$this->schema();
if(empty($this->schema)){
throw new Exception('missing table from ' . $this->table);
}
}
foreach($this->schema as $row){
$type = $row['Type'];
$field = $row['Field'];
if(preg_match('/int\(.*\)/',$type)
|| preg_match('/bigint\(.*\)/', $type)
|| preg_match('/tinyint\(.*\)/', $type) ){
$result[$field] = self::INTEGER;
}else if($type === 'float' || $type === 'double'){
$result[$field] = self::DOUBLE;
}else if(preg_match('/char\(.*\)/', $type) ||
preg_match('/[tiny|midium|long]text/', $type) || $type === 'text' ){
$result[$field] = self::STRING;
}else if($type === 'timestamp'){
$result[$field] = self::DATETIME;
}
}
$this->columns = $result;
}
return $this->columns;
}
/**
* データベーステーブルのカラムとその初期値を返す.
*
* @return array データベーステーブルのカラムとその初期値
*/
public function defaults(){
if(empty($this->defaults)){
if(empty($this->schema)){
$this->schema();
if(empty($this->schema)){
throw new Exception('missing table from ' . $this->table);
}
}
foreach($this->schema as $row){
$this->defaults[$row['Field']] = $row['Default'];
}
}
return $this->defaults;
}
}