Closed Bug 1358326 Opened 7 years ago Closed 7 years ago

Provide facility for webchannel listeners to be loaded lazily

Categories

(Toolkit :: General, enhancement)

enhancement
Not set
normal

Tracking

()

RESOLVED WONTFIX

People

(Reporter: markh, Unassigned)

References

Details

As part of bug 1353571 we are trying to improve the performance of loading the Firefox Accounts/Sync UI in the main window. One thing this code does is to create a webchannel for communication with accounts.firefox.com.

However, for the vast majority of users, this webchannel will never be used - but it is important that the channel be setup for the small number of users who do visit accounts.firefox.com. The same basic considerations apply to other webchannels created as the browser starts (eg, in NewTabWebChannel.jsm, in nsBrowserGlue.js, etc)

ISTM there could be value in having some kind of map "registry" of channel names mapped to a webchannel implementation. The WebChannel implementation may then be able to lazily initialize a handler upon receipt of the first message for that channel (and thus avoid loading *any* channel handlers for the vast majority of users)

As a straw-man, we could do something like bug 1252290 did for push - ie:

* Have webchannel listeners register an an xpcom service, and register with the category manager with the name of the channel.
* WebChannel.jsm, upon receipt of a message without a listener, looks up the category manager for a service registered with the channel name, and if it exists, instantiates the service.
* As part of service initialization, it must register the channel.
* WebChannel.jsm again looks for a listener, hopefully finds the newly registered one, and life continues.

It might be even better to invent our own registry somehow using JS modules or similar - it's just a straw-man to get the discussion started.

WDYT?
I don't know a great deal about the specifics of how WebChannels work but this sounds like a reasonable plan to me. I don't think there is a need to go the XPCOM route either, the category manager can be used with a list of JSM modules to load, the add-ons manager does this for loading custom add-on providers: https://dxr.mozilla.org/mozilla-central/source/toolkit/mozapps/extensions/AddonManager.jsm#876
It turns out the main use-case we had for this found a different way to solve the problem, and without any other compelling use-cases, I think we should just close this.
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → WONTFIX
You need to log in before you can comment on or make changes to this bug.