Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Unified Diff: third_party/WebKit/Source/core/dom/Modulator.h

Issue 2555653002: [WIP Prototype] ES6 https://html.spec.whatwg.org/#fetch-a-single-module-script implementation (Closed)
Patch Set: address haraken/yhirano comments Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/Modulator.h
diff --git a/third_party/WebKit/Source/core/dom/Modulator.h b/third_party/WebKit/Source/core/dom/Modulator.h
new file mode 100644
index 0000000000000000000000000000000000000000..2b8781160321afcb59400b6b96ef587c09b3aac0
--- /dev/null
+++ b/third_party/WebKit/Source/core/dom/Modulator.h
@@ -0,0 +1,93 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef Modulator_h
+#define Modulator_h
+
+#include "core/CoreExport.h"
+#include "platform/heap/Handle.h"
+#include "platform/weborigin/KURL.h"
+#include "wtf/text/WTFString.h"
+
+namespace blink {
+
+class LocalFrame;
+class ModuleScript;
+class ModuleScriptLoaderClient;
+class ScriptModule;
+class ScriptModuleResolver;
+class WebTaskRunner;
+
+// A SingleModuleClient is notified when single module script node load is
dominicc (has gone to gerrit) 2017/01/11 03:23:48 node -> element, might be clearer by being slightl
kouhei (in TOK) 2017/01/19 02:14:57 clarified this is module tree graph node.
+// complete and its corresponding entry is created in module map.
+class SingleModuleClient : public GarbageCollectedMixin {
dominicc (has gone to gerrit) 2017/01/11 03:23:48 Meta-level comment, the design is pretty clear so
+ public:
+ virtual void notifyFinishedSingleModule(ModuleScript*) = 0;
dominicc (has gone to gerrit) 2017/01/11 03:23:48 This name has too much (SingleModule repeats part
kouhei (in TOK) 2017/01/19 02:14:57 Done.
+};
+
+// A ModuleTreeClient is notified when a module script and its whole descendent
dominicc (has gone to gerrit) 2017/01/11 03:23:48 Superb comment.
+// tree load is complete.
+class ModuleTreeClient : public GarbageCollectedMixin {
+ public:
+ virtual void notifyFinishedModuleTree(ModuleScript*) = 0;
dominicc (has gone to gerrit) 2017/01/11 03:23:48 If you change the SingleModuleClient names above,
kouhei (in TOK) 2017/01/19 02:14:57 Done.
+};
+
+// A Modulator is an interface for "environment settings object" concept for
+// module scripts.
+// https://html.spec.whatwg.org/#environment-settings-object
+//
+// A Modulator also serves as an entry point for various module spec algorithms.
+class CORE_EXPORT Modulator : public GarbageCollectedMixin {
+ public:
+ static Modulator* from(LocalFrame*);
+
+ virtual ScriptModuleResolver* scriptModuleResolver() { return nullptr; }
+ virtual WebTaskRunner* taskRunner() { return nullptr; };
+
+ // https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-module-script-tree
+ virtual void fetchTree(const KURL&,
+ const KURL& baseURL,
+ ModuleTreeClient*) = 0;
+
+ // fetchSingle asynchronously retrieves a single module script from module
dominicc (has gone to gerrit) 2017/01/11 03:23:48 I'm not sure repeating the method name adds much?
+ // map,
dominicc (has gone to gerrit) 2017/01/11 03:23:48 wrapping weird
+ // or initiates its fetch if corresponding module map entry doesn't exist.
dominicc (has gone to gerrit) 2017/01/11 03:23:48 module map -> the module map if corresponding -> i
kouhei (in TOK) 2017/01/19 02:14:57 Done.
+ // https://html.spec.whatwg.org/#fetch-a-single-module-script
+ virtual void fetchSingle(
dominicc (has gone to gerrit) 2017/01/11 03:23:48 Another nit: when you say "initiate its fetch" you
kouhei (in TOK) 2017/01/19 02:14:57 Done.
+ const KURL&,
+ const KURL& baseURL,
+ SingleModuleClient*
+ /*, a fetch client settings object, a destination, a cryptographic nonce, a parser state, a credentials mode, a module map settings object, a referrer, and a top-level module fetch flag*/) = 0;
+
+ // fetchNewSingleModule asynchronously fetches a single module script.
+ // This is triggered from fetchSingle() implementation if the cached entry
+ // doesn't exist.
+ virtual void fetchNewSingleModule(
dominicc (has gone to gerrit) 2017/01/11 03:23:48 Should we hide this and just make it friends with
kouhei (in TOK) 2017/01/19 02:14:56 Done.
+ const KURL&,
+ const KURL& baseURL,
+ ModuleScriptLoaderClient*
+ /*, a fetch client settings object, a destination, a cryptographic nonce, a parser state, a credentials mode, a module map settings object, a referrer, and a top-level module fetch flag*/) = 0;
+
+ // Synchronously retrieves a single module script from existing module map
+ // entry.
+ virtual ModuleScript* retrieveFetchedModuleScript(const KURL&) = 0;
+
+ // https://html.spec.whatwg.org/#resolve-a-module-specifier
+ static KURL resolveModuleSpecifier(const String& moduleRequest,
+ const KURL& baseURL);
+
+ // TODO(kouhei): script should be a ScriptSourceCode.
+ virtual ScriptModule compileModule(const String& script,
dominicc (has gone to gerrit) 2017/01/11 03:23:48 Hmm, feels odd to have a ScriptModule poking out h
kouhei (in TOK) 2017/01/19 02:14:56 These methods were originally split as ModuleContr
+ const String& urlStr) = 0;
+
+ virtual bool instantiateModule(ScriptModule) = 0;
+
+ virtual Vector<String> moduleRequestsFromScriptModule(ScriptModule) = 0;
+
+ virtual void executeModule(ScriptModule) = 0;
+};
+
+} // namespace blink
+
+#endif

Powered by Google App Engine
This is Rietveld 408576698