Closed Bug 1032068 Opened 10 years ago Closed 10 years ago

[Activity Management] Drop background activity on new request

Categories

(Firefox OS Graveyard :: Gaia::System::Window Mgmt, defect)

ARM
Gonk (Firefox OS)
defect
Not set
normal

Tracking

(blocking-b2g:2.0+, b2g-v2.0 fixed, b2g-v2.0M fixed, b2g-v2.1 fixed)

RESOLVED FIXED
2.0 S6 (18july)
blocking-b2g 2.0+
Tracking Status
b2g-v2.0 --- fixed
b2g-v2.0M --- fixed
b2g-v2.1 --- fixed

People

(Reporter: alive, Assigned: alive)

References

Details

(Whiteboard: [LibGLA,TD102026,QE2,B])

Attachments

(1 file)

After thinking again...the idea might be tough.
Because we won't know who is requesting the activity while we get activity-choice event,
we could just only guess: the top most window or the system app itself.

Even we know the request is coming from system app, it's hard to say it's related to current active app window or not because anchor link will trigger browse activity which is called from b2g shell.js
We could not tell it's because user click a link during he is performing some activity task or not.

Still trying to figure out if we have a good enough workaround..
Depends on: popup-window
Blocks: 898307
This is gaia workaround of bug 931339.
You could test with sheet-app-1/sheet-app-2/sheet-app-3.

In bug 916709, we didn't kill the activity on home button pressed;
so now if you launch activity of sheet-app-1 in sheet-app-2 and then go to sheet-app-3 to launch sheet-app-1 as inline activity, you will see the close button of the later activity of sheet-app-1 disappears. This is because gecko is sending system message to the first matching window using manifestURL + pageURL.

Before gecko fixes the way identifying window, to enable bug like bug 1028502 to work correctly, here is my proposal to workaround it in gaia side:

* Maintain a list of instanceID in activityWindowManager.
* Once there's any new activityrequesting(from activities.js which is wrapper of activity-choice event), put the caller (the top most window)'s instanceID into the pool if the pool is empty.
* Once there's any new window created(popup, activity, app), check the parent window instanceID of the new window is in the pool or not.
** If it's in the pool, we think this window is part of the task of the current activity chaining.
** If it's not in the pool, we think the user is launching another app to do other stuff.
* Once there's a new activityrequesting got when the pool is not empty,
and the current active window is not in the pool, we will kill all the background inline activities.
* The instanceIDs in the pool will be removed by *terminated events to ensure clean.

Note:
* This does NOT fix the circular activity chaining issues.
** If sheet-app-1 calls sheet-app-2 calls sheet-app-1 we cannot do anything for now. Yes, we could kill all but it's somewhat out of range of this bug. I will open another bug to fix it.
* Sometimes system app is firing activity request, too. Maybe from gaia side or shell.js; we cannot tell this kind of request is related to the current task chain or not. For now we just guess they are all related to the top most window.
Attachment #8449269 - Flags: review?(timdream)
Attachment #8449269 - Flags: feedback?(etienne)
Comment on attachment 8449269 [details] [review]
https://github.com/mozilla-b2g/gaia/pull/21258

This is a very complex patch. It will take me a few more day to look at it.
Comment on attachment 8449269 [details] [review]
https://github.com/mozilla-b2g/gaia/pull/21258

Small comments on github, 1 question:

> Note:
> * This does NOT fix the circular activity chaining issues.

I think it's fine, but since we're not handling this could we just track the bottomMost/rootWindow and simplify the patch (ie. do we really need the chaining mechanism?).


Also I wonder how complex/appropriate bubbling an activity request through a mozbrowser event (instead of a mozChromeEvent) would be, maybe we should ask :)
Attachment #8449269 - Flags: feedback?(etienne)
(In reply to Etienne Segonzac (:etienne) from comment #5)
> Comment on attachment 8449269 [details] [review]
> https://github.com/mozilla-b2g/gaia/pull/21258
> 
> Small comments on github, 1 question:
> 
> > Note:
> > * This does NOT fix the circular activity chaining issues.
> 
> I think it's fine, but since we're not handling this could we just track the
> bottomMost/rootWindow and simplify the patch (ie. do we really need the
> chaining mechanism?).
> 
> 
> Also I wonder how complex/appropriate bubbling an activity request through a
> mozbrowser event (instead of a mozChromeEvent) would be, maybe we should ask
> :)

The idea was rejected by fabrice ago. Maybe we should ask again.
Flags: needinfo?(fabrice)
(In reply to Alive Kuo [:alive][NEEDINFO!] from comment #6)
> (In reply to Etienne Segonzac (:etienne) from comment #5)
> > Comment on attachment 8449269 [details] [review]
> > https://github.com/mozilla-b2g/gaia/pull/21258
> > 
> > Small comments on github, 1 question:
> > 
> > > Note:
> > > * This does NOT fix the circular activity chaining issues.
> > 
> > I think it's fine, but since we're not handling this could we just track the
> > bottomMost/rootWindow and simplify the patch (ie. do we really need the
> > chaining mechanism?).
> > 
> > 
> > Also I wonder how complex/appropriate bubbling an activity request through a
> > mozbrowser event (instead of a mozChromeEvent) would be, maybe we should ask
> > :)
> 
> The idea was rejected by fabrice ago. Maybe we should ask again.

If my memory serves me right his concern is browser app and other app has mozbrowser API permission needs to deal with activity launch request on its own.
(In reply to Etienne Segonzac (:etienne) from comment #5)
> Comment on attachment 8449269 [details] [review]
> https://github.com/mozilla-b2g/gaia/pull/21258
> 
> Small comments on github, 1 question:
> 
> > Note:
> > * This does NOT fix the circular activity chaining issues.
> 
> I think it's fine, but since we're not handling this could we just track the
> bottomMost/rootWindow and simplify the patch (ie. do we really need the
> chaining mechanism?).
> 

We will need it at least for inline<->window.

The use case is email app couldn't be inline so if someone share something to email and it's using inline then we don't have a 'pure inline chaining'.
(In reply to Alive Kuo [:alive][NEEDINFO!] from comment #8)
> (In reply to Etienne Segonzac (:etienne) from comment #5)
> > Comment on attachment 8449269 [details] [review]
> > https://github.com/mozilla-b2g/gaia/pull/21258
> > 
> > Small comments on github, 1 question:
> > 
> > > Note:
> > > * This does NOT fix the circular activity chaining issues.
> > 
> > I think it's fine, but since we're not handling this could we just track the
> > bottomMost/rootWindow and simplify the patch (ie. do we really need the
> > chaining mechanism?).
> > 
> 
> We will need it at least for inline<->window.
> 
> The use case is email app couldn't be inline so if someone share something
> to email and it's using inline then we don't have a 'pure inline chaining'.

Makes sense, thanks for the clarification.
(In reply to Etienne Segonzac (:etienne) from comment #5)
> Also I wonder how complex/appropriate bubbling an activity request through a
> mozbrowser event (instead of a mozChromeEvent) would be, maybe we should ask
> :)

Vivien tells me there's a simpler alternative already used for permission prompts.

Basically it's to keep the mozChromeEvent but dispatch it from the correct iframe, so we can inspect evt.target in the system app to know where it came from.
(In reply to Etienne Segonzac (:etienne) from comment #10)
> (In reply to Etienne Segonzac (:etienne) from comment #5)
> > Also I wonder how complex/appropriate bubbling an activity request through a
> > mozbrowser event (instead of a mozChromeEvent) would be, maybe we should ask
> > :)
> 
> Vivien tells me there's a simpler alternative already used for permission
> prompts.
> 
> Basically it's to keep the mozChromeEvent but dispatch it from the correct
> iframe, so we can inspect evt.target in the system app to know where it came
> from.

I knew this trick but wonder it does not give much help.
Because sometimes system app or b2g process behaves the activity caller for the active app
* when app uses window.open to call 'mailto:' or other protocol.
* when click on image there will be mozbrowsercontextmenu event to trigger activity call in BrowserContextMenu

I think gecko has difficult to distinguish because it just knows system app is the caller but in these cases the one triggers them is the top most app. System app still needs to do the dispatch (decide who is caller).
Correct me if I'm wrong, but is the core issue the fact that we route system message (including activities) to already opened apps? If so we should just let some system messages work with multiple instances properly. You should not have to workaround that in gaia.
Flags: needinfo?(fabrice)
Comment on attachment 8449269 [details] [review]
https://github.com/mozilla-b2g/gaia/pull/21258

r+, since we have test in place to verify the logic is working.

As an improvement, if there is no rush, I think the pool should be implemented with a Map ... the some() forEach() splice() usages in this patch is complex and can be confusing to future developers.
Attachment #8449269 - Flags: review?(timdream) → review+
(In reply to Fabrice Desré [:fabrice] from comment #12)
> Correct me if I'm wrong, but is the core issue the fact that we route system
> message (including activities) to already opened apps? If so we should just
> let some system messages work with multiple instances properly. You should
> not have to workaround that in gaia.

I am happy to remove any workaround if bug 931339 is fixed. But it seems there's no ETA is given and no one is actively on it, we need to do something to prevent failures.
Comment on attachment 8449269 [details] [review]
https://github.com/mozilla-b2g/gaia/pull/21258

Using Map for pool, asking review again.
Attachment #8449269 - Flags: review?(timdream)
Comment on attachment 8449269 [details] [review]
https://github.com/mozilla-b2g/gaia/pull/21258

Not sure if you can use the instances directly as the key (instead of |instanceID|) but that works too.
Attachment #8449269 - Flags: review?(timdream) → review+
The error seems unrelated so merged, reopen if disagree.
https://github.com/mozilla-b2g/gaia/commit/b19616b0534b7edcb7d17a402ccccbc9af70c59d
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Whiteboard: [LibGLA,TD102026,QE2,B]
See Also: → 1084247
[Blocking Requested - why for this release]:
This bug blocks bug 1075353 which is a 2.0+ bug. Also, one of the issues in bug 1084247 can be fixed by this bug as well.
blocking-b2g: --- → 2.0?
Flags: needinfo?(wehuang)
Blocks a blocker = 2.0+
blocking-b2g: 2.0? → 2.0+
Please request Gaia v2.0 approval on this patch when you get a chance :)
Flags: needinfo?(alive)
Target Milestone: --- → 2.0 S6 (18july)
I think Luke had a patch for v2.0 already? Could you append it and ask for review/approval?
Flags: needinfo?(alive) → needinfo?(lchang)
Flags: needinfo?(wehuang)
Comment on attachment 8449269 [details] [review]
https://github.com/mozilla-b2g/gaia/pull/21258

Request the approval directly since the original patch can be uplifted to v2.0 w/o conflicts and passes the local tests.


[Approval Request Comment]
[Bug caused by] (feature/regressing bug #): it blocks bug 1075353 (2.0+)
[User impact] if declined: bug 1075353 still happens on v2.0
[Testing completed]: local tests are passed
[Risk to taking this patch] (and alternatives if risky): low
[String changes made]: N/A
Flags: needinfo?(lchang)
Attachment #8449269 - Flags: approval-gaia-v2.0?
Attachment #8449269 - Flags: approval-gaia-v2.0? → approval-gaia-v2.0+
Please provide the bug reproduce steps and videos, which could help with our verification.
Flags: needinfo?(jocheng)
Flags: needinfo?(jocheng) → needinfo?(hlu)
(In reply to Shine from comment #25)
> Please provide the bug reproduce steps and videos, which could help with our
> verification.

There are no specific user behavior for this issue, you could need to verify this one.
Flags: needinfo?(hlu)
Blocks: 1113000
Blocks: Woodduck
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: