vote up 2 vote down star

Is there a recommended pattern for shutting down / closing objects created with Guice?

The lifecycle I'm aiming for is:

  1. Prepare a Guice Module
  2. Create an injector
  3. Use the injector through your code to obtain objects (injector.getInstance(Foo.class))
  4. ...
  5. Close any resources held by said objects (file handles, TCP connections, etc...). I want this to be a deterministic step (not "some day when the GC runs").
flag

63% accept rate
You might want to add some sample code to your question, because I don't really get what you mean. – david Nov 4 at 14:53
Added some more details. – ripper234 Nov 4 at 15:23
2  
"Use the injector through your code to obtain objects (injector.getInstance(Foo.class))" - this is decidedly not how Guice, or any DI, is intended to be used. That's just a service locator. It should be building your object graph and the injector should only be created and referenced in some root bootstrapper class. – ColinD Nov 4 at 15:31
2  
Yes, that's why I commented rather than replying. I think that any place you might want to use injector.getInstance(Foo.class) you should be able to inject a Provider<Foo> and use that instead, though. – ColinD Nov 4 at 15:41
1  
But then the class declares clearly what it depends on, whereas when you see a class that has a reference to the injector you have no idea what it might be getting out of there. And yeah, it's a pretty big difference for unit testing... don't have to configure an injector, just make a fake provider that returns instances however you want it to. You're no longer depending on the mechanism for providing dependencies... only on the dependencies themselves. – ColinD Nov 4 at 17:58
show 2 more comments

1 Answer

vote up 1 vote down

I want this to be a deterministic step (not "some day when the GC runs").

Sorry but then Java is the wrong language for you. The DI framework does not know when all the references to an object are gone. Only the GC knows this.

If you have a "closable" resource then use the try/finally pattern to close it (see below).

Closable c = // ...
try {
   c.use();
} finally {
   c.close();
}

Now to back peddle a little. Guice can know when a scope starts and ends. Your custom scope could run a clean up step when it finishes. This scope could even return proxies so the objects would be invalid if you attempted to access them out side of the allowed scope.

(Oh and +1 to ColinD - Inject providers. :)

EDIT: Guiceyfruit seams to have some support for Lifecycles

link|flag
1  
I think this is just a classic misunderstanding of what the GC is for (particularly easy to make this mistake if you've programmed in C++). In a garbage collected language, object lifetime/GC has nothing to do with releasing resources like file handles or network sockets. – Simon Howard Nov 5 at 10:46
The code block doesn't allocate the object, so it is not responsible for releasing it. Specifically singletons (within a Guice module) are obtained by Injector.getInstance(), but should not be closed after used. – ripper234 Nov 5 at 15:30
This whole issue depends a lot on exactly what you're doing and in what context. Different objects have different lifecycles, different scopes, etc. so there is no catch-all easy solution. Are you doing this in a webapp? Are you mainly talking about closing singletons on shutdown? – ColinD Nov 5 at 16:07
Singletons can only be "released" during the application shutdown (so via a shutdown hook). I'm sure you could write a scope that handled that. – mlk Nov 5 at 16:10
1  
Also, if a code block retrieves a no-scoped object from a provider and uses it, it would definitely be responsible for closing that object if necessary despite not creating it itself. – ColinD Nov 5 at 16:10
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.