-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Respect\Relational Abstract Collections #24
Comments
I've implemented Filtered, Mixed and Typed collections. Essentially: <?php
use Respect\Data\Collections as c;
$mapper->postsTitles = c\Filtered::by('title')->post();
$mapper->postsTitles->fetchAll(); //Hydrates Post entities only by title and id
$mapper->postsTitles = c\Filtered::by('title', 'text')->post();
$mapper->postsTitles->fetchAll(); //Hydrates Post entities only by title, text and id
$mapper->allUsers = c\Mixed::with('premium_users')->users();
$mapper->allUsers->fetchAll(); //Bring User entities mixed with premium_user table data, multi table inheritance
$mapper->allUsers = c\Mixed::with('premium_users', 'blocked_users')->users();
$mapper->allUsers->fetchAll(); //Bring User entities mixed with premium_users and blocked_useers tables, multi table inheritance
$mapper->issues = c\Typed::with('category')->issues();
$mapper->issues->fetchAll(); //Uses column category to find out the issue entity, single table inheritance
//Assigned collections can be reused in the chain
$mapper->comments->postsTitles(); //Bring all comments but only titles from posts It's all sort of tested. I didn't finished persisting back these hydrated collections in the database. |
@alganet Somehow this slipped past me, not to get distracted and continue going through all notifications, I will mark this to return to it and give it some proper attention.. Smells good so far =) |
@alganet this is related to what we talked at Intercon? |
@williamespindola yeah it is! |
Respect\Relational Abstract Collections
Respect\Relational uses Respect\Data collections to express two things:
1 - How tables are related
This is done by the very nature of Collection compositing:
This is telling that each comment has a post and each post has an author. Also tells that authors have a condition of being
7
, which Relational abstracts as the primary key identified by the chosen SQL style (for example, the default iscomments.id
).For luck, this building, stacking and configuring can be more straightforward by using the magic layer that produces the same object as the previous sample:
1 - How tables are hydrated
Since the collection knows who is inside who, they have all necessary information to inform Relational about which objects goes inside another objects. The above operation used in Relational could bring a result similar to:
This has some limitations. Collections can't filter columns nor Relational can hydrate results differently.
Proposal
The idea is now is to separate how Collections handle hydration and relation by abstracting them into separate strategies:
Some other samples:
Named Collections
Normal hydration brings a numeric array of hydrated objects. Named Collections brings an array with keys as primary keys:
Mixed Collection Inheritance (Joined Table Inheritance)
Uses two tables to form a result.
Typed Collections (Single Table Inheritance)
Uses a discriminator column as the collection name.
Filtered Collections (Specific SELECT conditions)
Brings only specified columns. Two notations possible:
Note that the identifier for a collection will always be brought in normal collections. Named and dictionary collections can override this behavior.
This all came into mind when I was working on Template and though that we could be more open on how Relational brings it's results back, so we can change these results less when passing to another libraries =)
I would like some feedback on this before putting my hands to work!
@augustohp @nickl- @henriquemoody @wesleyvicthor @iannsp
The text was updated successfully, but these errors were encountered: