-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActiveRecord.php
executable file
·243 lines (239 loc) · 6.85 KB
/
ActiveRecord.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
<?php
namespace BlueSeed;
/**
*
* The Active Record make possible persist data from VO's
* @author ivonascimento <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php BSD
*
*/
abstract class ActiveRecord{
/**
* the reflection of VO instance save fields name here
* @var Array $fields
* @access private
*/
private $fields = Array();
/**
*
* reflection of VO instance save the fields values here
* @var Array $values
* @access private
*/
private $values = Array();
/**
*
* the VO Name retrieved using reflectoion
* @var string $type
* @access private
*/
private $type;
/**
*
* the instance of System Annotation Used to return meta data from instance
* @var SystemAnnotation $sa
* @access private
*/
private $sa;
public function getMeta()
{
$meta = New \StdClass();
$meta->fields = $this->fields;
$meta->type = $this->type;
$meta->systemAnnotation = $this->sa;
return $meta;
}
/**
*
* This function load the Metadata from instance
* @return void
* @access private
*
*/
private function loadMeta(){
$this->fields = Array();
$this->values = Array();
$rInstance = new \ReflectionClass($this);
$this->type = $rInstance->getName();
$this->sa = \BlueSeed\SystemAnnotation::createasClass( $rInstance->getName() );
$properties = $rInstance->GetProperties( \ReflectionProperty::IS_PUBLIC);
foreach ($properties as $name => $property){
array_push($this->fields, ($fname= $property->getName()) );
array_push($this->values, $this->$fname ) ;
}
}
/**
*
* This function return the name of Index by Table referenced by VO
* @return string
* @access public
*/
public function getIndexName(){
$this->loadMeta();
return $this->sa->get('@indexName');
}
/**
*
* this function return the value of Index
* @return mixed
* @access public
*/
public function getIndexValue(){
$this->loadMeta();
$idxn = $this->getIndexName();
return $this->$idxn;
}
/**
*
* return the table name the VO represent
* @return $string
* @access public
*/
public function getTableName(){
$this->loadMeta();
return $this->sa->get('@tableName');
}
/**
*
* return the Connection Name to use when persist data from VO
* @return string
* @access public
*/
public function getConnectionName(){
$this->loadMeta();
return $this->sa->get('@connectionName');
}
/**
*
* set a value to index field
* @access private
* @param mixed $value
* @return void
*/
private function setIndexValue($value){
$this->loadMeta();
$idxname = $this->getIndexName();
$this->$idxname = $value;
}
/**
*
* Fetches all records in a table
* @access public
*/
public static function fetchAll(){
$vo = get_called_class();
$vo = new $vo();
$result = Search::Select($vo)->exec();
return $result;
}
/**
*
* Find a record and return a instance of VO object used to start
* the find by index
* @access public
* @param mixed $idvalue
* @param ValueObject
*/
public static function find($idvalue){
$vo = get_called_class();
$vo = new $vo();
$vo->setIndexValue($idvalue);
$result = Search::Select($vo)->Where()->equal($vo->getIndexName())->exec();
return (count($result)==1)?$result[0]:null;
}
/**
*
* Persist the data from VO into your Table representation
* The save verify if exist index value and update without, do a insert
* if insert, the VO index updated to index from insert
* @access public
* @return void
*/
public function save(){
$this->loadMeta();
if (is_null($this->getIndexValue())){
$id = $this->insert();
$this->setIndexValue($id);
}
else
$this->update();
}
/**
*
* Update a record represented by VO using the index value
* @return void
* @access private
*/
private function update(){
$updateTerm = Array();
foreach ($this->fields as $idx => $field){
if ($field != $this->getIndexName() )
array_push ($updateTerm, "{$field}= :{$field}");
}
$updatestr = implode(",",$updateTerm);
$stmt = Database::getInstance()->get( $this->getConnectionName() )->get()->prepare(
"update {$this->getTableName()} set {$updatestr} where {$this->getIndexName()} = '{$this->getIndexValue()}';"
);
foreach ($this->fields as $idx => $field){
if ($field != $this->getIndexName() )
$stmt->bindParam(":{$field}", $this->values[$idx]);
}
$stmt->execute();
}
/**
*
* Insert a record into table linked to VO
* @access private
* @return void
*/
private function insert(){
$fields = array();
foreach ($this->fields as $idx => $field) {
if (!(($field == $this->getIndexName()) && (is_null($this->values[$idx]))))
$fields[] = $field;
}
$stmt = Database::getInstance()->get( $this->getConnectionName() )->get()->prepare(
"insert into {$this->getTableName()} (".implode(",",$fields).") values(:".implode(",:",$fields).");"
);
foreach ($this->fields as $idx => $field){
if ($field == $this->getIndexName())
continue;
$stmt->bindValue(":{$field}", $this->values[$idx]);
}
$this->execute($stmt);
return Database::getInstance()->
get( $this->getConnectionName() )->
get()->
lastInsertId("{$this->getTableName()}_{$this->getIndexName()}_seq");
}
/**
*
* delete a record using the index
* @access public
* @return void
*/
public function delete(){
$this->loadMeta();
$stmt = Database::getInstance()->get( $this->getConnectionName() )->get()->prepare(
"delete from {$this->getTableName()} where {$this->getIndexName()} = :{$this->getIndexName()};"
);
$value = $this->getIndexValue();
$stmt->bindParam(":{$this->getIndexName()}", $value );
$stmt->execute();
$this->setIndexValue(null);
}
/**
*
* @return bool
* @param \PDO $stmt
* @access private
*/
private function execute(&$stmt)
{
$stmt->execute();
$err = $stmt->ErrorInfo();
if ($err[0]!='0000') {
throw New \PDOException($err[2], $err[0]);
}
}
}