Issue Details (XML | Word | Printable)

Key: DDC-515
Type: Improvement Improvement
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Benjamin Eberlei
Reporter: Roman S. Borschel
Votes: 1
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
Doctrine 2 - ORM

CLI Task: validate-mapping

Created: 12/Apr/10 08:48 AM   Updated: 11/May/10 05:19 PM
Component/s: ORM
Affects Version/s: None
Fix Version/s: 2.0-BETA2
Security Level: All


 Description  « Hide
There should be a CLI task "validate-mapping" or similar that reads in the metadata of all configured, mapped classes and processes them one-by-one, looking for errors in the mapping. For example, it is easy to detect that way when there is an association mapped with mappedBy but the other side does not have inversedBy specified (or there is not even another side...) . We can not make such strict validations during runtime for performance reasons, so a specific CLI task can be a great help during development for troubleshooting.

 All   Comments   Change History   FishEye      Sort Order: Ascending order - Click to sort in descending order
Benjamin Eberlei added a comment - 12/Apr/10 09:02 AM
We also need this to check in development if the current database schema equals the current metadata mapping. Possibly extracting all the logic of this into a Service Object so that users can include this in Phing or similar build processes.

Roman S. Borschel added a comment - 16/Apr/10 12:16 PM
I interpret that as you volunteering

Marc Hodgins added a comment - 30/Apr/10 05:09 PM
It would also be helpful if the task could look for lifecycle callback annotations in the methods and raise a warning if the class does not have a @HasLifeCycleCallbacks annotation.

Benjamin Eberlei added a comment - 02/May/10 04:55 PM
Hm this last one is a bit complicated, one would need to check if the annotation driver is used, instantiate your own reader and check for this error.

Roman S. Borschel added a comment - 03/May/10 11:06 AM - edited
In the context of DDC-567 it would also be nice to validate that all referenced column names are primary key columns.

ps. If anyone is curious why referencedColumnName then not always automatically points to the primary key column of the other class, its just not doable in an efficient way I think. referencedColumnName defaults to the hardcoded "id" name, because each class metadata must be able to be loaded independently without loading others (inheritance being an exception). If we start "guessing" default values by looking at other classes, we quickly load the metadata for huge parts (or all) of the mapping of the domain model on each request. At least during development without a persistent cache this would be a major pain and slowdown.


Benjamin Eberlei added a comment - 03/May/10 11:44 AM
@Roman - I just checked for "referencedColumnName" in the code, aswell as for their descendants during metadata ClassMetadata generation.

It seems they are not used "that" much throughout the code, would a lookuup to the targetEntity work? We could get rid of this attribute then...


Roman S. Borschel added a comment - 03/May/10 11:52 AM - edited
@Benjamin: We can not get rid of it anyway because of composite keys I think.

Like I said, a lookup on the targetEntity would potentially trigger a huge cascade of metadata loading throughout the whole domain model. Then the targetEntity has associations and so on and so on.


Benjamin Eberlei added a comment - 11/May/10 05:19 PM
This was implemented in the latest commit.