-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPerfORMController.php
471 lines (404 loc) · 10.9 KB
/
PerfORMController.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
<?php
/**
* PerfORM - Object-relational mapping based on David Grudl's dibi
*
* @copyright Copyright (c) 2010 Eduard 'edke' Kracmar
* @license no license set at this point
* @link http://perform.local :-)
* @category PerfORM
* @package PerfORM
*/
/**
* PerfORMController
*
* Enviroment for PerfORM:
* - database operations
* - models collection
* - configuration options
* - builder loader
* - driver and dibi connection
* - cache
* - sql buffer for pretty examples
*
*
* @final
* @copyright Copyright (c) 2010 Eduard 'edke' Kracmar
* @package PerfORM
*/
final class PerfORMController
{
/**
* Instance of cache used by models
* @var Cache
*/
protected static $cache;
/**
* Instance of dibi connection used by models and controler
* @var DibiConnection
*/
protected static $connection;
/**
* Collection of all application models
* @var array
*/
protected static $models= null;
/**
* Instance of PerfORMModelCacheBuilder
* @var PerfORMModelCacheBuilder
*/
protected static $cacheBuilder;
/**
* Array of executed sql queries, used for prettier examples
* @var array
*/
protected static $sqlBuffer= array();
/**
* Controls whether model uses cache or not
* @var boolean
*/
protected static $modelCaching= true;
/**
* Array of instances of PerfORMSqlBuilders
* @var array
*/
protected static $sqlBuilders= array();
/**
* Adds sql query to buffer
* @param string $sql
*/
public static function addSql($sql)
{
if ( !empty($sql))
{
self::$sqlBuffer[]= $sql;
}
}
/**
* Disables model caching
*/
public static function disableModelCaching()
{
self::$modelCaching= false;
}
/**
* Enables model caching
*/
public static function enableModelCaching()
{
self::$modelCaching= true;
}
/**
* Executes sql query in transaction
* @param string $sql
*/
protected static function execute($sql)
{
self::getConnection()->nativeQuery($sql);
}
/**
* Getter for Cache instance
* Creates instance if called for the first time
* Creates MemcachedStorage if extension memcache exists
* Otherwise FileStorage Cache is created
* Triggers notice if config variable advertisememcached in perform block is not set to false
* @return Cache
*/
public static function getCache()
{
if ( !self::$cache)
{
$config= Environment::getConfig('perform');
if (extension_loaded('memcache'))
{
self::$cache= new Cache(new MemcachedStorage($config->memcache_host, $config->memcache_port, $config->cache_prefix));
$namespace= self::$cache;
$namespace['test']= true;
if ( $namespace['test'] === true)
{
return self::$cache;
}
}
self::$cache= Environment::getCache($config->cache_prefix);
if ($config->advertisememcached) trigger_error("FileCache enabled, use Memcached if possible. Turn off this warning by setting advertisememcached to false", E_USER_WARNING);
}
return self::$cache;
}
/**
* Getter for dibi connection
* @return DibiConnection
*/
public static function getConnection()
{
if ( !self::$connection)
{
self::$connection= dibi::getConnection();
}
return self::$connection;
}
/**
* Getter for SqlBuilder with $name
* @param string $name
* @return PerfORMSqlBuilder
*/
public static function getBuilder($name = 'default')
{
if ( !key_exists($name, self::$sqlBuilders))
{
$builderClassName= self::getBuilderName();
self::$sqlBuilders[$name]= new $builderClassName;
}
return self::$sqlBuilders[$name];
}
/**
* Getter for SqlBuilder class name
* @return string
*/
protected static function getBuilderName($driverName = null)
{
if ( is_null($driverName))
{
$driverName= self::getConnection()->getConfig('driver');
}
$builderClassName= 'PerfORM'.ucwords($driverName).'Builder';
if ( !class_exists($builderClassName))
{
throw new Exception("builder for driver '$driverName' not found");
}
return $builderClassName;
}
/**
* Getter for all models in application
* @return array
*/
public static function getModels()
{
if ( is_null(self::$models))
{
self::$cacheBuilder= new PerfORMModelCacheBuilder();
self::$cacheBuilder->addDirectory(APP_DIR);
self::$cacheBuilder->rebuild();
self::$models= self::$cacheBuilder->getModels();
}
return self::$models;
}
/**
* Getter and cleaner for all sql queries in buffer
* @return array|boolean
*/
public static function getSqlBufferAndClear()
{
$buffer= self::$sqlBuffer;
self::$sqlBuffer= array();
return ( is_array($buffer) and count($buffer)>0 ) ? $buffer : false;
}
/**
* Runs query and inserts it's sql code in buffer
*/
public static function queryAndLog()
{
$args= func_get_args();
self::getConnection()->query($args);
self::addSql(dibi::$sql);
}
/**
* Models operation for showing database structure for defined models
* @return string
*/
public static function sqlall()
{
foreach( self::getModels() as $model)
{
self::getBuilder()->createTable($model);
foreach($model->getIndexes() as $index)
{
self::getBuilder()->createIndex($index);
}
}
return self::getBuilder()->getSql();
}
/**
* Models operation for clearing database structure for defined models
* If confirm is set, sql code will be executed
* @param boolean> $confirm
* @return string
*/
public static function sqlclear($confirm = false)
{
$storage= new PerfORMStorage();
$storage->begin();
foreach( self::getModels() as $model)
{
if ( $storage->hasModel($model) )
{
$model->isTable() ? $storage->dropTable($model) : $storage->dropView($model);
}
}
$sql= $storage->process();
if ( !is_null($sql) && $confirm )
{
self::getConnection()->begin();
self::execute($sql);
self::getConnection()->commit();
}
$confirm ? $storage->commit() : $storage->rollback();
return $sql;
}
/**
* Creates storage for current modelset and ignores database structure
* If confirm is set, sql code for storage will be executed
* @param boolean $confirm
* @return boolean
*/
public static function sqlset($confirm = false)
{
$storage= new PerfORMStorage();
$storage->begin();
$storage->trash();
foreach( self::getModels() as $model)
{
$model->isTable() ? $storage->insertTable($model) : $storage->insertView($model);
}
# create index storage info
foreach($model->getIndexes() as $index)
{
$storage->addIndexToModel($index);
}
$storage->set();
$confirm ? $storage->commit() : $storage->rollback();
}
/**
* Models operation for syncing database structure with defined models
* If confirm is set, sql code will be executed
* @param boolean $confirm
* @return string
*/
public static function syncdb($confirm = false)
{
$storage= new PerfORMStorage();
$storage->begin();
self::getConnection()->begin();
/* first run: check models against storage, finds models to create and models to alter */
foreach( self::getModels() as $model)
{
# model exists
if ( $storage->hasModel($model) )
{
# model out of sync
if ( !$storage->modelHasSync($model) && $model->isTable() )
{
# checking fields in model against storage
foreach( $model->getFields() as $field)
{
# field exists
if ( $storage->fieldBelongsToItsModel($field))
{
# field out of sync
if ( !$storage->fieldHasSync($field))
{
#$ident= $model->getTableName().'-'.$field->getName().'-'.$field->getHash();
$columnInfo= self::getConnection()->getDatabaseInfo()->getTable($model->getTableName())->getColumn($field->getRealName());
# changing datatype
if ( !self::getBuilder()->hasNativeType($field, $columnInfo->getNativeType() ) or
($field->getType() == $columnInfo->getType() and $field->getType() == 's' and $field->getSize() != $columnInfo->getSize()) or
(get_class($field) == 'DecimalField' and $columnInfo->getNativeType() == 'NUMERIC' and
($field->getDigits() != $columnInfo->getVendorInfo('numeric_precision') or
$field->getDecimals() != $columnInfo->getVendorInfo('numeric_scale')) )
)
{
$storage->changeFieldType($field);
}
# other changes
else {
# changing null to not null
if ( !$field->isNullable() and $columnInfo->isNullable() )
{
$storage->changeFieldToNotNullable($field);
}
# changing not null to null
if ( $field->isNullable() and !$columnInfo->isNullable() )
{
$storage->changeFieldToNullable($field);
}
# changing default value
if ( self::getBuilder()->translateDefault($field) != $columnInfo->getDefault() )
{
$storage->changeFieldDefaultValue($field);
}
}
}
}
else {
$storage->addFieldToModel($field);
}
}
# checking storage against model
foreach( $storage->getModelFields($model) as $storageField)
{
if ( !key_exists($storageField->name, $model->getFields() ))
{
$storage->dropFieldFromModel($storageField->name, $model);
}
}
# checking storage indexes against model
foreach( $storage->getModelIndexes($model) as $storageIndex)
{
if ( !key_exists($storageIndex->name, $model->getIndexes() ))
{
$storage->dropIndexFromModel($storageIndex->name, $model);
}
}
# checking indexes in model against storage
foreach($model->getIndexes() as $index)
{
# index does not exists
if ( $model->isTable() && !$storage->modelHasIndex($index))
{
$storage->addIndexToModel($index);
}
}
}
}
# model does not exists, create
else
{
$model->isTable() ? $storage->insertTable($model) : $storage->insertView($model);
}
}
/* second run: check storage against tables, finds tables to drop */
foreach( $storage->getTables() as $storageTable)
{
if ( !key_exists($storageTable->name, self::getModels()))
{
$storage->dropTable($storageTable->name);
}
}
/* third run: check storage against views, finds views to drop */
foreach( $storage->getViews() as $storageView)
{
if ( !key_exists($storageView->name, self::getModels()))
{
$storage->dropView($storageView->name);
}
}
$sql= $storage->process();
if ( !is_null($sql) && $confirm )
{
self::execute($sql);
self::getConnection()->commit();
$storage->commit();
}
else {
self::getConnection()->rollback();
$storage->rollback();
}
return $sql;
}
/**
* Getter which controls if models will use caching
* @return boolean
*/
public static function useModelCaching()
{
return self::$modelCaching;
}
}