Top Banner
Click to edit Master title style Ibiza, June 4 th – 7 th 2011
46
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Click to edit Master title style

Ibiza, June 4th – 7th 2011

Page 2: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Application Models Design

Lessons Learned in Magento Models

by Anton Makarenko, PHP-Developer at Magento 2

Page 3: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Research

Goals:• Better maintainable model layer, less code

coupling• Better solution for multiple RDBMSs support

Page 4: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Application Models Design

1. Domain and Service Layers

2. Models Design in Magento

3. Collections Design in Magento

4. Entities and Service Layer in Doctrine ORM

5. Possible Solution for Magento

Page 5: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Application Models Design

1. DOMAIN AND SERVICE LAYERSTheoretical Background

Page 6: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Decomposing Model Layer by Role

• Domain model – an entity or business rule implementation

• Service model – application logic: instantiation, composition, collectionsand data delivery

Page 7: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Entity (Domain Model)

• Represents a “real-world” entity• Defines data fields and a way to identify

an entity• Protects data integrity• Implements domain behavior

Page 8: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Service Model Layer

• Implements arbitrary application logic• Arbitrary hierarchy of models for:

– Data mapping– Composition of models, domains– Utility purposes

Page 9: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Criteria for Creating Hierarchy of Models

• Complexity of task• Necessity for different use cases• Requirements for application flexibility

Page 10: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Model Hierarchy Detalization

Toy

Car

Vehicle

Car Truck

Wheel

Driver’s Seat Frame

Page 11: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Data Sharing Between Models

Entities

Customer

Quote

Product

Application

Entity Manager

Configuration

Framework

Database access

Caching

Page 12: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Horizontal Exchange

• One namespace between “neighbors”

• Allow dependencieson the same level

Vertical Exchange

• Different namespaces = mapping between models

of different hierarchy levels

• Strive to loose dependencies

Data Sharing Between Models

Page 13: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Entity Model

• Enforce all requiredand valid datain constructor and setters

• Allow to inject data only through strict interface

Service Model

• Stateless or with predictable state

• Laconic public interface

Data Encapsulation in Models

Page 14: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Application Models Design

2. MODELS DESIGN IN MAGENTOBackwards Compatibility

Page 15: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

What are Models in Magento?

Models

•“Business logic”•Entities

Resource Models

•Entity persistence•Data manipulation, indexing

Collections

•Reading sets of data•Reports

Page 16: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

What are Models in Magento?

Mage::getModel()• Standalone domain models• Entity domain models (Mage_Core_Model_Abstract)

Mage::getResourceModel()• Resource models (Mage_Core_Model_Resource_Abstract) – service layer• Collections (Varien_Data_Collection_Db) – also service layer

Mage::helper()

• Helpers (Mage_Core_Helper_Abstract) – a bit of service layer as well

Page 17: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Super Models

Page 18: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Reuse Through Inheritance

• Constrains designing classes hierarchy

• No natural “is-a” relation• Fails attempt to reuse

code by bloating interface

Reuse Through Composition• Real “is-a” relations, polymorphism

• Less coupling, more freedom in designing

classes• More scalable and more

expensive in termsof number of objects

in memory

Super Models in Magento

Backwards Compatibility

Page 19: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Mage_Core_Model_Abstract

Service Interface

•save()•load()•delete()•getResource()•getCollection()•afterLoad()•afterCommitCallback()•isObjectNew()

Entity (Domain) Interface

•N/A

Page 20: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Varien_Object

• ConsData Object•__call()•getData()•setData()•unsetData()•hasData()

Irrelevant Features

•Entity:•Get/Set ID•ID field name•Service:•Get/Set origData•hasDataChanges()

Page 21: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Mage_Core_Model_Resource_Db_Abstract

Methods Purpose

save(), load(), delete() Entity CRUD

getIdFieldName(), hasDataChanged() Relation with “abstract model”

afterLoad() Hook for collections

getTable(), getMainTable(), getReadConnection()

Provide direct DB access to resource collections

_prepareDataForTable(), _checkUnique() Dynamic analysis of table structureon entity “save” operation

Page 22: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Entity and Resource Models Summary

• Dynamic entity structure:– Domain structural inconsistency– DB DDL overhead

• Scattered service logic– Contaminated entity models– Code encapsulation challenge– Exposure of DB layer

Backwards Compatibility

Page 23: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Application Models Design

3. COLLECTIONS DESIGN IN MAGENTO

Page 24: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Collection “Natural” Purpose

• To enforce data of certain type

• Iterating capability• The “Lazy-Load” pattern

triggered by iteration

Collection in Magento

• Enforce type – Yes• Iterate & Lazy-load – Yes

• Data set formalization:– fields, filters, limitation,

sorting

• Part of service layer:– Deals with database– Instantiates objects

The Real Purpose of Collections

Page 25: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Components that Depend on Collections

• Domain models• Service layer • Controllers and view (templates)• Special case – (admin) grids

Page 26: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Collections Hierarchy

Varien_Data_Collection

Varien_Data_Collection_Db

Mage_Core_Model_Resource_Db_Collection_Abstract

Mage_Cms_Model_Resource_Page_Collection

Mage_Core_Model_Resource_Abstract

Mage_Core_Model_Resource_Db_Abstract

Mage_Cms_Model_Resource_Page

Mage_Core_Model_Resource

Varien_Db_Adapter_*

Page 27: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Collections as Resources

• Duplication of resource layer logic• Necessity to break encapsulation• Necessity to implement collection class

for each entity

Backwards Compatibility

Page 28: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

The Triangle

Collections

Resource Layer

Domain Entities

3x ~200

Page 29: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Application Models Design

4. ENTITIES AND SERVICE LAYERIN DOCTRINE ORM

Page 30: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

What is ORM

Magento

Doctrine ORM 2.x

Page 31: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Doctrine ORM

How Doctrine ORM Works

XML, YAML, PHPDoc

Entity Manager DB

Other Domainand Service Models

Entities

Order

Customer

Product Controller, View…

Page 32: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Can Doctrine ORM Be Adopted in Magento?

• A ready solution for domain and service layers

• Entities – a best practice implementation • Entity manager and data persistence• Collections• Database abstraction layer (DBAL)

Page 33: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Doctrine ORM Can’t Be Adopted in Magento

• Migration efforts to DBAL• Potential performance issues:

– There are up to 30 classes loaded to instantiate an entity

– Objects initialization through unserialize() – possible performance bottleneck

Page 34: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Future Compatibility with Doctrine ORM

• Entity fields to be declared as class attributes

• One or more entity fields to serveas identity key

Page 35: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Application Models Design

5. POSSIBLE SOLUTIONFOR MAGENTO

Magento 2

Page 36: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Implementing Entities

• Move out service layer logic from domain models:– No persistence handling– No cascade handling of other entities

• Enforce domain model consistency using strict constructor, type hintingin setters and declared fields

Page 37: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

OrigData Use Cases

• getOrigData($key)– track changes “before save” (service layer)

• getOrigData()– log object changes (Enterprise_Logging)

• hasDataChanges()– rare specific cases in different places (service,

controllers)

Page 38: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Memento Pattern for Entities Data

Page 39: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Implementing Service Layer

• Entity managers: generic for primitive entities, custom for complex entities

• Data (database) access inside entity manager = disband resource models

• Implement data set handling in entity managers (ex-collections territory)

Page 40: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

New Entity Manager Responsibilities

• Deal with DB access layer directly• CRUD operations• Get collection data from DB

Page 41: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Service Layer and Multiple RDBMSs

Zend_Db_Adapter_Abstract

Zend_Db_Adapter_Pdo_Mysql

Varien_Db_Adapter_Pdo_Mysql

Page 42: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Service Layer and Multiple RDBMSs

Zend_Db_Adapter_Abstract

Zend_Db_Adapter_Pdo_Mysql

Varien_Db_Adapter_Pdo_Mysql

Zend_*_OracleZend_*_Pdo_Mssql

Varien_*_OracleVarien_*_Pdo_Mssql

Page 43: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Service Layer and Multiple RDBMSs

Page 44: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Service Layer and Application Resources

Slightly reduced collections responsibility:• No more DB layer access• No more objects instantiation• Data set formalization delegated

to separate utility class

~200 1

Page 45: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Making it Work Together

Page 46: Click to edit Master title style Ibiza, June 4 th – 7 th 2011.

Summary, Q & A

• Better maneuver space for domain models• DB abstraction layer improved for better

multiple RDBMSs support• Lightweight service layer

Thank you!