|
[
Permalink
| « Hide
]
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.
I interpret that as you volunteering
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.
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.
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. @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... @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. This was implemented in the latest commit.
|
||||||||||||||||||||||||||||||||||||||||||||