Closed Bug 755648 Opened 12 years ago Closed 12 years ago

Fix the key event dance between system app and apps

Categories

(Firefox OS Graveyard :: General, defect)

defect
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED

People

(Reporter: timdream, Assigned: timdream)

References

Details

Attachments

(2 files, 7 obsolete files)

Attached patch Patch v1 (obsolete) — Splinter Review
Sadly we need this kind of logic to live in chrome to properly handle home button, back button and other hardware buttons.

After this fix, the precedence of the key events are:

A) back button
1) check if the keyboard is open, if open, close it,
2) else, send the event to app, if not canceled,
3) send another event to system

B) home button
1) dispatch a event to system, if not canceled
2) allowing the original event to continue to apps

C) other buttons
1) allowing the original event handled by the app all the way
2) if it's not canceled by the app, send another event to system

For A-1, mozChromeEvent with detail.type = 'maybe-show-keyboard' is used. webapi.js will not handle key events directly anymore.

This patch will fix the following Gaia issues:
https://github.com/andreasgal/gaia/issues/1347
https://github.com/andreasgal/gaia/issues/1342
https://github.com/andreasgal/gaia/issues/1321

This will not fix
https://github.com/andreasgal/gaia/issues/1398
Attachment #624319 - Flags: review?(21)
Summary: [b2g] Fix the event dance between system app and apps → [b2g] Fix the key event dance between system app and apps
Regression: volume doesn't work when app is open. Will deliver patch v2.
Attached patch Patch v2 (obsolete) — Splinter Review
So ChromeWindow will not get another event from dispatchKeyToSystemApp() after all... my bad.
Attached patch Patch v2 (obsolete) — Splinter Review
Attachment #624319 - Attachment is obsolete: true
Attachment #624332 - Attachment is obsolete: true
Attachment #624319 - Flags: review?(21)
Attachment #624333 - Flags: review?(21)
Summary: [b2g] Fix the key event dance between system app and apps → Fix the key event dance between system app and apps
Any plan on this? Vivien?
(In reply to Tim Guan-tin Chien [:timdream] (MoCo-TW) from comment #4)
> Any plan on this? Vivien?

The current plan for Key Events is the following:
 - fire key events on the current active window
 - authorize a white list of key events to bubble from windows to windows via the browser API
 - if the event if caught at some point and stop, then the system app don't do anything. Otherwise the default action can be initiated.
 

In the case of the HOME button, it should likely be caught by the platform to be converted into an HOME intent or something similar.

Does that make sense?
CC+ Thinker

Even though it's the desired and nature way to process events, I was told by Thinker that bubbling from one window to another is hard to implement. 

Anyway, do we have an ETA on that? If not, I would still suggest that we should land this first. :)

(In reply to Vivien Nicolas (:vingtetun) from comment #5)
> The current plan for Key Events is the following:
>  - fire key events on the current active window
>  - authorize a white list of key events to bubble from windows to windows
> via the browser API
>  - if the event if caught at some point and stop, then the system app don't
> do anything. Otherwise the default action can be initiated.
>  
> 
> In the case of the HOME button, it should likely be caught by the platform
> to be converted into an HOME intent or something similar.
> 
> Does that make sense?
(In reply to Tim Guan-tin Chien [:timdream] (MoCo-TW) from comment #6)
> CC+ Thinker
> 
> Even though it's the desired and nature way to process events, I was told by
> Thinker that bubbling from one window to another is hard to implement. 
> 
> Anyway, do we have an ETA on that? If not, I would still suggest that we
> should land this first. :)

Adding Mounir on the CC list since he his working on implementing the key events bubbling part.


> 
> (In reply to Vivien Nicolas (:vingtetun) from comment #5)
> > The current plan for Key Events is the following:
> >  - fire key events on the current active window
> >  - authorize a white list of key events to bubble from windows to windows
> > via the browser API
> >  - if the event if caught at some point and stop, then the system app don't
> > do anything. Otherwise the default action can be initiated.
> >  
> > 
> > In the case of the HOME button, it should likely be caught by the platform
> > to be converted into an HOME intent or something similar.
> > 
> > Does that make sense?
(In reply to Vivien Nicolas (:vingtetun) from comment #7)
> (In reply to Tim Guan-tin Chien [:timdream] (MoCo-TW) from comment #6)
> > CC+ Thinker
> > 
> > Even though it's the desired and nature way to process events, I was told by
> > Thinker that bubbling from one window to another is hard to implement. 
> > 
> > Anyway, do we have an ETA on that? If not, I would still suggest that we
> > should land this first. :)
> 
> Adding Mounir on the CC list since he his working on implementing the key
> events bubbling part.

I have a working patch doing that.
Depends on: 757486
Bubbling is easy, capturing is hard.  We're going to break capturing semantics in general.  "Meh".
(In reply to Chris Jones [:cjones] [:warhammer] from comment #9)
> Bubbling is easy, capturing is hard.  We're going to break capturing
> semantics in general.  "Meh".

I would love to see bug 757486 implements both capturing phase and the bubbling phase of the key events, which makes every thing in consistent with how web works today, and also makes the HOME button not the exception.

Until them, we were just migrating from chrome script hack to <iframe mozbrowser> hack...
We can't implement "true" capturing semantics because that would require blocking the window manager on windows, and recursively the browser-app UI on tabs, which we absolutely can't do for performance reasons.

We can't implement "true" bubbling semantics either, because that would require cross-process references to JS objects, but we can at least make the bubbling phase synchronous if we need to, and pick an event target in each process that sorta makes sense.  I'd prefer not to make it synchronous though, if we can avoid that.
I think this should be fixed by bug 757486. Tim and Vivien, could you confirm that and close the bug?
OS: Linux → All
Hardware: x86_64 → All
(In reply to Mounir Lamouri (:volkmar) (:mounir) from comment #12)
> I think this should be fixed by bug 757486. Tim and Vivien, could you
> confirm that and close the bug?

The code in shell.js still need to be updated to reflect the changes.
Comment on attachment 624333 [details] [diff] [review]
Patch v2

Removing r? until there is a new patch that takes in account the last change on the browser API.
Attachment #624333 - Flags: review?(21)
I've reported bug 759017 and specified the problem with the new browser API. We cannot change shell.js before that bug is fixed or the buttons will be not responsive entirely.
Attached patch Patch v3 (obsolete) — Splinter Review
Stripped down version of Patch v2, have bug 757486 to forward some keys instead.
Attachment #624333 - Attachment is obsolete: true
Attachment #629698 - Flags: review?(21)
Attached patch Patch v4 (obsolete) — Splinter Review
I am sorry, Patch v3 is not review-able due to improper diff.
Attachment #629698 - Attachment is obsolete: true
Attachment #629698 - Flags: review?(21)
Attachment #629699 - Flags: review?(21)
Comment on attachment 629699 [details] [diff] [review]
Patch v4

Review of attachment 629699 [details] [diff] [review]:
-----------------------------------------------------------------

The more I see this key handling code the more I think it should be moved as much as possible to the system app if possible :)

::: b2g/chrome/content/shell.js
@@ +232,5 @@
> +          if (isDefaultPrevented) {
> +            evt.preventDefault();
> +            evt.stopPropagation();
> +          }
> +        }

Remove this code.

The keyboard bug is a different bug that should be fixed with a different solution.
For example the mozKeyboard component could listen for VK_ESCAPE itself and close the keyboard in this case if it is opened  or it could be that the event is captured on the capture phase from the system app to close the keyboard.

@@ +243,5 @@
> +            case evt.DOM_VK_HOME:
> +            case evt.DOM_VK_SLEEP:
> +              this.forwardKeyToContent(evt);
> +              evt.preventDefault();
> +              evt.stopPropagation();

I start to wonder if evt.DOM_VK_HOME should not also be a whitelisted keyevent that can't be stopped by calling event.stopPropagation() or event.preventDefault(). That would let us move this code to the main system app.
Attachment #629699 - Flags: review?(21) → review-
(In reply to Vivien Nicolas (:vingtetun) from comment #18)
> The keyboard bug is a different bug that should be fixed with a different
> solution.

Bug 761953 submitted and patched!

> @@ +243,5 @@
> > +            case evt.DOM_VK_HOME:
> > +            case evt.DOM_VK_SLEEP:
> > +              this.forwardKeyToContent(evt);
> > +              evt.preventDefault();
> > +              evt.stopPropagation();
> 
> I start to wonder if evt.DOM_VK_HOME should not also be a whitelisted
> keyevent that can't be stopped by calling event.stopPropagation() or
> event.preventDefault(). That would let us move this code to the main system
> app.

I don't understand, some logical typo here? bug 757486 does not handle VK_HOME and VK_SLEEP buttons -- for that reason, at least, in shell.js, we would need to

1) react to some keyups for APIs not yet exposed to content, e.g., real volume change.
2) stop HOME and SLEEP from going to non-System App frame, and forward them to System App.

I will submit another patch to do exactly that.
Attached patch Patch v5 (obsolete) — Splinter Review
additionally, this patch do

1) Correctly evaluate the original event is going to by checking |(evt.target.ownerDocument == content.document)|. The original |(evt.target.ownerDocument.defaultView == content)| is incorrect -- one is ChromeWindow and another is Window, so it's always false.

2) Dispatch the forwarded event on <html>, not |window|.
Attachment #629699 - Attachment is obsolete: true
Attachment #630490 - Flags: review?(21)
(In reply to Tim Guan-tin Chien [:timdream] (MoCo-TW) from comment #21)
> 1) Correctly evaluate the original event is going to by checking
> |(evt.target.ownerDocument == content.document)|. The original
> |(evt.target.ownerDocument.defaultView == content)| is incorrect -- one is
> ChromeWindow and another is Window, so it's always false.

Humm... this is not correct. |evt.target.ownerDocument.defaultView| can be ChromeWindow only if the user press the button *before* touching the screen. If we were focused on the System app frame, both of them is indeed |window|.

We do need to forward the key from ChromeWindow to content window in that case though.
Comment on attachment 630490 [details] [diff] [review]
Patch v5

Review of attachment 630490 [details] [diff] [review]:
-----------------------------------------------------------------

Very close! Sorry for all the back and forth.

::: b2g/chrome/content/shell.js
@@ +228,5 @@
> +        let rootContentEvt = (evt.target.ownerDocument == content.document);
> +        if (!rootContentEvt && evt.eventPhase == evt.CAPTURING_PHASE) {
> +          switch (evt.keyCode) {
> +            case evt.DOM_VK_HOME:
> +            case evt.DOM_VK_SLEEP:

Why do you want to prevent VK_SLEEP to be caught by content? It can be used by the camera app for example to take a picture.

@@ +229,5 @@
> +        if (!rootContentEvt && evt.eventPhase == evt.CAPTURING_PHASE) {
> +          switch (evt.keyCode) {
> +            case evt.DOM_VK_HOME:
> +            case evt.DOM_VK_SLEEP:
> +              this.forwardKeyToContent(evt);

Wrap this call into a setTimeout to be sure to not stop the execution of the origina;l event because of thisduplicated event.
Attachment #630490 - Flags: review?(21) → review-
Wait, can we clearly the desired behavior here?

For SLEEP key and the HOME key, my assumption is that the apps should not be allowed to interact with them _at all_. You seems to against that, and would like to have BOTH apps and the system to receive the keys.

I would say that does not make sense. If I want to have the camera key hijack the sleep button for taking pictures, I would also allow it to cancel the key -- in that case, the sleep button should fall to the processing logic of bug 757486 and not here.

Allowing both apps and system to receive the event while not allowing one from canceling another will results useless event -- the screen would turn off by system as the same moment when the camera pp is capturing the picture for you.

What do you want exactly for SLEEP and HOME keys? I am very sad that after 5 patches I am not being told what's the desired behavior before hand.
(In reply to Tim Guan-tin Chien [:timdream] (MoCo-TW) from comment #24)
> Wait, can we clearly the desired behavior here?
> 
> For SLEEP key and the HOME key, my assumption is that the apps should not be
> allowed to interact with them _at all_. You seems to against that, and would
> like to have BOTH apps and the system to receive the keys.
> 

It sounds fine for me if an app can interact with SLEEP (HOME is a different story). 

> I would say that does not make sense. If I want to have the camera key
> hijack the sleep button for taking pictures, I would also allow it to cancel
> the key -- in that case, the sleep button should fall to the processing
> logic of bug 757486 and not here.

It should be there!
  
> What do you want exactly for SLEEP and HOME keys? I am very sad that after 5
> patches I am not being told what's the desired behavior before hand.

In the short term I want the HOME key to not be dispatched/cancellable by apps. The other keys are fine.

In the long term, the HOME key could fire a key event too. If this event could be caught during the capture phase by the System App before apps proceed it that's fine. If it can't it should be something else. But for now I would like to focus on the other keys. Does that make sense?
Attached patch Patch v6 (obsolete) — Splinter Review
Per discussion on IRC, this is the patch do what everyone wanted and not to process the SLEEP key.

We need to file another bug to add SLEEP key to the whilelist for handling by mozbrowser.
Attachment #630490 - Attachment is obsolete: true
Attachment #630506 - Flags: review?(21)
Attached patch Patch v7Splinter Review
Syntax error in Patch v6 ... :'(

And I forget to revert the |(evt.target.ownerDocument.defaultView == content)| thing.
Attachment #630506 - Attachment is obsolete: true
Attachment #630506 - Flags: review?(21)
Attachment #630510 - Flags: review?(21)
https://hg.mozilla.org/mozilla-central/rev/4e3b3452a993
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: