Skip to content
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

RxJava2 is "end of life" #4665

Open
psh opened this issue Oct 6, 2021 · 12 comments
Open

RxJava2 is "end of life" #4665

psh opened this issue Oct 6, 2021 · 12 comments

Comments

@psh
Copy link
Collaborator

psh commented Oct 6, 2021

Summary:

The authors of RxJava put RxJava2 into "maintenance mode" when they released RxJava3 and have since stated

The 2.x version is end-of-life as of February 28, 2021. No further development, support, maintenance, PRs and updates will happen. The Javadoc of the very last version, 2.2.21, will remain accessible.

They have written up a lengthy "What's different in 3.0" (see: https://github.com/ReactiveX/RxJava/wiki/What's-different-in-3.0)

The mix of Java and Kotlin in this project suggest that the migration path forward would be to look at RxJava3 but that ought to be balanced by Google's official statement that

Coroutines is our recommended solution for asynchronous programming on Android.

Would you like to work on the issue?

Happy to help out, whichever way the project goes.

@misaochan
Copy link
Member

@ashishkumar468 @madhurgupta10 What do you think?

@madhurgupta10
Copy link
Collaborator

IMO, going directly to Coroutines and Flows would be a lot better, not sure about MVP but for MVVM this is a recommended solution :)

@rohit9625
Copy link
Contributor

Right, using Flows and Coroutines might also improve the app's performance. And it's super easy to work on and maintain :)

@psh
Copy link
Collaborator Author

psh commented Feb 19, 2024

There are 5 or so Java classes that use our Retrofit interfaces

  • UserClient
  • WikidataClient
  • WikiBaseClient
  • ReviewHelper
  • UploadClient

The rest of them are already Kotlin. I have improved unit tests and the Kotlin conversion of those staged on a couple of branches ready to submit as PRs.

With all the Retrofit interfaces consistently in Kotlin already, and their API Client classes also Kotlin we would be in a place to swap RX Single and Observable out of the API layer, and replace with simple suspend methods on the API interface classes. Jetbrains already provide a bridging library kotlinx-coroutines-rx2 that makes it a breeze to not have to change the entire application in 1 go.

@neeldoshii
Copy link
Contributor

There are 5 or so Java classes that use our Retrofit interfaces

  • UserClient
  • WikidataClient
  • WikiBaseClient
  • ReviewHelper
  • UploadClient

The rest of them are already Kotlin. I have improved unit tests and the Kotlin conversion of those staged on a couple of branches ready to submit as PRs.

With all the Retrofit interfaces consistently in Kotlin already, and their API Client classes also Kotlin we would be in a place to swap RX Single and Observable out of the API layer, and replace with simple suspend methods on the API interface classes. Jetbrains already provide a bridging library kotlinx-coroutines-rx2 that makes it a breeze to not have to change the entire application in 1 go.

Is there any way I can be in use helping in migrating over here @psh? Would be happy to contribute to it 😊

@nicolas-raoul
Copy link
Member

Any estimate of how many hours of work it would take an average developer to upgrade all? :-)

@psh
Copy link
Collaborator Author

psh commented Mar 21, 2024

I did some very general poking around to start to scope this out.

Language breakdown

Coroutines are a Kotlin technology. There's great integration into the Android SDK for lifecycle aware coroutine contexts, but it will mean migrating a body of the Java code to Kotlin.

Counting non-blank lines of code in various files - easy to sum in a spreadsheet afterwards

for i in `find . -name \*.java`; do
echo $i, `cat $i | grep '[^ ]' | wc -l`
done

Overall, this amounts to roughly 40,000 lines of Java and 35,000 lines of Kotlin in the project. We wouldn't need to convert everything though! 😺

Remove RxBinding library

We could break off one smaller migration effort (removing RxBinding) that could treat the Kotlin migration as optional if you skip feeding things into a Flow

  • 4 files
    • DepictsFragment (java)
    • NearbyParentFragment (java)
    • SearchActivity (java)
    • UploadCategoriesFragment (java)
  • Convert Java -> Kotlin
  • Use standard Android SDK to feed events into a Flow

Where are we using some of the RxJava classes today?

Obviously there is overlap between things; files may contain multiple references to Single, Observable, etc. Nuances to watch out for - how often do we cancel / dispose something we subscribe to? Where are would we get a coroutine context from, and will that mean moving the conversion up further into the UI (notably, lifecycle awareness)

  • PublishSubject

    • 1 instance
    • can be replaced by a SharedFlow in CategoriesPresenter - already a Kotlin file
  • BehaviorSubject

    • 3 instances
      • GpsCategoryModel (kotlin)
      • UploadItem (java)
      • CategoriesModelTest (kotlin)
    • Convert Java -> Kotlin
    • Replace with StateFlow
  • Completable

    • Can replace with a simple suspend function
    • 8 files in production code, 3 files in tests
  • Single

    • Can replace with a simple suspend function
    • 41 files in production code, 32 files in tests
  • Observable

    • Case-by-case basis, might be collecting a Flow, or maybe a suspend function
    • 44 files in production code, 18 files in tests

Useful / interesting resources

@rohit9625
Copy link
Contributor

Hello @psh
Is this a GSoc-worthy project? If yes, then I would like to include it in my GSoc proposal. And if not then I still want to work on this migration :)

@neeldoshii
Copy link
Contributor

Hello @psh

Is this a GSoc-worthy project? If yes, then I would like to include it in my GSoc proposal. And if not then I still want to work on this migration :)

+1
Even I was thinking of asking the same thing. Now that my account is unbanned I can start working on this too.

@nicolas-raoul
Copy link
Member

nicolas-raoul commented Mar 22, 2024

@psh
Thanks a lot for the great details of what needs to be done!
Any ballpark figure of how many hours it would take an average developer (meaning not you 😉)?

@psh
Copy link
Collaborator Author

psh commented Apr 18, 2024

As food for thought, I created a PR where I did a sample migration. Taking login as a candidate (since there's only 3 API calls, but plenty of Java and other code) I worked through the migration process of adopting coroutines. See the PR - #5695

What I tried to do was lay a foundation in the PR to aid a migration while also working through the process.

@shashankiitbhu
Copy link
Contributor

@psh Interesting, I am looking at this PR, this provides a good structure for the migration

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

7 participants