diff --git a/lib/Doctrine/Connection/UnitOfWork.php b/lib/Doctrine/Connection/UnitOfWork.php
index aacbd8bf7..109c0219c 100644
--- a/lib/Doctrine/Connection/UnitOfWork.php
+++ b/lib/Doctrine/Connection/UnitOfWork.php
@@ -161,6 +161,7 @@ class Doctrine_Connection_UnitOfWork extends Doctrine_Connection_Module
$record->preSave($event);
$record->getTable()->getRecordListener()->preSave($event);
+ $state = $record->state();
if ( ! $event->skipOperation) {
switch ($state) {
diff --git a/tests/DoctrineTest.php b/tests/DoctrineTest.php
index 15e2b1126..6d6519cd7 100644
--- a/tests/DoctrineTest.php
+++ b/tests/DoctrineTest.php
@@ -124,7 +124,7 @@ class DoctrineTest
* somebody could give it a try. Just replace this block of code
* with the one below
*
- define('PHPCOVERAGE_HOME', dirname(dirname(__FILE__)) . '/vendor/spikephpcoverage');
+ define('PHPCOVERAGE_HOME', dirname(dirname(__FILE__)) . '/vendor/spikephpcoverage');
require_once PHPCOVERAGE_HOME . '/CoverageRecorder.php';
require_once PHPCOVERAGE_HOME . '/reporter/HtmlCoverageReporter.php';
@@ -149,10 +149,11 @@ class DoctrineTest
require_once dirname(__FILE__) . '/DoctrineTest/Coverage.php';
$coverageGeneration = new DoctrineTest_Coverage();
$coverageGeneration->generateReport();
+ return;
// */
- } else {
- $testGroup->run($reporter, $filter);
+
}
+ $testGroup->run($reporter, $filter);
}
diff --git a/tests/DoctrineTest/Doctrine_UnitTestCase.php b/tests/DoctrineTest/Doctrine_UnitTestCase.php
index 4f02058ff..404a34d4f 100644
--- a/tests/DoctrineTest/Doctrine_UnitTestCase.php
+++ b/tests/DoctrineTest/Doctrine_UnitTestCase.php
@@ -195,15 +195,6 @@ class Doctrine_UnitTestCase extends UnitTestCase
}
}
$this->conn->export->exportClasses($this->tables);
- /**
- foreach($this->tables as $name) {
- $name = ucwords($name);
- $table = $this->connection->getTable($name);
-
- $table->clear();
- }
- */
-
$this->objTable = $this->connection->getTable('User');
}
public function prepareData()
diff --git a/tests/DoctrineTest/GroupTest.php b/tests/DoctrineTest/GroupTest.php
index 18da66dc3..600887782 100644
--- a/tests/DoctrineTest/GroupTest.php
+++ b/tests/DoctrineTest/GroupTest.php
@@ -56,9 +56,7 @@ class GroupTest extends UnitTestCase
$this->_messages = array_merge($this->_messages, $testCase->getMessages());
$this->_testCases[$k] = null;
- if(PHP_SAPI === 'cli'){
- echo '.';
- }
+ echo $reporter->getProgressIndicator();
set_time_limit(900);
}
$reporter->setTestCase($this);
diff --git a/tests/DoctrineTest/Reporter/Cli.php b/tests/DoctrineTest/Reporter/Cli.php
index a40c1bd2e..8d764776f 100644
--- a/tests/DoctrineTest/Reporter/Cli.php
+++ b/tests/DoctrineTest/Reporter/Cli.php
@@ -15,4 +15,9 @@ class DoctrineTest_Reporter_Cli extends DoctrineTest_Reporter{
print "Successes: " . $this->_test->getPassCount() . " passes. \n";
print "Failures: " . $this->_test->getFailCount() . " fails. \n";
}
+
+
+ public function getProgressIndicator(){
+ return ".";
+ }
}
diff --git a/tests/DoctrineTest/Reporter/Html.php b/tests/DoctrineTest/Reporter/Html.php
index 4f5f3b1bd..1274fcb76 100644
--- a/tests/DoctrineTest/Reporter/Html.php
+++ b/tests/DoctrineTest/Reporter/Html.php
@@ -34,4 +34,6 @@ class DoctrineTest_Reporter_Html extends DoctrineTest_Reporter{
print '' . $this->_test->getFailCount() . ' fails.';
print '';
}
+
+ public function getProgressIndicator(){}
}
diff --git a/tests/coverage/Doctrine.html b/tests/coverage/Doctrine.html
index b94221e4a..2da749e65 100644
--- a/tests/coverage/Doctrine.html
+++ b/tests/coverage/Doctrine.html
@@ -16,7 +16,7 @@
/*
|
3 |
- * $Id: Doctrine.php 2983 2007-10-22 05:11:23Z Jonathan.Wage $
+ | * $Id: Doctrine.php 2989 2007-10-22 16:32:07Z romanb $
|
4 |
*
@@ -103,7 +103,7 @@
| * @since 1.0
|
32 |
- * @version $Revision: 2983 $
+ | * @version $Revision: 2989 $
|
33 |
*/
@@ -1093,19 +1093,19 @@
| const HYDRATE_ARRAY = 3;
|
362 |
-
+ |
|
363 |
/**
|
364 |
- * VALIDATION CONSTANTS
+ | * HYDRATE_NONE
|
365 |
*/
|
366 |
- const VALIDATE_NONE = 0;
+ | const HYDRATE_NONE = 4;
|
367 |
@@ -1114,13 +1114,13 @@
| /**
|
369 |
- * VALIDATE_LENGTHS
+ | * VALIDATION CONSTANTS
|
370 |
*/
|
371 |
- const VALIDATE_LENGTHS = 1;
+ | const VALIDATE_NONE = 0;
|
372 |
@@ -1129,13 +1129,13 @@
| /**
|
374 |
- * VALIDATE_TYPES
+ | * VALIDATE_LENGTHS
|
375 |
*/
|
376 |
- const VALIDATE_TYPES = 2;
+ | const VALIDATE_LENGTHS = 1;
|
377 |
@@ -1144,13 +1144,13 @@
| /**
|
379 |
- * VALIDATE_CONSTRAINTS
+ | * VALIDATE_TYPES
|
380 |
*/
|
381 |
- const VALIDATE_CONSTRAINTS = 4;
+ | const VALIDATE_TYPES = 2;
|
382 |
@@ -1159,13 +1159,13 @@
| /**
|
384 |
- * VALIDATE_ALL
+ | * VALIDATE_CONSTRAINTS
|
385 |
*/
|
386 |
- const VALIDATE_ALL = 7;
+ | const VALIDATE_CONSTRAINTS = 4;
|
387 |
@@ -1174,2097 +1174,2112 @@
| /**
|
389 |
- * IDENTIFIER_AUTOINC
+ | * VALIDATE_ALL
|
390 |
- *
+ | */
|
391 |
- * constant for auto_increment identifier
+ | const VALIDATE_ALL = 7;
|
392 |
- */
+ |
|
393 |
- const IDENTIFIER_AUTOINC = 1;
+ | /**
|
394 |
-
+ | * IDENTIFIER_AUTOINC
|
395 |
- /**
+ | *
|
396 |
- * IDENTIFIER_SEQUENCE
+ | * constant for auto_increment identifier
|
397 |
- *
+ | */
|
398 |
- * constant for sequence identifier
+ | const IDENTIFIER_AUTOINC = 1;
|
399 |
- */
+ |
|
400 |
- const IDENTIFIER_SEQUENCE = 2;
+ | /**
|
401 |
-
+ | * IDENTIFIER_SEQUENCE
|
402 |
- /**
+ | *
|
403 |
- * IDENTIFIER_NATURAL
+ | * constant for sequence identifier
|
404 |
- *
+ | */
|
405 |
- * constant for normal identifier
+ | const IDENTIFIER_SEQUENCE = 2;
|
406 |
- */
+ |
|
407 |
- const IDENTIFIER_NATURAL = 3;
+ | /**
|
408 |
-
+ | * IDENTIFIER_NATURAL
|
409 |
- /**
+ | *
|
410 |
- * IDENTIFIER_COMPOSITE
+ | * constant for normal identifier
|
411 |
- *
+ | */
|
412 |
- * constant for composite identifier
+ | const IDENTIFIER_NATURAL = 3;
|
413 |
- */
+ |
|
414 |
- const IDENTIFIER_COMPOSITE = 4;
+ | /**
|
415 |
-
+ | * IDENTIFIER_COMPOSITE
|
416 |
- /**
+ | *
|
417 |
- * Path
+ | * constant for composite identifier
|
418 |
- *
+ | */
|
419 |
- * @var string $path doctrine root directory
+ | const IDENTIFIER_COMPOSITE = 4;
|
420 |
- */
+ |
|
421 |
- private static $_path;
+ | /**
|
422 |
-
+ | * Path
|
423 |
- /**
+ | *
|
424 |
- * Debug
+ | * @var string $path doctrine root directory
|
425 |
- *
+ | */
|
426 |
- * Bool true/false
+ | private static $_path;
|
427 |
- *
+ |
|
428 |
- * @var boolean $_debug
+ | /**
|
429 |
- */
+ | * Debug
|
430 |
- private static $_debug = false;
+ | *
|
431 |
-
+ | * Bool true/false
|
432 |
- /**
+ | *
|
433 |
- * __construct
+ | * @var boolean $_debug
|
434 |
- *
+ | */
|
435 |
- * @return void
+ | private static $_debug = false;
|
436 |
- * @throws Doctrine_Exception
+ |
|
437 |
- */
+ | /**
|
438 |
- public function __construct()
+ | * __construct
|
439 |
- {
+ | *
|
440 |
- throw new Doctrine_Exception('Doctrine is static class. No instances can be created.');
+ | * @return void
|
441 |
- }
+ | * @throws Doctrine_Exception
|
442 |
-
+ | */
|
443 |
- /**
+ | public function __construct()
|
444 |
- * debug
+ | {
|
445 |
- *
+ | throw new Doctrine_Exception('Doctrine is static class. No instances can be created.');
|
446 |
- * @param string $bool
+ | }
|
447 |
- * @return void
+ |
|
448 |
- */
+ | /**
|
449 |
- public static function debug($bool = null)
+ | * debug
|
450 |
- {
+ | *
|
451 |
- if ($bool !== null) {
+ | * @param string $bool
|
452 |
- self::$_debug = (bool) $bool;
+ | * @return void
|
453 |
- }
+ | */
|
454 |
-
+ | public static function debug($bool = null)
|
455 |
- return self::$_debug;
+ | {
|
456 |
- }
+ | if ($bool !== null) {
|
457 |
-
+ | self::$_debug = (bool) $bool;
|
458 |
- /**
+ | }
|
459 |
- * getPath
- |
-460 |
- * returns the doctrine root
- |
-461 |
- *
- |
-462 |
- * @return string
- |
-463 |
- */
- |
-464 |
- public static function getPath()
- |
-465 |
- {
- |
-466 |
- if ( ! self::$_path) {
- |
-467 |
- self::$_path = dirname(__FILE__);
- |
-468 |
- }
- |
-469 |
|
+460 |
+ return self::$_debug;
+ |
+461 |
+ }
+ |
+462 |
+
+ |
+463 |
+ /**
+ |
+464 |
+ * getPath
+ |
+465 |
+ * returns the doctrine root
+ |
+466 |
+ *
+ |
+467 |
+ * @return string
+ |
+468 |
+ */
+ |
+469 |
+ public static function getPath()
+ |
470 |
- return self::$_path;
+ | {
|
471 |
- }
+ | if ( ! self::$_path) {
|
472 |
-
+ | self::$_path = dirname(__FILE__);
|
473 |
- /**
- |
-474 |
- * loadAll
- |
-475 |
- * loads all runtime classes
- |
-476 |
- *
- |
-477 |
- * @return void
- |
-478 |
- */
- |
-479 |
- public static function loadAll()
- |
-480 |
- {
- |
-481 |
- return self::loadAllRuntimeClasses();
- |
-482 |
- }
- |
-483 |
-
- |
-484 |
- /**
- |
-485 |
- * importSchema
- |
-486 |
- * method for importing existing schema to Doctrine_Record classes
- |
-487 |
- *
- |
-488 |
- * @param string $directory Directory to write your models to
- |
-489 |
- * @param array $databases Array of databases to generate models for
- |
-490 |
- * @return boolean
- |
-491 |
- */
- |
-492 |
- public static function importSchema($directory, array $databases = array())
- |
-493 |
- {
- |
-494 |
- return self::generateModelsFromDb($directory, $databases);
- |
-495 |
- }
- |
-496 |
-
- |
-497 |
- /**
- |
-498 |
- * exportSchema
- |
-499 |
- * method for exporting Doctrine_Record classes to a schema
- |
-500 |
- *
- |
-501 |
- * @param string $directory Directory containing your models
- |
-502 |
- * @return void
- |
-503 |
- */
- |
-504 |
- public static function exportSchema($directory = null)
- |
-505 |
- {
- |
-506 |
- return self::createTablesFromModels($directory);
- |
-507 |
- }
- |
-508 |
-
- |
-509 |
- /**
- |
-510 |
- * exportSql
- |
-511 |
- * method for exporting Doctrine_Record classes to a schema
- |
-512 |
- *
- |
-513 |
- * @param string $directory
- |
-514 |
- */
- |
-515 |
- public static function exportSql($directory = null)
- |
-516 |
- {
- |
-517 |
- return self::generateSqlFromModels($directory);
- |
-518 |
- }
- |
-519 |
-
- |
-520 |
- /**
- |
-521 |
- * loadAllRuntimeClasses
- |
-522 |
- *
- |
-523 |
- * loads all runtime classes
- |
-524 |
- *
- |
-525 |
- * @return void
- |
-526 |
- */
- |
-527 |
- public static function loadAllRuntimeClasses()
- |
-528 |
- {
- |
-529 |
- $classes = Doctrine_Compiler::getRuntimeClasses();
- |
-530 |
-
- |
-531 |
- foreach ($classes as $class) {
- |
-532 |
- self::autoload($class);
- |
-533 |
}
|
+474 |
+
+ |
+475 |
+ return self::$_path;
+ |
+476 |
+ }
+ |
+477 |
+
+ |
+478 |
+ /**
+ |
+479 |
+ * loadAll
+ |
+480 |
+ * loads all runtime classes
+ |
+481 |
+ *
+ |
+482 |
+ * @return void
+ |
+483 |
+ */
+ |
+484 |
+ public static function loadAll()
+ |
+485 |
+ {
+ |
+486 |
+ return self::loadAllRuntimeClasses();
+ |
+487 |
+ }
+ |
+488 |
+
+ |
+489 |
+ /**
+ |
+490 |
+ * importSchema
+ |
+491 |
+ * method for importing existing schema to Doctrine_Record classes
+ |
+492 |
+ *
+ |
+493 |
+ * @param string $directory Directory to write your models to
+ |
+494 |
+ * @param array $databases Array of databases to generate models for
+ |
+495 |
+ * @return boolean
+ |
+496 |
+ */
+ |
+497 |
+ public static function importSchema($directory, array $databases = array())
+ |
+498 |
+ {
+ |
+499 |
+ return self::generateModelsFromDb($directory, $databases);
+ |
+500 |
+ }
+ |
+501 |
+
+ |
+502 |
+ /**
+ |
+503 |
+ * exportSchema
+ |
+504 |
+ * method for exporting Doctrine_Record classes to a schema
+ |
+505 |
+ *
+ |
+506 |
+ * @param string $directory Directory containing your models
+ |
+507 |
+ * @return void
+ |
+508 |
+ */
+ |
+509 |
+ public static function exportSchema($directory = null)
+ |
+510 |
+ {
+ |
+511 |
+ return self::createTablesFromModels($directory);
+ |
+512 |
+ }
+ |
+513 |
+
+ |
+514 |
+ /**
+ |
+515 |
+ * exportSql
+ |
+516 |
+ * method for exporting Doctrine_Record classes to a schema
+ |
+517 |
+ *
+ |
+518 |
+ * @param string $directory
+ |
+519 |
+ */
+ |
+520 |
+ public static function exportSql($directory = null)
+ |
+521 |
+ {
+ |
+522 |
+ return self::generateSqlFromModels($directory);
+ |
+523 |
+ }
+ |
+524 |
+
+ |
+525 |
+ /**
+ |
+526 |
+ * loadAllRuntimeClasses
+ |
+527 |
+ *
+ |
+528 |
+ * loads all runtime classes
+ |
+529 |
+ *
+ |
+530 |
+ * @return void
+ |
+531 |
+ */
+ |
+532 |
+ public static function loadAllRuntimeClasses()
+ |
+533 |
+ {
+ |
534 |
- }
+ | $classes = Doctrine_Compiler::getRuntimeClasses();
|
535 |
|
536 |
- /**
+ | foreach ($classes as $class) {
|
537 |
- * loadModels
+ | self::autoload($class);
|
538 |
- *
+ | }
|
539 |
- * Recursively load all models from a directory or array of directories
+ | }
|
540 |
- *
+ |
|
541 |
- * @param string $directory Path to directory of models or array of directory paths
- |
-542 |
- * @return array $loadedModels
- |
-543 |
- */
- |
-544 |
- public static function loadModels($directory)
- |
-545 |
- {
- |
-546 |
- $declared = get_declared_classes();
- |
-547 |
-
- |
-548 |
- if ($directory !== null) {
- |
-549 |
- foreach ((array) $directory as $dir) {
- |
-550 |
- $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir),
- |
-551 |
- RecursiveIteratorIterator::LEAVES_ONLY);
- |
-552 |
-
- |
-553 |
- foreach ($it as $file) {
- |
-554 |
- $e = explode('.', $file->getFileName());
- |
-555 |
- if (end($e) === 'php' && strpos($file->getFileName(), '.inc') === false) {
- |
-556 |
- require_once $file->getPathName();
- |
-557 |
- }
- |
-558 |
- }
- |
-559 |
- }
- |
-560 |
-
- |
-561 |
- $declared = array_diff(get_declared_classes(), $declared);
- |
-562 |
- }
- |
-563 |
-
- |
-564 |
- return self::getLoadedModels($declared);
- |
-565 |
- }
- |
-566 |
-
- |
-567 |
/**
|
-568 |
- * getLoadedModels
+ |
542 |
+ * loadModels
|
-569 |
+
543 |
*
|
-570 |
- * Get all the loaded models, you can provide an array of classes or it will use get_declared_classes()
+ |
544 |
+ * Recursively load all models from a directory or array of directories
|
-571 |
+
545 |
*
|
+546 |
+ * @param string $directory Path to directory of models or array of directory paths
+ |
+547 |
+ * @return array $loadedModels
+ |
+548 |
+ */
+ |
+549 |
+ public static function loadModels($directory)
+ |
+550 |
+ {
+ |
+551 |
+ $declared = get_declared_classes();
+ |
+552 |
+
+ |
+553 |
+ if ($directory !== null) {
+ |
+554 |
+ foreach ((array) $directory as $dir) {
+ |
+555 |
+ $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir),
+ |
+556 |
+ RecursiveIteratorIterator::LEAVES_ONLY);
+ |
+557 |
+
+ |
+558 |
+ foreach ($it as $file) {
+ |
+559 |
+ $e = explode('.', $file->getFileName());
+ |
+560 |
+ if (end($e) === 'php' && strpos($file->getFileName(), '.inc') === false) {
+ |
+561 |
+ require_once $file->getPathName();
+ |
+562 |
+ }
+ |
+563 |
+ }
+ |
+564 |
+ }
+ |
+565 |
+
+ |
+566 |
+ $declared = array_diff(get_declared_classes(), $declared);
+ |
+567 |
+ }
+ |
+568 |
+
+ |
+569 |
+ return self::getLoadedModels($declared);
+ |
+570 |
+ }
+ |
+571 |
+
+ |
572 |
- * Will filter through an array of classes and return the Doctrine_Records out of them.
+ | /**
|
573 |
- * If you do not specify $classes it will return all of the currently loaded Doctrine_Records
+ | * getLoadedModels
|
574 |
*
|
575 |
- * @param $classes Array of classes to filter through, otherwise uses get_declared_classes()
+ | * Get all the loaded models, you can provide an array of classes or it will use get_declared_classes()
|
576 |
- * @return array $loadedModels
- |
-577 |
- */
- |
-578 |
- public static function getLoadedModels($classes = null)
- |
-579 |
- {
- |
-580 |
- if ($classes === null) {
- |
-581 |
- $classes = get_declared_classes();
- |
-582 |
- }
- |
-583 |
-
- |
-584 |
- $parent = new ReflectionClass('Doctrine_Record');
- |
-585 |
-
- |
-586 |
- $loadedModels = array();
- |
-587 |
-
- |
-588 |
- foreach ((array) $classes as $name) {
- |
-589 |
- $class = new ReflectionClass($name);
- |
-590 |
-
- |
-591 |
- // Skip the following classes
- |
-592 |
- // - abstract classes
- |
-593 |
- // - not a subclass of Doctrine_Record
- |
-594 |
- // - don't have a setTableDefinition method
- |
-595 |
- if ($class->isAbstract() ||
- |
-596 |
- !$class->isSubClassOf($parent) ||
- |
-597 |
- !$class->hasMethod('setTableDefinition')) {
- |
-598 |
- continue;
- |
-599 |
- }
- |
-600 |
-
- |
-601 |
- $loadedModels[] = $name;
- |
-602 |
- }
- |
-603 |
-
- |
-604 |
- return $loadedModels;
- |
-605 |
- }
- |
-606 |
-
- |
-607 |
- /**
- |
-608 |
- * getConnectionByTableName
- |
-609 |
- *
- |
-610 |
- * Get the connection object for a table by the actual table name
- |
-611 |
*
|
-612 |
- * @param string $tableName
+ |
577 |
+ * Will filter through an array of classes and return the Doctrine_Records out of them.
|
-613 |
- * @return object Doctrine_Connection
+ |
578 |
+ * If you do not specify $classes it will return all of the currently loaded Doctrine_Records
|
-614 |
+
579 |
+ *
+ |
+580 |
+ * @param $classes Array of classes to filter through, otherwise uses get_declared_classes()
+ |
+581 |
+ * @return array $loadedModels
+ |
+582 |
*/
|
-615 |
- public static function getConnectionByTableName($tableName)
+ |
583 |
+ public static function getLoadedModels($classes = null)
|
-616 |
+
584 |
{
|
-617 |
- $loadedModels = self::getLoadedModels();
+ |
585 |
+ if ($classes === null) {
|
-618 |
-
+ |
586 |
+ $classes = get_declared_classes();
|
-619 |
- foreach ($loadedModels as $name) {
- |
-620 |
- $model = new $name();
- |
-621 |
- $table = $model->getTable();
- |
-622 |
-
- |
-623 |
- if ($table->getTableName() == $tableName) {
- |
-624 |
- return $table->getConnection();
- |
-625 |
- }
- |
-626 |
+
587 |
}
|
-627 |
+
588 |
|
+589 |
+ $parent = new ReflectionClass('Doctrine_Record');
+ |
+590 |
+
+ |
+591 |
+ $loadedModels = array();
+ |
+592 |
+
+ |
+593 |
+ foreach ((array) $classes as $name) {
+ |
+594 |
+ $class = new ReflectionClass($name);
+ |
+595 |
+
+ |
+596 |
+ // Skip the following classes
+ |
+597 |
+ // - abstract classes
+ |
+598 |
+ // - not a subclass of Doctrine_Record
+ |
+599 |
+ // - don't have a setTableDefinition method
+ |
+600 |
+ if ($class->isAbstract() ||
+ |
+601 |
+ !$class->isSubClassOf($parent) ||
+ |
+602 |
+ !$class->hasMethod('setTableDefinition')) {
+ |
+603 |
+ continue;
+ |
+604 |
+ }
+ |
+605 |
+
+ |
+606 |
+ $loadedModels[] = $name;
+ |
+607 |
+ }
+ |
+608 |
+
+ |
+609 |
+ return $loadedModels;
+ |
+610 |
+ }
+ |
+611 |
+
+ |
+612 |
+ /**
+ |
+613 |
+ * getConnectionByTableName
+ |
+614 |
+ *
+ |
+615 |
+ * Get the connection object for a table by the actual table name
+ |
+616 |
+ *
+ |
+617 |
+ * @param string $tableName
+ |
+618 |
+ * @return object Doctrine_Connection
+ |
+619 |
+ */
+ |
+620 |
+ public static function getConnectionByTableName($tableName)
+ |
+621 |
+ {
+ |
+622 |
+ $loadedModels = self::getLoadedModels();
+ |
+623 |
+
+ |
+624 |
+ foreach ($loadedModels as $name) {
+ |
+625 |
+ $model = new $name();
+ |
+626 |
+ $table = $model->getTable();
+ |
+627 |
+
+ |
628 |
- return Doctrine_Manager::connection();
+ | if ($table->getTableName() == $tableName) {
|
629 |
- }
+ | return $table->getConnection();
|
630 |
-
+ | }
|
631 |
- /**
+ | }
|
632 |
- * generateModelsFromDb
+ |
|
633 |
- *
+ | return Doctrine_Manager::connection();
|
634 |
- * method for importing existing schema to Doctrine_Record classes
+ | }
|
635 |
- *
+ |
|
636 |
- * @param string $directory Directory to write your models to
+ | /**
|
637 |
- * @param array $databases Array of databases to generate models for
+ | * generateModelsFromDb
|
638 |
- * @return boolean
+ | *
|
639 |
- * @throws Exception
+ | * method for importing existing schema to Doctrine_Record classes
|
640 |
- */
+ | *
|
641 |
- public static function generateModelsFromDb($directory, array $databases = array())
+ | * @param string $directory Directory to write your models to
|
642 |
- {
+ | * @param array $databases Array of databases to generate models for
|
643 |
- return Doctrine_Manager::connection()->import->importSchema($directory, $databases);
+ | * @return boolean
|
644 |
- }
+ | * @throws Exception
|
645 |
-
+ | */
|
646 |
- /**
+ | public static function generateModelsFromDb($directory, array $databases = array())
|
647 |
- * generateYamlFromDb
+ | {
|
648 |
- *
+ | return Doctrine_Manager::connection()->import->importSchema($directory, $databases);
|
649 |
- * Generates models from database to temporary location then uses those models to generate a yaml schema file.
+ | }
|
650 |
- * This should probably be fixed. We should write something to generate a yaml schema file directly from the database.
+ |
|
651 |
- *
+ | /**
|
652 |
- * @param string $yamlPath Path to write oyur yaml schema file to
+ | * generateYamlFromDb
|
653 |
- * @return void
+ | *
|
654 |
- */
+ | * Generates models from database to temporary location then uses those models to generate a yaml schema file.
|
655 |
- public static function generateYamlFromDb($yamlPath)
+ | * This should probably be fixed. We should write something to generate a yaml schema file directly from the database.
|
656 |
- {
+ | *
|
657 |
- $directory = '/tmp/tmp_doctrine_models';
+ | * @param string $yamlPath Path to write oyur yaml schema file to
|
658 |
-
+ | * @return void
|
659 |
- Doctrine::generateModelsFromDb($directory);
+ | */
|
660 |
-
+ | public static function generateYamlFromDb($yamlPath)
|
661 |
- $export = new Doctrine_Export_Schema();
+ | {
|
662 |
-
+ | $directory = '/tmp/tmp_doctrine_models';
|
663 |
- $result = $export->exportSchema($yamlPath, 'yml', $directory);
+ |
|
664 |
-
+ | Doctrine::generateModelsFromDb($directory);
|
665 |
- exec('rm -rf ' . $directory);
+ |
|
666 |
-
+ | $export = new Doctrine_Export_Schema();
|
667 |
- return $result;
+ |
|
668 |
- }
+ | $result = $export->exportSchema($yamlPath, 'yml', $directory);
|
669 |
-
+ |
|
670 |
- /**
+ | exec('rm -rf ' . $directory);
|
671 |
- * generateModelsFromYaml
+ |
|
672 |
- *
+ | return $result;
|
673 |
- * Generate a yaml schema file from an existing directory of models
+ | }
|
674 |
- *
+ |
|
675 |
- * @param string $yamlPath Path to your yaml schema files
+ | /**
|
676 |
- * @param string $directory Directory to generate your models in
+ | * generateModelsFromYaml
|
677 |
- * @return void
+ | *
|
678 |
- */
+ | * Generate a yaml schema file from an existing directory of models
|
679 |
- public static function generateModelsFromYaml($yamlPath, $directory)
+ | *
|
680 |
- {
+ | * @param string $yamlPath Path to your yaml schema files
|
681 |
- $import = new Doctrine_Import_Schema();
+ | * @param string $directory Directory to generate your models in
|
682 |
- $import->generateBaseClasses(true);
- |
-683 |
-
- |
-684 |
- return $import->importSchema($yamlPath, 'yml', $directory);
- |
-685 |
- }
- |
-686 |
-
- |
-687 |
- /**
- |
-688 |
- * createTablesFromModels
- |
-689 |
- *
- |
-690 |
- * Creates database tables for the models in the specified directory
- |
-691 |
- *
- |
-692 |
- * @param string $directory Directory containing your models
- |
-693 |
* @return void
|
-694 |
+
683 |
*/
|
-695 |
- public static function createTablesFromModels($directory = null)
+ |
684 |
+ public static function generateModelsFromYaml($yamlPath, $directory)
|
-696 |
+
685 |
{
|
-697 |
- return Doctrine_Manager::connection()->export->exportSchema($directory);
+ |
686 |
+ $import = new Doctrine_Import_Schema();
|
-698 |
- }
+ |
687 |
+ $import->generateBaseClasses(true);
|
-699 |
-
- |
-700 |
- /**
- |
-701 |
- * generateSqlFromModels
- |
-702 |
- *
- |
-703 |
- * @param string $directory
- |
-704 |
- * @return string $build String of sql queries. One query per line
- |
-705 |
- */
- |
-706 |
- public static function generateSqlFromModels($directory = null)
- |
-707 |
- {
- |
-708 |
- $sql = Doctrine_Manager::connection()->export->exportSql($directory);
- |
-709 |
+
688 |
|
+689 |
+ return $import->importSchema($yamlPath, 'yml', $directory);
+ |
+690 |
+ }
+ |
+691 |
+
+ |
+692 |
+ /**
+ |
+693 |
+ * createTablesFromModels
+ |
+694 |
+ *
+ |
+695 |
+ * Creates database tables for the models in the specified directory
+ |
+696 |
+ *
+ |
+697 |
+ * @param string $directory Directory containing your models
+ |
+698 |
+ * @return void
+ |
+699 |
+ */
+ |
+700 |
+ public static function createTablesFromModels($directory = null)
+ |
+701 |
+ {
+ |
+702 |
+ return Doctrine_Manager::connection()->export->exportSchema($directory);
+ |
+703 |
+ }
+ |
+704 |
+
+ |
+705 |
+ /**
+ |
+706 |
+ * generateSqlFromModels
+ |
+707 |
+ *
+ |
+708 |
+ * @param string $directory
+ |
+709 |
+ * @return string $build String of sql queries. One query per line
+ |
710 |
- $build = '';
+ | */
|
711 |
- foreach ($sql as $query) {
+ | public static function generateSqlFromModels($directory = null)
|
712 |
- $build .= $query.";\n";
+ | {
|
713 |
- }
+ | $sql = Doctrine_Manager::connection()->export->exportSql($directory);
|
714 |
|
715 |
- return $build;
+ | $build = '';
|
716 |
- }
+ | foreach ($sql as $query) {
|
717 |
-
+ | $build .= $query.";\n";
|
718 |
- /**
+ | }
|
719 |
- * generateYamlFromModels
+ |
|
720 |
- *
+ | return $build;
|
721 |
- * Generate yaml schema file for the models in the specified directory
+ | }
|
722 |
- *
+ |
|
723 |
- * @param string $yamlPath Path to your yaml schema files
+ | /**
|
724 |
- * @param string $directory Directory to generate your models in
+ | * generateYamlFromModels
|
725 |
- * @return void
+ | *
|
726 |
- */
+ | * Generate yaml schema file for the models in the specified directory
|
727 |
- public static function generateYamlFromModels($yamlPath, $directory)
+ | *
|
728 |
- {
+ | * @param string $yamlPath Path to your yaml schema files
|
729 |
- $export = new Doctrine_Export_Schema();
+ | * @param string $directory Directory to generate your models in
|
730 |
-
+ | * @return void
|
731 |
- return $export->exportSchema($yamlPath, 'yml', $directory);
+ | */
|
732 |
- }
+ | public static function generateYamlFromModels($yamlPath, $directory)
|
733 |
-
+ | {
|
734 |
- /**
+ | $export = new Doctrine_Export_Schema();
|
735 |
- * createDatabases
+ |
|
736 |
- *
+ | return $export->exportSchema($yamlPath, 'yml', $directory);
|
737 |
- * Creates databases for connections
+ | }
|
738 |
- *
+ |
|
739 |
- * @param string $specifiedConnections Array of connections you wish to create the database for
+ | /**
|
740 |
- * @return void
+ | * createDatabases
|
741 |
- */
+ | *
|
742 |
- public static function createDatabases($specifiedConnections = array())
+ | * Creates databases for connections
|
743 |
- {
+ | *
|
744 |
- if ( ! is_array($specifiedConnections)) {
+ | * @param string $specifiedConnections Array of connections you wish to create the database for
|
745 |
- $specifiedConnections = (array) $specifiedConnections;
+ | * @return void
|
746 |
- }
+ | */
|
747 |
-
+ | public static function createDatabases($specifiedConnections = array())
|
748 |
- $manager = Doctrine_Manager::getInstance();
+ | {
|
749 |
- $connections = $manager->getConnections();
- |
-750 |
-
- |
-751 |
- foreach ($connections as $name => $connection) {
- |
-752 |
- if ( ! empty($specifiedConnections) && !in_array($name, $specifiedConnections)) {
- |
-753 |
- continue;
- |
-754 |
- }
- |
-755 |
-
- |
-756 |
- $info = $manager->parsePdoDsn($connection->getOption('dsn'));
- |
-757 |
- $username = $connection->getOption('username');
- |
-758 |
- $password = $connection->getOption('password');
- |
-759 |
-
- |
-760 |
- // Make connection without database specified so we can create it
- |
-761 |
- $connect = $manager->openConnection(new PDO($info['scheme'] . ':host=' . $info['host'], $username, $password), 'tmp_connection', false);
- |
-762 |
-
- |
-763 |
- try {
- |
-764 |
- // Create database
- |
-765 |
- $connect->export->createDatabase($name);
- |
-766 |
-
- |
-767 |
- // Close the tmp connection with no database
- |
-768 |
- $manager->closeConnection($connect);
- |
-769 |
-
- |
-770 |
- // Close original connection
- |
-771 |
- $manager->closeConnection($connection);
- |
-772 |
-
- |
-773 |
- // Reopen original connection with newly created database
- |
-774 |
- $manager->openConnection(new PDO($info['dsn'], $username, $password), $name, true);
- |
-775 |
- } catch (Exception $e) {
- |
-776 |
-
- |
-777 |
- }
- |
-778 |
- }
- |
-779 |
- }
- |
-780 |
-
- |
-781 |
- /**
- |
-782 |
- * dropDatabases
- |
-783 |
- *
- |
-784 |
- * Drops databases for connections
- |
-785 |
- *
- |
-786 |
- * @param string $specifiedConnections Array of connections you wish to drop the database for
- |
-787 |
- * @return void
- |
-788 |
- */
- |
-789 |
- public static function dropDatabases($specifiedConnections = array())
- |
-790 |
- {
- |
-791 |
if ( ! is_array($specifiedConnections)) {
|
-792 |
+
750 |
$specifiedConnections = (array) $specifiedConnections;
|
-793 |
+
751 |
}
|
-794 |
+
752 |
|
-795 |
+
753 |
$manager = Doctrine_Manager::getInstance();
|
-796 |
-
- |
-797 |
+
754 |
$connections = $manager->getConnections();
|
-798 |
+
755 |
|
-799 |
+
756 |
foreach ($connections as $name => $connection) {
|
-800 |
+
757 |
if ( ! empty($specifiedConnections) && !in_array($name, $specifiedConnections)) {
|
-801 |
+
758 |
continue;
|
-802 |
+
759 |
}
|
-803 |
+
760 |
|
-804 |
+
761 |
+ $info = $manager->parsePdoDsn($connection->getOption('dsn'));
+ |
+762 |
+ $username = $connection->getOption('username');
+ |
+763 |
+ $password = $connection->getOption('password');
+ |
+764 |
+
+ |
+765 |
+ // Make connection without database specified so we can create it
+ |
+766 |
+ $connect = $manager->openConnection(new PDO($info['scheme'] . ':host=' . $info['host'], $username, $password), 'tmp_connection', false);
+ |
+767 |
+
+ |
+768 |
try {
|
-805 |
- $connection->export->dropDatabase($name);
+ |
769 |
+ // Create database
|
-806 |
- } catch (Exception $e) {
+ |
770 |
+ $connect->export->createDatabase($name);
|
-807 |
+
771 |
|
-808 |
+
772 |
+ // Close the tmp connection with no database
+ |
+773 |
+ $manager->closeConnection($connect);
+ |
+774 |
+
+ |
+775 |
+ // Close original connection
+ |
+776 |
+ $manager->closeConnection($connection);
+ |
+777 |
+
+ |
+778 |
+ // Reopen original connection with newly created database
+ |
+779 |
+ $manager->openConnection(new PDO($info['dsn'], $username, $password), $name, true);
+ |
+780 |
+ } catch (Exception $e) {
+ |
+781 |
+
+ |
+782 |
}
|
-809 |
+
783 |
}
|
-810 |
+
784 |
}
|
-811 |
+
785 |
|
+786 |
+ /**
+ |
+787 |
+ * dropDatabases
+ |
+788 |
+ *
+ |
+789 |
+ * Drops databases for connections
+ |
+790 |
+ *
+ |
+791 |
+ * @param string $specifiedConnections Array of connections you wish to drop the database for
+ |
+792 |
+ * @return void
+ |
+793 |
+ */
+ |
+794 |
+ public static function dropDatabases($specifiedConnections = array())
+ |
+795 |
+ {
+ |
+796 |
+ if ( ! is_array($specifiedConnections)) {
+ |
+797 |
+ $specifiedConnections = (array) $specifiedConnections;
+ |
+798 |
+ }
+ |
+799 |
+
+ |
+800 |
+ $manager = Doctrine_Manager::getInstance();
+ |
+801 |
+
+ |
+802 |
+ $connections = $manager->getConnections();
+ |
+803 |
+
+ |
+804 |
+ foreach ($connections as $name => $connection) {
+ |
+805 |
+ if ( ! empty($specifiedConnections) && !in_array($name, $specifiedConnections)) {
+ |
+806 |
+ continue;
+ |
+807 |
+ }
+ |
+808 |
+
+ |
+809 |
+ try {
+ |
+810 |
+ $connection->export->dropDatabase($name);
+ |
+811 |
+ } catch (Exception $e) {
+ |
812 |
- /**
+ |
|
813 |
- * dumpData
+ | }
|
814 |
- *
+ | }
|
815 |
- * Dump data to a yaml fixtures file
+ | }
|
816 |
- *
+ |
|
817 |
- * @param string $yamlPath Path to write the yaml data fixtures to
+ | /**
|
818 |
- * @param string $individualFiles Whether or not to dump data to individual fixtures files
+ | * dumpData
|
819 |
- * @return void
+ | *
|
820 |
- */
+ | * Dump data to a yaml fixtures file
|
821 |
- public static function dumpData($yamlPath, $individualFiles = false)
+ | *
|
822 |
- {
+ | * @param string $yamlPath Path to write the yaml data fixtures to
|
823 |
- $data = new Doctrine_Data();
+ | * @param string $individualFiles Whether or not to dump data to individual fixtures files
|
824 |
-
+ | * @return void
|
825 |
- return $data->exportData($yamlPath, 'yml', array(), $individualFiles);
+ | */
|
826 |
- }
+ | public static function dumpData($yamlPath, $individualFiles = false)
|
827 |
-
+ | {
|
828 |
- /**
+ | $data = new Doctrine_Data();
|
829 |
- * loadData
+ |
|
830 |
- *
+ | return $data->exportData($yamlPath, 'yml', array(), $individualFiles);
|
831 |
- * Load data from a yaml fixtures file.
+ | }
|
832 |
- * The output of dumpData can be fed to loadData
+ |
|
833 |
- *
+ | /**
|
834 |
- * @param string $yamlPath Path to your yaml data fixtures
+ | * loadData
|
835 |
- * @param string $append Whether or not to append the data
+ | *
|
836 |
- * @return void
+ | * Load data from a yaml fixtures file.
|
837 |
- */
+ | * The output of dumpData can be fed to loadData
|
838 |
- public static function loadData($yamlPath, $append = false)
+ | *
|
839 |
- {
+ | * @param string $yamlPath Path to your yaml data fixtures
|
840 |
- $data = new Doctrine_Data();
- |
-841 |
-
- |
-842 |
- if ( ! $append) {
- |
-843 |
- $data->purge();
- |
-844 |
- }
- |
-845 |
-
- |
-846 |
- return $data->importData($yamlPath, 'yml');
- |
-847 |
- }
- |
-848 |
-
- |
-849 |
- /**
- |
-850 |
- * loadDummyData
- |
-851 |
- *
- |
-852 |
- * Populdate your models with dummy data
- |
-853 |
- *
- |
-854 |
* @param string $append Whether or not to append the data
|
-855 |
- * @param string $num Number of records to populate
- |
-856 |
+
841 |
* @return void
|
-857 |
+
842 |
*/
|
-858 |
- public static function loadDummyData($append, $num = 5)
+ |
843 |
+ public static function loadData($yamlPath, $append = false)
|
-859 |
+
844 |
{
|
-860 |
+
845 |
$data = new Doctrine_Data();
|
-861 |
-
+ |
846 |
+
|
-862 |
+
847 |
if ( ! $append) {
|
+848 |
+ $data->purge();
+ |
+849 |
+ }
+ |
+850 |
+
+ |
+851 |
+ return $data->importData($yamlPath, 'yml');
+ |
+852 |
+ }
+ |
+853 |
+
+ |
+854 |
+ /**
+ |
+855 |
+ * loadDummyData
+ |
+856 |
+ *
+ |
+857 |
+ * Populdate your models with dummy data
+ |
+858 |
+ *
+ |
+859 |
+ * @param string $append Whether or not to append the data
+ |
+860 |
+ * @param string $num Number of records to populate
+ |
+861 |
+ * @return void
+ |
+862 |
+ */
+ |
863 |
- $data->purge();
+ | public static function loadDummyData($append, $num = 5)
|
864 |
- }
+ | {
|
865 |
-
+ | $data = new Doctrine_Data();
|
866 |
- return $data->importDummyData($num);
+ |
|
867 |
- }
+ | if ( ! $append) {
|
868 |
-
+ | $data->purge();
|
869 |
- /**
- |
-870 |
- * migrate
- |
-871 |
- *
- |
-872 |
- * Migrate database to specified $to version. Migrates from current to latest if you do not specify.
- |
-873 |
- *
- |
-874 |
- * @param string $migrationsPath Path to migrations directory which contains your migration classes
- |
-875 |
- * @param string $to Version you wish to migrate to.
- |
-876 |
- * @return bool true
- |
-877 |
- * @throws new Doctrine_Migration_Exception
- |
-878 |
- */
- |
-879 |
- public static function migrate($migrationsPath, $to = null)
- |
-880 |
- {
- |
-881 |
- $migration = new Doctrine_Migration($migrationsPath);
- |
-882 |
-
- |
-883 |
- return $migration->migrate($to);
- |
-884 |
- }
- |
-885 |
-
- |
-886 |
- /**
- |
-887 |
- * generateMigrationClass
- |
-888 |
- *
- |
-889 |
- * Generate new migration class skeleton
- |
-890 |
- *
- |
-891 |
- * @param string $className Name of the Migration class to generate
- |
-892 |
- * @param string $migrationsPath Path to directory which contains your migration classes
- |
-893 |
- */
- |
-894 |
- public static function generateMigrationClass($className, $migrationsPath)
- |
-895 |
- {
- |
-896 |
- $builder = new Doctrine_Migration_Builder($migrationsPath);
- |
-897 |
-
- |
-898 |
- return $builder->generateMigrationClass($className);
- |
-899 |
- }
- |
-900 |
-
- |
-901 |
- /**
- |
-902 |
- * generateMigrationsFromDb
- |
-903 |
- *
- |
-904 |
- * @param string $migrationsPath
- |
-905 |
- * @return void
- |
-906 |
- * @throws new Doctrine_Migration_Exception
- |
-907 |
- */
- |
-908 |
- public static function generateMigrationsFromDb($migrationsPath)
- |
-909 |
- {
- |
-910 |
- $builder = new Doctrine_Migration_Builder($migrationsPath);
- |
-911 |
-
- |
-912 |
- return $builder->generateMigrationsFromDb();
- |
-913 |
- }
- |
-914 |
-
- |
-915 |
- /**
- |
-916 |
- * generateMigrationsFromModels
- |
-917 |
- *
- |
-918 |
- * @param string $migrationsPath
- |
-919 |
- * @param string $modelsPath
- |
-920 |
- * @return void
- |
-921 |
- */
- |
-922 |
- public static function generateMigrationsFromModels($migrationsPath, $modelsPath = null)
- |
-923 |
- {
- |
-924 |
- $builder = new Doctrine_Migration_Builder($migrationsPath);
- |
-925 |
-
- |
-926 |
- return $builder->generateMigrationsFromModels($modelsPath);
- |
-927 |
- }
- |
-928 |
-
- |
-929 |
- /**
- |
-930 |
- * getTable
- |
-931 |
- *
- |
-932 |
- * @param string $tableName
- |
-933 |
- * @return void
- |
-934 |
- */
- |
-935 |
- public static function getTable($tableName)
- |
-936 |
- {
- |
-937 |
- return Doctrine_Manager::table($tableName);
- |
-938 |
- }
- |
-939 |
-
- |
-940 |
- /**
- |
-941 |
- * connection
- |
-942 |
- *
- |
-943 |
- * @param string $adapter
- |
-944 |
- * @param string $name
- |
-945 |
- * @return void
- |
-946 |
- */
- |
-947 |
- public static function connection($adapter, $name = null)
- |
-948 |
- {
- |
-949 |
- return Doctrine_Manager::connection($adapter, $name);
- |
-950 |
- }
- |
-951 |
-
- |
-952 |
- /**
- |
-953 |
- * fileFinder
- |
-954 |
- *
- |
-955 |
- * @param string $type
- |
-956 |
- * @return void
- |
-957 |
- */
- |
-958 |
- public static function fileFinder($type)
- |
-959 |
- {
- |
-960 |
- return Doctrine_FileFinder::type($type);
- |
-961 |
- }
- |
-962 |
-
- |
-963 |
- /**
- |
-964 |
- * compile
- |
-965 |
- * method for making a single file of most used doctrine runtime components
- |
-966 |
- * including the compiled file instead of multiple files (in worst
- |
-967 |
- * cases dozens of files) can improve performance by an order of magnitude
- |
-968 |
- *
- |
-969 |
- * @param string $target
- |
-970 |
- *
- |
-971 |
- * @throws Doctrine_Exception
- |
-972 |
- * @return void
- |
-973 |
- */
- |
-974 |
- public static function compile($target = null, $includedDrivers = array())
- |
-975 |
- {
- |
-976 |
- return Doctrine_Compiler::compile($target, $includedDrivers);
- |
-977 |
- }
- |
-978 |
-
- |
-979 |
- /**
- |
-980 |
- * simple autoload function
- |
-981 |
- * returns true if the class was loaded, otherwise false
- |
-982 |
- *
- |
-983 |
- * @param string $classname
- |
-984 |
- * @return boolean
- |
-985 |
- */
- |
-986 |
- public static function autoload($classname)
- |
-987 |
- {
- |
-988 |
- if (class_exists($classname, false)) {
- |
-989 |
- return false;
- |
-990 |
- }
- |
-991 |
-
- |
-992 |
- if ( ! self::$_path) {
- |
-993 |
- self::$_path = dirname(__FILE__);
- |
-994 |
}
|
-995 |
+
870 |
|
-996 |
- $class = self::$_path . DIRECTORY_SEPARATOR . str_replace('_', DIRECTORY_SEPARATOR, $classname) . '.php';
+ |
871 |
+ return $data->importDummyData($num);
|
-997 |
+
872 |
+ }
+ |
+873 |
|
-998 |
- if ( ! file_exists($class)) {
+ |
874 |
+ /**
|
-999 |
+
875 |
+ * migrate
+ |
+876 |
+ *
+ |
+877 |
+ * Migrate database to specified $to version. Migrates from current to latest if you do not specify.
+ |
+878 |
+ *
+ |
+879 |
+ * @param string $migrationsPath Path to migrations directory which contains your migration classes
+ |
+880 |
+ * @param string $to Version you wish to migrate to.
+ |
+881 |
+ * @return bool true
+ |
+882 |
+ * @throws new Doctrine_Migration_Exception
+ |
+883 |
+ */
+ |
+884 |
+ public static function migrate($migrationsPath, $to = null)
+ |
+885 |
+ {
+ |
+886 |
+ $migration = new Doctrine_Migration($migrationsPath);
+ |
+887 |
+
+ |
+888 |
+ return $migration->migrate($to);
+ |
+889 |
+ }
+ |
+890 |
+
+ |
+891 |
+ /**
+ |
+892 |
+ * generateMigrationClass
+ |
+893 |
+ *
+ |
+894 |
+ * Generate new migration class skeleton
+ |
+895 |
+ *
+ |
+896 |
+ * @param string $className Name of the Migration class to generate
+ |
+897 |
+ * @param string $migrationsPath Path to directory which contains your migration classes
+ |
+898 |
+ */
+ |
+899 |
+ public static function generateMigrationClass($className, $migrationsPath)
+ |
+900 |
+ {
+ |
+901 |
+ $builder = new Doctrine_Migration_Builder($migrationsPath);
+ |
+902 |
+
+ |
+903 |
+ return $builder->generateMigrationClass($className);
+ |
+904 |
+ }
+ |
+905 |
+
+ |
+906 |
+ /**
+ |
+907 |
+ * generateMigrationsFromDb
+ |
+908 |
+ *
+ |
+909 |
+ * @param string $migrationsPath
+ |
+910 |
+ * @return void
+ |
+911 |
+ * @throws new Doctrine_Migration_Exception
+ |
+912 |
+ */
+ |
+913 |
+ public static function generateMigrationsFromDb($migrationsPath)
+ |
+914 |
+ {
+ |
+915 |
+ $builder = new Doctrine_Migration_Builder($migrationsPath);
+ |
+916 |
+
+ |
+917 |
+ return $builder->generateMigrationsFromDb();
+ |
+918 |
+ }
+ |
+919 |
+
+ |
+920 |
+ /**
+ |
+921 |
+ * generateMigrationsFromModels
+ |
+922 |
+ *
+ |
+923 |
+ * @param string $migrationsPath
+ |
+924 |
+ * @param string $modelsPath
+ |
+925 |
+ * @return void
+ |
+926 |
+ */
+ |
+927 |
+ public static function generateMigrationsFromModels($migrationsPath, $modelsPath = null)
+ |
+928 |
+ {
+ |
+929 |
+ $builder = new Doctrine_Migration_Builder($migrationsPath);
+ |
+930 |
+
+ |
+931 |
+ return $builder->generateMigrationsFromModels($modelsPath);
+ |
+932 |
+ }
+ |
+933 |
+
+ |
+934 |
+ /**
+ |
+935 |
+ * getTable
+ |
+936 |
+ *
+ |
+937 |
+ * @param string $tableName
+ |
+938 |
+ * @return void
+ |
+939 |
+ */
+ |
+940 |
+ public static function getTable($tableName)
+ |
+941 |
+ {
+ |
+942 |
+ return Doctrine_Manager::table($tableName);
+ |
+943 |
+ }
+ |
+944 |
+
+ |
+945 |
+ /**
+ |
+946 |
+ * connection
+ |
+947 |
+ *
+ |
+948 |
+ * @param string $adapter
+ |
+949 |
+ * @param string $name
+ |
+950 |
+ * @return void
+ |
+951 |
+ */
+ |
+952 |
+ public static function connection($adapter, $name = null)
+ |
+953 |
+ {
+ |
+954 |
+ return Doctrine_Manager::connection($adapter, $name);
+ |
+955 |
+ }
+ |
+956 |
+
+ |
+957 |
+ /**
+ |
+958 |
+ * fileFinder
+ |
+959 |
+ *
+ |
+960 |
+ * @param string $type
+ |
+961 |
+ * @return void
+ |
+962 |
+ */
+ |
+963 |
+ public static function fileFinder($type)
+ |
+964 |
+ {
+ |
+965 |
+ return Doctrine_FileFinder::type($type);
+ |
+966 |
+ }
+ |
+967 |
+
+ |
+968 |
+ /**
+ |
+969 |
+ * compile
+ |
+970 |
+ * method for making a single file of most used doctrine runtime components
+ |
+971 |
+ * including the compiled file instead of multiple files (in worst
+ |
+972 |
+ * cases dozens of files) can improve performance by an order of magnitude
+ |
+973 |
+ *
+ |
+974 |
+ * @param string $target
+ |
+975 |
+ *
+ |
+976 |
+ * @throws Doctrine_Exception
+ |
+977 |
+ * @return void
+ |
+978 |
+ */
+ |
+979 |
+ public static function compile($target = null, $includedDrivers = array())
+ |
+980 |
+ {
+ |
+981 |
+ return Doctrine_Compiler::compile($target, $includedDrivers);
+ |
+982 |
+ }
+ |
+983 |
+
+ |
+984 |
+ /**
+ |
+985 |
+ * simple autoload function
+ |
+986 |
+ * returns true if the class was loaded, otherwise false
+ |
+987 |
+ *
+ |
+988 |
+ * @param string $classname
+ |
+989 |
+ * @return boolean
+ |
+990 |
+ */
+ |
+991 |
+ public static function autoload($classname)
+ |
+992 |
+ {
+ |
+993 |
+ if (class_exists($classname, false)) {
+ |
+994 |
return false;
|
-1000 |
+
995 |
}
|
+996 |
+
+ |
+997 |
+ if ( ! self::$_path) {
+ |
+998 |
+ self::$_path = dirname(__FILE__);
+ |
+999 |
+ }
+ |
+1000 |
+
+ |
1001 |
-
+ | $class = self::$_path . DIRECTORY_SEPARATOR . str_replace('_', DIRECTORY_SEPARATOR, $classname) . '.php';
|
1002 |
- require_once($class);
- |
-1003 |
|
+1003 |
+ if ( ! file_exists($class)) {
+ |
1004 |
- return true;
+ | return false;
|
1005 |
- }
+ | }
|
1006 |
|
1007 |
- /**
+ | require_once($class);
|
1008 |
- * dump
+ |
|
1009 |
- *
+ | return true;
|
1010 |
- * dumps a given variable
+ | }
|
1011 |
- *
+ |
|
1012 |
- * @param mixed $var a variable of any type
+ | /**
|
1013 |
- * @param boolean $output whether to output the content
+ | * dump
|
1014 |
- * @return void|string
+ | *
|
1015 |
- */
+ | * dumps a given variable
|
1016 |
- public static function dump($var, $output = true)
+ | *
|
1017 |
- {
+ | * @param mixed $var a variable of any type
|
1018 |
- $ret = array();
+ | * @param boolean $output whether to output the content
|
1019 |
- switch (gettype($var)) {
+ | * @return void|string
|
1020 |
- case 'array':
+ | */
|
1021 |
- $ret[] = 'Array(';
+ | public static function dump($var, $output = true)
|
1022 |
- foreach ($var as $k => $v) {
+ | {
|
1023 |
- $ret[] = $k . ' : ' . self::dump($v, false);
+ | $ret = array();
|
1024 |
- }
+ | switch (gettype($var)) {
|
1025 |
- $ret[] = ")";
+ | case 'array':
|
1026 |
- break;
+ | $ret[] = 'Array(';
|
1027 |
- case 'object':
+ | foreach ($var as $k => $v) {
|
1028 |
- $ret[] = 'Object(' . get_class($var) . ')';
+ | $ret[] = $k . ' : ' . self::dump($v, false);
|
1029 |
- break;
+ | }
|
1030 |
- default:
+ | $ret[] = ")";
|
1031 |
- $ret[] = var_export($var, true);
+ | break;
|
1032 |
- }
+ | case 'object':
|
1033 |
- if ($output) {
+ | $ret[] = 'Object(' . get_class($var) . ')';
|
1034 |
- print implode("\n", $ret);
+ | break;
|
1035 |
- }
+ | default:
|
1036 |
- return implode("\n", $ret);
+ | $ret[] = var_export($var, true);
|
1037 |
- }
+ | }
|
1038 |
-
+ | if ($output) {
|
1039 |
- /**
+ | print implode("\n", $ret);
|
1040 |
- * returns table name from class name
+ | }
|
1041 |
- *
+ | return implode("\n", $ret);
|
1042 |
- * @param string $classname
+ | }
|
1043 |
- * @return string
+ |
|
1044 |
- */
+ | /**
|
1045 |
- public static function tableize($classname)
+ | * returns table name from class name
|
1046 |
- {
+ | *
|
1047 |
- return strtolower(preg_replace('~(?<=\\w)([A-Z])~', '_$1', $classname));
- |
-1048 |
- }
- |
-1049 |
-
- |
-1050 |
- /**
- |
-1051 |
- * returns class name from table name
- |
-1052 |
- *
- |
-1053 |
- * @param string $tablename
- |
-1054 |
- * @return string
- |
-1055 |
- */
- |
-1056 |
- public static function classify($tablename)
- |
-1057 |
- {
- |
-1058 |
- return preg_replace_callback('~(_?)(_)([\w])~', array("Doctrine", "classifyCallback"), ucfirst($tablename));
- |
-1059 |
- }
- |
-1060 |
-
- |
-1061 |
- /**
- |
-1062 |
- * Callback function to classify a classname propperly.
- |
-1063 |
- *
- |
-1064 |
- * @param array $matches An array of matches from a pcre_replace call
- |
-1065 |
- * @return string A string with matches 1 and mathces 3 in upper case.
- |
-1066 |
- */
- |
-1067 |
- public static function classifyCallback($matches)
- |
-1068 |
- {
- |
-1069 |
- return $matches[1] . strtoupper($matches[3]);
- |
-1070 |
- }
- |
-1071 |
-
- |
-1072 |
- /**
- |
-1073 |
- * checks for valid class name (uses camel case and underscores)
- |
-1074 |
- *
- |
-1075 |
* @param string $classname
|
-1076 |
- * @return boolean
+ |
1048 |
+ * @return string
|
-1077 |
+
1049 |
*/
|
-1078 |
- public static function isValidClassname($classname)
+ |
1050 |
+ public static function tableize($classname)
|
-1079 |
+
1051 |
{
|
-1080 |
- if (preg_match('~(^[a-z])|(_[a-z])|([\W])|(_{2})~', $classname)) {
+ |
1052 |
+ return strtolower(preg_replace('~(?<=\\w)([A-Z])~', '_$1', $classname));
|
-1081 |
- return false;
- |
-1082 |
- }
- |
-1083 |
-
- |
-1084 |
- return true;
- |
-1085 |
+
1053 |
}
|
+1054 |
+
+ |
+1055 |
+ /**
+ |
+1056 |
+ * returns class name from table name
+ |
+1057 |
+ *
+ |
+1058 |
+ * @param string $tablename
+ |
+1059 |
+ * @return string
+ |
+1060 |
+ */
+ |
+1061 |
+ public static function classify($tablename)
+ |
+1062 |
+ {
+ |
+1063 |
+ return preg_replace_callback('~(_?)(_)([\w])~', array("Doctrine", "classifyCallback"), ucfirst($tablename));
+ |
+1064 |
+ }
+ |
+1065 |
+
+ |
+1066 |
+ /**
+ |
+1067 |
+ * Callback function to classify a classname propperly.
+ |
+1068 |
+ *
+ |
+1069 |
+ * @param array $matches An array of matches from a pcre_replace call
+ |
+1070 |
+ * @return string A string with matches 1 and mathces 3 in upper case.
+ |
+1071 |
+ */
+ |
+1072 |
+ public static function classifyCallback($matches)
+ |
+1073 |
+ {
+ |
+1074 |
+ return $matches[1] . strtoupper($matches[3]);
+ |
+1075 |
+ }
+ |
+1076 |
+
+ |
+1077 |
+ /**
+ |
+1078 |
+ * checks for valid class name (uses camel case and underscores)
+ |
+1079 |
+ *
+ |
+1080 |
+ * @param string $classname
+ |
+1081 |
+ * @return boolean
+ |
+1082 |
+ */
+ |
+1083 |
+ public static function isValidClassname($classname)
+ |
+1084 |
+ {
+ |
+1085 |
+ if (preg_match('~(^[a-z])|(_[a-z])|([\W])|(_{2})~', $classname)) {
+ |
1086 |
+ return false;
+ |
+1087 |
+ }
+ |
+1088 |
+
+ |
+1089 |
+ return true;
+ |
+1090 |
+ }
+ |
+1091 |
}
|