summaryrefslogtreecommitdiffstats
path: root/toolkit/components/mozintl/MozIntlHelper.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /toolkit/components/mozintl/MozIntlHelper.cpp
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/components/mozintl/MozIntlHelper.cpp')
-rw-r--r--toolkit/components/mozintl/MozIntlHelper.cpp96
1 files changed, 96 insertions, 0 deletions
diff --git a/toolkit/components/mozintl/MozIntlHelper.cpp b/toolkit/components/mozintl/MozIntlHelper.cpp
new file mode 100644
index 0000000000..f748a0b4ea
--- /dev/null
+++ b/toolkit/components/mozintl/MozIntlHelper.cpp
@@ -0,0 +1,96 @@
+/* -*- Mode: C++; tab-width: 2; indent-tabs-mode:nil; c-basic-offset: 2 -*- */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#include "MozIntlHelper.h"
+#include "jsapi.h"
+#include "js/experimental/Intl.h" // JS::AddMozDateTimeFormatConstructor
+#include "js/PropertyAndElement.h" // JS_DefineFunctions
+#include "js/PropertySpec.h"
+#include "js/Wrapper.h"
+
+using namespace mozilla;
+
+NS_IMPL_ISUPPORTS(MozIntlHelper, mozIMozIntlHelper)
+
+MozIntlHelper::MozIntlHelper() = default;
+
+MozIntlHelper::~MozIntlHelper() = default;
+
+static nsresult AddFunctions(JSContext* cx, JS::Handle<JS::Value> val,
+ const JSFunctionSpec* funcs) {
+ if (!val.isObject()) {
+ return NS_ERROR_INVALID_ARG;
+ }
+
+ // We might be adding functions to a Window.
+ JS::Rooted<JSObject*> realIntlObj(
+ cx, js::CheckedUnwrapDynamic(&val.toObject(), cx));
+ if (!realIntlObj) {
+ return NS_ERROR_INVALID_ARG;
+ }
+
+ JSAutoRealm ar(cx, realIntlObj);
+
+ if (!JS_DefineFunctions(cx, realIntlObj, funcs)) {
+ return NS_ERROR_FAILURE;
+ }
+
+ return NS_OK;
+}
+
+NS_IMETHODIMP
+MozIntlHelper::AddGetCalendarInfo(JS::Handle<JS::Value> val, JSContext* cx) {
+ static const JSFunctionSpec funcs[] = {
+ JS_SELF_HOSTED_FN("getCalendarInfo", "Intl_getCalendarInfo", 1, 0),
+ JS_FS_END};
+
+ return AddFunctions(cx, val, funcs);
+}
+
+NS_IMETHODIMP
+MozIntlHelper::AddDateTimeFormatConstructor(JS::Handle<JS::Value> val,
+ JSContext* cx) {
+ if (!val.isObject()) {
+ return NS_ERROR_INVALID_ARG;
+ }
+
+ // We might be adding this constructor to a Window
+ JS::Rooted<JSObject*> realIntlObj(
+ cx, js::CheckedUnwrapDynamic(&val.toObject(), cx));
+ if (!realIntlObj) {
+ return NS_ERROR_INVALID_ARG;
+ }
+
+ JSAutoRealm ar(cx, realIntlObj);
+
+ if (!JS::AddMozDateTimeFormatConstructor(cx, realIntlObj)) {
+ return NS_ERROR_FAILURE;
+ }
+
+ return NS_OK;
+}
+
+NS_IMETHODIMP
+MozIntlHelper::AddDisplayNamesConstructor(JS::Handle<JS::Value> val,
+ JSContext* cx) {
+ if (!val.isObject()) {
+ return NS_ERROR_INVALID_ARG;
+ }
+
+ // We might be adding this constructor to a Window
+ JS::Rooted<JSObject*> realIntlObj(
+ cx, js::CheckedUnwrapDynamic(&val.toObject(), cx));
+ if (!realIntlObj) {
+ return NS_ERROR_INVALID_ARG;
+ }
+
+ JSAutoRealm ar(cx, realIntlObj);
+
+ if (!JS::AddMozDisplayNamesConstructor(cx, realIntlObj)) {
+ return NS_ERROR_FAILURE;
+ }
+
+ return NS_OK;
+}