The post belongs to NectarCommerce and Extension Framework Awareness Series
- NectarCommerce Vision
- Extension Framework Game Plan
- Introduction to Metaprogramming
- Ecto Model Schema Extension
- Ecto Model Support Functions Extension
- Phoenix Router Extension
- Phoenix View Extension
- Running Multiple Elixir Apps Together
- Extension Approach Explained
- Learning from failures: First Experiment at NectarCommerce Extension Approach
- Developing NectarCommerce Extensions
- Building an exrm release including NectarCommerce
What will be NectarCommerce
Off-the-shelf Opensource E-commerce application for building an online store.
Provides an Extension Framework to support features not included in core as extensions.
Strives for unobtrusive parallel development of NectarCommerce and Extensions
NectarCommerce is committed to providing a ready-to-use e-commerce solution but the definition of 100% is different under different business domains. It aims to solve common use-cases as part of the project and relying on extension framework to tap the rest.
Ecto Model Support Functions Extension
Note: This blog post is very similar to Ecto Model Schema Extension, you can wish to jump straight to final version
Why
We want to allow Extensions to add functions to existing Nectar Models without changing the Nectar Models.
How
Minimum three parts are needed to create & use an extension effectively:
- Library Code
- Service Code
- Consumer Code
An extension and its use with Nectar can be viewed as Producer / Consumer relationship bound by a communication protocol.
Extension which wants to add a function, say fn_from_outside to Nectar Product Model, is a Producer (Service Code).
Nectar Model is a Consumer (Consumer Code) allowing the new function additions through a communication protocol (Library Code)
Let’s begin the journey of incremental changes to bring consumer, service and library code into existence starting from a simple use-case of adding a function, say fn_from_outside
, to Nectar Product.
Note: Please refer Introduction to Metaprogramming for more information on Metaprogramming in Elixir
-
A straightforward way to add a function, say fn_from_outside, to Nectar Product would be adding it directly in Nectar.Product, but it requires change in Nectar source. Let’s move to the next step for avoiding any modification to Nectar.Product
-
Like, other extensions, adding a function to Nectar Model and importing it would not solve our purpose of calling function as
Nectar.Product.fn_from_outside
.import <Module>
makes the<Module>
functions available inside the module and can only be called inside Module and not from outside likeNectar.Product.fn_from_outside
As expected, Elixir is well-aware of the use-case and provides
@before_compile <Module>
hook to inject functions in Modules as if their own and can be called asNectar.Product.fn_from_outside
, see full version here. See Nectar.ExtendProduct example below on how to use it. -
Now, with
@before_compile Nectar.ExtendProduct
in place, we can work towards providing a way to register the new functions, see full version here. Please check the usage of Module attributes for same below. -
Earlier, Module.put_attribute was used multiple times to define many functions whereas now we wrapped it in an anonymous function to encapsulate the collection of function additions through a simple and consistent interface, see full version here. There can be multiple extensions used for different functionality and hence many functions need to be registered and defined
-
Now, Nectar.ExtendProduct is getting cluttered with ancillary method definitions. Let’s move it out to another module and use it, see full version here
-
Let’s further reduce the boilerplate of registering method_block module attribute and importing include_method method definition with using callback, see full version here
-
Reference of method_block Module attribute is scattered across Nectar.ExtendProduct and Nectar.ModelExtension so let’s move it out to Nectar.ModelExtension to consolidate the usage via
__before_compile__
and definition together, see full version here -
Now,
Nectar.ExtendProduct
is having__using__
macro definition, which can also be moved toNectar.ModelExtension
to just have new method defintions inNectar.ExtendProduct
, see full version here -
With above changes, it’s now possible to define any number of functions, see full version here. Also, any number of functions can now be added using
include_method
in Nectar.ExtendProduct without making any changes to Nectar.Product.
Check all the revisions at once, here
Now, in the final version, you can easily find the three components, consumer, service and library code, as desired in extensible system
Our aim with these posts is to start a dialog with the Elixir community on validity and technical soundness of our approach. We would really appreciate your feedback and reviews, and any ideas/suggestions/pull requests for improvements to our current implementation or entirely different and better way to do things to achieve the goals we have set out for NectarCommerce.
Enjoy the Elixir potion !!