You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve service worker script caching and update (#1283)
This change includes/considers the following:
- Include imported scripts to byte-check (for classic scripts).
- Compare responses' body instead of source text as per whatwg/html#3316.
- Handle duplicate importScripts() as per #1041.
- Remove imported scripts updated flag referenced in importScripts() by
using service worker's state item instead.
- Have Update's perform the fetch steps cover module scripts.
- Confirm dobule-download of imported scripts pointed out in #1023 (comment)
never happens; importing a script again always gets the result from
the cache.
This change basically gets the imported scripts included to the
byte-check for updates. Update continues with Install if any of the
(main or imported) resources has been changed. This change also makes
any duplicated requests (including the main script) from importScripts()
return the result from the cache.
Fixes#839, #1041, #1212, #1023.
A [=/service worker=] has an associated <dfn export id="dfn-skip-waiting-flag">skip waiting flag</dfn>. Unless stated otherwise it is unset.
167
167
168
-
A [=/service worker=] has an associated <dfn export id="dfn-imported-scripts-updated-flag">imported scripts updated flag</dfn>. It is initially unset.
168
+
A [=/service worker=] has an associated <dfn export id="dfn-classic-scripts-imported-flag">classic scripts imported flag</dfn>. It is initially unset.
169
169
170
170
A [=/service worker=] has an associated <dfn export id="dfn-set-of-event-types-to-handle">set of event types to handle</dfn> (a [=ordered set|set=]) whose [=list/item=] is an <a>event listener</a>'s event type. It is initially an empty set.
When the <dfn method for="ServiceWorkerGlobalScope" id="importscripts-method"><code>importScripts(|urls|)</code></dfn> method is called on a {{ServiceWorkerGlobalScope}} object, the user agent *must* <a>import scripts into worker global scope</a>, given this {{ServiceWorkerGlobalScope}} object and |urls|, and with the following steps to [=fetching scripts/perform the fetch=] given the [=/request=] |request|:
2028
2028
2029
2029
1. Let |serviceWorker| be |request|'s [=request/client=]'s [=environment settings object/global object=]'s [=ServiceWorkerGlobalScope/service worker=].
2030
-
1. If |serviceWorker|'s <a>imported scripts updated flag</a> is unset, then:
2031
-
1. Let |registration| be |serviceWorker|'s [=containing service worker registration=].
2032
-
1. Set |request|'s [=service-workers mode=] to "`none`".
2033
-
1. Set |request|'s [=request/cache mode=] to "<code>no-cache</code>" if any of the following are true:
2034
-
* |registration|'s [=service worker registration/update via cache mode=]is "`none`".
2035
-
* The [=current global object=]'s [=force bypass cache for importscripts flag=] is set.
2036
-
* |registration|'s[=last update check time=] is not null and the time difference in seconds calculated by the current time minus |registration|’s [=last update check time=] is greater than 86400.
2037
-
1. Let |response| be the result of <a lt="fetch">fetching</a> |request|.
2038
-
1. If |response|’s <a for="response" href="https://github.com/whatwg/fetch/issues/376">cache state</a> is not "<code>local</code>", set |registration|’s [=service worker registration/last update check time=]to the current time.
2039
-
1. [=Extract a MIME type=] from the |response|'s [=unsafe response=]'s [=response/header list=]. If this MIME type (ignoring parameters) is not a [=JavaScript MIME type=], return a [=network error=].
2040
-
1. If |response|'s <a>unsafe response</a>'s [=response/type=]is not "<code>error</code>", and |response|'s [=response/status=]is an <a>ok status</a>, then:
2041
-
1. [=map/Set=]<a>script resource map</a>[|request|'s [=request/url=]] to |response|.
2042
-
1. Return |response|.
2043
-
1. Else:
2044
-
1. If <a>script resource map</a>[|url|][=map/exists=], return <a>script resource map</a>[|url|].
2045
-
1. Else, return a <a>network error</a>.
2030
+
1. If |serviceWorker|'s [=script resource map=][|request|'s [=request/url=]] [=map/exists=], return the [=map/entry=]'s [=map/value=].
2031
+
1. If |serviceWorker|'s [=state=] is not *parsed* or *installing*, return a [=network error=].
2032
+
1. Let |registration| be |serviceWorker|'s [=containing service worker registration=].
2033
+
1. Set |request|'s [=service-workers mode=] to "`none`".
2034
+
1. Set |request|'s [=request/cache mode=]to "`no-cache`" if any of the following are true:
2035
+
* |registration|'s [=service worker registration/update via cache mode=] is "`none`".
2036
+
* The[=current global object=]'s [=force bypass cache for importscripts flag=] is set.
2037
+
* |registration|'s [=last update check time=] is not null and the time difference in seconds calculated by the current time minus |registration|’s [=last update check time=] is greater than 86400.
2038
+
1. Let |response| be the result of [=fetch|fetching=]|request|.
2039
+
1. Set |response| to |response|'s [=unsafe response=].
2040
+
1. If |response|’s <a for="response" href="https://github.com/whatwg/fetch/issues/376">cache state</a>is not "`local`", set |registration|’s [=service worker registration/last update check time=]to the current time.
2041
+
1. [=Extract a MIME type=] from the |response|'s [=response/header list=]. If this MIME type (ignoring parameters) is not a[=JavaScript MIME type=], return a [=network error=].
2042
+
1. If |response|'s [=response/type=] is not "`error`", and |response|'s [=response/status=] is an <a>ok status</a>, then:
2043
+
1. [=map/Set=] |serviceWorker|'s [=script resource map=][|request|'s [=request/url=]] to |response|.
2044
+
1. Set |serviceWorker|'s[=classic scripts imported flag=].
[=/Service workers=] introduce new persistent storage features including <a>scope to registration map</a> (for [=/service worker registrations=] and their [=/service workers=]), [=request response list=] and <a>name to cache map</a> (for caches), and <a>script resource map</a> (for script resources). In order to protect users from any potential <a biblio data-biblio-type="informative" lt="unsanctioned-tracking">unsanctioned tracking</a> threat, these persistent storages *should* be cleared when users intend to clear them and *should* maintain and interoperate with existing user controls e.g. purging all existing persistent storages.
2072
+
[=/Service workers=] introduce new persistent storage features including <a>scope to registration map</a> (for [=/service worker registrations=] and their [=/service workers=]), [=request response list=] and <a>name to cache map</a> (for caches), and [=script resource map=] (for script resources). In order to protect users from any potential <a biblio data-biblio-type="informative" lt="unsanctioned-tracking">unsanctioned tracking</a> threat, these persistent storages *should* be cleared when users intend to clear them and *should* maintain and interoperate with existing user controls e.g. purging all existing persistent storages.
1. Invoke [=Reject Job Promise=] with |job| and "{{SecurityError}}" {{DOMException}}.
2420
2422
1. Asynchronously complete these steps with a <a>network error</a>.
2423
+
1. Set |updatedResourceMap|[|request|'s [=request/url=]] to |response|.
2421
2424
1. If |response|'s <a for="response" href="https://github.com/whatwg/fetch/issues/376">cache state</a> is not "<code>local</code>", set |registration|'s <a>last update check time</a> to the current time.
2422
2425
2423
2426
Issue: The response's cache state concept had been removed from fetch. The fetch issue <a href="https://github.com/whatwg/fetch/issues/376">#376</a> tracks the request to restore the concept or add some similar way to check this state.
2424
2427
2428
+
1. If |newestWorker| is null, or |newestWorker|'s [=script resource map=][|request|'s [=request/url=]]'s [=response/body=] is not byte-for-byte identical with |response|'s [=response/body=], set |hasUpdatedResources| to true.
2429
+
1. Else if |newestWorker|'s [=classic scripts imported flag=] is set, then:
1. Let |request| be a new [=/request=] whose [=request/url=] is |url|, [=request/client=] is |job|'s [=job/client=], [=request/destination=] is "`script`", [=request/parser metadata=] is "`not parser-inserted`", [=request/synchronous flag=] is set, and whose [=request/use-URL-credentials flag=] is set.
2432
+
1. Set |request|'s [=request/cache mode=] to "`no-cache`" if any of the following are true:
2433
+
* |registration|'s [=service worker registration/update via cache mode=] is "`none`".
2434
+
* |job|'s [=force bypass cache flag=] is set.
2435
+
* |registration|'s [=last update check time=] is not null and the time difference in seconds calculated by the current time minus |registration|’s [=last update check time=] is greater than 86400.
2436
+
1. Let |fetchedResponse| be the result of [=fetch|fetching=] |request|.
2437
+
1. Set |fetchedResponse| to |fetchedResponse|'s [=unsafe response=].
2438
+
1. Set |updatedResourceMap|[|request|'s [=request/url=]] to |fetchedResponse|.
2439
+
1. If |fetchedResponse|'s <a for="response" href="https://github.com/whatwg/fetch/issues/376">cache state</a> is not "<code>local</code>", set |registration|’s [=last update check time=] to the current time.
2440
+
1. [=Extract a MIME type=] from the |fetchedResponse|'s [=response/header list=]. If this MIME type (ignoring parameters) is not a [=JavaScript MIME type=], asynchronously complete these steps with a [=network error=].
2441
+
1. If |fetchedResponse|'s [=response/type=] is "`error`", or |fetchedResponse|'s [=response/status=] is not an [=ok status=], asynchronously complete these steps with a [=network error=].
2442
+
1. If |fetchedResponse|'s [=response/body=] is not byte-for-byte identical with |storedResponse|'s [=response/body=], set |hasUpdatedResources| to true.
2443
+
2444
+
Note: The control does not break the loop in this step to continue with all the imported scripts to populate the cache.
2425
2445
1. Return true.
2426
2446
2427
2447
If the algorithm asynchronously completes with null, then:
1. Invoke <a>Finish Job</a> with |job| and abort these steps.
2435
2455
2436
2456
Else, continue the rest of these steps after the algorithm's asynchronous completion, with |script| being the asynchronous completion value.
2437
-
2438
-
1. If |newestWorker| is not null, |newestWorker|'s [=service worker/script url=] [=url/equals=] |job|'s [=job/script url=], and |script|'s [=source text=] is a byte-for-byte match with |newestWorker|'s [=script resource=]'s [=source text=], if |script| is a [=classic script=], and |script|'s [=module script/module record=]'s \[[ECMAScriptCode]] is a byte-for-byte match with |newestWorker|'s [=script resource=]'s [=module script/module record=]'s \[[ECMAScriptCode]] otherwise, then:
2457
+
1. If |hasUpdatedResources| is false, then:
2439
2458
1. Invoke [=Resolve Job Promise=] with |job| and |registration|.
2459
+
1. Invoke [=Finish Job=] with |job| and abort these steps.
2460
+
1. Let |worker| be a new [=/service worker=].
2461
+
1. Set |worker|'s [=service worker/script url=] to |job|'s [=job/script url=], |worker|'s <a>script resource</a> to |script|, and |worker|'s [=service worker/type=] to |job|'s <a>worker type</a>.
2462
+
1. [=map/For each=] |url| → |response| of |updatedResourceMap|:
2463
+
1. Set |worker|'s [=script resource map=][|url|] to |response|.
2464
+
1. Set |worker|'s <a>script resource</a>'s <a>HTTPS state</a> to |httpsState|.
2465
+
1. Set |worker|'s <a>script resource</a>'s [=script resource/referrer policy=] to |referrerPolicy|.
2466
+
1. Invoke <a>Run Service Worker</a> algorithm given |worker|, and with the *force bypass cache for importscripts flag* set if |job|'s [=job/force bypass cache flag=] is set.
2467
+
1. If an uncaught runtime script error occurs during the above step, then:
2468
+
1. Invoke [=Reject Job Promise=] with |job| and `TypeError`.
2469
+
1. If |newestWorker| is null, invoke <a>Clear Registration</a> algorithm passing |registration| as its argument.
2440
2470
1. Invoke <a>Finish Job</a> with |job| and abort these steps.
2441
-
1. Else:
2442
-
1. Let |worker| be a new [=/service worker=].
2443
-
1. Set |worker|'s [=service worker/script url=] to |job|'s [=job/script url=], |worker|'s <a>script resource</a> to |script|, and |worker|'s [=service worker/type=] to |job|'s <a>worker type</a>.
2444
-
1. Set |worker|'s <a>script resource</a>'s <a>HTTPS state</a> to |httpsState|.
2445
-
1. Set |worker|'s <a>script resource</a>'s [=script resource/referrer policy=] to |referrerPolicy|.
2446
-
1. Invoke <a>Run Service Worker</a> algorithm given |worker|, and with the *force bypass cache for importscripts flag* set if |job|'s [=job/force bypass cache flag=] is set.
2447
-
1. If an uncaught runtime script error occurs during the above step, then:
2448
-
1. Invoke [=Reject Job Promise=] with |job| and `TypeError`.
2449
-
1. If |newestWorker| is null, invoke <a>Clear Registration</a> algorithm passing |registration| as its argument.
2450
-
1. Invoke <a>Finish Job</a> with |job| and abort these steps.
2451
2471
1. Invoke <a>Install</a> algorithm with |job|, |worker|, and |registration| as its arguments.
0 commit comments