vote up 2 vote down star

So I'm just curious about this:

DataMapper uses a mixin for its Models

class Post
  include DataMapper::Resource

While active-record uses inheritance

class Post < ActiveRecord::Base

Does anyone know why DataMapper chose to do it that way (or why AR chose not to)?

flag

3 Answers

vote up 2 vote down check

I think the idea is that ActiveRecord considers the database backed aspect to be the key feature of a model class so it inherits that behavior. DataMapper looks like it considers being database backed to just be an aspect of a class that can be added to a class.

That's my guess. Yehuda Katz could tell you definitively.

link|flag
I thought it might be a purely 'philosphical' reason -- Let's see what other people say. – cloudhead Jul 24 at 21:56
vote up 3 vote down

It lets you inherit from another class that isn't a DM class.

It also allows adding the DM features to a class on the fly. Here's a class method from a module I'm working on right now:

def datamapper_class
  klass = self.dup
  klass.send(:include, DataMapper::Resource)
  klass.storage_names[:default] = @table_name
  klass.property(:id, DataMapper::Types::Serial)
  klass.property(:created_at, DateTime, :nullable => false)
  klass.property(:updated_at, DateTime, :nullable => false)
  columns_with_types { |n, t| klass.property(n, t, :field => n.to_s) }
  klass
end

This lets me take a SAXMachine class (very lightweight) and turn it into a Datamapper class on the fly, and do DataMappery stuff with it. You could even to it to an object's singleton class.

I like to imagine that this lowers my memory footprint when I'm importing 100K objects from XML (I don't use DM for the mass imports), and only mix in the more complex database functions when I need them

link|flag
interesting, I hadn't thought of that. – cloudhead Jul 25 at 19:25
vote up 1 vote down

This is really the question of choosing Inheritance v.s. Composition.

I personally favor composition as it appears to be a more natural way of constructing classes and objects.

Composition gives you more control over what behaviors you want to include in your class. As for inheritance you get either everything or nothing. Composition allows you to cherry pick the behaviors you want.

link|flag

Your Answer

Get an OpenID
or

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