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

[Accepted] SDL 0187 - Restructure iOS Threading and Queueing #543

Closed
theresalech opened this issue Jul 11, 2018 · 4 comments
Closed

[Accepted] SDL 0187 - Restructure iOS Threading and Queueing #543

theresalech opened this issue Jul 11, 2018 · 4 comments

Comments

@theresalech
Copy link
Contributor

Hello SDL community,

The review of "SDL 0187 - Restructure iOS Threading and Queueing" begins now and runs through July 17, 2018. The proposal is available here:

https://github.com/smartdevicelink/sdl_evolution/blob/master/proposals/0187-restructure-ios-threading.md

Reviews are an important part of the SDL evolution process. All reviews should be sent to the associated Github issue at:

#543

What goes into a review?

The goal of the review process is to improve the proposal under review through constructive criticism and, eventually, determine the direction of SDL. When writing your review, here are some questions you might want to answer in your review:

  • Is the problem being addressed significant enough to warrant a change to SDL?
  • Does this proposal fit well with the feel and direction of SDL?
  • If you have used competitors with a similar feature, how do you feel that this proposal compares to those?
  • How much effort did you put into your review? A glance, a quick reading, or an in-depth study?
    Please state explicitly whether you believe that the proposal should be accepted into SDL.

More information about the SDL evolution process is available at

https://github.com/smartdevicelink/sdl_evolution/blob/master/process.md

Thank you,
Theresa Lech

Program Manager - Livio
theresa@livio.io

@NickFromAmazon
Copy link

This is great, should be immensely helpful for performance and general stability.

Just a couple of quick questions:

  • Concurrent Queue "com.sdl.processing.concurrent" - general SDL processes that await callbacks, such as sending RPCs, will occur in this queue

Could you elaborate on use cases for this one? It's probably just my lack of familiarity with the RPC logic, but I'm curious when it would be necessary to block waiting for responses (as opposed to handling responses asynchronously as separate tasks.)

We should begin preferring NSOperationQueue above large stretches of dispatch_async code

What's the rational for this? I don't have an issue with this, just curious as using NSOperation subclasses does introduce some complexity.

I'd recommend extensive testing with the Thread Sanitizer Diagnostic option enabled as a criteria for completion, which would provide a reasonable level of confidence in the solution. As of 6.0 this generates quite a bit of noise, and is likely a barrier to adoption as it inhibits client's ability to debug threading issues in their own code.

@joeljfischer
Copy link
Contributor

joeljfischer commented Jul 12, 2018

Concurrent Dispatch Queue & NSOperationQueue

The main (perhaps only) reason for the use of a concurrent dispatch queue is the use of NSOperationQueue in the code. These (operation) queues are often serial, though one is currently concurrent (for sending multiple RPCs). For example, the choice set manager makes extensive use of an NSOperationQueue to keep the various possible operations (preloading, deleting, presenting of various kinds) modular, testable, and serialized. The issue is that one operation must finish entirely before the next operation can take place.

So, first, if the dispatch queue was serial, an operation in one NSOperationQueue would block those of another. Plus, an operation that sends an RPC and waits for a response before finishing the operation will block all other operations until that RPC response returns.

Testing with the Thread Sanitizer to ensure that we are not causing an explosion of threads is a good idea.

I hope that was clear, dispatch queues and operation queues can both be called queues and I tried to make sure it was clear when I was talking about one or the other.

@theresalech theresalech changed the title [In Review] SDL 0187 - Restructure iOS Threading and Queueing [Accepted] SDL 0187 - Restructure iOS Threading and Queueing Jul 18, 2018
@theresalech
Copy link
Contributor Author

theresalech commented Jul 18, 2018

The Steering Committee fully agreed to accept this proposal. It was also confirmed during discussion that this proposal does not make any changes regarding minimum version.

@smartdevicelink smartdevicelink locked and limited conversation to collaborators Jul 18, 2018
@theresalech
Copy link
Contributor Author

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

No branches or pull requests

3 participants