2006-08-27 06:21:20 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* 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.com>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @package Doctrine
|
|
|
|
* @url http://www.phpdoctrine.com
|
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* class Doctrine_Import
|
|
|
|
* Main responsible of performing import operation. Delegates database schema
|
|
|
|
* reading to a reader object and passes the result to a builder object which
|
|
|
|
* builds a Doctrine data model.
|
|
|
|
*/
|
|
|
|
class Doctrine_Import
|
|
|
|
{
|
|
|
|
|
|
|
|
/** Aggregations: */
|
|
|
|
|
|
|
|
/** Compositions: */
|
|
|
|
|
|
|
|
/*** Attributes: ***/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
private $reader;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
private $builder;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
public function import( ) {
|
|
|
|
|
|
|
|
} // end of member function import
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param Doctrine_Import_Reader reader * @return
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
public function setReader( $reader ) {
|
|
|
|
|
|
|
|
} // end of member function setReader
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param Doctrine_Import_Builder builder * @return
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
public function setBuilder( $builder ) {
|
|
|
|
|
|
|
|
} // end of member function setBuilder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // end of Doctrine_Import
|
2006-09-04 02:46:30 +04:00
|
|
|
|