I would like to instanciate several versions of the same kind of dependency tree/chain which use different implementations for some of the interfaces in that tree/chain. What is the best Guice practice/pattern to use in such case?
Here is a concrete example of my problem.
I have a Writer interface which can potentially be a file writer or a std-out writer, which will be situated at the leaf of my dependency hierarchy. Something like this:
interface Writer { ... }
class FileWriter implements Writer { ... }
class StdOutWriter implements Writer { ... }
Another logger interface is used to add a layer of indirection on the writer. For instance:
interface Logger { ... }
class LoggerImpl{
@Inject
public Logger(Writer out){ ... }
public void log(String message){ out.println(message); }
}
Then there is a client that uses the logger.
class Client{
@Inject
public Client(Logger logger){ ... }
public void do(){ logger.log("my message"); }
}
Now, I would like to use two types of hierarchies in my program:
- Client -> LoggerImpl -> FileWriter
- Client -> LoggerImpl -> StdOutWriter
Is there a nice way of wiring this up without using a separate Guice module for 1 and 2?
Ideally I would like to have a ClientFactory class like this:
interface ClientFactory{
public Client stdOutClient();
public Client fileClient();
//or fileClient(File outputFile) for extra points ;)
}
Could anyone come up with a way to wire up this using this factory, or by any other means?
I would also like a solution that would scale to cases where I have a bigger variety of longer dependency trees/chains. Thanks!