2010-11-02 00:03:50 +03:00
|
|
|
Tools
|
|
|
|
=====
|
|
|
|
|
|
|
|
Doctrine Console
|
|
|
|
----------------
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
The Doctrine Console is a Command Line Interface tool for
|
|
|
|
simplifying common tasks during the development of a project that
|
|
|
|
uses Doctrine 2.
|
|
|
|
|
2012-06-16 14:12:04 +04:00
|
|
|
Take a look at the :doc:`Configuration <configuration>` for more
|
2012-06-16 13:57:56 +04:00
|
|
|
information how to setup the console command.
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
Getting Help
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Type ``doctrine`` on the command line and you should see an
|
|
|
|
overview of the available commands or use the --help flag to get
|
|
|
|
information on the available commands. If you want to know more
|
|
|
|
about the use of generate entities for example, you can call:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
doctrine orm:generate-entities --help
|
|
|
|
|
2011-12-18 02:56:10 +04:00
|
|
|
|
2012-01-09 13:36:56 +04:00
|
|
|
Configuration (PEAR)
|
|
|
|
~~~~~~~~~~~~~~~~~~~~
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
Whenever the ``doctrine`` command line tool is invoked, it can
|
|
|
|
access alls Commands that were registered by developer. There is no
|
2012-01-09 13:36:56 +04:00
|
|
|
auto-detection mechanism at work. The Doctrine binary
|
2010-11-01 23:16:12 +03:00
|
|
|
already registers all the commands that currently ship with
|
|
|
|
Doctrine DBAL and ORM. If you want to use additional commands you
|
|
|
|
have to register them yourself.
|
|
|
|
|
2012-01-09 13:36:56 +04:00
|
|
|
All the commands of the Doctrine Console require access to the EntityManager
|
|
|
|
or DBAL Connection. You have to inject them into the console application
|
|
|
|
using so called Helper-Sets. This requires either the ``db``
|
2010-11-01 23:16:12 +03:00
|
|
|
or the ``em`` helpers to be defined in order to work correctly.
|
2012-01-09 13:36:56 +04:00
|
|
|
|
|
|
|
Whenever you invoke the Doctrine binary the current folder is searched for a
|
|
|
|
``cli-config.php`` file. This file contains the project specific configuration:
|
2010-11-01 23:16:12 +03:00
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
<?php
|
2011-02-13 14:47:51 +03:00
|
|
|
$helperSet = new \Symfony\Component\Console\Helper\HelperSet(array(
|
2010-11-01 23:16:12 +03:00
|
|
|
'db' => new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($conn)
|
|
|
|
));
|
|
|
|
$cli->setHelperSet($helperSet);
|
|
|
|
|
|
|
|
When dealing with the ORM package, the EntityManagerHelper is
|
|
|
|
required:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
<?php
|
2011-02-13 14:47:51 +03:00
|
|
|
$helperSet = new \Symfony\Component\Console\Helper\HelperSet(array(
|
2010-11-01 23:16:12 +03:00
|
|
|
'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em)
|
|
|
|
));
|
|
|
|
$cli->setHelperSet($helperSet);
|
|
|
|
|
|
|
|
The HelperSet instance has to be generated in a separate file (i.e.
|
|
|
|
``cli-config.php``) that contains typical Doctrine bootstrap code
|
|
|
|
and predefines the needed HelperSet attributes mentioned above. A
|
2012-01-09 13:36:56 +04:00
|
|
|
sample ``cli-config.php`` file looks as follows:
|
2010-11-01 23:16:12 +03:00
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
<?php
|
2012-01-09 13:36:56 +04:00
|
|
|
// cli-config.php
|
2012-06-16 13:57:56 +04:00
|
|
|
require_once 'my_bootstrap.php';
|
2012-01-09 13:36:56 +04:00
|
|
|
|
2012-06-16 13:57:56 +04:00
|
|
|
// Any way to access the EntityManager from your application
|
|
|
|
$em = GetMyEntityManager();
|
2010-11-01 23:16:12 +03:00
|
|
|
|
2011-02-13 14:47:51 +03:00
|
|
|
$helperSet = new \Symfony\Component\Console\Helper\HelperSet(array(
|
2010-11-01 23:16:12 +03:00
|
|
|
'db' => new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($em->getConnection()),
|
|
|
|
'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em)
|
|
|
|
));
|
|
|
|
|
2012-01-09 13:36:56 +04:00
|
|
|
It is important to define a correct HelperSet that Doctrine binary
|
2010-11-01 23:16:12 +03:00
|
|
|
script will ultimately use. The Doctrine Binary will automatically
|
|
|
|
find the first instance of HelperSet in the global variable
|
|
|
|
namespace and use this.
|
|
|
|
|
2012-01-09 13:36:56 +04:00
|
|
|
.. note::
|
|
|
|
|
|
|
|
You have to adjust this snippet for your specific application or framework
|
|
|
|
and use their facilities to access the Doctrine EntityManager and
|
|
|
|
Connection Resources.
|
|
|
|
|
|
|
|
Configuration (Non-PEAR)
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
If you do not use a PEAR installation of Doctrine you have to define your own
|
|
|
|
Doctrine binary. Put this file into the application root and invoke it from
|
|
|
|
there whenever you want to access the Doctrine console.
|
|
|
|
|
|
|
|
.. code-block:: php
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// doctrine.php - Put in your application root
|
|
|
|
|
|
|
|
use Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper;
|
|
|
|
use Doctrine\DBAL\Tools\Console\Helper\EntityManagerHelper;
|
|
|
|
use Doctrine\ORM\Tools\Console\ConsoleRunner;
|
|
|
|
use Symfony\Component\Console\Helper\HelperSet;
|
|
|
|
|
2012-06-16 13:57:56 +04:00
|
|
|
require_once 'my_bootstrap.php';
|
2012-01-09 13:36:56 +04:00
|
|
|
|
2012-06-16 13:57:56 +04:00
|
|
|
// Any way to access the EntityManager from your application
|
|
|
|
$em = GetMyEntityManager();
|
2012-01-09 13:36:56 +04:00
|
|
|
|
|
|
|
$helperSet = new HelperSet(array(
|
|
|
|
'db' => new ConnectionHelper($em->getConnection()),
|
|
|
|
'em' => new EntityManagerHelper($em)
|
|
|
|
));
|
|
|
|
|
|
|
|
ConsoleRunner::run($helperSet);
|
|
|
|
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
Command Overview
|
|
|
|
~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The following Commands are currently available:
|
|
|
|
|
|
|
|
|
|
|
|
- ``help`` Displays help for a command (?)
|
|
|
|
- ``list`` Lists commands
|
|
|
|
- ``dbal:import`` Import SQL file(s) directly to Database.
|
|
|
|
- ``dbal:run-sql`` Executes arbitrary SQL directly from the
|
|
|
|
command line.
|
|
|
|
- ``orm:clear-cache:metadata`` Clear all metadata cache of the
|
|
|
|
various cache drivers.
|
|
|
|
- ``orm:clear-cache:query`` Clear all query cache of the various
|
|
|
|
cache drivers.
|
|
|
|
- ``orm:clear-cache:result`` Clear result cache of the various
|
|
|
|
cache drivers.
|
|
|
|
- ``orm:convert-d1-schema`` Converts Doctrine 1.X schema into a
|
|
|
|
Doctrine 2.X schema.
|
|
|
|
- ``orm:convert-mapping`` Convert mapping information between
|
|
|
|
supported formats.
|
|
|
|
- ``orm:ensure-production-settings`` Verify that Doctrine is
|
|
|
|
properly configured for a production environment.
|
|
|
|
- ``orm:generate-entities`` Generate entity classes and method
|
|
|
|
stubs from your mapping information.
|
|
|
|
- ``orm:generate-proxies`` Generates proxy classes for entity
|
|
|
|
classes.
|
|
|
|
- ``orm:generate-repositories`` Generate repository classes from
|
|
|
|
your mapping information.
|
|
|
|
- ``orm:run-dql`` Executes arbitrary DQL directly from the command
|
|
|
|
line.
|
|
|
|
- ``orm:schema-tool:create`` Processes the schema and either
|
|
|
|
create it directly on EntityManager Storage Connection or generate
|
|
|
|
the SQL output.
|
|
|
|
- ``orm:schema-tool:drop`` Processes the schema and either drop
|
|
|
|
the database schema of EntityManager Storage Connection or generate
|
|
|
|
the SQL output.
|
|
|
|
- ``orm:schema-tool:update`` Processes the schema and either
|
|
|
|
update the database schema of EntityManager Storage Connection or
|
|
|
|
generate the SQL output.
|
|
|
|
|
|
|
|
Database Schema Generation
|
|
|
|
--------------------------
|
|
|
|
|
2010-11-02 00:03:50 +03:00
|
|
|
.. note::
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
SchemaTool can do harm to your database. It will drop or alter
|
|
|
|
tables, indexes, sequences and such. Please use this tool with
|
|
|
|
caution in development and not on a production server. It is meant
|
|
|
|
for helping you develop your Database Schema, but NOT with
|
|
|
|
migrating schema from A to B in production. A safe approach would
|
|
|
|
be generating the SQL on development server and saving it into SQL
|
|
|
|
Migration files that are executed manually on the production
|
|
|
|
server.
|
|
|
|
|
|
|
|
SchemaTool assumes your Doctrine Project uses the given database on
|
|
|
|
its own. Update and Drop commands will mess with other tables if
|
|
|
|
they are not related to the current project that is using Doctrine.
|
|
|
|
Please be careful!
|
|
|
|
|
|
|
|
|
|
|
|
To generate your database schema from your Doctrine mapping files
|
|
|
|
you can use the ``SchemaTool`` class or the ``schema-tool`` Console
|
|
|
|
Command.
|
|
|
|
|
|
|
|
When using the SchemaTool class directly, create your schema using
|
|
|
|
the ``createSchema()`` method. First create an instance of the
|
|
|
|
``SchemaTool`` and pass it an instance of the ``EntityManager``
|
|
|
|
that you want to use to create the schema. This method receives an
|
|
|
|
array of ``ClassMetadataInfo`` instances.
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
<?php
|
|
|
|
$tool = new \Doctrine\ORM\Tools\SchemaTool($em);
|
|
|
|
$classes = array(
|
|
|
|
$em->getClassMetadata('Entities\User'),
|
|
|
|
$em->getClassMetadata('Entities\Profile')
|
|
|
|
);
|
|
|
|
$tool->createSchema($classes);
|
|
|
|
|
|
|
|
To drop the schema you can use the ``dropSchema()`` method.
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
<?php
|
|
|
|
$tool->dropSchema($classes);
|
|
|
|
|
|
|
|
This drops all the tables that are currently used by your metadata
|
|
|
|
model. When you are changing your metadata a lot during development
|
|
|
|
you might want to drop the complete database instead of only the
|
|
|
|
tables of the current model to clean up with orphaned tables.
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
<?php
|
|
|
|
$tool->dropSchema($classes, \Doctrine\ORM\Tools\SchemaTool::DROP_DATABASE);
|
|
|
|
|
|
|
|
You can also use database introspection to update your schema
|
|
|
|
easily with the ``updateSchema()`` method. It will compare your
|
|
|
|
existing database schema to the passed array of
|
|
|
|
``ClassMetdataInfo`` instances.
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
<?php
|
|
|
|
$tool->updateSchema($classes);
|
|
|
|
|
|
|
|
If you want to use this functionality from the command line you can
|
|
|
|
use the ``schema-tool`` command.
|
|
|
|
|
|
|
|
To create the schema use the ``create`` command:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
$ php doctrine orm:schema-tool:create
|
|
|
|
|
|
|
|
To drop the schema use the ``drop`` command:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
$ php doctrine orm:schema-tool:drop
|
|
|
|
|
|
|
|
If you want to drop and then recreate the schema then use both
|
|
|
|
options:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
$ php doctrine orm:schema-tool:drop
|
|
|
|
$ php doctrine orm:schema-tool:create
|
|
|
|
|
|
|
|
As you would think, if you want to update your schema use the
|
|
|
|
``update`` command:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
$ php doctrine orm:schema-tool:update
|
|
|
|
|
|
|
|
All of the above commands also accept a ``--dump-sql`` option that
|
|
|
|
will output the SQL for the ran operation.
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
$ php doctrine orm:schema-tool:create --dump-sql
|
|
|
|
|
|
|
|
Before using the orm:schema-tool commands, remember to configure
|
|
|
|
your cli-config.php properly.
|
|
|
|
|
2010-11-02 00:03:50 +03:00
|
|
|
.. note::
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
When using the Annotation Mapping Driver you have to either setup
|
|
|
|
your autoloader in the cli-config.php correctly to find all the
|
|
|
|
entities, or you can use the second argument of the
|
|
|
|
``EntityManagerHelper`` to specify all the paths of your entities
|
|
|
|
(or mapping files), i.e.
|
|
|
|
``new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em, $mappingPaths);``
|
|
|
|
|
2011-02-13 14:57:04 +03:00
|
|
|
Entity Generation
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
Generate entity classes and method stubs from your mapping information.
|
|
|
|
|
|
|
|
.. code-block:: php
|
|
|
|
|
|
|
|
$ php doctrine orm:generate-entities
|
|
|
|
$ php doctrine orm:generate-entities --update-entities
|
|
|
|
$ php doctrine orm:generate-entities --regenerate-entities
|
|
|
|
|
|
|
|
This command is not suited for constant usage. It is a little helper and does
|
|
|
|
not support all the mapping edge cases very well. You still have to put work
|
|
|
|
in your entities after using this command.
|
|
|
|
|
|
|
|
It is possible to use the EntityGenerator on code that you have already written. It will
|
|
|
|
not be lost. The EntityGenerator will only append new code to your
|
|
|
|
file and will not delete the old code. However this approach may still be prone
|
|
|
|
to error and we suggest you use code repositories such as GIT or SVN to make
|
|
|
|
backups of your code.
|
|
|
|
|
|
|
|
It makes sense to generate the entity code if you are using entities as Data
|
|
|
|
Access Objects only and dont put much additional logic on them. If you are
|
|
|
|
however putting much more logic on the entities you should refrain from using
|
|
|
|
the entity-generator and code your entities manually.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
Even if you specified Inheritance options in your
|
|
|
|
XML or YAML Mapping files the generator cannot generate the base and
|
|
|
|
child classes for you correctly, because it doesn't know which
|
|
|
|
class is supposed to extend which. You have to adjust the entity
|
|
|
|
code manually for inheritance to work!
|
|
|
|
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
Convert Mapping Information
|
|
|
|
---------------------------
|
|
|
|
|
2011-02-13 14:57:04 +03:00
|
|
|
Convert mapping information between supported formats.
|
|
|
|
|
|
|
|
This is an **execute one-time** command. It should not be necessary for
|
|
|
|
you to call this method multiple times, escpecially when using the ``--from-database``
|
|
|
|
flag.
|
|
|
|
|
2011-12-31 07:37:25 +04:00
|
|
|
Converting an existing database schema into mapping files only solves about 70-80%
|
2011-02-13 14:57:04 +03:00
|
|
|
of the necessary mapping information. Additionally the detection from an existing
|
|
|
|
database cannot detect inverse associations, inheritance types,
|
|
|
|
entities with foreign keys as primary keys and many of the
|
|
|
|
semantical operations on associations such as cascade.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
There is no need to convert YAML or XML mapping files to annotations
|
|
|
|
every time you make changes. All mapping drivers are first class citizens
|
|
|
|
in Doctrine 2 and can be used as runtime mapping for the ORM. See the
|
|
|
|
docs on XML and YAML Mapping for an example how to register this metadata
|
|
|
|
drivers as primary mapping source.
|
|
|
|
|
2010-11-01 23:16:12 +03:00
|
|
|
To convert some mapping information between the various supported
|
|
|
|
formats you can use the ``ClassMetadataExporter`` to get exporter
|
|
|
|
instances for the different formats:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
<?php
|
|
|
|
$cme = new \Doctrine\ORM\Tools\Export\ClassMetadataExporter();
|
|
|
|
|
|
|
|
Once you have a instance you can use it to get an exporter. For
|
|
|
|
example, the yml exporter:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
<?php
|
|
|
|
$exporter = $cme->getExporter('yml', '/path/to/export/yml');
|
|
|
|
|
|
|
|
Now you can export some ``ClassMetadata`` instances:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
<?php
|
|
|
|
$classes = array(
|
|
|
|
$em->getClassMetadata('Entities\User'),
|
|
|
|
$em->getClassMetadata('Entities\Profile')
|
|
|
|
);
|
|
|
|
$exporter->setMetadata($classes);
|
|
|
|
$exporter->export();
|
|
|
|
|
|
|
|
This functionality is also available from the command line to
|
|
|
|
convert your loaded mapping information to another format. The
|
|
|
|
``orm:convert-mapping`` command accepts two arguments, the type to
|
|
|
|
convert to and the path to generate it:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
$ php doctrine orm:convert-mapping xml /path/to/mapping-path-converted-to-xml
|
|
|
|
|
|
|
|
Reverse Engineering
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
You can use the ``DatabaseDriver`` to reverse engineer a database
|
|
|
|
to an array of ``ClassMetadataInfo`` instances and generate YAML,
|
|
|
|
XML, etc. from them.
|
|
|
|
|
2011-02-13 14:57:04 +03:00
|
|
|
.. note::
|
|
|
|
|
|
|
|
Reverse Engineering is a **one-time** process that can get you started with a project.
|
|
|
|
Converting an existing database schema into mapping files only detects about 70-80%
|
|
|
|
of the necessary mapping information. Additionally the detection from an existing
|
|
|
|
database cannot detect inverse associations, inheritance types,
|
|
|
|
entities with foreign keys as primary keys and many of the
|
|
|
|
semantical operations on associations such as cascade.
|
|
|
|
|
2010-11-01 23:16:12 +03:00
|
|
|
First you need to retrieve the metadata instances with the
|
|
|
|
``DatabaseDriver``:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
<?php
|
|
|
|
$em->getConfiguration()->setMetadataDriverImpl(
|
|
|
|
new \Doctrine\ORM\Mapping\Driver\DatabaseDriver(
|
|
|
|
$em->getConnection()->getSchemaManager()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2010-12-18 19:14:20 +03:00
|
|
|
$cmf = new DisconnectedClassMetadataFactory();
|
|
|
|
$cmf->setEntityManager($em);
|
2010-11-01 23:16:12 +03:00
|
|
|
$metadata = $cmf->getAllMetadata();
|
|
|
|
|
|
|
|
Now you can get an exporter instance and export the loaded metadata
|
|
|
|
to yml:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
<?php
|
|
|
|
$exporter = $cme->getExporter('yml', '/path/to/export/yml');
|
|
|
|
$exporter->setMetadata($metadata);
|
|
|
|
$exporter->export();
|
|
|
|
|
|
|
|
You can also reverse engineer a database using the
|
|
|
|
``orm:convert-mapping`` command:
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. code-block:: php
|
2010-11-01 23:16:12 +03:00
|
|
|
|
|
|
|
$ php doctrine orm:convert-mapping --from-database yml /path/to/mapping-path-converted-to-yml
|
|
|
|
|
2010-12-03 22:13:10 +03:00
|
|
|
.. note::
|
2010-11-02 00:03:50 +03:00
|
|
|
|
|
|
|
Reverse Engineering is not always working perfectly
|
2010-11-01 23:16:12 +03:00
|
|
|
depending on special cases. It will only detect Many-To-One
|
|
|
|
relations (even if they are One-To-One) and will try to create
|
|
|
|
entities from Many-To-Many tables. It also has problems with naming
|
|
|
|
of foreign keys that have multiple column names. Any Reverse
|
|
|
|
Engineered Database-Schema needs considerable manual work to become
|
|
|
|
a useful domain model.
|
|
|
|
|
|
|
|
|
2012-08-01 01:26:40 +04:00
|
|
|
Runtime vs Development Mapping Validation
|
|
|
|
-----------------------------------------
|
|
|
|
|
|
|
|
For performance reasons Doctrine 2 has to skip some of the
|
|
|
|
necessary validation of metadata mappings. You have to execute
|
|
|
|
this validation in your development workflow to verify the
|
|
|
|
associations are correctly defined.
|
|
|
|
|
|
|
|
You can either use the Doctrine Command Line Tool:
|
|
|
|
|
|
|
|
.. code-block:: php
|
|
|
|
|
|
|
|
doctrine orm:validate-schema
|
|
|
|
|
|
|
|
Or you can trigger the validation manually:
|
|
|
|
|
|
|
|
.. code-block:: php
|
|
|
|
|
|
|
|
<?php
|
|
|
|
use Doctrine\ORM\Tools\SchemaValidator;
|
|
|
|
|
|
|
|
$validator = new SchemaValidator($entityManager);
|
|
|
|
$errors = $validator->validateMapping();
|
|
|
|
|
|
|
|
if (count($errors) > 0) {
|
|
|
|
// Lots of errors!
|
|
|
|
echo implode("\n\n", $errors);
|
|
|
|
}
|
|
|
|
|
|
|
|
If the mapping is invalid the errors array contains a positive
|
|
|
|
number of elements with error messages.
|
|
|
|
|
|
|
|
.. warning::
|
|
|
|
|
|
|
|
One mapping option that is not validated is the use of the referenced column name.
|
|
|
|
It has to point to the equivalent primary key otherwise Doctrine will not work.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
One common error is to use a backlash in front of the
|
|
|
|
fully-qualified class-name. Whenever a FQCN is represented inside a
|
|
|
|
string (such as in your mapping definitions) you have to drop the
|
|
|
|
prefix backslash. PHP does this with ``get_class()`` or Reflection
|
|
|
|
methods for backwards compatibility reasons.
|
|
|
|
|
|
|
|
|
2012-06-16 13:57:56 +04:00
|
|
|
Adding own commands
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
You can also add your own commands on-top of the Doctrine supported
|
|
|
|
tools if you are using a manually built (Non-PEAR) binary.
|
2010-11-01 23:16:12 +03:00
|
|
|
|
2012-06-16 13:57:56 +04:00
|
|
|
To include a new command on Doctrine Console, you need to do modify the
|
|
|
|
``doctrine.php`` file a little:
|
|
|
|
|
|
|
|
.. code-block:: php
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// doctrine.php
|
|
|
|
use Symfony\Component\Console\Helper\Application;
|
|
|
|
|
|
|
|
// as before ...
|
|
|
|
|
|
|
|
// replace the ConsoleRunner::run() statement with:
|
|
|
|
$cli = new Application('Doctrine Command Line Interface', \Doctrine\ORM\Version::VERSION);
|
|
|
|
$cli->setCatchExceptions(true);
|
|
|
|
$cli->setHelperSet($helperSet);
|
|
|
|
|
|
|
|
// Register All Doctrine Commands
|
|
|
|
ConsoleRunner::addCommands($cli);
|
|
|
|
|
|
|
|
// Register your own command
|
|
|
|
$cli->addCommand(new \MyProject\Tools\Console\Commands\MyCustomCommand);
|
|
|
|
|
|
|
|
// Runs console application
|
|
|
|
$cli->run();
|
|
|
|
|
|
|
|
Additionally, include multiple commands (and overriding previously
|
|
|
|
defined ones) is possible through the command:
|
|
|
|
|
|
|
|
.. code-block:: php
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
$cli->addCommands(array(
|
|
|
|
new \MyProject\Tools\Console\Commands\MyCustomCommand(),
|
|
|
|
new \MyProject\Tools\Console\Commands\SomethingCommand(),
|
|
|
|
new \MyProject\Tools\Console\Commands\AnotherCommand(),
|
|
|
|
new \MyProject\Tools\Console\Commands\OneMoreCommand(),
|
|
|
|
));
|