vote up 2 vote down star

I'm interested in some of the design behind Rails ActiveRecord, Doctrine for PHP (and similar ORMs).

  • How does an ORM manage to accomplish features like chained accessors and how deep are they typically expected to work?
  • How does an ORM construct queries internally?
  • How does an ORM manage the queries while sustaining the arbitrary nature of all that is expected of it?

Obviously this is an academic question, but all natures of answers are welcome!

(My language of choice is OO PHP5.3!)

flag
6  
Don't anthropomorphise computers. They don't like it. – finnw Jul 21 at 14:21

3 Answers

vote up 3 vote down check

Chained method calls are orthogonal to the ORM question, they're used all over the place in OOP. A chain-able method simply returns a reference to the current object, allowing the return value to be called. In PHP

class A {
	public function b() {
		...
		return $this;
	}

	public function c($param) {
		...
		return $this;
	}		
}


$foo = new A();
$foo->b()->c('one');
// chaining is equivilant to
// $foo = $foo->b();
// $foo = $foo->c();

As for how queries are constructed, there are two methods. In ActiveRecord like ORMs there's code that examines the Database's meta-data. Most databases has some kind of SQL or SQL like commands to view this meta-data. (MySQL's DESCRIBE TABLE, Oracle's USER_TAB_COLUMNS table, etc.)

Some ORMs have you describe your database tables in a neutral language such as YAML. Others might infer a database structure from the way you've created your Object models (I want to say Django does this, but it's been a while since I looked at it). Finally there's a hybrid approach, where either of the previous two techniques are used, but a separate tool is provided to automatically generate the YAML/etc. or class files.

One the names and data-types of a table are known, it's pretty easy to pragmatically write a SQL query that returns all the rows, or a specific set of rows that meet a certain criteria.

As for your last question,

How does an ORM manage the queries while sustaining the arbitrary nature of all that is expected of it?

I'd argue the answer is "not very well". Once you move beyond the one-table, one-object metaphor, each ORM has a different approach an philosophy as to how SQL queries should be used to model objects. In the abstract though, it's just as simple as adding new methods that construct queries based on the assumptions of the ORM (i.e. Zend_Db_Table's "findManyToManyRowset" method)

link|flag
Thanks! That's a really great answer. So truthfully, an ORM derives its complexity from the features it offers on top of a rather simplistic query generator? – Omega Jul 21 at 19:51
That's one way of putting it. I'd be careful with the term "ORM" though. There's a lot of people who don't consider things like AcrtiveRecord a true ORM, but rather a tool for implementing ORM. More here kore-nordmann.de/blog/why_active_record_sucks.html/… – Alan Storm Jul 21 at 20:20
That's definitely true. I tend to call mine just an OO data access wrapper or base OO data class. Thanks for the info :) I may have to make a more specific question about how the queries themselves are generated. Determining which columns to fetch is easy. But I'm sure there's some complex process to generate the WHERE clause and other conditions... – Omega Jul 22 at 14:15
vote up 0 vote down

I created a presentation on the topic of building a PHP DataMapper that might be interesting to you. It was recorded on video at the Oklahoma City Coworking Collaborative when I presented it there for the PHP user group:

Video: http://blip.tv/file/2249586/

Presentation Slides: http://www.slideshare.net/vlucas/building-data-mapper-php5-presentation

The presentation was basically the early concept of phpDataMapper, though a lot has changed since.

Hope they help you understand the inner workings of ORMs a bit better.

link|flag
vote up 0 vote down

Chained accessors aren't really a big deal: you return $this from the setter method. Boom, done, works at as many levels as you like.

link|flag
Do you mean "getter" method? So you just store the state of whatever the method requested and bring back the original object to receive further tweaks? Say in PHP, what would be a good way to know that you're at the end of a chain - and thus should be returning the results instead of "this"? – Omega Jul 21 at 14:29
Nope, I mean setter methods. Accessor chaining on read accessors, rather than write accessors, is nonsensical to me. – chaos Jul 21 at 14:34
Interesting, I may simply be using the term wrong. Can you explain how come? – Omega Jul 21 at 19:49
Well, we're talking about like how in jQuery you can do $(obj).hide('fast').show('slow').cook('thoroughly'), right? Those are all 'write-type' operations; we don't need to use their return value for anything but returning the base object, allowing us to do the chaining. You wouldn't do $(obj).attr('src').hide(), because that doesn't make any sense; attr('src') is returning a queried value that you're using, so chaining something off of it that operates on $(obj) isn't something that would ever make any sense. – chaos Jul 21 at 19:56
Your reasoning is correct, although I'm talking strictly in terms of retrieving data. Not performing any modifications. My operations would be more like: $car->owners->addresses (array of Address instances) or $car->owners[1]->address (instance of Address) or $car->owners (array of Owner instances). – Omega Jul 21 at 20:18
show 1 more comment

Your Answer

Get an OpenID
or

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