Scala Cake Pattern and Dependency Collisions

前端 未结 5 2686
情深已故
情深已故 2021-02-20 05:08

I\'m trying to implement dependency injection in Scala with the Cake Pattern, but am running into dependency collisions. Since I could not find a detailed example with such depe

相关标签:
5条回答
  • 2021-02-20 05:18

    "You're doing it wrong" (TM). You'd have the exact same problem with Spring, Guice or any IoC container: you're treating types as names (or symbols); you're saying "Give me an HTTP client" instead of "Give me an HTTP client suitable for communicating with fooApi".

    In other words, you have multiple HTTP clients all named httpClient, which does not allow you to make any distinction between different instances. It's kind of like taking an @Autowired HttpClient without some way to qualify the reference (in Spring's case, usually by bean ID with external wiring).

    In the cake pattern, one way to resolve this is to qualify that distinction with a different name: FooApiModule requires e.g. a def http10HttpClient: HttpClient and BarApiModule requires def connectionPooledHttpClient: HttpClient. When "filling in" the different modules, the different names both reference two different instances but are also indicative of the constraints the two modules place on their dependencies.

    An alternative (workable albeit not as clean in my opinion) is to simply require a module-specific named dependency, i.e. def fooHttpClient: HttpClient, which simply forces an explicit external wiring on whomever mixes your module in.

    0 讨论(0)
  • 2021-02-20 05:22

    Seems to be the known "robot legs" problem. You need to construct two legs of a robot, however you need to supply two different feet to them.

    How to use the cake pattern to have both common dependencies and separate?

    Let's have L1 <- A, B1; L2 <- A, B2. And you want to have Main <- L1, L2, A.

    To have separate dependencies we need two instances of smaller cakes, parameterized with common dependencies.

    trait LegCommon { def a:A}
    trait Bdep { def b:B }
    class L(val common:LegCommon) extends Bdep { 
      import common._
      // declarations of Leg. Have both A and B.
    }
    trait B1module extends Bdep {
      val b = new B1
    }
    trait B2module extends Bdep {
      def b = new B2
    }
    

    In Main we'll have common part in cake and two legs:

    trait Main extends LegCommon {
      val l1 = new L(this) with B1module
      val l2 = new L(this) with B2module
      val a = new A
    }
    
    0 讨论(0)
  • 2021-02-20 05:25

    Instead of extending FooApiModule and BarApiModule in a single place -- which would mean they share dependencies -- make them both separate objects, each with their dependencies solved accordingly.

    0 讨论(0)
  • 2021-02-20 05:27

    You get the pattern correctly and you've just discovered its important limitation. If two modules depend on some object (say HttpClient) and happen to declare it under the same name (like httpClient), the game is over - you won't configure them separately inside one Cake. Either have two Cakes, like Daniel advises or change modules' sources if you can (as Tomer Gabel is hinting).

    Each of those solutions has its problems.

    Having two Cakes (Daniel's advice) looks well as long they don't need some common dependencies.

    Renaming some dependencies (provided it's possible) forces you to adjust all code that uses those.

    Therefore some people (including me) prefer solutions immune to those problems, like using plain old constructors and avoid Cake altogether. If you measured it, they don't add much bloat to the code (Cake is already pretty verbose) and they're much more flexible.

    0 讨论(0)
  • 2021-02-20 05:36

    Your final app should look like this:

    object MyApp {
      val fooApi = new FooApiModule {
        val httpClient = new DefaultHttpClient1()
      }.fooApi
      val barApi = new BarApiModule {
         val httpClient = new DefaultHttpClient2()
      }.barApi
      ...
    
     def run() = {
      val r1 = fooApi.foo("http://...")
      val r2 = barApi.bar("http://...")
      // ...
     }
    }
    

    That should work. (Adapted from this blog post: http://www.cakesolutions.net/teamblogs/2011/12/19/cake-pattern-in-depth/)

    0 讨论(0)
提交回复
热议问题