Closed
Bug 773373
Opened 13 years ago
Closed 13 years ago
Implement "localStorage" jars for apps
Categories
(Core :: DOM: Core & HTML, defect)
Core
DOM: Core & HTML
Tracking
()
People
(Reporter: sicking, Assigned: janv)
References
Details
(Keywords: feature, Whiteboard: [LOE:S][WebAPI:P1][qa-])
Attachments
(6 files, 3 obsolete files)
1.78 KB,
patch
|
mayhemer
:
review+
|
Details | Diff | Splinter Review |
24.38 KB,
patch
|
mayhemer
:
review+
|
Details | Diff | Splinter Review |
2.74 KB,
patch
|
sicking
:
review+
|
Details | Diff | Splinter Review |
3.50 KB,
patch
|
sicking
:
review+
|
Details | Diff | Splinter Review |
5.68 KB,
patch
|
mounir
:
review+
|
Details | Diff | Splinter Review |
1.60 KB,
patch
|
sicking
:
review+
|
Details | Diff | Splinter Review |
Basically we need to key on additional information from the nsIPrincipal which is added in bug 758258 when determining which localStorage data to access.
Reporter | ||
Updated•13 years ago
|
blocking-basecamp: --- → +
![]() |
||
Comment 1•13 years ago
|
||
localStorage uses a key based on origin to store/query entries bound to that origin in the database. The form is like: "moc.allizom.www.:80" (= <reversed-host-name>.:<port-number>). It is used to easily query usage by a domain and all its subdomains.
Thus, for apps I presume there will be more added to this DB key string, probably to the end of it, right?
It is being built in nsDOMStorageDBWrapper::CreateOriginScopeDBKey(). It now takes an URI, but it can be relatively easily changed to take nsIPrincipal directly.
DOMStorageBase::InitAsSessionStorage/InitAsLocalStorage has to be changed to take nsIPrincipal.
We also have to preserve e10s behavior, but keys are built on the child side, so it will "just work".
Reporter | ||
Updated•13 years ago
|
Whiteboard: [LOE:S]
Comment 2•13 years ago
|
||
Who could be the owner for this case?
Reporter | ||
Updated•13 years ago
|
Assignee: nobody → jonas
Updated•13 years ago
|
Whiteboard: [LOE:S] → [LOE:S][WebAPI:P1]
Reporter | ||
Comment 3•13 years ago
|
||
Just remove a function that's no longer used.
Reporter | ||
Comment 4•13 years ago
|
||
This patch is very untested, but should generally work. It doesn't add appID and browserFlag to the key though, so no functional changes
Reporter | ||
Comment 5•13 years ago
|
||
The remaining work here is adding the appID and browserflag to nsDOMStorageDBWrapper::CreateScopeDBKey and nsDOMStorageDBWrapper::CreateQuotaDBKey. And making sure that everything still works.
Note that we should only add the Appid+browserflag to the scopekey if appID != 0 or browserflag != false. Otherwise we would lose all existing data since they would use a new key.
Note that ideally we should stop storing these keys using reversed domains. But I don't think that's worth doing at this time since we should migrate localStorage to use the new temporary storage area (once that's done). So it's not really worth migrating the data between different data formats multiple times.
Jan has awesomely offered to help drive this one home. Jan: If you have any questions, don't hesitate to ask.
The attached patches are pretty untested, so expect to find bugs. Fortunately we have pretty good localStorage tests.
The patches apply on top of the patch in bug 781866, which apply on top of the patch in bug 776416
Assignee: jonas → Jan.Varga
Assignee | ||
Comment 6•13 years ago
|
||
This fixes 2 mochitests (one of them is a crash)
Assignee | ||
Comment 7•13 years ago
|
||
(In reply to Honza Bambas (:mayhemer) from comment #1)
> Thus, for apps I presume there will be more added to this DB key string,
> probably to the end of it, right?
hmm, I think the key should start with appId and isInBrowserElement flag
for example:
moc.allizom.www.:80
0:t:moc.allizom.www.:80
1:f:moc.allizom.www.:80
2:f:moc.allizom.www.:80
if we add it to the end of the key, then the quota limit will be shared by all apps, no ?
Reporter | ||
Comment 8•13 years ago
|
||
Yeah, we probably need to prepend the appid+browserflag. That will also make it easier/faster to delete all localStoage data associated with a particular app when the app is uninstalled or when we clear private data for an app.
Reporter | ||
Updated•13 years ago
|
Attachment #661573 -
Flags: review+
Assignee | ||
Comment 9•13 years ago
|
||
Assignee | ||
Comment 10•13 years ago
|
||
Assignee | ||
Comment 11•13 years ago
|
||
Attachment #661612 -
Attachment is obsolete: true
Assignee | ||
Updated•13 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 12•13 years ago
|
||
Attachment #661613 -
Attachment is obsolete: true
Assignee | ||
Comment 13•13 years ago
|
||
Ok, so the test passes on all platforms except the android :(
Assignee | ||
Comment 14•13 years ago
|
||
The android failure is not specific to this bug, even the IDB app isolation test fails on android.
Jonas, would you review part 4 and 5 ?
Who should review part 1 and part 2, honzab ?
Updated•13 years ago
|
Attachment #661611 -
Flags: review?(jonas)
Updated•13 years ago
|
Attachment #661746 -
Flags: review?(jonas)
Updated•13 years ago
|
Attachment #659092 -
Flags: review?(honzab.moz)
Updated•13 years ago
|
Attachment #659093 -
Flags: review?(honzab.moz)
Reporter | ||
Updated•13 years ago
|
Attachment #661611 -
Flags: review?(jonas) → review+
Reporter | ||
Comment 15•13 years ago
|
||
Comment on attachment 661746 [details] [diff] [review]
Part 5: Automatic tests
Review of attachment 661746 [details] [diff] [review]:
-----------------------------------------------------------------
Actually, it would probably be better if Mounir reviewed this. He knows this stuff better.
Attachment #661746 -
Flags: review?(jonas) → review?(mounir)
Comment 16•13 years ago
|
||
Comment on attachment 661746 [details] [diff] [review]
Part 5: Automatic tests
Review of attachment 661746 [details] [diff] [review]:
-----------------------------------------------------------------
r=me with the nits addressed.
::: dom/tests/mochitest/localstorage/test_appIsolation.html
@@ +100,5 @@
> + iframe.addEventListener('mozbrowsershowmodalprompt', function(e) {
> + is(e.detail.message, "success", "test number " + i);
> +
> + // Calling removeChild() produces an error that creates failures.
> + //document.getElementById('content').removeChild(iframe);
Please, uncomment this. It should work now.
@@ +132,5 @@
> +
> +function startTest()
> +{
> + localStorage.setItem("0", "foo");
> + is(localStorage.getItem("0"), "foo", "data have been written");
<3 sync APIs
@@ +143,5 @@
> +</script>
> +
> +</head>
> +
> +<body onload="startTest();">
I would prefer addLoadEvent(startTest);
@@ +146,5 @@
> +
> +<body onload="startTest();">
> +<div id="content" style="display: none">
> +
> +</div>
That <div> is quite useless ;)
Attachment #661746 -
Flags: review?(mounir) → review+
Assignee | ||
Comment 17•13 years ago
|
||
(In reply to Mounir Lamouri (:mounir) from comment #16)
> @@ +132,5 @@
> > +
> > +function startTest()
> > +{
> > + localStorage.setItem("0", "foo");
> > + is(localStorage.getItem("0"), "foo", "data have been written");
>
> <3 sync APIs
what do you mean here ?
btw, I added |is(localStorage.getItem("0"), null, "no data");|
before |localStorage.setItem("0", "foo");| in the meantime
Assignee | ||
Comment 18•13 years ago
|
||
Attachment #661746 -
Attachment is obsolete: true
Reporter | ||
Comment 19•13 years ago
|
||
Jan: is part 5 ready for review?
Assignee | ||
Comment 20•13 years ago
|
||
yeah, I just fixed those nits and Mounir said that "<3 sync APIs" was just a joke
Comment 21•13 years ago
|
||
Those patches pass try except the new tests that have to be disabled on Android:
https://tbpl.mozilla.org/?tree=Try&rev=2a44d3ae4a33
Reporter | ||
Updated•13 years ago
|
Attachment #663791 -
Flags: review?(mounir)
Comment 22•13 years ago
|
||
Comment on attachment 663791 [details] [diff] [review]
Part 5: Automatic tests
Review of attachment 663791 [details] [diff] [review]:
-----------------------------------------------------------------
That was already reviewed ;) (see obsolete patches)
Attachment #663791 -
Flags: review?(mounir) → review+
![]() |
||
Updated•13 years ago
|
Attachment #659092 -
Flags: review?(honzab.moz) → review+
![]() |
||
Updated•13 years ago
|
Attachment #659093 -
Flags: review?(honzab.moz) → review+
Comment 23•13 years ago
|
||
Attachment #664675 -
Flags: review?(jonas)
Reporter | ||
Updated•13 years ago
|
Attachment #664675 -
Flags: review?(jonas) → review+
Reporter | ||
Comment 24•13 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/ede3e79682af
https://hg.mozilla.org/integration/mozilla-inbound/rev/c80ba174e4b9
https://hg.mozilla.org/integration/mozilla-inbound/rev/e4198733790b
https://hg.mozilla.org/integration/mozilla-inbound/rev/3c70558b823f
https://hg.mozilla.org/integration/mozilla-inbound/rev/423c12f60b5d
https://hg.mozilla.org/integration/mozilla-inbound/rev/7e92aec1bea5
Thanks everyone for quick reviews and quick patches!! I'm very happy to have this landed!
Comment 25•13 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/ede3e79682af
https://hg.mozilla.org/mozilla-central/rev/c80ba174e4b9
https://hg.mozilla.org/mozilla-central/rev/e4198733790b
https://hg.mozilla.org/mozilla-central/rev/3c70558b823f
https://hg.mozilla.org/mozilla-central/rev/423c12f60b5d
https://hg.mozilla.org/mozilla-central/rev/7e92aec1bea5
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
Target Milestone: --- → mozilla18
Updated•13 years ago
|
Whiteboard: [LOE:S][WebAPI:P1] → [LOE:S][WebAPI:P1][qa-]
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•