binder: "intent:" target URIs that match multiple <service>s should only connect to the one of highest priority
- Lingua principale
- Java
- Stelle
- 12.1k
- Fork
- 4k
- Merge medio
- 2g 17h
- PR unite (30g)
- 37
Descrizione
More than one `` can advertise an `` that matches a given Intent. `IntentNameResolver` returns all matches to the "pick-first" load balancer which tries them in priority order. If connecting to a first Service fails, pick-first will try the second highest priority Service.
Pick-first's fail-over behavior makes sense in the networked world where clients want to tolerate server failure and spotty connectivity. In the on-device context there are only two reasons we want fail-over:
1) So an unauthorized app that maliciously gives itself a high `` can quickly be passed over by preauthorization, avoiding a denial-of-service situation.
2) So multiple server apps in an `` hierarchy can independently collaborate on which of them is active by enabling/disabling *only their own* `` components in PackageManager.
But BinderClientTransport can fail to connect for many transient reasons like:
1) the phone/tablet is busy doing other things causing the server app to be slow to start (DEADLINE_EXCEEDED)
2) the server app does many things other than host the target Service, and a bug in one of them crashes the whole process while the ServiceConnection is being established (UNAVAILABLE).
3) the user "swipes away" the server app's actiivity from the "recents" UI just as the ServiceConnection is being established (UNAVAILABLE).
4) the server app is manually/automatically updated to a newer version and android kills all its processes while the ServiceConnection is being established (UNAVAILABLE).
Fail-over for these other reasons is problematic because different `AndroidComponentAddress`s are likely different implementations of the requested interface. It would be like if you selected Chrome as your default mobile browser but when you clicked on a URL, your phone failed over to Firefox if it didn’t launch fast enough. Perhaps that’s better than failing to show the web page at all, but it's also masking the underlying problem with the explicitly configured first choice browser in a way that's surprising and non-deterministic.
Guida per i contributori
Apri la guida per i contributori
Direzione di ricerca
Start by tracing IntentNameResolver, the pick-first load balancer, and BinderClientTransport to understand how matching Android services are selected and connection failures trigger failover. The issue provides no file or test names; done should make multiple matching services use the highest-priority service without masking transient connection failures through unintended fallback.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- android, java
- Ambito
- backend-api-design, mobile-dev
- Tipo di issue
- Funzionalità
- Difficoltà
- 5/5
- Tempo stimato
- Più di una settimana
- Stato di attività
- Ferma
- Chiarezza
- Da chiarire
- Idoneità per principianti
- 35/100