Built associations don't know their parent. Why not?

Simple example.

class Car < ActiveRecord::Base
has_one :engine

validates_presence_of :engine
validates_associated :engine
end

class Engine < ActiveRecord::Base
belongs_to :car

validates_presence_of :car
end

@car = Car.new
@car.valid? # => false
@car.errors # => no engine obviously

@car.build_engine
@car.valid? # => false

How come??

@car.errors # => engine has no car!
@car.engine.car # => nil

Since we validate_associated :engine, engine runs its own validations
and finds that validates_presence_of car is false, since car is nil.
Shouldn’t engine know the car that built it?

Just for fun I do this:

@car.engine.car = @car
@car.valid? # => true

Shouldn’t this work by default?

If you have suggestions, I moved this to Core:
http://groups.google.com/group/rubyonrails-core/browse_thread/thread/eaba411bb69c58d8

I agree. Please write a patch :slight_smile:

Eloy

Shouldn’t you be validating presence of the key rather than the object
itself?

Eloy, I’ll give it a shot. : )

Flinn, not necessarily. In this case we talk about associated in-
memory object which doesn’t have id yet. In my opinion
validates_presence_of :engine_id should behave the old way - check for
id - since we explicitly ask for it.

A key wouldn’t be possible because you’d need to save a possibly
invalid record first to be able to do that.
Let me note that I don’t necessarily have a need for
validate_presence_of to work in this case, but rather the ability of
having the parent object around when doing stuff in the child model.

Eloy

Well, if the child cannot exist without parent, it seems natural to
have such validation in the child - must have parent. (In addition to
your reasoning.)

On Wed, Apr 22, 2009 at 3:42 PM, Michael K.
[email protected] wrote:

associations to choose from:

has_many :foos, :conditions=>…
has_many :something_else, :class_name=>“Foo”
has_many :important_foos, :through=>…

Ideally we’d just punt on those cases and require users to explicitly
mark associations as inverses with a declaration like

has_many :foos, :conditions … :inverse_of=>:bar

FWIW, that’s basically how Sequel handles it, with the :reciprocal
option, though instead of punting by default if multiple associations
match, it picks the first matching association.

Jeremy

I had a closely related question today, which was why this code does N
+1 queries?

order.order_items.each {|oi| oi.order}

Why must each order item do a query to find its order? It seems like
Rails should recognize the reciprocal nature of the associations.

-kevin

FWIW, that’s basically how Sequel handles it, with the :reciprocal
option, though instead of punting by default if multiple associations
match, it picks the first matching association.

The first matching association sounds like it could be prone to
surprises but we could see how it plays out. Fundamentally though
having something that works with explicit declarations only would be a
good start. How we mark the associations is kinda orthogonal to the
associations’ behaviour which is the real challenge.


Cheers

Koz

On Thu, Apr 23, 2009 at 9:16 AM, kscaldef [email protected]
wrote:

I had a closely related question today, which was why this code does N
+1 queries?

order.order_items.each {|oi| oi.order}

Why must each order item do a query to find its order? It seems like
Rails should recognize the reciprocal nature of the associations.

Yes, this is called bi-directional associations and would be a
welcome (if non-trivial) addition in 3.0.

Incidentally it actually only does 1 query, the rest are cache hits,
so at least your database is safe. However it still wastes memory and
can lead to some weirdness and should be fixed.

The has_many :foos, belongs_to :bar case is very easy, but there are
some common corner cases which we’ll have to look at. For example
what’s the inverse of belongs_to :bar when we have the following
associations to choose from:

has_many :foos, :conditions=>…
has_many :something_else, :class_name=>“Foo”
has_many :important_foos, :through=>…

Ideally we’d just punt on those cases and require users to explicitly
mark associations as inverses with a declaration like

has_many :foos, :conditions … :inverse_of=>:bar


Cheers

Koz

Wouldn’t all of these problems be solved by an identity map? Wouldn’t
that
be a better solution than trying to hack this on the existing system?

/Jonas

2009/4/22 Michael K. [email protected]

Rails should recognize the reciprocal nature of the associations.
what’s the inverse of belongs_to :bar when we have the following

I wrote this up as a patch a while ago, not enough folk looked at it
from
Rails 2.3, but maybe more people can look at it for 3.0? The patch is
here:
http://rails.lighthouseapp.com/projects/8994/tickets/1619-patch-support-for-inverse-option-in-associations

It’s based on a plugin I wrote called parental_control :
http://github.com/hlame/parental_control

The patch demands a :inverse syntax, but the plugin uses “magic” to try
and
work it out correctly.

Cheers,

Muz

On Thu, Apr 23, 2009 at 6:24 PM, Jonas N. [email protected]
wrote:

Wouldn’t all of these problems be solved by an identity map? Wouldn’t that
be a better solution than trying to hack this on the existing system?

Yes, bi-directional associations are a localised implementation of an
identity map. As has been discussed several times before, an identity
map would be a welcome addition to AR, but would be a lot of work
given the functionality we support (:select etc) and the strange ways
it can all interact.

Bi-Directional associations would give 99% of the return with much
less of the complication.


Cheers

Koz

2009/4/24 Murray S. [email protected]

The has_many :foos, belongs_to :bar case is very easy, but there are

has_many :foos, :conditions … :inverse_of=>:bar

I wrote this up as a patch a while ago, not enough folk looked at it from
Rails 2.3, but maybe more people can look at it for 3.0? The patch is here:
http://rails.lighthouseapp.com/projects/8994/tickets/1619-patch-support-for-inverse-option-in-associations

It’s based on a plugin I wrote called parental_control :
http://github.com/hlame/parental_control

Um … that’s GitHub - h-lame/parental_control: A plugin for rails that allows has_one, has_many and certain belongs_to associations to share instances of the "parent" model to the "child" model via the association.

I keep forgetting which apps allow / don’t allow hyphens in usernames…

On Thu, Apr 23, 2009 at 6:24 PM, Jonas N. [email protected]
wrote:

Wouldn’t all of these problems be solved by an identity map? Wouldn’t that
be a better solution than trying to hack this on the existing system?

Correct me if I’m wrong, but an identity map does nothing to help with
unsaved records. For example, if I build children on a parent record,
I should be able to have validates_presence_of :parent in the child
model - but can’t.

Of course, this already works fine without an identity map in the
update case, where the parent ID has already been set and so the
record can be found, but create is the hard one. So an identity map
doesn’t really solve many problems, though there are potentially
efficiency gains.

I wrote a “reverse” association finder in ActiveScaffold a couple
years ago. Works pretty well, I think:

Also, I’ve grown very accustomed to writing bi-directional association
validations in my home-grown validation library. Granted, I’ve always
had to set the “reverse” association manually which looks a little
shoddy in my controllers, but the key to making it all work was: