Fork me on GitHub
#architecture
<
2018-09-28
>
jaihindhreddy-duplicate15:09:12

Is there an open source clojure implementation of ports and adapters or hexagon architecture or clean architecture I can check out. How would you go about designing such a system?

Drew Verlee03:09:22

I think a combination of "elements of clojure" and "clojure applied" would address this, though not by name. That's assuming you have covered the basics in a book like living clojure, or a more comprehensive set like in joy of clojure

polymeris14:09:32

To me, ports and adapters seem like something you need to escape OOP, and think that in clojure something similar should be possible with a simpler model, e.g here my "ports" are just keywords: https://github.com/polymeris/edos

jaihindhreddy-duplicate15:09:39

Thank you guys. @U0DJ4T5U1 I did read Joy of Clojure. @U0FTV149X edos looks interesting. A bit macro heavy for my taste. But interesting.

polymeris16:09:12

Yeah, it's just an experiment. I think a better approach would be more data-driven

✔️ 4
polymeris16:09:03

This is another talk that touches on the same topics: https://www.youtube.com/watch?v=WtdegIqQbrg

polymeris16:09:01

The whole talk is interesting, but you can skip to 15m to see how they handle "commands" and isolating side-effects

jaihindhreddy-duplicate16:09:02

Did watch that one. That's what started me to really think about how ports and adapters would combine with state machines to give us a framework to organize code

polymeris16:09:20

I am sure there is a lot of research an experimentation to be done.

polymeris16:09:19

Let us know if you come up with interesting ideas!

Drew Verlee17:09:44

Well, from my quick read of the pattern, I would say the goal is to increase the understandably of the code base though separation of concerns. That idea is applicable in clojure as well. I wouldnt conflate business rules with http calls for example.

Drew Verlee17:09:55

The difference in implantation would be that where in oop, your encouraged to see your objects as data stores, the clojure community would suggest maps or possible datomic or datascript to hold the information

Drew Verlee17:09:07

So your http call might return a resp, then a validation, then a conversion fn to the business domain, then this data can enter the business domain api

jerger_at_dda16:10:38

At https://github.com/DomainDrivenArchitecture we do DDD with clojure. Aggregation, validation and bounded contexts are working quite well to us (way smarter than OO :). We're very interested in discussing functional-DDD adoption 🙂

socksy23:09:13

@jaihindh.reddy Jan Stępień gave talks about a similar design pattern in clojure https://www.youtube.com/watch?v=0EX3UIl-Sd8