Coder Social home page Coder Social logo

entity_mapper's Introduction

EntityMapper

Entity Mapper gem is inspired by .NET Entity Framework.

It's a persistence/ORM tool that maps data to and from POROs (Plain Old Ruby Objects).

Currently the only supported backend is ActiveRecord.

The gem is under heavy development and not ready for production usage yet. API is very likely to change without any announcements.

Example

Setup

Active Record:

class Order < ApplicationRecord
  has_many :order_items
end

class OrderItem < ApplicationRecord
  belongs_to :order
end
ActiveRecord::Schema.define do
  create_table "order_items", force: :cascade do |t|
    t.string "name"
    t.integer "price_value"
    t.string "price_currency"
    t.integer "quantity"
    t.integer "order_id"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.index ["order_id"], name: "index_order_items_on_order_id"
  end

  create_table "orders", force: :cascade do |t|
    t.string "name"
    t.boolean "paid"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
  end
end

Entities:

module Entities
  class Order
    attr_accessor :name

    def initialize(name)
      @name = name
      @items = []
    end

    def refund!
      @paid = false
    end

    def paid?
      @paid
    end

    def items
      @items ||= []
    end
  end
end

module Entities
  class OrderItem
    attr_accessor :name, :quantity, :price

    def initialize(name, quantity, price)
      @name = name
      @quantity = quantity
      @price = price
    end
  end
end

module Entities
  Currency = Struct.new(:name)
end

module Entities
  class Price
    attr_reader :value, :currency

    def initialize(value, currency)
      @value = value
      @currency = currency
    end
  end
end

Mapping:

Mapping = EntityMapper.map do |m|
  m.model Entities::Order

  m.property(:name)
  m.property(:paid)

  m.has_many("items", persistence_name: "order_items") do |item_model|
    item_model.model Entities::OrderItem
    item_model.property(:quantity)
    item_model.property(:name)

    item_model.has_one("price", persistence_name: nil) do |price_model|
      price_model.model Entities::Price
      price_model.property(:value, :price_value)
      price_model.has_one("currency", persistence_name: nil) do |currency_model|
        currency_model.model Entities::Currency
        currency_model.property(:name, :price_currency, access: :method)
      end
    end
  end
end

Sample persisted data:

ar_order = ::Order.new(name: "test-name", paid: true)
ar_order.order_items = [::OrderItem.new(name: "order-item", quantity: 3,  price_value: 3, price_currency: "USD")]
ar_order.save!

Reading

EntityMapper::Transaction.call do |context|
  mapped_entity = context.read(Mapping, ar_order)
  pp mapped_entity
end

Prints (newlines added for visibility):

#<TestEntities::Order:0x00007fcd5fdd5520 
  @name="test-name",
  @paid=true,
  @items=[
    #<TestEntities::OrderItem:0x00007fcd60283180
       @quantity=3,
       @name="order-item",
       @price=#<TestEntities::Price:0x00007fcd60282e38 
         @value=3,
         @currency=#<struct TestEntities::Currency name="USD">
       >
    >
  ]
>

Updating

EntityMapper::Transaction.call do |context|
  mapped_entity = context.read(Mapping, ar_order)
  
  mapped_entity.items.first.quantity = 5
  mapped_entity.refund!
  mapped_entity.items << TestEntities::OrderItem.new("Milk", 1, TestEntities::Price.new(3, TestEntities::Currency.new("USD")))
end

This automatically persists changes. Sample SQL log:

  OrderItem Update (0.5ms)  UPDATE "order_items" SET "quantity" = ?, "updated_at" = ? WHERE "order_items"."id" = ?  [["quantity", 5], ["updated_at", "2019-07-06 21:25:48.392611"], ["id", 1]]
  OrderItem Create (0.1ms)  INSERT INTO "order_items" ("name", "price_value", "price_currency", "quantity", "order_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Milk"], ["price_value", 3], ["price_currency", "USD"], ["quantity", 1], ["order_id", 1], ["created_at", "2019-07-06 21:25:48.396440"], ["updated_at", "2019-07-06 21:25:48.396440"]]
  Order Update (0.1ms)  UPDATE "orders" SET "paid" = ?, "updated_at" = ? WHERE "orders"."id" = ?  [["paid", 0], ["updated_at", "2019-07-06 21:25:48.398639"], ["id", 1]]

Creating

There are two ways to create a new aggregate root:

EntityMapper::Transaction.call do |context|
  mapped_entity = Entities::Order.new("New order")
  mapped_entity.items << TestEntities::OrderItem.new("Milk", 1, TestEntities::Price.new(3, TestEntities::Currency.new("USD")))
  context.create(Mapping, mapped_entity, Order)
end

or

EntityMapper::Transaction.call do |context|
  mapped_entity = context.read(Mapping, Order.new)
  mapped_entity.name = "New order"
  mapped_entity.items << TestEntities::OrderItem.new("Milk", 1, TestEntities::Price.new(3, TestEntities::Currency.new("USD")))
end

This automatically persists new order.

Removing

EntityMapper::Transaction.call do |context|
  mapped_entity = context.read(Mapping, Order.new)

  mapped_entity.items = []
end

This removes the OrderItem from Order.

Removing whole aggregates and removal strategies are not supported yet.

Registry/Repository

Usually there's only one mapping between Entity and Active Record class.

In such cases EntityMapper read and create API can be simplified using mappings Registry. Registry is a map of ActiveRecord classes and corresponding mappings.

Registry = EntityMapper::ActiveRecord::MappingsRegistry.new
Registry.register Order, OrderMapping
Registry.register User, UserMapping

Registry provides shortcuts for read and create.

EntityMapper::Transaction.call do |context|
  order = context.read(OrderMapping, order_record)
  order.refund!
end

is equivalent of:

EntityMapper::Transaction.call do |context|
  order = Registry.read(order_record, context: context)
  order.refund!
end

or without explicit context:

Registry.read(order_record) do |order|
  order.refund!
end

Contributing

Bug reports and pull requests are welcome!

License

The gem is available as open source under the terms of the MIT License.

entity_mapper's People

Contributors

gogiel avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.