vote up 3 vote down star
1

I am using single table inheritance in my rails application, and want to explicitly set the type of an instance.

I have

class Event < ActiveRecord::Base
class SpecialEvent < Event

Implemented through single table inheritance.

SpecialEvent.new works as expected, but I want to be able to do things like

Event.new(:type => 'SpecialEvent')

So I can create different sub_types easily in the application.

However this doesn't work and seems to set :type to nil, not the value I set it to; I suspect this is because by calling Event.new it is overwriting the :type argument.

Has anyone got a good way of doing this?

flag

77% accept rate
Do you mean that you want to create sub-types on the fly ? – Bill Jan 12 '09 at 15:07
No, I want to create instances of sub-types, where I want to programmatically determine which sub_type they are – DanSingerman Jan 12 '09 at 15:14

4 Answers

vote up 7 vote down check

If you're trying to dynamically instantiate a subtype, and you have the type as a string, you can do this:

'SpecialEvent'.constantize.new()
link|flag
vote up 1 vote down

from "Pragmatic - Agile Web Development with rails 3rd edition", page 380

"

There’s also a less obvious constraint (with STI). The attribute type is also the name of a built-in Ruby method, so accessing it directly to set or change the type of a row may result in strange Ruby messages. Instead, access it implicitly by creating objects of the appropriate class, or access it via the model object’s indexing interface, using something such as this:

person[:type] = 'Manager'

"

man, this book really rocks

link|flag
vote up 0 vote down

Apparently, Rails does not allow you to set Type directly. Here's what I do...

klass_name = 'Foo'
...
klass = Class.const_get(klass_name)
klass.new # Foo.new

I believe .constantize is a Rails inflector shortcut. const_get is a Ruby method on Class and Module.

link|flag
vote up 2 vote down

No, I want to create instances of sub-types, where I want to programmatically determine which sub_type they are – HermanD

You could use a factory pattern, although I have heard recently that people frown on the overuse of this pattern. Basically, use the factory to create the actual types you want to get

class EventFactory
  def EventFactory.create_event(event_type)
    event_type.constantize.new()
  end
end
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.