[gjs/esm/static-imports: 21/24] Add native registry for GI modules.
- From: Evan Welsh <ewlsh src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gjs/esm/static-imports: 21/24] Add native registry for GI modules.
- Date: Thu, 29 Oct 2020 00:26:27 +0000 (UTC)
commit 8f1f6f5b89713eb65b10d364223e1d0cadab6b57
Author: Evan Welsh <noreply evanwelsh com>
Date: Fri Oct 16 18:25:00 2020 -0500
Add native registry for GI modules.
gi/repo.cpp | 56 ++++++++++++++++++-------
gjs/global.cpp | 124 +++++++++++++++++++++++++++++++++++++++++++++++++++++--
gjs/global.h | 11 ++++-
gjs/importer.cpp | 30 +++++++++++++-
gjs/module.cpp | 26 ++++++++++++
gjs/module.h | 4 ++
6 files changed, 229 insertions(+), 22 deletions(-)
---
diff --git a/gi/repo.cpp b/gi/repo.cpp
index ca42bf15..3aee4009 100644
--- a/gi/repo.cpp
+++ b/gi/repo.cpp
@@ -24,6 +24,8 @@
#include <js/Warnings.h>
#include <jsapi.h> // for JS_DefinePropertyById, JS_GetProp...
+#include <mozilla/HashTable.h>
+
#include "gi/arg.h"
#include "gi/boxed.h"
#include "gi/enumeration.h"
@@ -42,6 +44,7 @@
#include "gjs/jsapi-class.h"
#include "gjs/jsapi-util.h"
#include "gjs/mem-private.h"
+#include "gjs/module.h"
#include "util/log.h"
extern struct JSClass gjs_repo_class;
@@ -614,37 +617,58 @@ lookup_override_function(JSContext *cx,
}
return true;
- fail:
+fail:
saved_exc.drop();
return false;
}
-JSObject*
-gjs_lookup_namespace_object_by_name(JSContext *context,
- JS::HandleId ns_name)
-{
- JS::RootedObject global(context, gjs_get_import_global(context));
- JS::RootedValue importer(
- context, gjs_get_global_slot(global, GjsGlobalSlot::IMPORTS));
- g_assert(importer.isObject());
-
- JS::RootedObject repo(context), importer_obj(context, &importer.toObject());
- const GjsAtoms& atoms = GjsContextPrivate::atoms(context);
- if (!gjs_object_require_property(context, importer_obj, "importer",
- atoms.gi(), &repo)) {
+GJS_JSAPI_RETURN_CONVENTION
+static JSObject* lookup_namespace(JSContext* context, JSObject* global,
+ JS::HandleId ns_name) {
+ JS::RootedObject native_registry(context,
+ gjs_get_native_registry(context, global));
+ auto priv = GjsContextPrivate::from_cx(context);
+ auto atoms = priv->atoms();
+ JS::RootedObject gi(context);
+
+ if (!gjs_global_registry_get(context, native_registry, atoms.gi(), &gi)) {
gjs_log_exception(context);
- gjs_throw(context, "No gi property in importer");
+ return nullptr;
+ }
+
+ if (!gi) {
+ gjs_throw(context, "No gi property in native registry");
return NULL;
}
JS::RootedObject retval(context);
- if (!gjs_object_require_property(context, repo, "GI repository object",
+ if (!gjs_object_require_property(context, gi, "GI repository object",
ns_name, &retval))
return NULL;
return retval;
}
+JSObject* gjs_lookup_namespace_object_by_name(JSContext* context,
+ JS::HandleId ns_name) {
+ JS::RootedObject global(context, JS::CurrentGlobalOrNull(context));
+ JSObject* ns = nullptr;
+
+ switch (gjs_global_get_type(global)) {
+ case GjsGlobalType::DEFAULT:
+ ns = lookup_namespace(context, global, ns_name);
+ break;
+ case GjsGlobalType::DEBUGGER:
+ ns = nullptr;
+ // It is not possible to load namespace objects in the debugger
+ // global.
+ g_assert_not_reached();
+ break;
+ }
+
+ return ns;
+}
+
const char*
gjs_info_type_name(GIInfoType type)
{
diff --git a/gjs/global.cpp b/gjs/global.cpp
index 4779e4c4..35bd8346 100644
--- a/gjs/global.cpp
+++ b/gjs/global.cpp
@@ -16,6 +16,7 @@
#include <js/Class.h>
#include <js/CompilationAndEvaluation.h>
#include <js/CompileOptions.h>
+#include <js/Modules.h>
#include <js/PropertyDescriptor.h> // for JSPROP_PERMANENT, JSPROP_RE...
#include <js/PropertySpec.h>
#include <js/Realm.h> // for GetObjectRealmOrNull, SetRealmPrivate
@@ -26,11 +27,13 @@
#include <js/Utility.h> // for UniqueChars
#include <jsapi.h> // for AutoSaveExceptionState, ...
+#include "gi/ns.h"
#include "gjs/atoms.h"
#include "gjs/context-private.h"
#include "gjs/engine.h"
#include "gjs/global.h"
#include "gjs/jsapi-util.h"
+#include "gjs/module.h"
#include "gjs/native.h"
namespace mozilla {
@@ -135,13 +138,25 @@ class GjsBaseGlobal {
const JSClassOps defaultclassops = JS::DefaultGlobalClassOps;
class GjsGlobal : GjsBaseGlobal {
+ static constexpr JSClassOps classops = {nullptr, // addProperty
+ nullptr, // deleteProperty
+ nullptr, // enumerate
+ JS_NewEnumerateStandardClasses,
+ JS_ResolveStandardClass,
+ JS_MayResolveStandardClass,
+ nullptr, // finalize
+ nullptr, // call
+ nullptr, // hasInstance
+ nullptr, // construct
+ JS_GlobalObjectTraceHook};
+
static constexpr JSClass klass = {
// Jasmine depends on the class name "GjsGlobal" to detect GJS' global
// object.
"GjsGlobal",
JSCLASS_GLOBAL_FLAGS_WITH_SLOTS(
static_cast<uint32_t>(GjsGlobalSlot::LAST)),
- &defaultclassops,
+ &classops,
};
// clang-format off
@@ -179,6 +194,15 @@ class GjsGlobal : GjsBaseGlobal {
// const_cast is allowed here if we never free the realm data
JS::SetRealmPrivate(realm, const_cast<char*>(realm_name));
+ JS::RootedObject native_registry(cx, JS::NewMapObject(cx));
+
+ if (!native_registry) {
+ return false;
+ }
+
+ gjs_set_global_slot(global, GjsGlobalSlot::NATIVE_REGISTRY,
+ JS::ObjectValue(*native_registry));
+
JS::Value v_importer =
gjs_get_global_slot(global, GjsGlobalSlot::IMPORTS);
g_assert(((void) "importer should be defined before passing null "
@@ -280,8 +304,29 @@ JSObject* gjs_create_global_object(JSContext* cx, GjsGlobalType global_type,
}
}
+/**
+ * gjs_global_is_type:
+ *
+ * @param cx the current #JSContext
+ * @param type the global type to test for
+ *
+ * @returns whether the current global is the same type as #type
+ */
+bool gjs_global_is_type(JSContext* cx, GjsGlobalType type) {
+ JS::RootedObject global(cx, JS::CurrentGlobalOrNull(cx));
+
+ g_assert(global && "gjs_global_is_type called before a realm was entered.");
+
+ auto global_type =
+ gjs_get_global_slot(global, GjsBaseGlobalSlot::GLOBAL_TYPE);
+
+ g_assert(global_type.isInt32());
+
+ return static_cast<GjsGlobalType>(global_type.toInt32()) == type;
+}
+
GjsGlobalType gjs_global_get_type(JSContext* cx) {
- auto global = JS::CurrentGlobalOrNull(cx);
+ JS::RootedObject global(cx, JS::CurrentGlobalOrNull(cx));
g_assert(global &&
"gjs_global_get_type called before a realm was entered.");
@@ -303,6 +348,69 @@ GjsGlobalType gjs_global_get_type(JSObject* global) {
return static_cast<GjsGlobalType>(global_type.toInt32());
}
+/**
+ * gjs_global_registry_set:
+ *
+ * @param cx the current #JSContext
+ * @param registry
+ * @param key
+ * @param value
+ *
+ * @returns whether the current global is the same type as #type
+ */
+bool gjs_global_registry_set(JSContext* cx, JS::HandleObject registry,
+ JS::PropertyKey key, JS::HandleObject value) {
+ JS::RootedValue keyv(cx);
+
+ if (!JS_IdToValue(cx, key, &keyv)) {
+ return false;
+ }
+
+ bool has_key;
+
+ if (!JS::MapHas(cx, registry, keyv, &has_key)) {
+ return false;
+ }
+
+ if (has_key) {
+ JS::RootedString str(cx, keyv.toString());
+ gjs_throw(cx, "Duplicate map set attempted: %s.",
+ JS_EncodeStringToUTF8(cx, str).get());
+ return false;
+ }
+
+ JS::RootedValue valuev(cx, JS::ObjectValue(*value));
+
+ return JS::MapSet(cx, registry, keyv, valuev);
+}
+
+bool gjs_global_registry_get(JSContext* cx, JS::HandleObject registry,
+ JS::PropertyKey key,
+ JS::MutableHandleObject value) {
+ JS::RootedValue keyv(cx);
+
+ if (!JS_IdToValue(cx, key, &keyv)) {
+ return false;
+ }
+ JS::RootedValue valuev(cx);
+
+ if (keyv.isString()) {
+ JS::RootedString str(cx, keyv.toString());
+ }
+
+ if (!JS::MapGet(cx, registry, keyv, &valuev)) {
+ return false;
+ }
+
+ if (valuev.isUndefined()) {
+ return true;
+ }
+
+ value.set(&valuev.toObject());
+
+ return true;
+}
+
/**
* gjs_define_global_properties:
* @cx: a #JSContext
@@ -343,20 +451,28 @@ bool gjs_define_global_properties(JSContext* cx, JS::HandleObject global,
case GjsGlobalType::DEBUGGER:
return GjsDebuggerGlobal::define_properties(cx, global, realm_name,
bootstrap_script);
- default:
- return true;
}
+
+ return false;
}
void detail::set_global_slot(JSObject* global, uint32_t slot, JS::Value value) {
JS_SetReservedSlot(global, JSCLASS_GLOBAL_SLOT_COUNT + slot, value);
}
+template void gjs_set_global_slot(JSObject* global, GjsBaseGlobalSlot slot,
+ JS::Value value);
+template void gjs_set_global_slot(JSObject* global, GjsGlobalSlot slot,
+ JS::Value value);
JS::Value detail::get_global_slot(JSObject* global, uint32_t slot) {
return JS_GetReservedSlot(global, JSCLASS_GLOBAL_SLOT_COUNT + slot);
}
+template JS::Value gjs_get_global_slot(JSObject* global,
+ GjsBaseGlobalSlot slot);
+template JS::Value gjs_get_global_slot(JSObject* global, GjsGlobalSlot slot);
decltype(GjsGlobal::klass) constexpr GjsGlobal::klass;
+decltype(GjsGlobal::classops) constexpr GjsGlobal::classops;
decltype(GjsGlobal::static_funcs) constexpr GjsGlobal::static_funcs;
decltype(GjsGlobal::static_props) constexpr GjsGlobal::static_props;
diff --git a/gjs/global.h b/gjs/global.h
index 0ac56c51..e6592f9a 100644
--- a/gjs/global.h
+++ b/gjs/global.h
@@ -32,6 +32,7 @@ enum class GjsDebuggerGlobalSlot : uint32_t {
enum class GjsGlobalSlot : uint32_t {
IMPORTS = static_cast<uint32_t>(GjsBaseGlobalSlot::LAST),
+ NATIVE_REGISTRY,
PROTOTYPE_gtype,
PROTOTYPE_importer,
PROTOTYPE_function,
@@ -54,9 +55,17 @@ enum class GjsGlobalSlot : uint32_t {
LAST,
};
-GjsGlobalType gjs_global_get_type(JSContext* cx);
+bool gjs_global_is_type(JSContext* cx, GjsGlobalType type);
GjsGlobalType gjs_global_get_type(JSObject* global);
+GJS_JSAPI_RETURN_CONVENTION
+bool gjs_global_registry_set(JSContext* cx, JS::HandleObject registry,
+ JS::PropertyKey key, JS::HandleObject value);
+GJS_JSAPI_RETURN_CONVENTION
+bool gjs_global_registry_get(JSContext* cx, JS::HandleObject registry,
+ JS::PropertyKey key,
+ JS::MutableHandleObject value);
+
GJS_JSAPI_RETURN_CONVENTION
JSObject* gjs_create_global_object(JSContext* cx, GjsGlobalType global_type,
JS::HandleObject existing_global = nullptr);
diff --git a/gjs/importer.cpp b/gjs/importer.cpp
index 6cdfd11d..1c4267c6 100644
--- a/gjs/importer.cpp
+++ b/gjs/importer.cpp
@@ -12,6 +12,7 @@
#endif
#include <string>
+#include <utility> // for move
#include <vector> // for vector
#include <gio/gio.h>
@@ -33,6 +34,7 @@
#include <js/Value.h>
#include <jsapi.h> // for JS_DefinePropertyById, JS_DefineP...
#include <jspubtd.h> // for JSProto_Error
+#include <mozilla/HashTable.h>
#include <mozilla/UniquePtr.h>
#include "gjs/atoms.h"
@@ -281,10 +283,36 @@ gjs_import_native_module(JSContext *cx,
{
gjs_debug(GJS_DEBUG_IMPORTER, "Importing '%s'", parse_name);
+ JS::RootedObject native_registry(
+ cx, gjs_get_native_registry(cx, gjs_get_import_global(cx)));
+ JS::RootedValue nv(cx);
+ if (!gjs_string_from_utf8(cx, parse_name, &nv)) {
+ return false;
+ }
+ JS::RootedId id(cx);
+
+ if (!JS_ValueToId(cx, nv, &id)) {
+ return false;
+ }
+
JS::RootedObject module(cx);
+
+ if (!gjs_global_registry_get(cx, native_registry, id, &module)) {
+ return false;
+ }
+
+ if (module) {
+ return define_meta_properties(cx, module, nullptr, parse_name,
+ importer) &&
+ JS_DefineProperty(cx, importer, parse_name, module,
+ GJS_MODULE_PROP_FLAGS);
+ }
+
return gjs_load_native_module(cx, parse_name, &module) &&
+ gjs_global_registry_set(cx, native_registry, id, module) &&
define_meta_properties(cx, module, nullptr, parse_name, importer) &&
- JS_DefineProperty(cx, importer, parse_name, module, GJS_MODULE_PROP_FLAGS);
+ JS_DefineProperty(cx, importer, parse_name, module,
+ GJS_MODULE_PROP_FLAGS);
}
GJS_JSAPI_RETURN_CONVENTION
diff --git a/gjs/module.cpp b/gjs/module.cpp
index 0d637fd0..860da0d0 100644
--- a/gjs/module.cpp
+++ b/gjs/module.cpp
@@ -1,6 +1,7 @@
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2017 Philip Chimento <philip chimento gmail com>
+// SPDX-FileCopyrightText: 2020 Evan Welsh <contact evanwelsh com>
#include <config.h>
@@ -16,13 +17,16 @@
#include <js/CompilationAndEvaluation.h>
#include <js/CompileOptions.h>
#include <js/GCVector.h> // for RootedVector
+#include <js/Modules.h>
#include <js/PropertyDescriptor.h>
#include <js/RootingAPI.h>
#include <js/SourceText.h>
#include <js/TypeDecls.h>
+#include <js/Value.h> // for Value
#include <jsapi.h> // for JS_DefinePropertyById, ...
#include "gjs/context-private.h"
+#include "gjs/global.h"
#include "gjs/jsapi-util.h"
#include "gjs/mem-private.h"
#include "gjs/module.h"
@@ -244,3 +248,25 @@ gjs_module_import(JSContext *cx,
decltype(GjsScriptModule::klass) constexpr GjsScriptModule::klass;
decltype(GjsScriptModule::class_ops) constexpr GjsScriptModule::class_ops;
+
+/**
+ * gjs_get_module_registry:
+ *
+ * Retrieves a global's native registry from the NATIVE_REGISTRY slot.
+ * Registries are actually JS Maps.
+ *
+ * @param cx the current #JSContext
+ * @param global a global #JSObject
+ *
+ * @returns the registry map as a #JSObject
+ */
+JSObject* gjs_get_native_registry(JSContext* cx, JSObject* global) {
+ JS::Value native_registry =
+ gjs_get_global_slot(global, GjsGlobalSlot::NATIVE_REGISTRY);
+
+ g_assert(native_registry.isObject());
+
+ JS::RootedObject root_registry(cx, &native_registry.toObject());
+
+ return root_registry;
+}
diff --git a/gjs/module.h b/gjs/module.h
index e366eaf8..eb81fe50 100644
--- a/gjs/module.h
+++ b/gjs/module.h
@@ -1,6 +1,7 @@
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2017 Philip Chimento <philip chimento gmail com>
+// SPDX-FileCopyrightText: 2020 Evan Welsh <contact evanwelsh com>
#ifndef GJS_MODULE_H_
#define GJS_MODULE_H_
@@ -21,4 +22,7 @@ gjs_module_import(JSContext *cx,
const char *name,
GFile *file);
+GJS_JSAPI_RETURN_CONVENTION
+JSObject* gjs_get_native_registry(JSContext* cx, JSObject* global);
+
#endif // GJS_MODULE_H_
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]