-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Demoritas/rx activity leak #98
Conversation
…ything it has references to) steps to reproduce: 1. deploy and start on device/emulator with no data network but with connection (so the REST connection times out) 2. put application to background while the REST call is waiting for the server response 3. click on leakcanary notification
… unsibscribe. As unsubscribe() is final in rx.Subscription.class we have to register an subscription as callback.
…or the formatter changes)
@demoritas Many issues with code indentation I think you are not using the code style which @android10 suggests so your IDE beautifies many things which are not necessary and the actual change is hidden under these. I suppose that the only change is the addition of leakcanary or am I missing something? Moreover please squash your commits into one. In addition it's not needed to add leakcanary in this repository but you can fix the problem which you have already detected. So remove the library and keep the fix only. |
@spirosoik sorry for the code style (my IDE is configured with the code style we use at work) I separated the commits so it is easier to follow the the issue and the fix
|
@demoritas as @spirosoik pointed out, we should keep codestyle consistent so I would suggest that use the one in my repo: On the other hand, I appreciate your efforts in finding memory leaks, which we should solve, however I do not wanna add any other library to keep the example clean, which is the main purpose of this repo, so anything but the necessary libraries to make it work should be removed (LeakCanary in this case). |
@demoritas Please add javadoc comments to understand the problem which you are solving better. For example why are you using a SubscriptionDecorator in UseCases |
@spirosoik 👍 but the details should be added in the PR description. Comments generate noise and code should be self explanatory. @demoritas please squash all the commit into one. I will write documentation in this repo with collaboration guidelines. Thanks guys! |
@android10 I agree for the noise, it would be better to explain us here in your comment what are you trying to solve. |
+1 for the codestyle, sorry for that, I try to re-setup this PR when I have time but leave it here as documentation for the issue for now if you aggree Problem description: rx.Subscription#unsubscribe does not remove the reference to the rx.Subscriber. In your case for example the UserListSubscriber has a reference to the enclosing UserListPresenter which holds a reference to the Fragment (via viewListView) which holds reference to the activity (via UserListListener). If the Activity is scheduled to be destroyed during a network request (RestApiImpl#userEntityList()) it is leaked through the reference to the rx.Subscriber. The PR is there to illustrate and easily reproduce the problem. the first (and easy) fix would be nulling userListListener in onDetach() but this leaves the problem of the subscriber leaks which can be solved by wrapping the subscriber and clearing the reference to the inner subscriber in Subscriber#unsubscribe() as shown in this PR. |
@demoritas great information! |
@android10 which code style are you using, if I applied SquareAndroid and format the code it applies changes |
@demoritas great explanation thanks for the information dude. this is the code style |
@spirosoik |
@android10 any ideas for the codestyle? I think there are a few code lines which is not formatted with this codestyle. |
I added a PR for the immediate issue (nulling the reference to the activity), this PR here is more a workarround for an RX issue on android so maybe it is out of scope for the clean code project |
@demoritas this fixes the issue: a4f207e This actually enables the garbage collector to wipe out all references to views. The wrapper you proposed, was a good idea but I considered we were overthinking here and we would have ended up paying a price: accidental complexity. Check the solution, leak canary is not shouting anymore about any leaked activity. (I finally added it to the project). I really appreciate your effort and contribution buddy! |
@demoritas @spirosoik please check guys. I'm closing this PR, the fixed was way easier than expected. I also added LeakCanary as @demoritas suggested in the beginning. Good catch by the way! |
Fix an activity leak on slow connections