The cake pattern is a Scala dependency injection solution that uses only native language features, without any framework support.

learn more… | top users | synonyms

5
votes
2answers
99 views

Avoid name collision with Cake Pattern

I'm currently currently using the Cake Pattern to implement some optimization algorithms. I often hit name collision problems. For instance: trait Add[T] { this: Foo[T] => def constant: T def ...
0
votes
1answer
70 views

Akka and cake pattern

I'm confused how to ensure that my Actors have the appropriate dependencies using the cake pattern. I'm still getting to grips with this, and I can't find any examples anywhere. I'm basically just ...
1
vote
1answer
108 views

Scala - Cake Pattern + Typeclasses + Implementations needing constructor parameter

Here is a bit of code I've distilled down as much as I can: trait CakeLayer[A] extends { // typeclass hack to make it play nice with traits implicit def requireTypeclass: MyTypeclass[A] val ...
1
vote
2answers
305 views

Problems compiling routes after migrating to Play 2.1

After migrating to Play-2.1 I stuck into problem that routes compiler stopped working for my routes file. It's been completely fine with Play-2.0.4, but now I'm getting the build error and can't find ...
1
vote
2answers
126 views

Cake Pattern: How to share an instance?

I have a configuration component in my Scala project. Obviously I don't want to have more than one instance of this component. I'm using the cake pattern, but I'm not sure how to tweak it to fit my ...
3
votes
1answer
105 views

Cake pattern: how to get all objects of type UserService provided by components

This question may help you understand my needs. Cake pattern: one component per implementation, or one component per trait? I have a Scala application using multiple UserService implementations which ...
3
votes
1answer
146 views

Cake pattern: one component per implementation, or one component per trait?

I'm currently working to use the cake pattern on my application. On exemples I have found across the web the exemples are kind of basic but doesn't involve more complex needs. What I'd like to do is ...
17
votes
5answers
687 views

Cake pattern with Java8 possible?

I just wonder: with Java 8, and the possibility to add implementation in interfaces (a bit like Scala traits), will it be possible to implement the cake pattern, like we can do in Scala? If it is, ...
0
votes
1answer
102 views

Replace only repositories on a global cake pattern application

I'm trying to use the cake pattern for the first time. I kind of understand how it works, but would like to know if it is possible to mix already mixed traits or something like that. What I would ...
0
votes
2answers
107 views

Integration tests in Scala when using compagnons with Play2? -> Cake pattern?

I'm working on my first Scala application, where we use an ActiveRecord style to retrieve data from MongoDB. I have models like User and Category, which all have a companion object that uses the ...
0
votes
3answers
123 views

Cake pattern, self: UserRepositoryComponent =>

I'm trying to understand the cake pattern. I found this gist: https://gist.github.com/2127745 But I don't understand this syntax: // Explicit dependency on User Repository self: ...
2
votes
1answer
180 views

Is scala's cake pattern possible with parametrized components?

Parametrized components work well with the cake pattern as long as you are only interested in a unique component for each typed component's, example: trait AComponent[T] { val a:A[T] class ...
15
votes
3answers
712 views

Can Scala's Cake Pattern be implemented in Haskell?

Using a number of newer language features in Scala it's possible to implement a composable component system and create components using the so called Cake Pattern, described by Martin Odersky in the ...
3
votes
2answers
338 views

Usefulness of explicitly-typed self references in the Cake Pattern

It seems that the most common use of Scala's explicitly-typed self references is in the "Cake pattern," in which a module's dependencies are declared like: class Foo { this: A with B with C => ...
5
votes
1answer
312 views

Is it possible to integrate Cake-Pattern and Macros?

I must integrate some macros in a project which is using a cake-pattern. That pattern allowed us to avoid zillions of imports, among other advantages, so we would like to keep it. Now, we are facing a ...
1
vote
1answer
243 views

Scala: Lazy baking and runtime compilation of cake pattern

One of the great limitations of the cake pattern is that its static. I would like to be able to mix-in traits potentially written by different coders completely independently. However the traits would ...
4
votes
2answers
174 views

Cake pattern and types

How can def someA (in trait B) use trait A with the same C#MyType as in B ? (Then A#MyType =:= B#MyType) trait C { type MyType } trait A { self: C => def doSomething(s: MyType) { ...
5
votes
1answer
356 views

Scala Cake Pattern: Splitting large components into separate files

I'd like to use the Cake Pattern for splitting parts of some software system into components to make it completely modular as proposed in this article. In the simplest case I'd like to have some ...
6
votes
1answer
345 views

Cake pattern with overriding abstract type don't work with Upper Type Bounds

I want to override abstract type in trait with <: and not with = (like answer here Scala Upper Bounds : value is not a member of type parameter). I want to use cake pattern, but this doesn't ...
14
votes
1answer
741 views

Scala Cake Pattern Encourage Hardcoded Dependencies?

I'm still trying to learn Scala's Cake Pattern. It seems to me that it gives you the advantage of centralizing your configuration of "Components" as well as the ability to provide default ...
7
votes
1answer
421 views

How can I use Scala's cake pattern to implement robot legs?

My development makes extensive use of the robot legs binding problem. I know how to solve it with PrivateModule in Guice, but it isn't clear how this would be done with Scala's cake pattern. Could ...
14
votes
3answers
1k views

Why use scala's cake pattern rather than abstract fields?

I have been reading about doing Dependency Injection in scala via the cake pattern. I think I understand it but I must have missed something because I still can't see the point in it! Why is it ...