Commit 8cc89beb authored by jwage's avatar jwage

Moved Doctrine_Migration_Builder and Doctrine_Import_Builder to...

Moved Doctrine_Migration_Builder and Doctrine_Import_Builder to Doctrine_Builder_Migration and Doctrine_Builder_Record. Updated code to work with new class names.
parent 04d945a1
...@@ -974,7 +974,7 @@ final class Doctrine ...@@ -974,7 +974,7 @@ final class Doctrine
*/ */
public static function generateMigrationClass($className, $migrationsPath) public static function generateMigrationClass($className, $migrationsPath)
{ {
$builder = new Doctrine_Migration_Builder($migrationsPath); $builder = new Doctrine_Builder_Migration($migrationsPath);
return $builder->generateMigrationClass($className); return $builder->generateMigrationClass($className);
} }
...@@ -988,7 +988,7 @@ final class Doctrine ...@@ -988,7 +988,7 @@ final class Doctrine
*/ */
public static function generateMigrationsFromDb($migrationsPath) public static function generateMigrationsFromDb($migrationsPath)
{ {
$builder = new Doctrine_Migration_Builder($migrationsPath); $builder = new Doctrine_Builder_Migration($migrationsPath);
return $builder->generateMigrationsFromDb(); return $builder->generateMigrationsFromDb();
} }
...@@ -1002,7 +1002,7 @@ final class Doctrine ...@@ -1002,7 +1002,7 @@ final class Doctrine
*/ */
public static function generateMigrationsFromModels($migrationsPath, $modelsPath = null) public static function generateMigrationsFromModels($migrationsPath, $modelsPath = null)
{ {
$builder = new Doctrine_Migration_Builder($migrationsPath); $builder = new Doctrine_Builder_Migration($migrationsPath);
return $builder->generateMigrationsFromModels($modelsPath); return $builder->generateMigrationsFromModels($modelsPath);
} }
......
<?php <?php
/* /*
* $Id$ * $Id: Builder.php 3570 2008-01-22 22:52:53Z jwage $
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
...@@ -18,25 +18,20 @@ ...@@ -18,25 +18,20 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.org>. * <http://www.phpdoctrine.org>.
*/ */
Doctrine::autoload('Doctrine_Import_Exception');
/**
* @package Doctrine
* @subpackage Import
* @url http://www.phpdoctrine.org
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$
*/
/** /**
* class Doctrine_Import_Builder_Exception * Doctrine_Builder
*
* @package Doctrine * @package Doctrine
* @subpackage Import * @subpackage Builder
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.phpdoctrine.com
* @since 1.0 * @since 1.0
* @version $Revision$ * @version $Revision: 3570 $
* @author Konsta Vesterinen <kvesteri@cc.hut.fi> * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Jonathan H. Wage <jonwage@gmail.com>
*/ */
class Doctrine_Import_Builder_Exception extends Doctrine_Import_Exception abstract class Doctrine_Builder
{ } {
\ No newline at end of file
}
\ No newline at end of file
<?php <?php
/* /*
* $Id$ * $Id: Exception.php 3570 2008-01-22 22:52:53Z jwage $
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
...@@ -18,27 +18,28 @@ ...@@ -18,27 +18,28 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.org>. * <http://www.phpdoctrine.org>.
*/ */
Doctrine::autoload('Doctrine_Import_Builder'); Doctrine::autoload('Doctrine_Exception');
/** /**
* @package Doctrine * @package Doctrine
* @subpackage Import
* @url http://www.phpdoctrine.org * @url http://www.phpdoctrine.org
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id: Exception.php 3570 2008-01-22 22:52:53Z jwage $
*/ */
/** /**
* class Doctrine_Import_Builder_BaseClass * Doctrine_Builder_Exception
* Builds a Doctrine_Record base class definition based on a schema.
* *
* @package Doctrine * @package Doctrine
* @subpackage Import * @subpackage Builder
* @link www.phpdoctrine.com * @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0 * @since 1.0
* @version $Revision$ * @version $Revision: 3570 $
* @author Konsta Vesterinen <kvesteri@cc.hut.fi> * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Jonathan H. Wage <jonwage@gmail.com>
*/ */
class Doctrine_Import_Builder_BaseClass extends Doctrine_Import_Builder class Doctrine_Builder_Exception extends Doctrine_Exception
{ {
} }
\ No newline at end of file
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
* Doctrine_Migration_Builder * Doctrine_Migration_Builder
* *
* @package Doctrine * @package Doctrine
* @subpackage Migration * @subpackage Builder
* @author Konsta Vesterinen <kvesteri@cc.hut.fi> * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Jonathan H. Wage <jwage@mac.com> * @author Jonathan H. Wage <jwage@mac.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
* @since 1.0 * @since 1.0
* @version $Revision: 2939 $ * @version $Revision: 2939 $
*/ */
class Doctrine_Migration_Builder class Doctrine_Builder_Migration extends Doctrine_Builder
{ {
/** /**
* migrationsPath * migrationsPath
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
* based on a database schema. * based on a database schema.
* *
* @package Doctrine * @package Doctrine
* @subpackage Import * @subpackage Builder
* @link www.phpdoctrine.com * @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0 * @since 1.0
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
* @author Nicolas Bérard-Nault <nicobn@php.net> * @author Nicolas Bérard-Nault <nicobn@php.net>
* @author Jonathan H. Wage <jwage@mac.com> * @author Jonathan H. Wage <jwage@mac.com>
*/ */
class Doctrine_Import_Builder class Doctrine_Builder_Record
{ {
/** /**
* Path * Path
...@@ -625,7 +625,7 @@ END; ...@@ -625,7 +625,7 @@ END;
public function buildDefinition(array $definition) public function buildDefinition(array $definition)
{ {
if ( ! isset($definition['className'])) { if ( ! isset($definition['className'])) {
throw new Doctrine_Import_Builder_Exception('Missing class name.'); throw new Doctrine_Builder_Exception('Missing class name.');
} }
$abstract = isset($definition['abstract']) && $definition['abstract'] === true ? 'abstract ':null; $abstract = isset($definition['abstract']) && $definition['abstract'] === true ? 'abstract ':null;
...@@ -667,7 +667,7 @@ END; ...@@ -667,7 +667,7 @@ END;
public function buildRecord(array $definition) public function buildRecord(array $definition)
{ {
if ( !isset($definition['className'])) { if ( !isset($definition['className'])) {
throw new Doctrine_Import_Builder_Exception('Missing class name.'); throw new Doctrine_Builder_Exception('Missing class name.');
} }
if ($this->generateBaseClasses()) { if ($this->generateBaseClasses()) {
...@@ -802,7 +802,7 @@ END; ...@@ -802,7 +802,7 @@ END;
} }
if (isset($bytes) && $bytes === false) { if (isset($bytes) && $bytes === false) {
throw new Doctrine_Import_Builder_Exception("Couldn't write file " . $writePath); throw new Doctrine_Builder_Exception("Couldn't write file " . $writePath);
} }
} }
} }
\ No newline at end of file
...@@ -207,7 +207,7 @@ class Doctrine_Import extends Doctrine_Connection_Module ...@@ -207,7 +207,7 @@ class Doctrine_Import extends Doctrine_Connection_Module
continue; continue;
} }
$builder = new Doctrine_Import_Builder(); $builder = new Doctrine_Builder_Record();
$builder->setTargetPath($directory); $builder->setTargetPath($directory);
$builder->setOptions($options); $builder->setOptions($options);
......
...@@ -146,7 +146,7 @@ class Doctrine_Import_Schema ...@@ -146,7 +146,7 @@ class Doctrine_Import_Schema
*/ */
public function importSchema($schema, $format = 'yml', $directory = null, $models = array()) public function importSchema($schema, $format = 'yml', $directory = null, $models = array())
{ {
$builder = new Doctrine_Import_Builder(); $builder = new Doctrine_Builder_Record();
$builder->setTargetPath($directory); $builder->setTargetPath($directory);
$builder->setOptions($this->getOptions()); $builder->setOptions($this->getOptions());
......
...@@ -22,15 +22,13 @@ ...@@ -22,15 +22,13 @@
/** /**
* Doctrine_Migration * Doctrine_Migration
* *
* this class represents a database view
*
* @package Doctrine * @package Doctrine
* @subpackage Migration * @subpackage Migration
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.phpdoctrine.com * @link www.phpdoctrine.com
* @since 1.0 * @since 1.0
* @version $Revision: 1080 $ * @version $Revision: 1080 $
* @author Jonathan H. Wage <jwage@mac.com> * @author Jonathan H. Wage <jonwage@gmail.com>
*/ */
class Doctrine_Migration class Doctrine_Migration
{ {
......
<?php
/*
* $Id: Diff.php 1080 2007-02-10 18:17:08Z jwage $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.org>.
*/
/**
* Doctrine_Migration_Diff
*
* @package Doctrine
* @subpackage Migration
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision: 1080 $
* @author Jonathan H. Wage <jonwage@gmail.com>
*/
class Doctrine_Migration_Diff
{
}
\ No newline at end of file
...@@ -266,7 +266,7 @@ abstract class Doctrine_Record_Generator extends Doctrine_Record_Abstract ...@@ -266,7 +266,7 @@ abstract class Doctrine_Record_Generator extends Doctrine_Record_Abstract
{ {
$options['className'] = $this->_options['className']; $options['className'] = $this->_options['className'];
$builder = new Doctrine_Import_Builder(); $builder = new Doctrine_Builder_Record();
if ($this->_options['generateFiles']) { if ($this->_options['generateFiles']) {
if (isset($this->_options['generatePath']) && $this->_options['generatePath']) { if (isset($this->_options['generatePath']) && $this->_options['generatePath']) {
......
...@@ -36,7 +36,7 @@ class Doctrine_Import_Builder_TestCase extends Doctrine_UnitTestCase ...@@ -36,7 +36,7 @@ class Doctrine_Import_Builder_TestCase extends Doctrine_UnitTestCase
{ {
$table = $this->conn->getTable('Phonenumber'); $table = $this->conn->getTable('Phonenumber');
$builder = new Doctrine_Import_Builder(); $builder = new Doctrine_Builder_Record();
$rel = $builder->buildRelationDefinition($table->getRelations()); $rel = $builder->buildRelationDefinition($table->getRelations());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment